Changeset 10217 in ntrip


Ignore:
Timestamp:
Sep 26, 2023, 2:35:26 PM (7 months ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
4 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            }
  • trunk/BNC/src/bncrinex.cpp

    r9760 r10217  
    186186    bncNetQuery* query = new bncNetQueryV2(true);
    187187    QByteArray outData;
    188     url = sklDir + "/" + staID;
     188    url = sklDir + staID;
    189189    query->waitForRequestResult(url, outData);
    190190    if (query->status() == bncNetQuery::finished &&
     
    194194    }
    195195    else {
    196       url = sklDir + "/" + staIDalternative;
     196      url = sklDir + staIDalternative;
    197197      query->waitForRequestResult(url, outData);
    198198      if (query->status() == bncNetQuery::finished &&
  • trunk/BNC/src/pppRun.cpp

    r10214 r10217  
    292292    // Check regarding current time
    293293    // ----------------------------
    294     if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
     294    if (OPT->_realTime && BNC_CORE->mode() != t_bncCore::batchPostProcessing ) {
    295295      if ((newObs->_time >= currentTime) ||        // future time stamp
    296296          (currentTime - newObs->_time) > 60.0) {  // very old data sets
Note: See TracChangeset for help on using the changeset viewer.