Changeset 9554 in ntrip


Ignore:
Timestamp:
Nov 25, 2021, 1:41:48 PM (2 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r9553 r9554  
    306306  retVal = sqrt(retVal);
    307307
    308   /* De-Weight GLONASS
    309   // -----------------
    310   if ((OPT->_obsModelType == OPT->DCMphaseBias && _prn.system() == 'R' ) &&
    311       (t_lc::includesCode(tLC) ||  t_lc::includesPhase(tLC)) ) {
    312     retVal *= 2.0;
    313   }
    314 */
     308  // De-Weight GLONASS code measurements
     309  // -----------------------------------
     310  if (_prn.system() == 'R'  && t_lc::includesCode(tLC) ) {
     311    retVal *= 5.0;
     312  }
     313
    315314  // Elevation-Dependent Weighting
    316315  // -----------------------------
  • trunk/BNC/src/pppMain.cpp

    r9552 r9554  
    181181    opt->_sigmaC1      = settings.value("PPP/sigmaC1").toDouble(); if (opt->_sigmaC1 <= 0.0)  opt->_sigmaC1  = 1.00;
    182182    opt->_sigmaL1      = settings.value("PPP/sigmaL1").toDouble(); if (opt->_sigmaL1 <= 0.0)  opt->_sigmaL1  = 0.01;
    183     opt->_sigmaGIM     = settings.value("PPP/sigmaGIM").toDouble();if (opt->_sigmaGIM <= 0.0) opt->_sigmaGIM = 3.00;
     183    opt->_sigmaGIM     = settings.value("PPP/sigmaGIM").toDouble();if (opt->_sigmaGIM <= 0.0) opt->_sigmaGIM = 4.00;
    184184    opt->_corrWaitTime = settings.value("PPP/corrWaitTime").toDouble();
    185185    if (!_realTime || opt->_corrMount.empty()) {
Note: See TracChangeset for help on using the changeset viewer.