1 | #ifndef EPHEMERIS_H
|
---|
2 | #define EPHEMERIS_H
|
---|
3 |
|
---|
4 | #include <newmat.h>
|
---|
5 | #include <QtCore>
|
---|
6 | #include <stdio.h>
|
---|
7 | #include <string>
|
---|
8 | #include "bnctime.h"
|
---|
9 | #include "bncconst.h"
|
---|
10 | #include "t_prn.h"
|
---|
11 | #include "gnss.h"
|
---|
12 |
|
---|
13 |
|
---|
14 | class t_orbCorr;
|
---|
15 | class t_clkCorr;
|
---|
16 |
|
---|
17 | class t_eph {
|
---|
18 | public:
|
---|
19 | enum e_type {unknown, GPS, QZSS, GLONASS, Galileo, SBAS, BDS, IRNSS};
|
---|
20 | enum e_checkState {unchecked, ok, bad, outdated, unhealthy};
|
---|
21 |
|
---|
22 | t_eph();
|
---|
23 | virtual ~t_eph();
|
---|
24 |
|
---|
25 | virtual e_type type() const = 0;
|
---|
26 | virtual QString toString(double version) const = 0;
|
---|
27 | virtual unsigned int IOD() const = 0;
|
---|
28 | virtual unsigned int isUnhealthy() const = 0;
|
---|
29 | virtual int slotNum() const {return 0;}
|
---|
30 | bncTime TOC() const {return _TOC;}
|
---|
31 | bool isNewerThan(const t_eph* eph) const {return earlierTime(eph, this);}
|
---|
32 | e_checkState checkState() const {return _checkState;}
|
---|
33 | void setCheckState(e_checkState checkState) {_checkState = checkState;}
|
---|
34 | t_prn prn() const {return _prn;}
|
---|
35 | t_irc getCrd(const bncTime& tt, ColumnVector& xc, ColumnVector& vv, bool useCorr) const;
|
---|
36 | void setOrbCorr(const t_orbCorr* orbCorr);
|
---|
37 | void setClkCorr(const t_clkCorr* clkCorr);
|
---|
38 | const QDateTime& receptDateTime() const {return _receptDateTime;}
|
---|
39 | const QString receptStaID() const {return _receptStaID;}
|
---|
40 | static QString rinexDateStr(const bncTime& tt, const t_prn& prn, double version);
|
---|
41 | static QString rinexDateStr(const bncTime& tt, const QString& prnStr, double version);
|
---|
42 | static bool earlierTime(const t_eph* eph1, const t_eph* eph2) {return eph1->_TOC < eph2->_TOC;}
|
---|
43 | static bool prnSort(const t_eph* eph1, const t_eph* eph2) {return eph1->prn() < eph2->prn();}
|
---|
44 |
|
---|
45 | protected:
|
---|
46 | virtual t_irc position(int GPSweek, double GPSweeks, double* xc, double* vv) const = 0;
|
---|
47 | t_prn _prn;
|
---|
48 | bncTime _TOC;
|
---|
49 | QDateTime _receptDateTime;
|
---|
50 | QString _receptStaID;
|
---|
51 | e_checkState _checkState;
|
---|
52 | t_orbCorr* _orbCorr;
|
---|
53 | t_clkCorr* _clkCorr;
|
---|
54 | };
|
---|
55 |
|
---|
56 |
|
---|
57 | class t_ephGPS : public t_eph {
|
---|
58 | friend class t_ephEncoder;
|
---|
59 | friend class RTCM3Decoder;
|
---|
60 | public:
|
---|
61 | t_ephGPS() {
|
---|
62 | _clock_bias = 0.0;
|
---|
63 | _clock_drift = 0.0;
|
---|
64 | _clock_driftrate = 0.0;
|
---|
65 | _IODE = 0.0;
|
---|
66 | _Crs = 0.0;
|
---|
67 | _Delta_n = 0.0;
|
---|
68 | _M0 = 0.0;
|
---|
69 | _Cuc = 0.0;
|
---|
70 | _e = 0.0;
|
---|
71 | _Cus = 0.0;
|
---|
72 | _sqrt_A = 0.0;
|
---|
73 | _TOEsec = 0.0;
|
---|
74 | _Cic = 0.0;
|
---|
75 | _OMEGA0 = 0.0;
|
---|
76 | _Cis = 0.0;
|
---|
77 | _i0 = 0.0;
|
---|
78 | _Crc = 0.0;
|
---|
79 | _omega = 0.0;
|
---|
80 | _OMEGADOT = 0.0;
|
---|
81 | _IDOT = 0.0;
|
---|
82 | _L2Codes = 0.0;
|
---|
83 | _TOEweek = 0.0;
|
---|
84 | _L2PFlag = 0.0;
|
---|
85 | _ura = 0.0;
|
---|
86 | _health = 0.0;
|
---|
87 | _TGD = 0.0;
|
---|
88 | _IODC = 0.0;
|
---|
89 | _TOT = 0.0;
|
---|
90 | _fitInterval = 0.0;
|
---|
91 | _receptStaID = "";
|
---|
92 | }
|
---|
93 | t_ephGPS(double rnxVersion, const QStringList& lines);
|
---|
94 | virtual ~t_ephGPS() {}
|
---|
95 |
|
---|
96 | virtual e_type type() const {
|
---|
97 | switch (_prn.system()) {
|
---|
98 | case 'J':
|
---|
99 | return t_eph::QZSS;
|
---|
100 | case 'I':
|
---|
101 | return t_eph::IRNSS;
|
---|
102 | };
|
---|
103 | return t_eph::GPS;
|
---|
104 | }
|
---|
105 | virtual QString toString(double version) const;
|
---|
106 | virtual unsigned int IOD() const { return static_cast<unsigned int>(_IODE); }
|
---|
107 | virtual unsigned int isUnhealthy() const { return static_cast<unsigned int>(_health); }
|
---|
108 | double TGD() const {return _TGD;} // Timing Group Delay (P1-P2 DCB)
|
---|
109 |
|
---|
110 | private:
|
---|
111 | virtual t_irc position(int GPSweek, double GPSweeks, double* xc, double* vv) const;
|
---|
112 |
|
---|
113 | double _clock_bias; // [s]
|
---|
114 | double _clock_drift; // [s/s]
|
---|
115 | double _clock_driftrate; // [s/s^2]
|
---|
116 |
|
---|
117 | double _IODE; // IODEC in case of IRNSS
|
---|
118 | double _Crs; // [m]
|
---|
119 | double _Delta_n; // [rad/s]
|
---|
120 | double _M0; // [rad]
|
---|
121 |
|
---|
122 | double _Cuc; // [rad]
|
---|
123 | double _e; //
|
---|
124 | double _Cus; // [rad]
|
---|
125 | double _sqrt_A; // [m^0.5]
|
---|
126 |
|
---|
127 | double _TOEsec; // [s]
|
---|
128 | double _Cic; // [rad]
|
---|
129 | double _OMEGA0; // [rad]
|
---|
130 | double _Cis; // [rad]
|
---|
131 |
|
---|
132 | double _i0; // [rad]
|
---|
133 | double _Crc; // [m]
|
---|
134 | double _omega; // [rad]
|
---|
135 | double _OMEGADOT; // [rad/s]
|
---|
136 |
|
---|
137 | double _IDOT; // [rad/s]
|
---|
138 | double _L2Codes; // Codes on L2 channel (not valid for IRNSS)
|
---|
139 | double _TOEweek;
|
---|
140 | double _L2PFlag; // L2 P data flag (not valid for IRNSS and QZSS)
|
---|
141 |
|
---|
142 | mutable double _ura; // SV accuracy [m]
|
---|
143 | double _health; // SV health
|
---|
144 | double _TGD; // [s]
|
---|
145 | double _IODC; // (not valid for IRNSS)
|
---|
146 |
|
---|
147 | double _TOT; // Transmission time
|
---|
148 | double _fitInterval; // Fit interval in hours (not valid for IRNSS)
|
---|
149 | };
|
---|
150 |
|
---|
151 | class t_ephGlo : public t_eph {
|
---|
152 | friend class t_ephEncoder;
|
---|
153 | friend class RTCM3Decoder;
|
---|
154 | public:
|
---|
155 | t_ephGlo() {
|
---|
156 | _xv.ReSize(6); _xv = 0.0;
|
---|
157 | _gps_utc = 0.0;
|
---|
158 | _tau = 0.0;
|
---|
159 | _gamma = 0.0;
|
---|
160 | _tki = 0.0;
|
---|
161 | _x_pos = 0.0;
|
---|
162 | _x_velocity = 0.0;
|
---|
163 | _x_acceleration = 0.0;
|
---|
164 | _health = 0.0;
|
---|
165 | _y_pos = 0.0;
|
---|
166 | _y_velocity = 0.0;
|
---|
167 | _y_acceleration = 0.0;
|
---|
168 | _frequency_number = 0.0;
|
---|
169 | _z_pos = 0.0;
|
---|
170 | _z_velocity = 0.0;
|
---|
171 | _z_acceleration = 0.0;
|
---|
172 | _E = 0.0;
|
---|
173 | _almanac_health = 0.0;
|
---|
174 | _almanac_health_availablility_indicator = 0.0;
|
---|
175 | _additional_data_availability = 0.0;
|
---|
176 | _tauC = 0.0;
|
---|
177 | _P1 = 0.0;
|
---|
178 | _P2 = 0.0;
|
---|
179 | _P3 = 0.0;
|
---|
180 | _NA = 0.0;
|
---|
181 | _M_P = 0.0;
|
---|
182 | _M_l3 = 0.0;
|
---|
183 | _M_delta_tau = 0.0;
|
---|
184 | _M_P4 = 0.0;
|
---|
185 | _M_FT = 0.0;
|
---|
186 | _M_NT = 0.0;
|
---|
187 | _M_M = 0.0;
|
---|
188 | _M_N4 = 0.0;
|
---|
189 | _M_tau_GPS = 0.0;
|
---|
190 | _M_l5 = 0.0;
|
---|
191 | _receptStaID = "";
|
---|
192 | _flags_unknown = true;
|
---|
193 | }
|
---|
194 | t_ephGlo(double rnxVersion, const QStringList& lines);
|
---|
195 | virtual ~t_ephGlo() {}
|
---|
196 |
|
---|
197 | virtual e_type type() const {return t_eph::GLONASS;}
|
---|
198 | virtual QString toString(double version) const;
|
---|
199 | virtual unsigned int IOD() const;
|
---|
200 | virtual unsigned int isUnhealthy() const;
|
---|
201 | virtual int slotNum() const {return int(_frequency_number);}
|
---|
202 |
|
---|
203 | private:
|
---|
204 | virtual t_irc position(int GPSweek, double GPSweeks, double* xc, double* vv) const;
|
---|
205 | static ColumnVector glo_deriv(double /* tt */, const ColumnVector& xv, double* acc);
|
---|
206 |
|
---|
207 | mutable bncTime _tt; // time
|
---|
208 | mutable ColumnVector _xv; // status vector (position, velocity) at time _tt
|
---|
209 |
|
---|
210 | double _gps_utc;
|
---|
211 | double _tau; // [s]
|
---|
212 | double _gamma; // [-]
|
---|
213 | mutable double _tki; // message frame time
|
---|
214 |
|
---|
215 | double _x_pos; // [km]
|
---|
216 | double _x_velocity; // [km/s]
|
---|
217 | double _x_acceleration; // [km/s^2]
|
---|
218 | double _health; // 0 = O.K. MSB of Bn word
|
---|
219 |
|
---|
220 | double _y_pos; // [km]
|
---|
221 | double _y_velocity; // [km/s]
|
---|
222 | double _y_acceleration; // [km/s^2]
|
---|
223 | double _frequency_number; // ICD-GLONASS data position
|
---|
224 |
|
---|
225 | double _z_pos; // [km]
|
---|
226 | double _z_velocity; // [km/s]
|
---|
227 | double _z_acceleration; // [km/s^2]
|
---|
228 | double _E; // Age of Information [days]
|
---|
229 |
|
---|
230 | double _almanac_health; // Cn word
|
---|
231 | double _almanac_health_availablility_indicator;
|
---|
232 |
|
---|
233 | double _additional_data_availability; //
|
---|
234 | double _tauC; // GLONASS time scale correction to UTC(SU) time [sec]
|
---|
235 | double _P1; // flag of the immediate data updating [-]
|
---|
236 | double _P2; // flag of oddness or evenness of the value of tb for intervals 30 or 60 minutes [-]
|
---|
237 | double _P3; // flag indicating a number of satellites for which almanac is transmitted within given frame [-]
|
---|
238 | double _NA; // calendar day number within the 4-year period [days]
|
---|
239 |
|
---|
240 | double _M_P; // control segment parameter that indicates the satellite operation mode with respect of time parameters
|
---|
241 | double _M_l3; // health flag
|
---|
242 | double _M_delta_tau; // [sec]
|
---|
243 | double _M_P4; // flag to show that ephemeris parameters are present [-]
|
---|
244 | double _M_FT; // Indicator for predicted satellite User Range Accuracy (URAI) [-]
|
---|
245 | double _M_NT; // current date, calendar number of day within 4-year interval [days]
|
---|
246 | double _M_M; // type of satellite transmitting navigation signal: 0 = GLONASS, 1 = GLONASS-M satellite [-]
|
---|
247 | double _M_N4; // 4-year interval number starting from 1996
|
---|
248 | double _M_tau_GPS; // correction to GPS time relative to GLONASS time [days]
|
---|
249 | double _M_l5; // health flag
|
---|
250 | bool _flags_unknown; // status and health flags are unknown (rnx version < 3.05) or known (rnx version >= 3.05)
|
---|
251 | };
|
---|
252 |
|
---|
253 | class t_ephGal : public t_eph {
|
---|
254 | friend class t_ephEncoder;
|
---|
255 | friend class RTCM3Decoder;
|
---|
256 | public:
|
---|
257 | t_ephGal() {
|
---|
258 | _clock_bias = 0.0;
|
---|
259 | _clock_drift = 0.0;
|
---|
260 | _clock_driftrate = 0.0;
|
---|
261 | _IODnav = 0.0;
|
---|
262 | _Crs = 0.0;
|
---|
263 | _Delta_n = 0.0;
|
---|
264 | _M0 = 0.0;
|
---|
265 | _Cuc = 0.0;
|
---|
266 | _e = 0.0;
|
---|
267 | _Cus = 0.0;
|
---|
268 | _sqrt_A = 0.0;
|
---|
269 | _TOEsec = 0.0;
|
---|
270 | _Cic = 0.0;
|
---|
271 | _OMEGA0 = 0.0;
|
---|
272 | _Cis = 0.0;
|
---|
273 | _i0 = 0.0;
|
---|
274 | _Crc = 0.0;
|
---|
275 | _omega = 0.0;
|
---|
276 | _OMEGADOT = 0.0;
|
---|
277 | _IDOT = 0.0;
|
---|
278 | _TOEweek = 0.0;
|
---|
279 | _SISA = 0.0;
|
---|
280 | _E5aHS = 0.0;
|
---|
281 | _E5bHS = 0.0;
|
---|
282 | _E1_bHS = 0.0;
|
---|
283 | _BGD_1_5A = 0.0;
|
---|
284 | _BGD_1_5B = 0.0;
|
---|
285 | _TOT = 0.0;
|
---|
286 | _receptStaID = "";
|
---|
287 | };
|
---|
288 | t_ephGal(double rnxVersion, const QStringList& lines);
|
---|
289 | virtual ~t_ephGal() {}
|
---|
290 |
|
---|
291 | virtual QString toString(double version) const;
|
---|
292 | virtual e_type type() const {return t_eph::Galileo;}
|
---|
293 | virtual unsigned int IOD() const { return static_cast<unsigned long>(_IODnav); }
|
---|
294 | virtual unsigned int isUnhealthy() const;
|
---|
295 |
|
---|
296 | private:
|
---|
297 | virtual t_irc position(int GPSweek, double GPSweeks, double* xc, double* vv) const;
|
---|
298 |
|
---|
299 | double _clock_bias; // [s]
|
---|
300 | double _clock_drift; // [s/s]
|
---|
301 | double _clock_driftrate; // [s/s^2]
|
---|
302 |
|
---|
303 | double _IODnav;
|
---|
304 | double _Crs; // [m]
|
---|
305 | double _Delta_n; // [rad/s]
|
---|
306 | double _M0; // [rad]
|
---|
307 |
|
---|
308 | double _Cuc; // [rad]
|
---|
309 | double _e; //
|
---|
310 | double _Cus; // [rad]
|
---|
311 | double _sqrt_A; // [m^0.5]
|
---|
312 |
|
---|
313 | double _TOEsec; // [s]
|
---|
314 | double _Cic; // [rad]
|
---|
315 | double _OMEGA0; // [rad]
|
---|
316 | double _Cis; // [rad]
|
---|
317 |
|
---|
318 | double _i0; // [rad]
|
---|
319 | double _Crc; // [m]
|
---|
320 | double _omega; // [rad]
|
---|
321 | double _OMEGADOT; // [rad/s]
|
---|
322 |
|
---|
323 | double _IDOT; // [rad/s]
|
---|
324 | double _TOEweek;
|
---|
325 | // spare
|
---|
326 |
|
---|
327 | mutable double _SISA; // Signal In Space Accuracy
|
---|
328 | double _E5aHS; // [0..3] E5a Health Status
|
---|
329 | double _E5bHS; // [0..3] E5b Health Status
|
---|
330 | double _E1_bHS; // [0..3] E1-b Health Status
|
---|
331 | double _BGD_1_5A; // group delay [s]
|
---|
332 | double _BGD_1_5B; // group delay [s]
|
---|
333 |
|
---|
334 | double _TOT; // [s]
|
---|
335 | /** Data comes from I/NAV when <code>true</code> */
|
---|
336 | bool _inav;
|
---|
337 | /** Data comes from F/NAV when <code>true</code> */
|
---|
338 | bool _fnav;
|
---|
339 | /** EE Data is not valid */
|
---|
340 | bool _e1DataInValid;
|
---|
341 | /** E5A Data is not valid */
|
---|
342 | bool _e5aDataInValid;
|
---|
343 | /** E5B Data is not valid */
|
---|
344 | bool _e5bDataInValid;
|
---|
345 | };
|
---|
346 |
|
---|
347 | class t_ephSBAS : public t_eph {
|
---|
348 | friend class t_ephEncoder;
|
---|
349 | friend class RTCM3Decoder;
|
---|
350 | public:
|
---|
351 | t_ephSBAS() {
|
---|
352 | _IODN = 0;
|
---|
353 | _TOT = 0.0;
|
---|
354 | _agf0 = 0.0;
|
---|
355 | _agf1 = 0.0;
|
---|
356 | _x_pos = 0.0;
|
---|
357 | _x_velocity = 0.0;
|
---|
358 | _x_acceleration = 0.0;
|
---|
359 | _y_pos = 0.0;
|
---|
360 | _y_velocity = 0.0;
|
---|
361 | _y_acceleration = 0.0;
|
---|
362 | _z_pos = 0.0;
|
---|
363 | _z_velocity = 0.0;
|
---|
364 | _z_acceleration = 0.0;
|
---|
365 | _ura = 0.0;
|
---|
366 | _health = 0.0;
|
---|
367 | _receptStaID = "";
|
---|
368 | }
|
---|
369 | t_ephSBAS(double rnxVersion, const QStringList& lines);
|
---|
370 | virtual ~t_ephSBAS() {}
|
---|
371 |
|
---|
372 | virtual e_type type() const {return t_eph::SBAS;}
|
---|
373 | virtual unsigned int IOD() const;
|
---|
374 | virtual unsigned int isUnhealthy() const { return static_cast<unsigned int>(_health); }
|
---|
375 | virtual QString toString(double version) const;
|
---|
376 |
|
---|
377 | private:
|
---|
378 | virtual t_irc position(int GPSweek, double GPSweeks, double* xc, double* vv) const;
|
---|
379 |
|
---|
380 | int _IODN;
|
---|
381 | double _TOT; // not used (set to 0.9999e9)
|
---|
382 | double _agf0; // [s] clock correction
|
---|
383 | double _agf1; // [s/s] clock correction drift
|
---|
384 |
|
---|
385 | double _x_pos; // [m]
|
---|
386 | double _x_velocity; // [m/s]
|
---|
387 | double _x_acceleration; // [m/s^2]
|
---|
388 |
|
---|
389 | double _y_pos; // [m]
|
---|
390 | double _y_velocity; // [m/s]
|
---|
391 | double _y_acceleration; // [m/s^2]
|
---|
392 |
|
---|
393 | double _z_pos; // [m]
|
---|
394 | double _z_velocity; // [m/s]
|
---|
395 | double _z_acceleration; // [m/s^2]
|
---|
396 |
|
---|
397 | mutable double _ura;
|
---|
398 | double _health;
|
---|
399 | };
|
---|
400 |
|
---|
401 | class t_ephBDS : public t_eph {
|
---|
402 | friend class t_ephEncoder;
|
---|
403 | friend class RTCM3Decoder;
|
---|
404 | public:
|
---|
405 | t_ephBDS() {
|
---|
406 | _TOT = 0.0;
|
---|
407 | _AODE = 0;
|
---|
408 | _AODC = 0;
|
---|
409 | _URAI = 0;
|
---|
410 | _URA = 0.0;
|
---|
411 | _clock_bias = 0.0;
|
---|
412 | _clock_drift = 0.0;
|
---|
413 | _clock_driftrate = 0.0;
|
---|
414 | _Crs = 0.0;
|
---|
415 | _Delta_n = 0.0;
|
---|
416 | _M0 = 0.0;
|
---|
417 | _Cuc = 0.0;
|
---|
418 | _e = 0.0;
|
---|
419 | _Cus = 0.0;
|
---|
420 | _sqrt_A = 0.0;
|
---|
421 | _Cic = 0.0;
|
---|
422 | _OMEGA0 = 0.0;
|
---|
423 | _Cis = 0.0;
|
---|
424 | _i0 = 0.0;
|
---|
425 | _Crc = 0.0;
|
---|
426 | _omega = 0.0;
|
---|
427 | _OMEGADOT = 0.0;
|
---|
428 | _IDOT = 0.0;
|
---|
429 | _TGD1 = 0.0;
|
---|
430 | _TGD2 = 0.0;
|
---|
431 | _SatH1 = 0.0;
|
---|
432 | _TOW = 0.0;
|
---|
433 | _TOEsec = 0.0;
|
---|
434 | _TOEweek =-1.0;
|
---|
435 | _receptStaID = "";
|
---|
436 | }
|
---|
437 | t_ephBDS(double rnxVersion, const QStringList& lines);
|
---|
438 | virtual ~t_ephBDS() {}
|
---|
439 |
|
---|
440 | virtual e_type type() const {return t_eph::BDS;}
|
---|
441 | virtual unsigned int IOD() const;
|
---|
442 | virtual unsigned int isUnhealthy() const { return static_cast<unsigned int>(_SatH1); }
|
---|
443 | virtual QString toString(double version) const;
|
---|
444 |
|
---|
445 | private:
|
---|
446 | virtual t_irc position(int GPSweek, double GPSweeks, double* xc, double* vv) const;
|
---|
447 |
|
---|
448 | double _TOT;
|
---|
449 | bncTime _TOE;
|
---|
450 | int _AODE;
|
---|
451 | int _AODC;
|
---|
452 | int _URAI; // [0..15] index from RTCM stream
|
---|
453 | mutable double _URA; // user range accuracy [m]
|
---|
454 | double _clock_bias; // [s]
|
---|
455 | double _clock_drift; // [s/s]
|
---|
456 | double _clock_driftrate; // [s/s^2]
|
---|
457 | double _Crs; // [m]
|
---|
458 | double _Delta_n; // [rad/s]
|
---|
459 | double _M0; // [rad]
|
---|
460 | double _Cuc; // [rad]
|
---|
461 | double _e; //
|
---|
462 | double _Cus; // [rad]
|
---|
463 | double _sqrt_A; // [m^0.5]
|
---|
464 | double _Cic; // [rad]
|
---|
465 | double _OMEGA0; // [rad]
|
---|
466 | double _Cis; // [rad]
|
---|
467 | double _i0; // [rad]
|
---|
468 | double _Crc; // [m]
|
---|
469 | double _omega; // [rad]
|
---|
470 | double _OMEGADOT; // [rad/s]
|
---|
471 | double _IDOT; // [rad/s]
|
---|
472 | double _TGD1; // [s]
|
---|
473 | double _TGD2; // [s]
|
---|
474 | int _SatH1; //
|
---|
475 | double _TOW; // [s] of BDT week
|
---|
476 | double _TOEsec; // [s] of BDT week
|
---|
477 | double _TOEweek; // BDT week will be set only in case of RINEX file input
|
---|
478 | };
|
---|
479 | #endif
|
---|