- Timestamp:
- Aug 25, 2023, 8:15:56 AM (15 months ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r10165 r10184 295 295 // Check Blunders 296 296 // -------------- 297 const double BLUNDER = 250.0;297 const double BLUNDER = 150.0; 298 298 double maxRes = 0.0; 299 299 unsigned maxResIndex = 0; -
trunk/BNC/src/PPP/pppFilter.cpp
r10183 r10184 164 164 // Real Observations 165 165 // ================= 166 doublenSat = 0;166 int nSat = 0; 167 167 for (unsigned ii = 0; ii < obsVector.size(); ii++) { 168 168 t_pppSatObs *obs = obsVector[ii]; … … 192 192 // Check number of observations 193 193 // ---------------------------- 194 if (nSat < 2) {194 if (nSat < 3) { 195 195 LOG << "t_pppFilter::processSystem not enough observations " << nSat << "\n"; 196 196 return failure; … … 391 391 } 392 392 t_lc::type tLC = par->tLC(); 393 //if (tLC != lc) {continue;}393 if (tLC != lc) {continue;} 394 394 LOG << string(_epoTime) << " RESET " << par->toString() << endl; 395 395 delete par; par = new t_pppParam(t_pppParam::amb, prn, tLC, &obsVector);
Note:
See TracChangeset
for help on using the changeset viewer.