Changeset 8455 in ntrip for branches/BNC_2.12
- Timestamp:
- Aug 29, 2018, 10:23:59 AM (6 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp
r8200 r8455 1102 1102 GLOFreq[sv - 1] = 100 + eph._frequency_number ; /* store frequency for other users (MSM) */ 1103 1103 _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0); 1104 1104 1105 1105 emit newGlonassEph(eph); 1106 1106 decoded = true; … … 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; -
branches/BNC_2.12/src/ephemeris.cpp
r8420 r8455 341 341 E_last = E; 342 342 E = M + _e*sin(E); 343 343 344 344 if (++nLoop == 100) { 345 345 return failure; … … 623 623 } 624 624 625 625 626 int nSteps = int(fabs(dtPos) / nominalStep) + 1; 626 627 double step = dtPos / nSteps; … … 1205 1206 if ( readDbl(line, pos[1], fieldLen, _agf0 ) || 1206 1207 readDbl(line, pos[2], fieldLen, _agf1 ) || 1207 readDbl(line, pos[3], fieldLen, _TO W) ) {1208 readDbl(line, pos[3], fieldLen, _TOT ) ) { 1208 1209 _checkState = bad; 1209 1210 return; … … 1318 1319 .arg(_agf0, 19, 'e', 12) 1319 1320 .arg(_agf1, 19, 'e', 12) 1320 .arg(_TO W, 19, 'e', 12);1321 .arg(_TOT, 19, 'e', 12); 1321 1322 1322 1323 QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n"; -
branches/BNC_2.12/src/ephemeris.h
r8216 r8455 344 344 t_ephSBAS() { 345 345 _IODN = 0; 346 _TO W= 0.0;346 _TOT = 0.0; 347 347 _agf0 = 0.0; 348 348 _agf1 = 0.0; … … 371 371 372 372 int _IODN; 373 double _TO W; // not used (set to 0.9999e9)373 double _TOT; // not used (set to 0.9999e9) 374 374 double _agf0; // [s] clock correction 375 375 double _agf1; // [s/s] clock correction drift
Note:
See TracChangeset
for help on using the changeset viewer.