Changeset 9007 in ntrip for trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
- Timestamp:
- Jul 24, 2020, 10:33:13 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r9002 r9007 473 473 /* id */ 474 474 char sys; 475 if (type >= 1121) 475 if (type >= 1131) 476 sys = 'I'; 477 else if (type >= 1121) 476 478 sys = 'C'; 477 479 else if (type >= 1111) … … 485 487 else if (type >= 1071) 486 488 sys = 'G'; 487 else if (type >= 21) // test488 sys = 'I';489 489 490 490 bncTime CurrentObsTime; … … 517 517 * the full cycles and can't be used later we skip interpretation here already. 518 518 */ 519 if (type <= 113 0&& (type % 10) >= 4 && (type % 10) <= 7) {519 if (type <= 1137 && (type % 10) >= 4 && (type % 10) <= 7) { 520 520 int sigmask, numsat = 0, numsig = 0; 521 521 uint64_t satmask, cellmask, ui; … … 1631 1631 * else. */ 1632 1632 if ((id >= 1057 && id <= 1068) || 1633 (id >= 1240 && id <= 1270) ||1634 (id == 4076)) {1633 (id >= 1240 && id <= 1270) || 1634 (id == 4076)) { 1635 1635 if (!_coDecoders.contains(_staID.toLatin1())) 1636 1636 _coDecoders[_staID.toLatin1()] = new RTCM3coDecoder(_staID);
Note:
See TracChangeset
for help on using the changeset viewer.