Changeset 3763 in ntrip


Ignore:
Timestamp:
Apr 1, 2012, 5:58:54 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rinex/bncpostprocess.cpp

    r3762 r3763  
    149149
    150150    for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) {
     151      bool obsOK = true;
    151152      const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs];
    152153      t_obs obs;
     
    188189          obs.slotNum = ((t_ephGlo*) ephPair->last)->slotNum();
    189190        }
     191        else {
     192          obsOK = false;
     193        }
    190194      }
    191195
    192196      // Put the new Observation to the Client
    193197      // -------------------------------------
    194       _pppClient->putNewObs(obs);
     198      if (obsOK) {
     199        _pppClient->putNewObs(obs);
     200      }
    195201    }
    196202    if (nEpo % 10 == 0) {
Note: See TracChangeset for help on using the changeset viewer.