Changeset 9007 in ntrip for trunk/BNC


Ignore:
Timestamp:
Jul 24, 2020, 10:33:13 AM (4 years ago)
Author:
stuerze
Message:

some updates regarding IRNSS mesage numbers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3Decoder.cpp

    r9002 r9007  
    473473  /* id */
    474474  char sys;
    475   if      (type >= 1121)
     475  if      (type >= 1131)
     476    sys = 'I';
     477  else if (type >= 1121)
    476478    sys = 'C';
    477479  else if (type >= 1111)
     
    485487  else if (type >= 1071)
    486488    sys = 'G';
    487   else if (type >=   21) // test
    488     sys = 'I';
    489489
    490490  bncTime CurrentObsTime;
     
    517517   * the full cycles and can't be used later we skip interpretation here already.
    518518   */
    519   if (type <= 1130 && (type % 10) >= 4 && (type % 10) <= 7) {
     519  if (type <= 1137 && (type % 10) >= 4 && (type % 10) <= 7) {
    520520    int sigmask, numsat = 0, numsig = 0;
    521521    uint64_t satmask, cellmask, ui;
     
    16311631       * else. */
    16321632      if ((id >= 1057 && id <= 1068) ||
    1633           (id >= 1240 && id <= 1270) ||
    1634                   (id == 4076)) {
     1633            (id >= 1240 && id <= 1270) ||
     1634                      (id == 4076)) {
    16351635        if (!_coDecoders.contains(_staID.toLatin1()))
    16361636          _coDecoders[_staID.toLatin1()] = new RTCM3coDecoder(_staID);
Note: See TracChangeset for help on using the changeset viewer.