Changeset 9565 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Dec 14, 2021, 1:10:26 PM (2 years ago)
Author:
stuerze
Message:

update regarding PPP

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

Legend:

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

    r9561 r9565  
    517517      }
    518518
    519       // Check if obs have code biases
    520       // -----------------------------
    521       if (OPT->_obsModelType == OPT->DCMcodeBias ||
    522           OPT->_obsModelType == OPT->DCMphaseBias) {
    523         useObsWithCodeBiasesOnly(_obsRover);
    524       }
     519      // use observations only if satellite code biases are available
     520      // ------------------------------------------------------------
     521      useObsWithCodeBiasesOnly(_obsRover);
     522
    525523
    526524      if (int(_obsRover.size()) < _opt->_minObs) {
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9562 r9565  
    311311  retVal = sqrt(retVal);
    312312
    313   // De-Weight GLONASS code measurements
    314   // -----------------------------------
    315   if (_prn.system() == 'R'  &&
    316       (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC) )) {
    317     retVal *= 5.0;
    318   }
    319   if (_prn.system() == 'C'  &&
    320       (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC) )) {
     313  // De-Weight measurements
     314  /* ----------------------
     315  if (_prn.system() == 'R'  && t_lc::includesCode(tLC)) {
    321316    retVal *= 2.0;
    322317  }
    323 
     318*/
    324319  // Elevation-Dependent Weighting
    325320  // -----------------------------
Note: See TracChangeset for help on using the changeset viewer.