Changeset 9659 in ntrip for trunk/BNC


Ignore:
Timestamp:
Mar 16, 2022, 2:39:32 PM (2 years ago)
Author:
stuerze
Message:

minor changes regarding PPP

Location:
trunk/BNC/src
Files:
4 edited

Legend:

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

    r9657 r9659  
    536536    if (par->type() == parType && par->prn().system() == sys) {
    537537      int ind = par->indexNew();
    538       LOG << string(_epoTime) << " ADD " << par->toString() << "_NOISE TO "
    539           << par->prn().toString()  << endl;
     538      LOG << string(_epoTime) << " ADD NOISE TO " << par->toString() << endl;
    540539      par->setIndex(ind);
    541540      _QFlt(ind + 1, ind + 1) = par->sigma0() * par->sigma0();
  • trunk/BNC/src/PPP/pppParlist.cpp

    r9644 r9659  
    601601        required.push_back(new t_pppParam(t_pppParam::cBiasG2, t_prn(), t_lc::c2));
    602602      }
    603     }
     603    }/*
    604604    if (_usedSystems.contains('R')) {
    605605      lc = OPT->LCs('R');
     
    610610        required.push_back(new t_pppParam(t_pppParam::cBiasR2, t_prn(), t_lc::c2));
    611611      }
    612     }
     612    }*/
    613613    if (_usedSystems.contains('E')) {
    614614      lc = OPT->LCs('E');
     
    644644        required.push_back(new t_pppParam(t_pppParam::pBiasG2, t_prn(), t_lc::l2));
    645645      }
    646     }
     646    }/*
    647647    if (_usedSystems.contains('R')) {
    648648      lc = OPT->LCs('R');
     
    653653        required.push_back(new t_pppParam(t_pppParam::pBiasR2, t_prn(), t_lc::l2));
    654654      }
    655     }
     655    }*/
    656656    if (_usedSystems.contains('E')) {
    657657      lc = OPT->LCs('E');
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9657 r9659  
    347347  // De-Weight GLONASS
    348348  // -----------------
    349   if (_prn.system() == 'R') {
    350     retVal *= 2.0;
     349  if (_prn.system() == 'R' &&
     350      (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) {
     351    retVal *= 5.0;
    351352  }
    352353
  • trunk/BNC/src/pppMain.cpp

    r9657 r9659  
    218218      opt->_obsModelType = t_pppOptions::DCMcodeBias;
    219219      opt->_refSatRequired = true;
    220       opt->_noiseCodeBias  = 0.01;
     220      opt->_noiseCodeBias  = 0.1;
    221221      opt->_noiseIon = 0.1;
    222222    }
     
    224224      opt->_obsModelType = t_pppOptions::DCMphaseBias;
    225225      opt->_refSatRequired = true;
    226       opt->_noisePhaseBias = 0.01;
     226      opt->_noisePhaseBias = 0.1;
    227227      opt->_noiseIon = 0.1;
    228228    }
Note: See TracChangeset for help on using the changeset viewer.