Changeset 8855 in ntrip for branches/BNC_2.12/src/RTCM3
- Timestamp:
- Nov 21, 2019, 10:47:25 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp
r8854 r8855 1082 1082 GETBITS(eph._L2PFlag, 1) 1083 1083 GETBITS(fitIntervalFalg, 1) 1084 if (fitIntervalFalg == 0) { 1085 eph._fitInterval = 4.0; 1086 } 1084 eph._fitInterval = fitIntervalFromFlag(fitIntervalFalg, eph._IODC, eph.type()); 1087 1085 eph._TOT = 0.9999e9; 1088 1086 … … 1247 1245 GETBITS(eph._IODC, 10) 1248 1246 GETBITS(fitIntervalFalg, 1) 1249 if (fitIntervalFalg == 0) { 1250 eph._fitInterval = 2.0; 1251 } 1247 eph._fitInterval = fitIntervalFromFlag(fitIntervalFalg, eph._IODC, eph.type()); 1252 1248 eph._TOT = 0.9999e9; 1253 1249
Note:
See TracChangeset
for help on using the changeset viewer.