Changeset 8903 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Mar 18, 2020, 11:08:50 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r8852 r8903 1073 1073 GETBITS(eph._L2PFlag, 1) 1074 1074 GETBITS(fitIntervalFalg, 1) 1075 if (fitIntervalFalg == 0) { 1076 eph._fitInterval = 4.0; 1077 } 1075 eph._fitInterval = fitIntervalFromFlag(fitIntervalFalg, eph._IODC, eph.type()); 1078 1076 eph._TOT = 0.9999e9; 1079 1077 … … 1238 1236 GETBITS(eph._IODC, 10) 1239 1237 GETBITS(fitIntervalFalg, 1) 1240 if (fitIntervalFalg == 0) { 1241 eph._fitInterval = 2.0; 1242 } 1238 eph._fitInterval = fitIntervalFromFlag(fitIntervalFalg, eph._IODC, eph.type()); 1243 1239 eph._TOT = 0.9999e9; 1244 1240
Note:
See TracChangeset
for help on using the changeset viewer.