Changeset 8456 in ntrip
- Timestamp:
- Aug 29, 2018, 10:24:28 AM (6 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r8234 r8456 1222 1222 GETFLOATSIGN(eph._agf1, 8, 1.0 / (1 << 30) / (1 << 10)) 1223 1223 1224 eph._TO W= 0.9999E9;1224 eph._TOT = 0.9999E9; 1225 1225 eph._health = 0; 1226 1226 … … 1372 1372 GETBITS(eph._SatH1, 1) 1373 1373 1374 eph._TO W= 0.9999E9;1374 eph._TOT = 0.9999E9; 1375 1375 emit newBDSEph(eph); 1376 1376 decoded = true; -
trunk/BNC/src/ephemeris.cpp
r8419 r8456 630 630 acc[1] = _y_acceleration * 1.e3; 631 631 acc[2] = _z_acceleration * 1.e3; 632 632 633 for (int ii = 1; ii <= nSteps; ii++) { 633 634 _xv = rungeKutta4(_tt.gpssec(), _xv, step, acc, glo_deriv); … … 1207 1208 if ( readDbl(line, pos[1], fieldLen, _agf0 ) || 1208 1209 readDbl(line, pos[2], fieldLen, _agf1 ) || 1209 readDbl(line, pos[3], fieldLen, _TO W) ) {1210 readDbl(line, pos[3], fieldLen, _TOT ) ) { 1210 1211 _checkState = bad; 1211 1212 return; … … 1320 1321 .arg(_agf0, 19, 'e', 12) 1321 1322 .arg(_agf1, 19, 'e', 12) 1322 .arg(_TO W, 19, 'e', 12);1323 .arg(_TOT, 19, 'e', 12); 1323 1324 1324 1325 QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n"; -
trunk/BNC/src/ephemeris.h
r8215 r8456 343 343 t_ephSBAS() { 344 344 _IODN = 0; 345 _TO W= 0.0;345 _TOT = 0.0; 346 346 _agf0 = 0.0; 347 347 _agf1 = 0.0; … … 370 370 371 371 int _IODN; 372 double _TO W; // not used (set to 0.9999e9)372 double _TOT; // not used (set to 0.9999e9) 373 373 double _agf0; // [s] clock correction 374 374 double _agf1; // [s/s] clock correction drift
Note:
See TracChangeset
for help on using the changeset viewer.