gps_pvt 0.3.3 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b91245b6a851b08ef5ec4b23e6be27cdd1150eaf6f7036249bf971c105bd920d
4
- data.tar.gz: 75e5a367d8e1cc0d0e8cc48dae63b3b9b6a72fc86eeeea76bc6d1562ba171f02
3
+ metadata.gz: 7ba5a3a5c8364753e1f6384519a015f29459e51e17bd82eb81e398c89e80619f
4
+ data.tar.gz: 565bd717bb178be9784b9b249860270b9d45e33e8af456ab1042db5d75b34c04
5
5
  SHA512:
6
- metadata.gz: 3763faded2f4a5ace56f3a5cfde25311792ea06bda6ce5eb987fa10e1add08d9eb505bdb697fefb84b95a212072a824c3c134d298f4adea13d4ea31edfbeb831
7
- data.tar.gz: 76b55b2da8d816a4bd2be024191ac0b706e40624035f979411f9192d78e030f2ee10ab4ce186160e8de2006b175728db593b11c25020f734ed9ac22544f0d2fb
6
+ metadata.gz: 1fef4a8e70a4872f17219f3f97a2ac21d0b5feb44a611d747291d842dd6939cd297426c53cbd16875ece618b610d557542f98c720177a05e95db63f9dcd788c9
7
+ data.tar.gz: 60450ca6f661f0eaeb0c194caa97f4246dd723edbf2f566c5775fa91dffb621357aca7732b54fb7d27b636cb0864b2f26c40efa661fb3afde029b6a4bc985d63
data/README.md CHANGED
@@ -38,9 +38,9 @@ The format of RINEX_or_UBX_file is automatically determined with its extention,
38
38
  --rinex_obs=filename
39
39
  --ubx=filename
40
40
 
41
- From version 0.2.0, SBAS and QZSS are supported in addition to GPS. QZSS ranging is activated in default, however, SBAS is just utilized for ionospheric correction. If you want to activate SBAS ranging, "--with=(SBAS PRN number, ex. 137)" option is used with gps_pvt executable like
41
+ Since version 0.2.0, SBAS and QZSS are supported in addition to GPS. Since version 0.4.0, GLONASS is also available. QZSS ranging is activated in default, however, SBAS is just utilized for ionospheric correction. GLONASS is also turned off by default. If you want to activate SBAS or GLONASS ranging, "--with=(system or PRN)" options are used with gps_pvt executable like
42
42
 
43
- $ gps_pvt --with=137 RINEX_or_UBX_file(s)
43
+ $ gps_pvt --with=137 --with=GLONASS RINEX_or_UBX_file(s)
44
44
 
45
45
  Additionally, the following command options *--key=value* are available.
46
46
 
data/Rakefile CHANGED
@@ -29,9 +29,11 @@ namespace :git do
29
29
  # same as #{repo}/.git/info/sparse-checkout
30
30
  "sparse-checkout set" + (<<-__SPARSE_PATTERNS__).lines.collect{|str| str.chomp.gsub(/^ */, ' ')}.join,
31
31
  /tool/param/
32
+ /tool/algorithm/integral.h
32
33
  /tool/navigation/GPS*
33
34
  /tool/navigation/SBAS*
34
35
  /tool/navigation/QZSS*
36
+ /tool/navigation/GLONASS*
35
37
  /tool/navigation/coordinate.h
36
38
  /tool/navigation/EGM.h
37
39
  /tool/navigation/MagneticField.h
data/exe/gps_pvt CHANGED
@@ -6,7 +6,7 @@ require 'gps_pvt'
6
6
 
7
7
  $stderr.puts <<__STRING__
8
8
  Usage: #{__FILE__} GPS_file1 GPS_file2 ...
9
- As GPS_file, rinex_nav(*.YYn, *.YYh, *.YYq), rinex_obs(*.YYo), and ubx(*.ubx) format are currently supported.
9
+ As GPS_file, rinex_nav(*.YYn, *.YYh, *.YYq, *.YYg), rinex_obs(*.YYo), and ubx(*.ubx) format are currently supported.
10
10
  File format is automatically determined based on its extention described in above parentheses.
11
11
  If you want to specify its format manually, --rinex_(nav|obs)=file_name or --ubx=file_name are available.
12
12
  Supported RINEX versions are 2 and 3.
@@ -63,7 +63,7 @@ options.reject!{|opt|
63
63
  files.collect!{|fname, ftype|
64
64
  raise "File not found: #{fname}" unless File::exist?(fname)
65
65
  ftype ||= case fname
66
- when /\.\d{2}[nhq]$/; :rinex_nav
66
+ when /\.\d{2}[nhqg]$/; :rinex_nav
67
67
  when /\.\d{2}o$/; :rinex_obs
68
68
  when /\.ubx$/; :ubx
69
69
  else