Changeset 8987 in ntrip for branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp
- Timestamp:
- Jul 20, 2020, 3:54:44 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp
r8938 r8987 1429 1429 GETFLOATSIGN(eph._omega, 32, R2R_PI/(double)(1<<30)/(double)(1<<1)) 1430 1430 GETFLOATSIGN(eph._OMEGADOT, 24, R2R_PI/(double)(1<<30)/(double)(1<<13)) 1431 GETFLOATSIGN(eph._BGD_1_5A, 10, 1432 1.0 / (double )(1 << 30) / (double )(1 << 2)) 1431 GETFLOATSIGN(eph._BGD_1_5A, 10, 1.0 / (double )(1 << 30) / (double )(1 << 2)) 1433 1432 if (eph._inav) { 1434 1433 /* set unused F/NAV values */ … … 1624 1623 * extracted data block. That does no harm, as it anyway skip everything 1625 1624 * else. */ 1626 if ((id >= 1057 && id <= 1068) || (id >= 1240 && id <= 1270)) { 1625 if ((id >= 1057 && id <= 1068) || 1626 (id >= 1240 && id <= 1270) || 1627 (id == 4076)) { 1627 1628 if (!_coDecoders.contains(_staID.toAscii())) 1628 1629 _coDecoders[_staID.toAscii()] = new RTCM3coDecoder(_staID);
Note:
See TracChangeset
for help on using the changeset viewer.