Changeset 10218 in ntrip
- Timestamp:
- Sep 28, 2023, 10:19:15 AM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r10217 r10218 297 297 // Check Blunders 298 298 // -------------- 299 const double BLUNDER = 1 00.0;299 const double BLUNDER = 150.0; 300 300 double maxRes = 0.0; 301 301 unsigned maxResIndex = 0; … … 344 344 t_lc::type tLC = t_lc::dummy; 345 345 double offGlo = 0.0; 346 const double MAXRES = 1 00.0;346 const double MAXRES = 150.0; 347 347 348 348 if (OPT->useSystem('R')) { … … 378 378 } 379 379 if (fabs(maxRes) > MAXRES) { 380 LOG << "t_pppClient::cmpOffGlo outlier " << maxResPrn.toString() << " " << maxRes << endl;380 LOG << "t_pppClient::cmpOffGlo Outlier " << maxResPrn.toString() << " " << maxRes << endl; 381 381 obsVector.erase(obsVector.begin() + maxResIndex); 382 382 } … … 396 396 t_lc::type tLC = t_lc::dummy; 397 397 double offGal = 0.0; 398 const double MAXRES = 1 00.0;398 const double MAXRES = 150.0; 399 399 400 400 if (OPT->useSystem('E')) { … … 430 430 } 431 431 if (fabs(maxRes) > MAXRES) { 432 LOG << "t_pppClient::cmpOffGal outlier " << maxResPrn.toString() << " " << maxRes << endl;432 LOG << "t_pppClient::cmpOffGal Outlier " << maxResPrn.toString() << " " << maxRes << endl; 433 433 obsVector.erase(obsVector.begin() + maxResIndex); 434 434 } … … 449 449 t_lc::type tLC = t_lc::dummy; 450 450 double offBds = 0.0; 451 const double MAXRES = 1 00.0;451 const double MAXRES = 150.0; 452 452 453 453 if (_opt->useSystem('C')) { … … 483 483 } 484 484 if (fabs(maxRes) > MAXRES) { 485 LOG << "t_pppClient::cmpOffBds outlier " << maxResPrn.toString() << " " << maxRes << endl;485 LOG << "t_pppClient::cmpOffBds Outlier " << maxResPrn.toString() << " " << maxRes << endl; 486 486 delete obsVector.at(maxResIndex); 487 487 obsVector.erase(obsVector.begin() + maxResIndex);
Note:
See TracChangeset
for help on using the changeset viewer.