Changeset 8026 in ntrip for trunk


Ignore:
Timestamp:
Aug 25, 2016, 12:25:41 PM (8 years ago)
Author:
stuerze
Message:

minor changes to prevent the usage of zero observation values in PPP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r7288 r8026  
    7070        for (unsigned ii = 0; ii < pppSatObs._obs.size(); ii++) {
    7171          const t_frqObs* obs = pppSatObs._obs[ii];
    72           if (obs->_rnxType2ch == obsType && obs->_codeValid && obs->_phaseValid) {
     72          if (obs->_rnxType2ch == obsType &&
     73              obs->_codeValid && obs->_code &&
     74              obs->_phaseValid && obs->_phase) {
    7375            _obs[iFreq] = new t_frqObs(*obs);
    7476          }
Note: See TracChangeset for help on using the changeset viewer.