gps_pvt 0.10.0 → 0.10.2

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: 940d644f51b5c4195a040d31bbc9ae7ab162ef90f1d55deafc651f024e17c8a7
4
- data.tar.gz: f4e4669b798d7774595ae3fa6a18099b62b8290862f1e0e72584bec20e77d2fb
3
+ metadata.gz: 291357170b42fbbecccdac288a218cd8a1b0730db5b93e9adb43c4635674a386
4
+ data.tar.gz: 2b7da00981f6a55db29dbfc88083eb6806ea744bbc0cc0b1a97fd2939bc95496
5
5
  SHA512:
6
- metadata.gz: f64a9e456f5b9f88f471e26d1d47414e8bb5f9d7c64bf68b19b10cda6a53f8335379f13557bf214b8fd917807e2cd317cc86131bafd7ba32911f0dfa45460023
7
- data.tar.gz: e3f9f700aa9a4f7aab686f0eb671c76d1ce795fca54cd662a624d24de2515b3e667b382219e90238e514c0527351f4422dcb0171b49d98a3f1d8fe934c936064
6
+ metadata.gz: bc697b14d15e9ebb4d445e076284c97bf349df98c4f146f4ac96ff1875f1a6c9cac328e26af533a8abca89ae792b6ad70e1ce1172f0e97117c5dc28518105d35
7
+ data.tar.gz: 0536ce452ad85fe1e460e7c6e1dd577c63148505e275a4fa5bcb749d457c7fb80315833151d2aab54bd8f5a92b4b59941d7818d903de676823501d16d0d2a930
data/README.md CHANGED
@@ -110,17 +110,18 @@ receiver.solver.gps_options.elevation_mask = Math::PI / 180 * 10 # example 10 [d
110
110
 
111
111
  # Precise control of properties for each satellite and for each iteration
112
112
  receiver.solver.hooks[:relative_property] = proc{|prn, rel_prop, meas, rcv_e, t_arv, usr_pos, usr_vel|
113
- weight, range_c, range_r, rate_rel_neg, *los_neg = rel_prop # relative property
113
+ weight_range, range_c, range_r, weight_rate, rate_rel_neg, *los_neg = rel_prop # relative property
114
114
  # meas is measurement represented by pseudo range of the selected satellite.
115
115
  # rcv_e, t_arv, usr_pos, usr_vel are temporary solution of
116
116
  # receiver clock error [m], time of arrival [s], user position and velocity in ECEF, respectively.
117
+ # Note: weight_rate is added since v0.10.1
117
118
 
118
- weight = 1 # quick example: identical weight for each visible satellite
119
+ weight_range = 1 # quick example: identical weight for each visible satellite
119
120
  # or weight based on elevation, for example:
120
121
  # elv = GPS_PVT::Coordinate::ENU::relative_rel(GPS_PVT::Coordinate::XYZ::new(*los_neg), usr_pos).elevation
121
- # weight = (Math::sin(elv)/0.8)**2
122
+ # weight_range = (Math::sin(elv)/0.8)**2
122
123
 
123
- [weight, range_c, range_r, rate_rel_neg] + los_neg # must return relative property
124
+ [weight_range, range_c, range_r, weight_rate, rate_rel_neg] + los_neg # must return relative property
124
125
  }
125
126
 
126
127
  # Range correction (since v0.3.0)
@@ -171,7 +172,7 @@ Utility to get and dump GPS files. After installation of gps_pvt, to type
171
172
 
172
173
  $ gps_get file_or_URI(s) (options) > output_file
173
174
 
174
- saves data into output_file by using redirection. http(s), ftp, ntrip, and supl can be used as scheme of URI. Serial port is also supported. Note that compressed data is automatically decompressed before output. The following options are available.
175
+ saves data into output_file by using redirection. http(s), ftp, ntrip, and supl can be used as scheme of URI. Serial port is also supported. Note that compressed data is automatically decompressed before output. It is also noted that supl received data are filtered to its LPP/RRLP content, and printed in JSON format. The following options are available.
175
176
 
176
177
  | key | value | comment | since |
177
178
  ----|----|----|----