Changeset 10397 in ntrip for trunk/BNC/src/PPP/pppClient.cpp


Ignore:
Timestamp:
Mar 18, 2024, 10:59:05 AM (7 months ago)
Author:
stuerze
Message:

changes regarding PPP

File:
1 edited

Legend:

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

    r10388 r10397  
    296296    // Check Blunders
    297297    // --------------
    298     const double BLUNDER = 100.0;
     298    const double BLUNDER = 150.0;
    299299    double   maxRes      = 0.0;
    300300    unsigned maxResIndex = 0;
     
    379379      }
    380380
    381       if (fabs(maxRes) > 100.0) {
     381      if (fabs(maxRes) > 150.0) {
    382382        LOG << "t_pppClient::cmpOffGps outlier " << maxResPrn.toString() << " " << maxRes << endl;
    383383        delete obsVector.at(maxResIndex);
     
    433433        offGlo = 0.0;
    434434      }
    435       if (fabs(maxRes) > 100.0) {
     435      if (fabs(maxRes) > 150.0) {
    436436        LOG << "t_pppClient::cmpOffGlo outlier " << maxResPrn.toString() << " " << maxRes << endl;
    437437        delete obsVector.at(maxResIndex);
     
    486486      }
    487487
    488       if (fabs(maxRes) > 100.0) {
     488      if (fabs(maxRes) > 150.0) {
    489489        LOG << "t_pppClient::cmpOffGal outlier " << maxResPrn.toString() << " " << maxRes << endl;
    490490        delete obsVector.at(maxResIndex);
     
    539539      }
    540540
    541       if (fabs(maxRes) > 100.0) {
     541      if (fabs(maxRes) > 150.0) {
    542542        LOG << "t_pppClient::cmpOffBDS outlier " << maxResPrn.toString() << " " << maxRes << endl;
    543543        delete obsVector.at(maxResIndex);
Note: See TracChangeset for help on using the changeset viewer.