Changeset 10218 in ntrip for trunk/BNC


Ignore:
Timestamp:
Sep 28, 2023, 10:19:15 AM (8 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r10217 r10218  
    297297    // Check Blunders
    298298    // --------------
    299     const double BLUNDER = 100.0;
     299    const double BLUNDER = 150.0;
    300300    double   maxRes      = 0.0;
    301301    unsigned maxResIndex = 0;
     
    344344  t_lc::type tLC = t_lc::dummy;
    345345  double offGlo = 0.0;
    346   const double MAXRES = 100.0;
     346  const double MAXRES = 150.0;
    347347
    348348  if (OPT->useSystem('R')) {
     
    378378      }
    379379      if (fabs(maxRes) > MAXRES) {
    380         LOG << "t_pppClient::cmpOffGlo outlier " << maxResPrn.toString() << " " << maxRes << endl;
     380        LOG << "t_pppClient::cmpOffGlo Outlier " << maxResPrn.toString() << " " << maxRes << endl;
    381381        obsVector.erase(obsVector.begin() + maxResIndex);
    382382      }
     
    396396  t_lc::type tLC  = t_lc::dummy;
    397397  double offGal = 0.0;
    398   const double MAXRES = 100.0;
     398  const double MAXRES = 150.0;
    399399
    400400  if (OPT->useSystem('E')) {
     
    430430      }
    431431      if (fabs(maxRes) > MAXRES) {
    432         LOG << "t_pppClient::cmpOffGal outlier " << maxResPrn.toString() << " " << maxRes << endl;
     432        LOG << "t_pppClient::cmpOffGal Outlier " << maxResPrn.toString() << " " << maxRes << endl;
    433433        obsVector.erase(obsVector.begin() + maxResIndex);
    434434      }
     
    449449  t_lc::type tLC = t_lc::dummy;
    450450  double offBds = 0.0;
    451   const double MAXRES = 100.0;
     451  const double MAXRES = 150.0;
    452452
    453453  if (_opt->useSystem('C')) {
     
    483483      }
    484484      if (fabs(maxRes) > MAXRES) {
    485         LOG << "t_pppClient::cmpOffBds outlier " << maxResPrn.toString() << " " << maxRes << endl;
     485        LOG << "t_pppClient::cmpOffBds Outlier " << maxResPrn.toString() << " " << maxRes << endl;
    486486        delete obsVector.at(maxResIndex);
    487487        obsVector.erase(obsVector.begin() + maxResIndex);
Note: See TracChangeset for help on using the changeset viewer.