- Timestamp:
- Apr 1, 2012, 5:58:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/bncpostprocess.cpp
r3762 r3763 149 149 150 150 for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) { 151 bool obsOK = true; 151 152 const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs]; 152 153 t_obs obs; … … 188 189 obs.slotNum = ((t_ephGlo*) ephPair->last)->slotNum(); 189 190 } 191 else { 192 obsOK = false; 193 } 190 194 } 191 195 192 196 // Put the new Observation to the Client 193 197 // ------------------------------------- 194 _pppClient->putNewObs(obs); 198 if (obsOK) { 199 _pppClient->putNewObs(obs); 200 } 195 201 } 196 202 if (nEpo % 10 == 0) {
Note:
See TracChangeset
for help on using the changeset viewer.