Changeset 10184 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Aug 25, 2023, 8:15:56 AM (9 months ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

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

    r10165 r10184  
    295295    // Check Blunders
    296296    // --------------
    297     const double BLUNDER = 250.0;
     297    const double BLUNDER = 150.0;
    298298    double   maxRes      = 0.0;
    299299    unsigned maxResIndex = 0;
  • trunk/BNC/src/PPP/pppFilter.cpp

    r10183 r10184  
    164164    // Real Observations
    165165    // =================
    166     double nSat = 0;
     166    int nSat = 0;
    167167    for (unsigned ii = 0; ii < obsVector.size(); ii++) {
    168168      t_pppSatObs *obs = obsVector[ii];
     
    192192    // Check number of observations
    193193    // ----------------------------
    194     if (nSat < 2) {
     194    if (nSat < 3) {
    195195      LOG << "t_pppFilter::processSystem not enough observations " << nSat << "\n";
    196196      return failure;
     
    391391      }
    392392      t_lc::type tLC = par->tLC();
    393 //      if (tLC != lc) {continue;}
     393      if (tLC != lc) {continue;}
    394394      LOG << string(_epoTime) << " RESET " << par->toString() << endl;
    395395      delete par; par = new t_pppParam(t_pppParam::amb, prn, tLC, &obsVector);
Note: See TracChangeset for help on using the changeset viewer.