Changeset 9562 in ntrip


Ignore:
Timestamp:
Dec 3, 2021, 3:25:41 PM (2 years ago)
Author:
stuerze
Message:

update regarding PPP

Location:
trunk/BNC/src
Files:
3 edited

Legend:

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

    r9557 r9562  
    355355          if (par) {
    356356            par->setAmbResetCandidate();
     357            obs->setOutlier();
     358          }
     359          else {
     360            obs->setOutlier();
    357361          }
    358362        }
     
    782786  _xFlt =  _datumTrafo->D21() * xFltOld;
    783787
    784 #ifdef BNC_DEBUG_PPP
    785   //LOG << "xFltOld:\n" << xFltOld << endl;
    786   //LOG << "xFlt   :\n" << _xFlt   << endl;
    787 #endif
     788//#ifdef BNC_DEBUG_PPP
     789  LOG << "xFltOld:\n" << xFltOld << endl;
     790  LOG << "xFlt   :\n" << _xFlt   << endl;
     791//#endif
    788792
    789793  // Reset Ambiguities after Datum Transformation
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9561 r9562  
    6868  if (OPT->_obsModelType == OPT->DCMcodeBias ||
    6969      OPT->_obsModelType == OPT->DCMphaseBias) {
    70     // at the moment only one code or phase bias per system (G,E,C)/modulation considered,
    71     preferredAttrib = "G:12&W R:12&PC E:1&CX E:5&QX C:26&I";
     70    // at the moment only one code or phase bias per system (G,R,E,C)/modulation considered,
     71    preferredAttrib = "G:12&W R:12&P E:1&CX E:5&QX C:26&I";
    7272  }
    7373
     
    313313  // De-Weight GLONASS code measurements
    314314  // -----------------------------------
    315   if (_prn.system() == 'R'  && t_lc::includesCode(tLC) ) {
     315  if (_prn.system() == 'R'  &&
     316      (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC) )) {
    316317    retVal *= 5.0;
     318  }
     319  if (_prn.system() == 'C'  &&
     320      (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC) )) {
     321    retVal *= 2.0;
    317322  }
    318323
  • trunk/BNC/src/pppMain.cpp

    r9561 r9562  
    216216      opt->_obsModelType = t_pppOptions::DCMcodeBias;
    217217      opt->_refSatRequired = true;
    218       opt->_noiseCodeBias  = 100.0;
     218      opt->_noiseCodeBias  = 1000.0;
    219219      opt->_noiseIon = 0.1;
    220220    }
     
    222222      opt->_obsModelType = t_pppOptions::DCMphaseBias;
    223223      opt->_refSatRequired = true;
    224       opt->_noisePhaseBias = 100.0;
     224      opt->_noisePhaseBias = 1000.0;
    225225      opt->_noiseIon = 0.1;
    226226    }
Note: See TracChangeset for help on using the changeset viewer.