source: ntrip/trunk/BNC/src/ephemeris.cpp@ 8456

Last change on this file since 8456 was 8456, checked in by stuerze, 6 years ago

bug fixed regarding TOT in BDS and SBAS RTCM3 ephemeris message

File size: 47.1 KB
RevLine 
[1025]1#include <sstream>
[2234]2#include <iostream>
[1025]3#include <iomanip>
[1239]4#include <cstring>
[1025]5
[2234]6#include <newmatio.h>
7
[1025]8#include "ephemeris.h"
[2221]9#include "bncutils.h"
[2285]10#include "bnctime.h"
[5070]11#include "bnccore.h"
[5839]12#include "bncutils.h"
[6141]13#include "satObs.h"
[6044]14#include "pppInclude.h"
[6400]15#include "pppModel.h"
[1025]16
17using namespace std;
18
[5749]19// Constructor
20////////////////////////////////////////////////////////////////////////////
21t_eph::t_eph() {
[6518]22 _checkState = unchecked;
23 _orbCorr = 0;
24 _clkCorr = 0;
[5749]25}
[7278]26// Destructor
27////////////////////////////////////////////////////////////////////////////
28t_eph::~t_eph() {
29 if (_orbCorr)
30 delete _orbCorr;
31 if (_clkCorr)
32 delete _clkCorr;
33}
[5749]34
[7481]35//
[5749]36////////////////////////////////////////////////////////////////////////////
[6141]37void t_eph::setOrbCorr(const t_orbCorr* orbCorr) {
[7888]38 if (_orbCorr) {
39 delete _orbCorr;
40 _orbCorr = 0;
41 }
[6141]42 _orbCorr = new t_orbCorr(*orbCorr);
[5749]43}
44
[7481]45//
[5749]46////////////////////////////////////////////////////////////////////////////
[6141]47void t_eph::setClkCorr(const t_clkCorr* clkCorr) {
[7888]48 if (_clkCorr) {
49 delete _clkCorr;
50 _clkCorr = 0;
51 }
[6141]52 _clkCorr = new t_clkCorr(*clkCorr);
[5749]53}
54
[7481]55//
[5749]56////////////////////////////////////////////////////////////////////////////
[6109]57t_irc t_eph::getCrd(const bncTime& tt, ColumnVector& xc, ColumnVector& vv, bool useCorr) const {
[6518]58
[8419]59 if (_checkState == bad ||
60 _checkState == unhealthy) {
[6518]61 return failure;
62 }
[6556]63 const QVector<int> updateInt = QVector<int>() << 1 << 2 << 5 << 10 << 15 << 30
64 << 60 << 120 << 240 << 300 << 600
65 << 900 << 1800 << 3600 << 7200
66 << 10800;
[5749]67 xc.ReSize(4);
68 vv.ReSize(3);
[6213]69 if (position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data()) != success) {
70 return failure;
71 }
[5789]72 if (useCorr) {
[5839]73 if (_orbCorr && _clkCorr) {
[5849]74 double dtO = tt - _orbCorr->_time;
[6556]75 if (_orbCorr->_updateInt) {
76 dtO -= (0.5 * updateInt[_orbCorr->_updateInt]);
77 }
[5839]78 ColumnVector dx(3);
[5849]79 dx[0] = _orbCorr->_xr[0] + _orbCorr->_dotXr[0] * dtO;
80 dx[1] = _orbCorr->_xr[1] + _orbCorr->_dotXr[1] * dtO;
81 dx[2] = _orbCorr->_xr[2] + _orbCorr->_dotXr[2] * dtO;
82
[7133]83 RSW_to_XYZ(xc.Rows(1,3), vv.Rows(1,3), dx, dx);
[5849]84
[5839]85 xc[0] -= dx[0];
86 xc[1] -= dx[1];
87 xc[2] -= dx[2];
[5849]88
[7133]89 ColumnVector dv(3);
90 RSW_to_XYZ(xc.Rows(1,3), vv.Rows(1,3), _orbCorr->_dotXr, dv);
91
92 vv[0] -= dv[0];
93 vv[1] -= dv[1];
94 vv[2] -= dv[2];
95
[5849]96 double dtC = tt - _clkCorr->_time;
[6556]97 if (_clkCorr->_updateInt) {
98 dtC -= (0.5 * updateInt[_clkCorr->_updateInt]);
99 }
[7014]100 xc[3] += _clkCorr->_dClk + _clkCorr->_dotDClk * dtC + _clkCorr->_dotDotDClk * dtC * dtC;
[5839]101 }
102 else {
103 return failure;
104 }
[5749]105 }
106 return success;
107}
108
[6801]109//
110//////////////////////////////////////////////////////////////////////////////
111QString t_eph::rinexDateStr(const bncTime& tt, const t_prn& prn, double version) {
112 QString prnStr(prn.toString().c_str());
113 return rinexDateStr(tt, prnStr, version);
114}
115
116//
117//////////////////////////////////////////////////////////////////////////////
118QString t_eph::rinexDateStr(const bncTime& tt, const QString& prnStr, double version) {
119
120 QString datStr;
121
122 unsigned year, month, day, hour, min;
123 double sec;
124 tt.civil_date(year, month, day);
125 tt.civil_time(hour, min, sec);
126
127 QTextStream out(&datStr);
128
129 if (version < 3.0) {
130 QString prnHlp = prnStr.mid(1,2); if (prnHlp[0] == '0') prnHlp[0] = ' ';
131 out << prnHlp << QString(" %1 %2 %3 %4 %5%6")
132 .arg(year % 100, 2, 10, QChar('0'))
133 .arg(month, 2)
134 .arg(day, 2)
135 .arg(hour, 2)
136 .arg(min, 2)
137 .arg(sec, 5, 'f',1);
138 }
139 else {
140 out << prnStr << QString(" %1 %2 %3 %4 %5 %6")
141 .arg(year, 4)
142 .arg(month, 2, 10, QChar('0'))
143 .arg(day, 2, 10, QChar('0'))
144 .arg(hour, 2, 10, QChar('0'))
145 .arg(min, 2, 10, QChar('0'))
146 .arg(int(sec), 2, 10, QChar('0'));
147 }
148
149 return datStr;
150}
151
152// Constructor
153//////////////////////////////////////////////////////////////////////////////
154t_ephGPS::t_ephGPS(float rnxVersion, const QStringList& lines) {
155
156 const int nLines = 8;
157
158 if (lines.size() != nLines) {
159 _checkState = bad;
160 return;
161 }
162
163 // RINEX Format
164 // ------------
165 int fieldLen = 19;
166
167 int pos[4];
168 pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
169 pos[1] = pos[0] + fieldLen;
170 pos[2] = pos[1] + fieldLen;
171 pos[3] = pos[2] + fieldLen;
172
173 // Read eight lines
174 // ----------------
175 for (int iLine = 0; iLine < nLines; iLine++) {
176 QString line = lines[iLine];
177
178 if ( iLine == 0 ) {
[8204]179 QTextStream in(line.left(pos[1]).toLatin1());
[6801]180 int year, month, day, hour, min;
181 double sec;
182
[7139]183 QString prnStr, n;
[6880]184 in >> prnStr;
[7639]185
186 if (prnStr.size() == 1 &&
[8168]187 (prnStr[0] == 'G' ||
188 prnStr[0] == 'J' ||
189 prnStr[0] == 'I')) {
[7139]190 in >> n;
191 prnStr.append(n);
[6880]192 }
[7639]193
[6880]194 in >> year >> month >> day >> hour >> min >> sec;
[6801]195 if (prnStr.at(0) == 'G') {
196 _prn.set('G', prnStr.mid(1).toInt());
197 }
198 else if (prnStr.at(0) == 'J') {
199 _prn.set('J', prnStr.mid(1).toInt());
200 }
[8168]201 else if (prnStr.at(0) == 'I') {
202 _prn.set('I', prnStr.mid(1).toInt());
203 }
[6801]204 else {
205 _prn.set('G', prnStr.toInt());
206 }
207
208 if (year < 80) {
209 year += 2000;
210 }
211 else if (year < 100) {
212 year += 1900;
213 }
214
215 _TOC.set(year, month, day, hour, min, sec);
216
217 if ( readDbl(line, pos[1], fieldLen, _clock_bias ) ||
218 readDbl(line, pos[2], fieldLen, _clock_drift ) ||
219 readDbl(line, pos[3], fieldLen, _clock_driftrate) ) {
220 _checkState = bad;
221 return;
222 }
223 }
224
225 else if ( iLine == 1 ) {
226 if ( readDbl(line, pos[0], fieldLen, _IODE ) ||
227 readDbl(line, pos[1], fieldLen, _Crs ) ||
228 readDbl(line, pos[2], fieldLen, _Delta_n) ||
229 readDbl(line, pos[3], fieldLen, _M0 ) ) {
230 _checkState = bad;
231 return;
232 }
233 }
234
235 else if ( iLine == 2 ) {
236 if ( readDbl(line, pos[0], fieldLen, _Cuc ) ||
237 readDbl(line, pos[1], fieldLen, _e ) ||
238 readDbl(line, pos[2], fieldLen, _Cus ) ||
239 readDbl(line, pos[3], fieldLen, _sqrt_A) ) {
240 _checkState = bad;
241 return;
242 }
243 }
244
245 else if ( iLine == 3 ) {
246 if ( readDbl(line, pos[0], fieldLen, _TOEsec) ||
247 readDbl(line, pos[1], fieldLen, _Cic ) ||
248 readDbl(line, pos[2], fieldLen, _OMEGA0) ||
249 readDbl(line, pos[3], fieldLen, _Cis ) ) {
250 _checkState = bad;
251 return;
252 }
253 }
254
255 else if ( iLine == 4 ) {
256 if ( readDbl(line, pos[0], fieldLen, _i0 ) ||
257 readDbl(line, pos[1], fieldLen, _Crc ) ||
258 readDbl(line, pos[2], fieldLen, _omega ) ||
259 readDbl(line, pos[3], fieldLen, _OMEGADOT) ) {
260 _checkState = bad;
261 return;
262 }
263 }
264
[8168]265 else if ( iLine == 5 && type() != t_eph::IRNSS) {
[6801]266 if ( readDbl(line, pos[0], fieldLen, _IDOT ) ||
267 readDbl(line, pos[1], fieldLen, _L2Codes) ||
268 readDbl(line, pos[2], fieldLen, _TOEweek ) ||
269 readDbl(line, pos[3], fieldLen, _L2PFlag) ) {
270 _checkState = bad;
271 return;
272 }
273 }
[8168]274 else if ( iLine == 5 && type() == t_eph::IRNSS) {
275 if ( readDbl(line, pos[0], fieldLen, _IDOT ) ||
276 readDbl(line, pos[2], fieldLen, _TOEweek) ) {
277 _checkState = bad;
278 return;
279 }
280 }
[6801]281
[8168]282 else if ( iLine == 6 && type() != t_eph::IRNSS) {
[6801]283 if ( readDbl(line, pos[0], fieldLen, _ura ) ||
284 readDbl(line, pos[1], fieldLen, _health) ||
285 readDbl(line, pos[2], fieldLen, _TGD ) ||
286 readDbl(line, pos[3], fieldLen, _IODC ) ) {
287 _checkState = bad;
288 return;
289 }
290 }
[8168]291 else if ( iLine == 6 && type() == t_eph::IRNSS) {
292 if ( readDbl(line, pos[0], fieldLen, _ura ) ||
293 readDbl(line, pos[1], fieldLen, _health) ||
294 readDbl(line, pos[2], fieldLen, _TGD ) ) {
295 _checkState = bad;
296 return;
297 }
298 }
[6801]299
300 else if ( iLine == 7 ) {
301 if ( readDbl(line, pos[0], fieldLen, _TOT) ) {
302 _checkState = bad;
303 return;
304 }
305 readDbl(line, pos[1], fieldLen, _fitInterval); // _fitInterval optional
306 }
307 }
308}
309
[2222]310// Compute GPS Satellite Position (virtual)
[1025]311////////////////////////////////////////////////////////////////////////////
[6213]312t_irc t_ephGPS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
[1025]313
[8419]314 if (_checkState == bad ||
315 _checkState == unhealthy) {
[6518]316 return failure;
317 }
318
[1098]319 static const double omegaEarth = 7292115.1467e-11;
[5277]320 static const double gmGRS = 398.6005e12;
[1025]321
322 memset(xc, 0, 4*sizeof(double));
323 memset(vv, 0, 3*sizeof(double));
324
325 double a0 = _sqrt_A * _sqrt_A;
326 if (a0 == 0) {
[6213]327 return failure;
[1025]328 }
329
[5277]330 double n0 = sqrt(gmGRS/(a0*a0*a0));
[4018]331
332 bncTime tt(GPSweek, GPSweeks);
[4543]333 double tk = tt - bncTime(int(_TOEweek), _TOEsec);
[4018]334
[1025]335 double n = n0 + _Delta_n;
336 double M = _M0 + n*tk;
337 double E = M;
338 double E_last;
[8368]339 int nLoop = 0;
[1025]340 do {
341 E_last = E;
342 E = M + _e*sin(E);
[8368]343
344 if (++nLoop == 100) {
345 return failure;
346 }
347 } while ( fabs(E-E_last)*a0 > 0.001);
[1025]348 double v = 2.0*atan( sqrt( (1.0 + _e)/(1.0 - _e) )*tan( E/2 ) );
349 double u0 = v + _omega;
350 double sin2u0 = sin(2*u0);
351 double cos2u0 = cos(2*u0);
352 double r = a0*(1 - _e*cos(E)) + _Crc*cos2u0 + _Crs*sin2u0;
353 double i = _i0 + _IDOT*tk + _Cic*cos2u0 + _Cis*sin2u0;
354 double u = u0 + _Cuc*cos2u0 + _Cus*sin2u0;
355 double xp = r*cos(u);
356 double yp = r*sin(u);
[7481]357 double OM = _OMEGA0 + (_OMEGADOT - omegaEarth)*tk -
[4018]358 omegaEarth*_TOEsec;
[7278]359
[1025]360 double sinom = sin(OM);
361 double cosom = cos(OM);
362 double sini = sin(i);
363 double cosi = cos(i);
364 xc[0] = xp*cosom - yp*cosi*sinom;
365 xc[1] = xp*sinom + yp*cosi*cosom;
[7481]366 xc[2] = yp*sini;
367
[4018]368 double tc = tt - _TOC;
[2429]369 xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
[1025]370
371 // Velocity
372 // --------
373 double tanv2 = tan(v/2);
374 double dEdM = 1 / (1 - _e*cos(E));
[7278]375 double dotv = sqrt((1.0 + _e)/(1.0 - _e)) / cos(E/2)/cos(E/2) / (1 + tanv2*tanv2)
[1025]376 * dEdM * n;
377 double dotu = dotv + (-_Cuc*sin2u0 + _Cus*cos2u0)*2*dotv;
378 double dotom = _OMEGADOT - omegaEarth;
379 double doti = _IDOT + (-_Cic*sin2u0 + _Cis*cos2u0)*2*dotv;
[7278]380 double dotr = a0 * _e*sin(E) * dEdM * n
[1025]381 + (-_Crc*sin2u0 + _Crs*cos2u0)*2*dotv;
382 double dotx = dotr*cos(u) - r*sin(u)*dotu;
383 double doty = dotr*sin(u) + r*cos(u)*dotu;
384
385 vv[0] = cosom *dotx - cosi*sinom *doty // dX / dr
386 - xp*sinom*dotom - yp*cosi*cosom*dotom // dX / dOMEGA
387 + yp*sini*sinom*doti; // dX / di
388
389 vv[1] = sinom *dotx + cosi*cosom *doty
390 + xp*cosom*dotom - yp*cosi*sinom*dotom
391 - yp*sini*cosom*doti;
392
393 vv[2] = sini *doty + yp*cosi *doti;
[2429]394
395 // Relativistic Correction
396 // -----------------------
[7481]397 // correspondent to IGS convention and GPS ICD (and SSR standard)
[2429]398 xc[3] -= 2.0 * (xc[0]*vv[0] + xc[1]*vv[1] + xc[2]*vv[2]) / t_CST::c / t_CST::c;
[6213]399
400 return success;
[1025]401}
402
[6801]403// RINEX Format String
404//////////////////////////////////////////////////////////////////////////////
405QString t_ephGPS::toString(double version) const {
[2221]406
[6801]407 QString rnxStr = rinexDateStr(_TOC, _prn, version);
[2221]408
[6801]409 QTextStream out(&rnxStr);
[2221]410
[6801]411 out << QString("%1%2%3\n")
412 .arg(_clock_bias, 19, 'e', 12)
413 .arg(_clock_drift, 19, 'e', 12)
414 .arg(_clock_driftrate, 19, 'e', 12);
[2221]415
[6801]416 QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
[2221]417
[6801]418 out << QString(fmt)
419 .arg(_IODE, 19, 'e', 12)
420 .arg(_Crs, 19, 'e', 12)
421 .arg(_Delta_n, 19, 'e', 12)
422 .arg(_M0, 19, 'e', 12);
423
424 out << QString(fmt)
425 .arg(_Cuc, 19, 'e', 12)
426 .arg(_e, 19, 'e', 12)
427 .arg(_Cus, 19, 'e', 12)
428 .arg(_sqrt_A, 19, 'e', 12);
429
430 out << QString(fmt)
431 .arg(_TOEsec, 19, 'e', 12)
432 .arg(_Cic, 19, 'e', 12)
433 .arg(_OMEGA0, 19, 'e', 12)
434 .arg(_Cis, 19, 'e', 12);
435
436 out << QString(fmt)
437 .arg(_i0, 19, 'e', 12)
438 .arg(_Crc, 19, 'e', 12)
439 .arg(_omega, 19, 'e', 12)
440 .arg(_OMEGADOT, 19, 'e', 12);
441
[8168]442 if (type() == t_eph::IRNSS) {
443 out << QString(fmt)
444 .arg(_IDOT, 19, 'e', 12)
445 .arg("", 19, QChar(' '))
446 .arg(_TOEweek, 19, 'e', 12)
447 .arg("", 19, QChar(' '));
448 }
449 else {
450 out << QString(fmt)
451 .arg(_IDOT, 19, 'e', 12)
452 .arg(_L2Codes, 19, 'e', 12)
453 .arg(_TOEweek, 19, 'e', 12)
454 .arg(_L2PFlag, 19, 'e', 12);
455 }
[6801]456
[8168]457 if (type() == t_eph::IRNSS) {
458 out << QString(fmt)
459 .arg(_ura, 19, 'e', 12)
460 .arg(_health, 19, 'e', 12)
461 .arg(_TGD, 19, 'e', 12)
462 .arg("", 19, QChar(' '));
463 }
464 else {
465 out << QString(fmt)
466 .arg(_ura, 19, 'e', 12)
467 .arg(_health, 19, 'e', 12)
468 .arg(_TGD, 19, 'e', 12)
469 .arg(_IODC, 19, 'e', 12);
470 }
[6801]471
[7922]472 double tot = _TOT;
473 if (tot == 0.9999e9 && version < 3.0) {
474 tot = 0.0;
475 }
[8168]476 if (type() == t_eph::IRNSS) {
477 out << QString(fmt)
478 .arg(tot, 19, 'e', 12)
479 .arg("", 19, QChar(' '))
480 .arg("", 19, QChar(' '))
481 .arg("", 19, QChar(' '));
482 }
483 else {
484 out << QString(fmt)
485 .arg(tot, 19, 'e', 12)
486 .arg(_fitInterval, 19, 'e', 12)
487 .arg("", 19, QChar(' '))
488 .arg("", 19, QChar(' '));
489 }
[6801]490
491 return rnxStr;
[2221]492}
493
[6801]494// Constructor
495//////////////////////////////////////////////////////////////////////////////
496t_ephGlo::t_ephGlo(float rnxVersion, const QStringList& lines) {
[2221]497
[6801]498 const int nLines = 4;
499
500 if (lines.size() != nLines) {
501 _checkState = bad;
502 return;
[6518]503 }
504
[6801]505 // RINEX Format
506 // ------------
507 int fieldLen = 19;
[2221]508
[6801]509 int pos[4];
510 pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
511 pos[1] = pos[0] + fieldLen;
512 pos[2] = pos[1] + fieldLen;
513 pos[3] = pos[2] + fieldLen;
[2221]514
[6801]515 // Read four lines
516 // ---------------
517 for (int iLine = 0; iLine < nLines; iLine++) {
518 QString line = lines[iLine];
[2221]519
[6801]520 if ( iLine == 0 ) {
[8204]521 QTextStream in(line.left(pos[1]).toLatin1());
[6213]522
[6801]523 int year, month, day, hour, min;
524 double sec;
[2221]525
[7139]526 QString prnStr, n;
[6880]527 in >> prnStr;
[7639]528 if (prnStr.size() == 1 && prnStr[0] == 'R') {
[7139]529 in >> n;
530 prnStr.append(n);
[6880]531 }
532 in >> year >> month >> day >> hour >> min >> sec;
[6801]533 if (prnStr.at(0) == 'R') {
534 _prn.set('R', prnStr.mid(1).toInt());
535 }
536 else {
537 _prn.set('R', prnStr.toInt());
538 }
[2221]539
[6801]540 if (year < 80) {
541 year += 2000;
542 }
543 else if (year < 100) {
544 year += 1900;
545 }
[2221]546
[6801]547 _gps_utc = gnumleap(year, month, day);
[2221]548
[6801]549 _TOC.set(year, month, day, hour, min, sec);
550 _TOC = _TOC + _gps_utc;
[6213]551
[6801]552 if ( readDbl(line, pos[1], fieldLen, _tau ) ||
553 readDbl(line, pos[2], fieldLen, _gamma) ||
554 readDbl(line, pos[3], fieldLen, _tki ) ) {
555 _checkState = bad;
556 return;
557 }
[2221]558
[6801]559 _tau = -_tau;
560 }
561
562 else if ( iLine == 1 ) {
563 if ( readDbl(line, pos[0], fieldLen, _x_pos ) ||
564 readDbl(line, pos[1], fieldLen, _x_velocity ) ||
565 readDbl(line, pos[2], fieldLen, _x_acceleration) ||
566 readDbl(line, pos[3], fieldLen, _health ) ) {
567 _checkState = bad;
568 return;
569 }
570 }
571
572 else if ( iLine == 2 ) {
573 if ( readDbl(line, pos[0], fieldLen, _y_pos ) ||
574 readDbl(line, pos[1], fieldLen, _y_velocity ) ||
575 readDbl(line, pos[2], fieldLen, _y_acceleration ) ||
576 readDbl(line, pos[3], fieldLen, _frequency_number) ) {
577 _checkState = bad;
578 return;
579 }
580 }
581
582 else if ( iLine == 3 ) {
583 if ( readDbl(line, pos[0], fieldLen, _z_pos ) ||
584 readDbl(line, pos[1], fieldLen, _z_velocity ) ||
585 readDbl(line, pos[2], fieldLen, _z_acceleration) ||
586 readDbl(line, pos[3], fieldLen, _E ) ) {
587 _checkState = bad;
588 return;
589 }
590 }
591 }
592
593 // Initialize status vector
594 // ------------------------
595 _tt = _TOC;
596 _xv.ReSize(6);
597 _xv(1) = _x_pos * 1.e3;
598 _xv(2) = _y_pos * 1.e3;
599 _xv(3) = _z_pos * 1.e3;
600 _xv(4) = _x_velocity * 1.e3;
601 _xv(5) = _y_velocity * 1.e3;
602 _xv(6) = _z_velocity * 1.e3;
[2221]603}
604
[6801]605// Compute Glonass Satellite Position (virtual)
[2771]606////////////////////////////////////////////////////////////////////////////
[6801]607t_irc t_ephGlo::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
[2771]608
[8419]609 if (_checkState == bad ||
610 _checkState == unhealthy) {
[6518]611 return failure;
612 }
613
[6801]614 static const double nominalStep = 10.0;
[2771]615
616 memset(xc, 0, 4*sizeof(double));
617 memset(vv, 0, 3*sizeof(double));
618
[6801]619 double dtPos = bncTime(GPSweek, GPSweeks) - _tt;
620
621 if (fabs(dtPos) > 24*3600.0) {
[6213]622 return failure;
[2771]623 }
624
[6801]625 int nSteps = int(fabs(dtPos) / nominalStep) + 1;
626 double step = dtPos / nSteps;
[4018]627
[6801]628 double acc[3];
629 acc[0] = _x_acceleration * 1.e3;
630 acc[1] = _y_acceleration * 1.e3;
631 acc[2] = _z_acceleration * 1.e3;
[8456]632
[6801]633 for (int ii = 1; ii <= nSteps; ii++) {
634 _xv = rungeKutta4(_tt.gpssec(), _xv, step, acc, glo_deriv);
635 _tt = _tt + step;
636 }
[4018]637
[6801]638 // Position and Velocity
639 // ---------------------
640 xc[0] = _xv(1);
641 xc[1] = _xv(2);
642 xc[2] = _xv(3);
[2771]643
[6801]644 vv[0] = _xv(4);
645 vv[1] = _xv(5);
646 vv[2] = _xv(6);
[2771]647
[6801]648 // Clock Correction
649 // ----------------
650 double dtClk = bncTime(GPSweek, GPSweeks) - _TOC;
651 xc[3] = -_tau + _gamma * dtClk;
[2771]652
[6213]653 return success;
[2771]654}
655
[6801]656// RINEX Format String
[3659]657//////////////////////////////////////////////////////////////////////////////
[6801]658QString t_ephGlo::toString(double version) const {
[3664]659
[6801]660 QString rnxStr = rinexDateStr(_TOC-_gps_utc, _prn, version);
[3699]661
[6801]662 QTextStream out(&rnxStr);
[3664]663
[6801]664 out << QString("%1%2%3\n")
665 .arg(-_tau, 19, 'e', 12)
666 .arg(_gamma, 19, 'e', 12)
667 .arg(_tki, 19, 'e', 12);
[3668]668
[6801]669 QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
[3664]670
[6801]671 out << QString(fmt)
672 .arg(_x_pos, 19, 'e', 12)
673 .arg(_x_velocity, 19, 'e', 12)
674 .arg(_x_acceleration, 19, 'e', 12)
675 .arg(_health, 19, 'e', 12);
[3664]676
[6801]677 out << QString(fmt)
678 .arg(_y_pos, 19, 'e', 12)
679 .arg(_y_velocity, 19, 'e', 12)
680 .arg(_y_acceleration, 19, 'e', 12)
681 .arg(_frequency_number, 19, 'e', 12);
[3666]682
[6801]683 out << QString(fmt)
684 .arg(_z_pos, 19, 'e', 12)
685 .arg(_z_velocity, 19, 'e', 12)
686 .arg(_z_acceleration, 19, 'e', 12)
687 .arg(_E, 19, 'e', 12);
[3666]688
[6801]689 return rnxStr;
[3659]690}
691
[6801]692// Derivative of the state vector using a simple force model (static)
693////////////////////////////////////////////////////////////////////////////
694ColumnVector t_ephGlo::glo_deriv(double /* tt */, const ColumnVector& xv,
695 double* acc) {
[3659]696
[6801]697 // State vector components
698 // -----------------------
699 ColumnVector rr = xv.rows(1,3);
700 ColumnVector vv = xv.rows(4,6);
[3699]701
[6801]702 // Acceleration
[3699]703 // ------------
[6801]704 static const double gmWGS = 398.60044e12;
705 static const double AE = 6378136.0;
706 static const double OMEGA = 7292115.e-11;
707 static const double C20 = -1082.6257e-6;
[3699]708
[6801]709 double rho = rr.norm_Frobenius();
710 double t1 = -gmWGS/(rho*rho*rho);
711 double t2 = 3.0/2.0 * C20 * (gmWGS*AE*AE) / (rho*rho*rho*rho*rho);
712 double t3 = OMEGA * OMEGA;
713 double t4 = 2.0 * OMEGA;
714 double z2 = rr(3) * rr(3);
[3699]715
[6801]716 // Vector of derivatives
717 // ---------------------
718 ColumnVector va(6);
719 va(1) = vv(1);
720 va(2) = vv(2);
721 va(3) = vv(3);
722 va(4) = (t1 + t2*(1.0-5.0*z2/(rho*rho)) + t3) * rr(1) + t4*vv(2) + acc[0];
723 va(5) = (t1 + t2*(1.0-5.0*z2/(rho*rho)) + t3) * rr(2) - t4*vv(1) + acc[1];
724 va(6) = (t1 + t2*(3.0-5.0*z2/(rho*rho)) ) * rr(3) + acc[2];
[3699]725
[6801]726 return va;
727}
[3699]728
[6801]729// IOD of Glonass Ephemeris (virtual)
730////////////////////////////////////////////////////////////////////////////
[7169]731unsigned int t_ephGlo::IOD() const {
[6801]732 bncTime tMoscow = _TOC - _gps_utc + 3 * 3600.0;
[7054]733 return (unsigned long)tMoscow.daysec() / 900;
[3659]734}
735
[8187]736// Health status of Glonass Ephemeris (virtual)
737////////////////////////////////////////////////////////////////////////////
738unsigned int t_ephGlo::isUnhealthy() const {
[8215]739
[8217]740 if (_almanac_health_availablility_indicator) {
[8215]741 if ((_health == 0 && _almanac_health == 0) ||
742 (_health == 1 && _almanac_health == 0) ||
743 (_health == 1 && _almanac_health == 1)) {
744 return 1;
745 }
[8187]746 }
[8217]747 else if (!_almanac_health_availablility_indicator) {
748 if (_health) {
749 return 1;
750 }
751 }
[8215]752 return 0; /* (_health == 0 && _almanac_health == 1) or (_health == 0) */
[8187]753}
754
[8217]755
[3659]756// Constructor
757//////////////////////////////////////////////////////////////////////////////
[4891]758t_ephGal::t_ephGal(float rnxVersion, const QStringList& lines) {
[6809]759 int year, month, day, hour, min;
760 double sec;
761 QString prnStr;
[4891]762 const int nLines = 8;
763 if (lines.size() != nLines) {
[6518]764 _checkState = bad;
[4891]765 return;
766 }
767
768 // RINEX Format
769 // ------------
770 int fieldLen = 19;
[6792]771 double SVhealth = 0.0;
772 double datasource = 0.0;
[6798]773
[4891]774 int pos[4];
775 pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
776 pos[1] = pos[0] + fieldLen;
777 pos[2] = pos[1] + fieldLen;
778 pos[3] = pos[2] + fieldLen;
779
780 // Read eight lines
781 // ----------------
782 for (int iLine = 0; iLine < nLines; iLine++) {
783 QString line = lines[iLine];
784
785 if ( iLine == 0 ) {
[8204]786 QTextStream in(line.left(pos[1]).toLatin1());
[7140]787 QString n;
[6880]788 in >> prnStr;
[7639]789 if (prnStr.size() == 1 && prnStr[0] == 'E') {
[7139]790 in >> n;
791 prnStr.append(n);
[6880]792 }
793 in >> year >> month >> day >> hour >> min >> sec;
[4891]794 if (year < 80) {
795 year += 2000;
796 }
797 else if (year < 100) {
798 year += 1900;
799 }
800
801 _TOC.set(year, month, day, hour, min, sec);
802
803 if ( readDbl(line, pos[1], fieldLen, _clock_bias ) ||
804 readDbl(line, pos[2], fieldLen, _clock_drift ) ||
805 readDbl(line, pos[3], fieldLen, _clock_driftrate) ) {
[6518]806 _checkState = bad;
[4891]807 return;
808 }
809 }
810
811 else if ( iLine == 1 ) {
812 if ( readDbl(line, pos[0], fieldLen, _IODnav ) ||
813 readDbl(line, pos[1], fieldLen, _Crs ) ||
814 readDbl(line, pos[2], fieldLen, _Delta_n) ||
815 readDbl(line, pos[3], fieldLen, _M0 ) ) {
[6518]816 _checkState = bad;
[4891]817 return;
818 }
819 }
820
821 else if ( iLine == 2 ) {
822 if ( readDbl(line, pos[0], fieldLen, _Cuc ) ||
823 readDbl(line, pos[1], fieldLen, _e ) ||
824 readDbl(line, pos[2], fieldLen, _Cus ) ||
825 readDbl(line, pos[3], fieldLen, _sqrt_A) ) {
[6518]826 _checkState = bad;
[4891]827 return;
828 }
829 }
830
831 else if ( iLine == 3 ) {
832 if ( readDbl(line, pos[0], fieldLen, _TOEsec) ||
833 readDbl(line, pos[1], fieldLen, _Cic ) ||
834 readDbl(line, pos[2], fieldLen, _OMEGA0) ||
835 readDbl(line, pos[3], fieldLen, _Cis ) ) {
[6518]836 _checkState = bad;
[4891]837 return;
838 }
839 }
840
841 else if ( iLine == 4 ) {
842 if ( readDbl(line, pos[0], fieldLen, _i0 ) ||
843 readDbl(line, pos[1], fieldLen, _Crc ) ||
844 readDbl(line, pos[2], fieldLen, _omega ) ||
845 readDbl(line, pos[3], fieldLen, _OMEGADOT) ) {
[6518]846 _checkState = bad;
[4891]847 return;
848 }
849 }
850
851 else if ( iLine == 5 ) {
[6792]852 if ( readDbl(line, pos[0], fieldLen, _IDOT ) ||
853 readDbl(line, pos[1], fieldLen, datasource) ||
854 readDbl(line, pos[2], fieldLen, _TOEweek ) ) {
[6518]855 _checkState = bad;
[4891]856 return;
[6792]857 } else {
858 if (int(datasource) & (1<<8)) {
[6812]859 _fnav = true;
860 _inav = false;
[6792]861 } else if (int(datasource) & (1<<9)) {
[6812]862 _fnav = false;
863 _inav = true;
[6792]864 }
[6892]865 _TOEweek -= 1024.0;
[4891]866 }
867 }
868
869 else if ( iLine == 6 ) {
870 if ( readDbl(line, pos[0], fieldLen, _SISA ) ||
[6792]871 readDbl(line, pos[1], fieldLen, SVhealth) ||
[4891]872 readDbl(line, pos[2], fieldLen, _BGD_1_5A) ||
873 readDbl(line, pos[3], fieldLen, _BGD_1_5B) ) {
[6518]874 _checkState = bad;
[4891]875 return;
[6792]876 } else {
877 // Bit 0
[6812]878 _e1DataInValid = (int(SVhealth) & (1<<0));
[6792]879 // Bit 1-2
[6802]880 _E1_bHS = double((int(SVhealth) >> 1) & 0x3);
[6792]881 // Bit 3
[6812]882 _e5aDataInValid = (int(SVhealth) & (1<<3));
[6792]883 // Bit 4-5
[6802]884 _E5aHS = double((int(SVhealth) >> 4) & 0x3);
[6792]885 // Bit 6
[6812]886 _e5bDataInValid = (int(SVhealth) & (1<<6));
[6792]887 // Bit 7-8
[6802]888 _E5bHS = double((int(SVhealth) >> 7) & 0x3);
[6809]889
890 if (prnStr.at(0) == 'E') {
[7140]891 _prn.set('E', prnStr.mid(1).toInt(), _inav ? 1 : 0);
[6809]892 }
[4891]893 }
894 }
895
896 else if ( iLine == 7 ) {
897 if ( readDbl(line, pos[0], fieldLen, _TOT) ) {
[6518]898 _checkState = bad;
[4891]899 return;
900 }
901 }
902 }
[3659]903}
[4013]904
[6801]905// Compute Galileo Satellite Position (virtual)
906////////////////////////////////////////////////////////////////////////////
907t_irc t_ephGal::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
[4013]908
[8419]909 if (_checkState == bad ||
910 _checkState == unhealthy) {
[6801]911 return failure;
912 }
[4013]913
[6801]914 static const double omegaEarth = 7292115.1467e-11;
[8212]915 static const double gmWGS = 398.6004418e12;
[4023]916
[6801]917 memset(xc, 0, 4*sizeof(double));
918 memset(vv, 0, 3*sizeof(double));
[4023]919
[6801]920 double a0 = _sqrt_A * _sqrt_A;
921 if (a0 == 0) {
922 return failure;
923 }
[4023]924
[6801]925 double n0 = sqrt(gmWGS/(a0*a0*a0));
[4023]926
[6801]927 bncTime tt(GPSweek, GPSweeks);
928 double tk = tt - bncTime(_TOC.gpsw(), _TOEsec);
[4023]929
[6801]930 double n = n0 + _Delta_n;
931 double M = _M0 + n*tk;
932 double E = M;
933 double E_last;
[8368]934 int nLoop = 0;
[6801]935 do {
936 E_last = E;
937 E = M + _e*sin(E);
[8368]938
939 if (++nLoop == 100) {
940 return failure;
941 }
[6801]942 } while ( fabs(E-E_last)*a0 > 0.001 );
943 double v = 2.0*atan( sqrt( (1.0 + _e)/(1.0 - _e) )*tan( E/2 ) );
944 double u0 = v + _omega;
945 double sin2u0 = sin(2*u0);
946 double cos2u0 = cos(2*u0);
947 double r = a0*(1 - _e*cos(E)) + _Crc*cos2u0 + _Crs*sin2u0;
948 double i = _i0 + _IDOT*tk + _Cic*cos2u0 + _Cis*sin2u0;
949 double u = u0 + _Cuc*cos2u0 + _Cus*sin2u0;
950 double xp = r*cos(u);
951 double yp = r*sin(u);
952 double OM = _OMEGA0 + (_OMEGADOT - omegaEarth)*tk -
953 omegaEarth*_TOEsec;
[4023]954
[6801]955 double sinom = sin(OM);
956 double cosom = cos(OM);
957 double sini = sin(i);
958 double cosi = cos(i);
959 xc[0] = xp*cosom - yp*cosi*sinom;
960 xc[1] = xp*sinom + yp*cosi*cosom;
961 xc[2] = yp*sini;
[4023]962
[6801]963 double tc = tt - _TOC;
964 xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
[4023]965
[6801]966 // Velocity
967 // --------
968 double tanv2 = tan(v/2);
969 double dEdM = 1 / (1 - _e*cos(E));
970 double dotv = sqrt((1.0 + _e)/(1.0 - _e)) / cos(E/2)/cos(E/2) / (1 + tanv2*tanv2)
971 * dEdM * n;
972 double dotu = dotv + (-_Cuc*sin2u0 + _Cus*cos2u0)*2*dotv;
973 double dotom = _OMEGADOT - omegaEarth;
974 double doti = _IDOT + (-_Cic*sin2u0 + _Cis*cos2u0)*2*dotv;
975 double dotr = a0 * _e*sin(E) * dEdM * n
976 + (-_Crc*sin2u0 + _Crs*cos2u0)*2*dotv;
977 double dotx = dotr*cos(u) - r*sin(u)*dotu;
978 double doty = dotr*sin(u) + r*cos(u)*dotu;
[4023]979
[6801]980 vv[0] = cosom *dotx - cosi*sinom *doty // dX / dr
981 - xp*sinom*dotom - yp*cosi*cosom*dotom // dX / dOMEGA
982 + yp*sini*sinom*doti; // dX / di
983
984 vv[1] = sinom *dotx + cosi*cosom *doty
985 + xp*cosom*dotom - yp*cosi*sinom*dotom
986 - yp*sini*cosom*doti;
987
988 vv[2] = sini *doty + yp*cosi *doti;
989
990 // Relativistic Correction
991 // -----------------------
[7481]992 // correspondent to Galileo ICD and to SSR standard
993 xc[3] -= 4.442807633e-10 * _e * sqrt(a0) *sin(E);
994 // correspondent to IGS convention
995 //xc[3] -= 2.0 * (xc[0]*vv[0] + xc[1]*vv[1] + xc[2]*vv[2]) / t_CST::c / t_CST::c;
[6801]996
997 return success;
[4023]998}
999
[8187]1000// Health status of Galileo Ephemeris (virtual)
1001////////////////////////////////////////////////////////////////////////////
1002unsigned int t_ephGal::isUnhealthy() const {
1003 if (_E5aHS && _E5bHS && _E1_bHS) {
1004 return 1;
1005 }
1006 return 0;
1007}
1008
[4023]1009// RINEX Format String
1010//////////////////////////////////////////////////////////////////////////////
1011QString t_ephGal::toString(double version) const {
1012
[4029]1013 QString rnxStr = rinexDateStr(_TOC, _prn, version);
[4023]1014
1015 QTextStream out(&rnxStr);
1016
1017 out << QString("%1%2%3\n")
1018 .arg(_clock_bias, 19, 'e', 12)
1019 .arg(_clock_drift, 19, 'e', 12)
1020 .arg(_clock_driftrate, 19, 'e', 12);
1021
1022 QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
1023
1024 out << QString(fmt)
1025 .arg(_IODnav, 19, 'e', 12)
1026 .arg(_Crs, 19, 'e', 12)
1027 .arg(_Delta_n, 19, 'e', 12)
1028 .arg(_M0, 19, 'e', 12);
1029
1030 out << QString(fmt)
1031 .arg(_Cuc, 19, 'e', 12)
1032 .arg(_e, 19, 'e', 12)
1033 .arg(_Cus, 19, 'e', 12)
1034 .arg(_sqrt_A, 19, 'e', 12);
1035
1036 out << QString(fmt)
1037 .arg(_TOEsec, 19, 'e', 12)
1038 .arg(_Cic, 19, 'e', 12)
1039 .arg(_OMEGA0, 19, 'e', 12)
1040 .arg(_Cis, 19, 'e', 12);
1041
1042 out << QString(fmt)
1043 .arg(_i0, 19, 'e', 12)
1044 .arg(_Crc, 19, 'e', 12)
1045 .arg(_omega, 19, 'e', 12)
1046 .arg(_OMEGADOT, 19, 'e', 12);
1047
[6792]1048 int dataSource = 0;
1049 int SVhealth = 0;
1050 double BGD_1_5A = _BGD_1_5A;
1051 double BGD_1_5B = _BGD_1_5B;
[6812]1052 if (_fnav) {
[6792]1053 dataSource |= (1<<1);
1054 dataSource |= (1<<8);
1055 BGD_1_5B = 0.0;
1056 // SVhealth
1057 // Bit 3 : E5a DVS
[6812]1058 if (_e5aDataInValid) {
[6792]1059 SVhealth |= (1<<3);
1060 }
1061 // Bit 4-5: E5a HS
1062 if (_E5aHS == 1.0) {
1063 SVhealth |= (1<<4);
1064 }
1065 else if (_E5aHS == 2.0) {
1066 SVhealth |= (1<<5);
1067 }
1068 else if (_E5aHS == 3.0) {
1069 SVhealth |= (1<<4);
1070 SVhealth |= (1<<5);
1071 }
1072 }
[6812]1073 else if(_inav) {
[6803]1074 // Bit 2 and 0 are set because from MT1046 the data source cannot be determined
1075 // and RNXv3.03 says both can be set if the navigation messages were merged
[5539]1076 dataSource |= (1<<0);
[6792]1077 dataSource |= (1<<2);
[5540]1078 dataSource |= (1<<9);
[6792]1079 // SVhealth
1080 // Bit 0 : E1-B DVS
[6812]1081 if (_e1DataInValid) {
[6792]1082 SVhealth |= (1<<0);
1083 }
1084 // Bit 1-2: E1-B HS
1085 if (_E1_bHS == 1.0) {
1086 SVhealth |= (1<<1);
1087 }
1088 else if (_E1_bHS == 2.0) {
1089 SVhealth |= (1<<2);
1090 }
[6803]1091 else if (_E1_bHS == 3.0) {
[6792]1092 SVhealth |= (1<<1);
1093 SVhealth |= (1<<2);
1094 }
[6802]1095 // Bit 3 : E5a DVS
[6812]1096 if (_e5aDataInValid) {
[6802]1097 SVhealth |= (1<<3);
1098 }
1099 // Bit 4-5: E5a HS
1100 if (_E5aHS == 1.0) {
1101 SVhealth |= (1<<4);
1102 }
1103 else if (_E5aHS == 2.0) {
1104 SVhealth |= (1<<5);
1105 }
[6803]1106 else if (_E5aHS == 3.0) {
[6802]1107 SVhealth |= (1<<4);
1108 SVhealth |= (1<<5);
1109 }
[6792]1110 // Bit 6 : E5b DVS
[6812]1111 if (_e5bDataInValid) {
[6792]1112 SVhealth |= (1<<6);
1113 }
1114 // Bit 7-8: E5b HS
1115 if (_E5bHS == 1.0) {
1116 SVhealth |= (1<<7);
1117 }
1118 else if (_E5bHS == 2.0) {
1119 SVhealth |= (1<<8);
1120 }
[6803]1121 else if (_E5bHS == 3.0) {
[6792]1122 SVhealth |= (1<<7);
1123 SVhealth |= (1<<8);
1124 }
[5539]1125 }
[6792]1126
[4023]1127 out << QString(fmt)
[5532]1128 .arg(_IDOT, 19, 'e', 12)
1129 .arg(double(dataSource), 19, 'e', 12)
[6892]1130 .arg(_TOEweek + 1024.0, 19, 'e', 12)
[5532]1131 .arg(0.0, 19, 'e', 12);
[4023]1132
1133 out << QString(fmt)
[6798]1134 .arg(_SISA, 19, 'e', 12)
[6792]1135 .arg(double(SVhealth), 19, 'e', 12)
1136 .arg(BGD_1_5A, 19, 'e', 12)
1137 .arg(BGD_1_5B, 19, 'e', 12);
[4023]1138
[7922]1139
1140 double tot = _TOT;
1141 if (tot == 0.9999e9 && version < 3.0) {
1142 tot = 0.0;
1143 }
[4023]1144 out << QString(fmt)
[7922]1145 .arg(tot, 19, 'e', 12)
[4024]1146 .arg("", 19, QChar(' '))
1147 .arg("", 19, QChar(' '))
1148 .arg("", 19, QChar(' '));
[4023]1149
1150 return rnxStr;
1151}
1152
[6385]1153// Constructor
1154//////////////////////////////////////////////////////////////////////////////
[6390]1155t_ephSBAS::t_ephSBAS(float rnxVersion, const QStringList& lines) {
1156
1157 const int nLines = 4;
1158
1159 if (lines.size() != nLines) {
[6518]1160 _checkState = bad;
[6390]1161 return;
1162 }
1163
1164 // RINEX Format
1165 // ------------
1166 int fieldLen = 19;
1167
1168 int pos[4];
1169 pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
1170 pos[1] = pos[0] + fieldLen;
1171 pos[2] = pos[1] + fieldLen;
1172 pos[3] = pos[2] + fieldLen;
1173
1174 // Read four lines
1175 // ---------------
1176 for (int iLine = 0; iLine < nLines; iLine++) {
1177 QString line = lines[iLine];
1178
1179 if ( iLine == 0 ) {
[8204]1180 QTextStream in(line.left(pos[1]).toLatin1());
[6390]1181
1182 int year, month, day, hour, min;
1183 double sec;
[6880]1184
[7139]1185 QString prnStr, n;
[6880]1186 in >> prnStr;
[7639]1187 if (prnStr.size() == 1 && prnStr[0] == 'S') {
[7139]1188 in >> n;
1189 prnStr.append(n);
[6880]1190 }
1191 in >> year >> month >> day >> hour >> min >> sec;
[6390]1192 if (prnStr.at(0) == 'S') {
1193 _prn.set('S', prnStr.mid(1).toInt());
1194 }
1195 else {
1196 _prn.set('S', prnStr.toInt());
1197 }
1198
1199 if (year < 80) {
1200 year += 2000;
1201 }
1202 else if (year < 100) {
1203 year += 1900;
1204 }
1205
1206 _TOC.set(year, month, day, hour, min, sec);
1207
1208 if ( readDbl(line, pos[1], fieldLen, _agf0 ) ||
1209 readDbl(line, pos[2], fieldLen, _agf1 ) ||
[8456]1210 readDbl(line, pos[3], fieldLen, _TOT ) ) {
[6518]1211 _checkState = bad;
[6390]1212 return;
1213 }
1214 }
1215
1216 else if ( iLine == 1 ) {
1217 if ( readDbl(line, pos[0], fieldLen, _x_pos ) ||
1218 readDbl(line, pos[1], fieldLen, _x_velocity ) ||
1219 readDbl(line, pos[2], fieldLen, _x_acceleration) ||
1220 readDbl(line, pos[3], fieldLen, _health ) ) {
[6518]1221 _checkState = bad;
[6390]1222 return;
1223 }
1224 }
1225
1226 else if ( iLine == 2 ) {
1227 if ( readDbl(line, pos[0], fieldLen, _y_pos ) ||
1228 readDbl(line, pos[1], fieldLen, _y_velocity ) ||
1229 readDbl(line, pos[2], fieldLen, _y_acceleration ) ||
1230 readDbl(line, pos[3], fieldLen, _ura ) ) {
[6518]1231 _checkState = bad;
[6390]1232 return;
1233 }
1234 }
1235
1236 else if ( iLine == 3 ) {
[6536]1237 double iodn;
[6390]1238 if ( readDbl(line, pos[0], fieldLen, _z_pos ) ||
1239 readDbl(line, pos[1], fieldLen, _z_velocity ) ||
1240 readDbl(line, pos[2], fieldLen, _z_acceleration) ||
[6536]1241 readDbl(line, pos[3], fieldLen, iodn ) ) {
[6518]1242 _checkState = bad;
[6390]1243 return;
[6891]1244 } else {
[6536]1245 _IODN = int(iodn);
[6390]1246 }
1247 }
1248 }
1249
[7278]1250 _x_pos *= 1.e3;
1251 _y_pos *= 1.e3;
1252 _z_pos *= 1.e3;
1253 _x_velocity *= 1.e3;
1254 _y_velocity *= 1.e3;
1255 _z_velocity *= 1.e3;
1256 _x_acceleration *= 1.e3;
1257 _y_acceleration *= 1.e3;
1258 _z_acceleration *= 1.e3;
[6385]1259}
1260
[7054]1261// IOD of SBAS Ephemeris (virtual)
1262////////////////////////////////////////////////////////////////////////////
1263
[7169]1264unsigned int t_ephSBAS::IOD() const {
[7054]1265 unsigned char buffer[80];
1266 int size = 0;
1267 int numbits = 0;
1268 long long bitbuffer = 0;
1269 unsigned char *startbuffer = buffer;
1270
1271 SBASADDBITSFLOAT(30, this->_x_pos, 0.08)
1272 SBASADDBITSFLOAT(30, this->_y_pos, 0.08)
1273 SBASADDBITSFLOAT(25, this->_z_pos, 0.4)
1274 SBASADDBITSFLOAT(17, this->_x_velocity, 0.000625)
1275 SBASADDBITSFLOAT(17, this->_y_velocity, 0.000625)
1276 SBASADDBITSFLOAT(18, this->_z_velocity, 0.004)
1277 SBASADDBITSFLOAT(10, this->_x_acceleration, 0.0000125)
1278 SBASADDBITSFLOAT(10, this->_y_acceleration, 0.0000125)
1279 SBASADDBITSFLOAT(10, this->_z_acceleration, 0.0000625)
1280 SBASADDBITSFLOAT(12, this->_agf0, 1.0/static_cast<double>(1<<30)/static_cast<double>(1<<1))
1281 SBASADDBITSFLOAT(8, this->_agf1, 1.0/static_cast<double>(1<<30)/static_cast<double>(1<<10))
1282 SBASADDBITS(5,0); // the last byte is filled by 0-bits to obtain a length of an integer multiple of 8
1283
1284 return CRC24(size, startbuffer);
1285}
1286
[6385]1287// Compute SBAS Satellite Position (virtual)
1288////////////////////////////////////////////////////////////////////////////
1289t_irc t_ephSBAS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
[6386]1290
[8419]1291 if (_checkState == bad ||
1292 _checkState == unhealthy) {
[6518]1293 return failure;
1294 }
1295
[6386]1296 bncTime tt(GPSweek, GPSweeks);
1297 double dt = tt - _TOC;
1298
[7278]1299 xc[0] = _x_pos + _x_velocity * dt + _x_acceleration * dt * dt / 2.0;
1300 xc[1] = _y_pos + _y_velocity * dt + _y_acceleration * dt * dt / 2.0;
1301 xc[2] = _z_pos + _z_velocity * dt + _z_acceleration * dt * dt / 2.0;
[6386]1302
1303 vv[0] = _x_velocity + _x_acceleration * dt;
1304 vv[1] = _y_velocity + _y_acceleration * dt;
1305 vv[2] = _z_velocity + _z_acceleration * dt;
1306
1307 xc[3] = _agf0 + _agf1 * dt;
1308
1309 return success;
[6385]1310}
1311
1312// RINEX Format String
1313//////////////////////////////////////////////////////////////////////////////
[6388]1314QString t_ephSBAS::toString(double version) const {
1315
1316 QString rnxStr = rinexDateStr(_TOC, _prn, version);
1317
1318 QTextStream out(&rnxStr);
1319
1320 out << QString("%1%2%3\n")
[6390]1321 .arg(_agf0, 19, 'e', 12)
1322 .arg(_agf1, 19, 'e', 12)
[8456]1323 .arg(_TOT, 19, 'e', 12);
[6388]1324
1325 QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
1326
1327 out << QString(fmt)
1328 .arg(1.e-3*_x_pos, 19, 'e', 12)
1329 .arg(1.e-3*_x_velocity, 19, 'e', 12)
1330 .arg(1.e-3*_x_acceleration, 19, 'e', 12)
[6390]1331 .arg(_health, 19, 'e', 12);
[6388]1332
1333 out << QString(fmt)
1334 .arg(1.e-3*_y_pos, 19, 'e', 12)
1335 .arg(1.e-3*_y_velocity, 19, 'e', 12)
1336 .arg(1.e-3*_y_acceleration, 19, 'e', 12)
[6390]1337 .arg(_ura, 19, 'e', 12);
[6388]1338
1339 out << QString(fmt)
1340 .arg(1.e-3*_z_pos, 19, 'e', 12)
1341 .arg(1.e-3*_z_velocity, 19, 'e', 12)
1342 .arg(1.e-3*_z_acceleration, 19, 'e', 12)
[6536]1343 .arg(double(_IODN), 19, 'e', 12);
[6388]1344
1345 return rnxStr;
[6385]1346}
[6400]1347
1348// Constructor
1349//////////////////////////////////////////////////////////////////////////////
[6600]1350t_ephBDS::t_ephBDS(float rnxVersion, const QStringList& lines) {
[6400]1351
1352 const int nLines = 8;
1353
1354 if (lines.size() != nLines) {
[6518]1355 _checkState = bad;
[6400]1356 return;
1357 }
1358
1359 // RINEX Format
1360 // ------------
1361 int fieldLen = 19;
1362
1363 int pos[4];
1364 pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
1365 pos[1] = pos[0] + fieldLen;
1366 pos[2] = pos[1] + fieldLen;
1367 pos[3] = pos[2] + fieldLen;
1368
1369 // Read eight lines
1370 // ----------------
1371 for (int iLine = 0; iLine < nLines; iLine++) {
1372 QString line = lines[iLine];
1373
1374 if ( iLine == 0 ) {
[8204]1375 QTextStream in(line.left(pos[1]).toLatin1());
[6400]1376
1377 int year, month, day, hour, min;
1378 double sec;
[6880]1379
[7139]1380 QString prnStr, n;
[6880]1381 in >> prnStr;
[7639]1382 if (prnStr.size() == 1 && prnStr[0] == 'C') {
[7139]1383 in >> n;
1384 prnStr.append(n);
[6880]1385 }
1386 in >> year >> month >> day >> hour >> min >> sec;
[6400]1387 if (prnStr.at(0) == 'C') {
1388 _prn.set('C', prnStr.mid(1).toInt());
1389 }
1390 else {
1391 _prn.set('C', prnStr.toInt());
1392 }
1393
1394 if (year < 80) {
1395 year += 2000;
1396 }
1397 else if (year < 100) {
1398 year += 1900;
1399 }
1400
[6812]1401 _TOC.setBDS(year, month, day, hour, min, sec);
[6400]1402
1403 if ( readDbl(line, pos[1], fieldLen, _clock_bias ) ||
1404 readDbl(line, pos[2], fieldLen, _clock_drift ) ||
1405 readDbl(line, pos[3], fieldLen, _clock_driftrate) ) {
[6518]1406 _checkState = bad;
[6400]1407 return;
1408 }
1409 }
1410
1411 else if ( iLine == 1 ) {
1412 double aode;
1413 if ( readDbl(line, pos[0], fieldLen, aode ) ||
1414 readDbl(line, pos[1], fieldLen, _Crs ) ||
1415 readDbl(line, pos[2], fieldLen, _Delta_n) ||
1416 readDbl(line, pos[3], fieldLen, _M0 ) ) {
[6518]1417 _checkState = bad;
[6400]1418 return;
1419 }
1420 _AODE = int(aode);
1421 }
1422
1423 else if ( iLine == 2 ) {
1424 if ( readDbl(line, pos[0], fieldLen, _Cuc ) ||
1425 readDbl(line, pos[1], fieldLen, _e ) ||
1426 readDbl(line, pos[2], fieldLen, _Cus ) ||
1427 readDbl(line, pos[3], fieldLen, _sqrt_A) ) {
[6518]1428 _checkState = bad;
[6400]1429 return;
1430 }
1431 }
1432
1433 else if ( iLine == 3 ) {
[6812]1434 if ( readDbl(line, pos[0], fieldLen, _TOEsec ) ||
[6400]1435 readDbl(line, pos[1], fieldLen, _Cic ) ||
1436 readDbl(line, pos[2], fieldLen, _OMEGA0) ||
1437 readDbl(line, pos[3], fieldLen, _Cis ) ) {
[6518]1438 _checkState = bad;
[6400]1439 return;
1440 }
1441 }
1442
1443 else if ( iLine == 4 ) {
1444 if ( readDbl(line, pos[0], fieldLen, _i0 ) ||
1445 readDbl(line, pos[1], fieldLen, _Crc ) ||
1446 readDbl(line, pos[2], fieldLen, _omega ) ||
1447 readDbl(line, pos[3], fieldLen, _OMEGADOT) ) {
[6518]1448 _checkState = bad;
[6400]1449 return;
1450 }
1451 }
1452
1453 else if ( iLine == 5 ) {
1454 if ( readDbl(line, pos[0], fieldLen, _IDOT ) ||
[6812]1455 readDbl(line, pos[2], fieldLen, _TOEweek)) {
[6518]1456 _checkState = bad;
[6400]1457 return;
1458 }
1459 }
1460
1461 else if ( iLine == 6 ) {
1462 double SatH1;
[6755]1463 if ( readDbl(line, pos[0], fieldLen, _URA ) ||
1464 readDbl(line, pos[1], fieldLen, SatH1) ||
[6400]1465 readDbl(line, pos[2], fieldLen, _TGD1) ||
1466 readDbl(line, pos[3], fieldLen, _TGD2) ) {
[6518]1467 _checkState = bad;
[6400]1468 return;
1469 }
1470 _SatH1 = int(SatH1);
1471 }
1472
1473 else if ( iLine == 7 ) {
1474 double aodc;
[6812]1475 if ( readDbl(line, pos[0], fieldLen, _TOT) ||
[6400]1476 readDbl(line, pos[1], fieldLen, aodc) ) {
[6518]1477 _checkState = bad;
[6400]1478 return;
1479 }
[6812]1480 if (_TOT == 0.9999e9) { // 0.9999e9 means not known (RINEX standard)
1481 _TOT = _TOEsec;
[6400]1482 }
1483 _AODC = int(aodc);
1484 }
1485 }
1486
[7138]1487 _TOE.setBDS(int(_TOEweek), _TOEsec);
1488
[6400]1489 // remark: actually should be computed from second_tot
1490 // but it seems to be unreliable in RINEX files
[6843]1491 //_TOT = _TOC.bdssec();
[6400]1492}
1493
[7054]1494// IOD of BDS Ephemeris (virtual)
1495////////////////////////////////////////////////////////////////////////////
[7169]1496unsigned int t_ephBDS::IOD() const {
[8410]1497 return (int(_TOEsec)/720) % 240;
[7054]1498}
1499
[6601]1500// Compute BDS Satellite Position (virtual)
[6400]1501//////////////////////////////////////////////////////////////////////////////
[6600]1502t_irc t_ephBDS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
[6400]1503
[8419]1504 if (_checkState == bad ||
1505 _checkState == unhealthy) {
[6518]1506 return failure;
1507 }
1508
[6602]1509 static const double gmBDS = 398.6004418e12;
1510 static const double omegaBDS = 7292115.0000e-11;
[6400]1511
1512 xc[0] = xc[1] = xc[2] = xc[3] = 0.0;
1513 vv[0] = vv[1] = vv[2] = 0.0;
1514
1515 bncTime tt(GPSweek, GPSweeks);
1516
1517 if (_sqrt_A == 0) {
1518 return failure;
1519 }
1520 double a0 = _sqrt_A * _sqrt_A;
1521
[6602]1522 double n0 = sqrt(gmBDS/(a0*a0*a0));
[6400]1523 double tk = tt - _TOE;
1524 double n = n0 + _Delta_n;
1525 double M = _M0 + n*tk;
1526 double E = M;
1527 double E_last;
1528 int nLoop = 0;
1529 do {
1530 E_last = E;
1531 E = M + _e*sin(E);
1532
1533 if (++nLoop == 100) {
1534 return failure;
1535 }
1536 } while ( fabs(E-E_last)*a0 > 0.001 );
1537
1538 double v = atan2(sqrt(1-_e*_e) * sin(E), cos(E) - _e);
1539 double u0 = v + _omega;
1540 double sin2u0 = sin(2*u0);
1541 double cos2u0 = cos(2*u0);
1542 double r = a0*(1 - _e*cos(E)) + _Crc*cos2u0 + _Crs*sin2u0;
1543 double i = _i0 + _IDOT*tk + _Cic*cos2u0 + _Cis*sin2u0;
1544 double u = u0 + _Cuc*cos2u0 + _Cus*sin2u0;
1545 double xp = r*cos(u);
1546 double yp = r*sin(u);
1547 double toesec = (_TOE.gpssec() - 14.0);
1548 double sinom = 0;
1549 double cosom = 0;
1550 double sini = 0;
1551 double cosi = 0;
[7278]1552
[7481]1553 // Velocity
1554 // --------
1555 double tanv2 = tan(v/2);
1556 double dEdM = 1 / (1 - _e*cos(E));
1557 double dotv = sqrt((1.0 + _e)/(1.0 - _e)) / cos(E/2)/cos(E/2)
1558 / (1 + tanv2*tanv2) * dEdM * n;
1559 double dotu = dotv + (-_Cuc*sin2u0 + _Cus*cos2u0)*2*dotv;
1560 double doti = _IDOT + (-_Cic*sin2u0 + _Cis*cos2u0)*2*dotv;
1561 double dotr = a0 * _e*sin(E) * dEdM * n
1562 + (-_Crc*sin2u0 + _Crs*cos2u0)*2*dotv;
1563
1564 double dotx = dotr*cos(u) - r*sin(u)*dotu;
1565 double doty = dotr*sin(u) + r*cos(u)*dotu;
1566
[6400]1567 const double iMaxGEO = 10.0 / 180.0 * M_PI;
1568
1569 // MEO/IGSO satellite
1570 // ------------------
1571 if (_i0 > iMaxGEO) {
[6602]1572 double OM = _OMEGA0 + (_OMEGADOT - omegaBDS)*tk - omegaBDS*toesec;
[6400]1573
1574 sinom = sin(OM);
1575 cosom = cos(OM);
1576 sini = sin(i);
1577 cosi = cos(i);
1578
1579 xc[0] = xp*cosom - yp*cosi*sinom;
1580 xc[1] = xp*sinom + yp*cosi*cosom;
[7278]1581 xc[2] = yp*sini;
[7481]1582
1583 // Velocity
1584 // --------
1585
1586 double dotom = _OMEGADOT - t_CST::omega;
1587
1588 vv[0] = cosom *dotx - cosi*sinom *doty // dX / dr
1589 - xp*sinom*dotom - yp*cosi*cosom*dotom // dX / dOMEGA
1590 + yp*sini*sinom*doti; // dX / di
1591
1592 vv[1] = sinom *dotx + cosi*cosom *doty
1593 + xp*cosom*dotom - yp*cosi*sinom*dotom
1594 - yp*sini*cosom*doti;
1595
1596 vv[2] = sini *doty + yp*cosi *doti;
1597
[6400]1598 }
1599
1600 // GEO satellite
1601 // -------------
1602 else {
[6602]1603 double OM = _OMEGA0 + _OMEGADOT*tk - omegaBDS*toesec;
1604 double ll = omegaBDS*tk;
[6400]1605
1606 sinom = sin(OM);
1607 cosom = cos(OM);
1608 sini = sin(i);
1609 cosi = cos(i);
1610
1611 double xx = xp*cosom - yp*cosi*sinom;
1612 double yy = xp*sinom + yp*cosi*cosom;
[7278]1613 double zz = yp*sini;
[6400]1614
[7487]1615 Matrix RX = BNC_PPP::t_astro::rotX(-5.0 / 180.0 * M_PI);
1616 Matrix RZ = BNC_PPP::t_astro::rotZ(ll);
[6400]1617
1618 ColumnVector X1(3); X1 << xx << yy << zz;
[7487]1619 ColumnVector X2 = RZ*RX*X1;
[6400]1620
1621 xc[0] = X2(1);
1622 xc[1] = X2(2);
1623 xc[2] = X2(3);
[7278]1624
[7481]1625 double dotom = _OMEGADOT;
[6400]1626
[7481]1627 double vx = cosom *dotx - cosi*sinom *doty
1628 - xp*sinom*dotom - yp*cosi*cosom*dotom
1629 + yp*sini*sinom*doti;
[6400]1630
[7481]1631 double vy = sinom *dotx + cosi*cosom *doty
1632 + xp*cosom*dotom - yp*cosi*sinom*dotom
1633 - yp*sini*cosom*doti;
[7278]1634
[7501]1635 double vz = sini *doty + yp*cosi *doti;
[6400]1636
[7501]1637 ColumnVector V(3); V << vx << vy << vz;
[7481]1638
[7487]1639 Matrix RdotZ(3,3);
[7481]1640 double C = cos(ll);
1641 double S = sin(ll);
1642 Matrix UU(3,3);
1643 UU[0][0] = -S; UU[0][1] = +C; UU[0][2] = 0.0;
1644 UU[1][0] = -C; UU[1][1] = -S; UU[1][2] = 0.0;
1645 UU[2][0] = 0.0; UU[2][1] = 0.0; UU[2][2] = 0.0;
[7487]1646 RdotZ = omegaBDS * UU;
[7481]1647
1648 ColumnVector VV(3);
[7487]1649 VV = RZ*RX*V + RdotZ*RX*X1;
[7481]1650
1651 vv[0] = VV(1);
1652 vv[1] = VV(2);
1653 vv[2] = VV(3);
1654 }
1655
1656 double tc = tt - _TOC;
1657 xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
1658
[7278]1659 // dotC = _clock_drift + _clock_driftrate*tc
[6400]1660 // - 4.442807633e-10*_e*sqrt(a0)*cos(E) * dEdM * n;
1661
[7481]1662 // Relativistic Correction
1663 // -----------------------
1664 // correspondent to BDS ICD and to SSR standard
1665 xc[3] -= 4.442807633e-10 * _e * sqrt(a0) *sin(E);
1666 // correspondent to IGS convention
1667 // xc[3] -= 2.0 * (xc[0]*vv[0] + xc[1]*vv[1] + xc[2]*vv[2]) / t_CST::c / t_CST::c;
1668
[6400]1669 return success;
1670}
1671
1672// RINEX Format String
1673//////////////////////////////////////////////////////////////////////////////
[6600]1674QString t_ephBDS::toString(double version) const {
[8419]1675
[6812]1676 QString rnxStr = rinexDateStr(_TOC-14.0, _prn, version);
[6400]1677
1678 QTextStream out(&rnxStr);
1679
1680 out << QString("%1%2%3\n")
1681 .arg(_clock_bias, 19, 'e', 12)
1682 .arg(_clock_drift, 19, 'e', 12)
1683 .arg(_clock_driftrate, 19, 'e', 12);
1684
1685 QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
1686
1687 out << QString(fmt)
1688 .arg(double(_AODE), 19, 'e', 12)
1689 .arg(_Crs, 19, 'e', 12)
1690 .arg(_Delta_n, 19, 'e', 12)
1691 .arg(_M0, 19, 'e', 12);
1692
1693 out << QString(fmt)
1694 .arg(_Cuc, 19, 'e', 12)
1695 .arg(_e, 19, 'e', 12)
1696 .arg(_Cus, 19, 'e', 12)
1697 .arg(_sqrt_A, 19, 'e', 12);
1698
[6843]1699 double toes = 0.0;
1700 if (_TOEweek > -1.0) {// RINEX input
1701 toes = _TOEsec;
1702 }
1703 else {// RTCM stream input
[6812]1704 toes = _TOE.bdssec();
[6755]1705 }
[6400]1706 out << QString(fmt)
[6843]1707 .arg(toes, 19, 'e', 12)
[6755]1708 .arg(_Cic, 19, 'e', 12)
1709 .arg(_OMEGA0, 19, 'e', 12)
1710 .arg(_Cis, 19, 'e', 12);
[6400]1711
1712 out << QString(fmt)
1713 .arg(_i0, 19, 'e', 12)
1714 .arg(_Crc, 19, 'e', 12)
1715 .arg(_omega, 19, 'e', 12)
1716 .arg(_OMEGADOT, 19, 'e', 12);
1717
[6843]1718 double toew = 0.0;
1719 if (_TOEweek > -1.0) {// RINEX input
1720 toew = _TOEweek;
1721 }
1722 else {// RTCM stream input
1723 toew = double(_TOE.bdsw());
1724 }
[6400]1725 out << QString(fmt)
[6843]1726 .arg(_IDOT, 19, 'e', 12)
1727 .arg(0.0, 19, 'e', 12)
1728 .arg(toew, 19, 'e', 12)
1729 .arg(0.0, 19, 'e', 12);
[6400]1730
1731 out << QString(fmt)
[6798]1732 .arg(_URA, 19, 'e', 12)
[6400]1733 .arg(double(_SatH1), 19, 'e', 12)
1734 .arg(_TGD1, 19, 'e', 12)
1735 .arg(_TGD2, 19, 'e', 12);
1736
[6843]1737 double tots = 0.0;
1738 if (_TOEweek > -1.0) {// RINEX input
1739 tots = _TOT;
1740 }
1741 else {// RTCM stream input
[6812]1742 tots = _TOE.bdssec();
[6755]1743 }
[6400]1744 out << QString(fmt)
[6792]1745 .arg(tots, 19, 'e', 12)
[6755]1746 .arg(double(_AODC), 19, 'e', 12)
1747 .arg("", 19, QChar(' '))
1748 .arg("", 19, QChar(' '));
[6400]1749 return rnxStr;
1750}
Note: See TracBrowser for help on using the repository browser.