Changeset 10217 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Sep 26, 2023, 2:35:26 PM (19 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

    r10195 r10217  
    213213    }
    214214  }
    215   /*vector<t_pppSatObs*>::iterator it = obsVector.begin();
    216       while (it != obsVector.end()) {
    217         t_pppSatObs* satObs = *it;
    218         satObs->printObsMinusComputed();
    219         it++;
    220       }*/
    221 
     215  /*
     216  vector<t_pppSatObs*>::iterator it = obsVector.begin();
     217  while (it != obsVector.end()) {
     218    t_pppSatObs* satObs = *it;
     219    satObs->printObsMinusComputed();
     220    it++;
     221  }
     222*/
    222223  return pseudoObsIono;
    223224}
     
    296297    // Check Blunders
    297298    // --------------
    298     const double BLUNDER = 150.0;
     299    const double BLUNDER = 100.0;
    299300    double   maxRes      = 0.0;
    300301    unsigned maxResIndex = 0;
     
    343344  t_lc::type tLC = t_lc::dummy;
    344345  double offGlo = 0.0;
    345   const double MAXRES = 150.0;
     346  const double MAXRES = 100.0;
    346347
    347348  if (OPT->useSystem('R')) {
     
    395396  t_lc::type tLC  = t_lc::dummy;
    396397  double offGal = 0.0;
    397   const double MAXRES = 150.0;
     398  const double MAXRES = 100.0;
    398399
    399400  if (OPT->useSystem('E')) {
     
    448449  t_lc::type tLC = t_lc::dummy;
    449450  double offBds = 0.0;
    450   const double MAXRES = 150.0;
     451  const double MAXRES = 100.0;
    451452
    452453  if (_opt->useSystem('C')) {
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r10042 r10217  
    101101            if (obs->_rnxType2ch == obsType.toStdString() &&
    102102                obs->_codeValid && obs->_code &&
    103                 obs->_phaseValid && obs->_phase &&
    104                 obs->_lockTimeValid &&  obs->_lockTime > 5.0) {
     103                obs->_phaseValid && obs->_phase) {
    105104              _obs[iFreq] = new t_frqObs(*obs); //cout << "================> newObs: " << obs->_rnxType2ch <<endl;
    106105            }
Note: See TracChangeset for help on using the changeset viewer.