Changeset 8159 in ntrip for trunk


Ignore:
Timestamp:
Oct 23, 2017, 10:18:46 AM (6 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r8158 r8159  
    109109  /* id */
    110110  GETBITS(i, 30)
     111
    111112  CurrentObsTime.set(i);
    112 
    113113  if (_CurrentTime.valid() && CurrentObsTime != _CurrentTime) {
    114114    decoded = true;
    115     _obsList.append(_CurrentObsList);
     115    _obsList = _CurrentObsList;
    116116    _CurrentObsList.clear();
    117117  }
     
    732732                break;
    733733              case 4:
    734                 qDebug() << "MSM4";
    735734                if (psr[count] > -1.0 / (1 << 10)) {
    736735                  frqObs->_code = psr[count] * LIGHTSPEED / 1000.0
    737736                      + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0;
    738737                  frqObs->_codeValid = true;
    739                   qDebug() << "frqObs->_codeValid";
    740738                }
    741739
     
    745743                          / cd.wl;
    746744                  frqObs->_phaseValid = true;
    747                   qDebug() << "frqObs->_phaseValid";
    748745                  frqObs->_slipCounter = ll[count];
    749746                }
     
    751748                frqObs->_snr = cnr[count];
    752749                frqObs->_snrValid = true;
    753                 qDebug() << "frqObs->_snrValid";
    754750                break;
    755751              case 5:
     
    822818        }
    823819      }
    824       qDebug() << CurrentObs._time.datestr().c_str() << " "
    825           << CurrentObs._time.timestr().c_str();
    826       qDebug() << "CurrentObs._obs.size(): " << CurrentObs._obs.size();
    827       if (CurrentObs._obs.size() > 0) {
     820      if (CurrentObs._obs.size() > 0)
    828821        _CurrentObsList.push_back(CurrentObs);
    829         qDebug() << "_CurrentObsList.push_back(CurrentObs)";
    830       }
    831822    }
    832823  }
Note: See TracChangeset for help on using the changeset viewer.