gps_pvt 0.6.4 → 0.7.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: 31809928c7f846ecf08b39d9824f57d8c7e5102f9dac6b309701669ff6e4adda
4
- data.tar.gz: 79c384577d9658337d500f4b2144365c0b65d9183115013a15b6f22729d46a57
3
+ metadata.gz: 5d2ab5f33d6ba6233e7a52b05ac2f89306e181240bb2510d6ffe697467278178
4
+ data.tar.gz: d592b929d56554cb3a1e82e734d90366e32ac083eeacfc8535457a5518952075
5
5
  SHA512:
6
- metadata.gz: e25c8140206b57193ba2ba699d413f5e1e1321c0e20a65d852a22bc8e3f7892c296ea1896e95e254911b4e0fbd22ff9c9d904df2c3f1d47eb4c90642a940226a
7
- data.tar.gz: ec14caf3d7c0cadebd61eeadc4e133da2d839d9aa1aca93d50807016f26833e87e019f0609e81907c7aa44aed7816ae33ddc996923a4a2ffbedc43141e292ff1
6
+ metadata.gz: 826e7a745be07aad5c86b075e5285d0e31212b6fe83cce8c7af67b500645a698e2c60bd67e6f0ecc6ccd114db2754286941c9e90a72deab7b3219132028cf242
7
+ data.tar.gz: f11f9c72d8bd30f72e77969eb694ce5a5b7d25db5b251e275b2840511d1836275ba5d7adf1829cbeef691f423c7ddf3a5defbb8919f8bd93bc6cd532649bbd4b
data/README.md CHANGED
@@ -41,6 +41,7 @@ The format of file is automatically determined with its extension, such as .ubx
41
41
  | --ubx=file_or_URI | [U-blox](https://www.u-blox.com/) dedicated format |
42
42
  | --sp3=file_or_URI | [Standard Product 3 Orbit Format](https://files.igs.org/pub/data/format/sp3c.txt) (supported gps_pvt version >= 0.6.0) |
43
43
  | --antex=file_or_URI | [Antenna Exchange Format](https://igs.org/wg/antenna#files) (supported gps_pvt version >= 0.6.0) |
44
+ | --rinex_clk=file_or_URI | [RINEX clock](https://files.igs.org/pub/data/format/rinex_clock304.txt) file (supported gps_pvt version >= 0.7.0) |
44
45
 
45
46
  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
46
47
 
data/Rakefile CHANGED
@@ -56,6 +56,7 @@ namespace :git do
56
56
  tool/navigation/MagneticField.h
57
57
  tool/navigation/NTCM.h
58
58
  tool/navigation/RINEX.h
59
+ tool/navigation/RINEX_Clock.h
59
60
  tool/navigation/WGS84.h
60
61
  tool/navigation/SP3.h
61
62
  tool/navigation/ANTEX.h
data/exe/gps_pvt CHANGED
@@ -24,7 +24,7 @@ misc_options = {}
24
24
  files = ARGV.collect{|arg|
25
25
  next [arg, nil] unless arg =~ /^--([^=]+)=?/
26
26
  k, v = [$1.downcase.to_sym, $']
27
- next [v, k] if [:rinex_nav, :rinex_obs, :ubx, :sp3, :antex].include?(k) # file type
27
+ next [v, k] if [:rinex_nav, :rinex_obs, :ubx, :sp3, :antex, :rinex_clk].include?(k) # file type
28
28
  options << [$1.to_sym, $']
29
29
  nil
30
30
  }.compact
@@ -74,6 +74,7 @@ files.collect!{|fname, ftype|
74
74
  when /\.ubx$/; :ubx
75
75
  when /\.sp3(?:\.Z)?$/; :sp3
76
76
  when /\.atx(?:\.Z)?$/; :antex
77
+ when /\.clk$/; :rinex_clk
77
78
  else
78
79
  raise "Format cannot be guessed, use --(format, ex. rinex_nav)=#{fname}"
79
80
  end
@@ -145,6 +146,7 @@ files.each{|fname, ftype|
145
146
  when :rinex_nav; rcv.parse_rinex_nav(fname)
146
147
  when :sp3; rcv.attach_sp3(fname)
147
148
  when :antex; rcv.attach_antex(fname)
149
+ when :rinex_clk; rcv.attach_rinex_clk(fname)
148
150
  end
149
151
  }
150
152