Changeset 9432 in ntrip for trunk/BNC


Ignore:
Timestamp:
May 18, 2021, 11:15:08 PM (3 years ago)
Author:
stuerze
Message:

update regarding PPP

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

Legend:

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

    r9431 r9432  
    606606      if (_obsPool->refSatChanged()) {
    607607        if(_filter->datumTransformation() != success) {
    608           LOG << "_filter->datumTransformation() != success" << endl;
     608          LOG << "pppFilter::datumTransformation() != success" << endl;
    609609          return finish(failure);
    610610        }
    611611        else {
    612           LOG << "_filter->datumTransformation() == success" << endl;
     612          LOG << "pppFilter::datumTransformation() == success" << endl;
    613613          if (!_obsPool->refSatChangeRequired()) {
    614614            _obsPool->saveLastEpoRefSats();
     
    891891      return failure;
    892892    }
    893     QString str;LOG << prn.toString() << endl;
     893    QString str;
    894894    if (prn == _obsPool->getRefSatMapElementLastEpoch(sys) ||
    895895               _obsPool->getRefSatMapElementLastEpoch(sys) == t_prn() )  {
  • trunk/BNC/src/PPP/pppFilter.cpp

    r9431 r9432  
    286286          PP[iObs] = 1.0 / (obs->sigma(tLC) * obs->sigma(tLC));
    287287        }
    288       }
    289     }
    290     if (OPT->_obsModelType == OPT->DCMcodeBias ||
    291         OPT->_obsModelType == OPT->DCMphaseBias) {
    292       if (iObs < 2) { // TODO SATNUM => usableSys has to be removed
    293         return failure;
    294288      }
    295289    }
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9386 r9432  
    317317  // --------------------------
    318318  if ((_prn.system() == 'R' && (t_lc::includesCode(tLC) ||  t_lc::includesPhase(tLC))) ||
    319       (_prn.system() == 'C' && (t_lc::includesCode(tLC) ||  t_lc::includesPhase(tLC)))) { 
     319      (_prn.system() == 'C' && (t_lc::includesCode(tLC) ||  t_lc::includesPhase(tLC)))) {
    320320    retVal *= 5.0;
    321321  }
     
    359359
    360360  retVal = sqrt(retVal);
     361
     362  if ((_prn.system() == 'R' && t_lc::includesCode(tLC)) ||
     363      (_prn.system() == 'C' && t_lc::includesCode(tLC))) {
     364    retVal *= 3.0;
     365  }
    361366
    362367  return retVal;
Note: See TracChangeset for help on using the changeset viewer.