Changeset 9578 in ntrip for trunk


Ignore:
Timestamp:
Dec 17, 2021, 3:07:33 PM (2 years ago)
Author:
stuerze
Message:

minor changes

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

Legend:

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

    r9567 r9578  
    519519      // use observations only if satellite code biases are available
    520520      // ------------------------------------------------------------
    521       useObsWithCodeBiasesOnly(_obsRover);
     521      //useObsWithCodeBiasesOnly(_obsRover);
    522522
    523523      if (int(_obsRover.size()) < _opt->_minObs) {
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9577 r9578  
    314314  // De-Weight measurements
    315315  // ----------------------
    316   if (_prn.system() == 'R'  &&
    317       (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) {
    318     retVal *= 10.0;
     316  if (_prn.system() == 'R' ) {
     317    if (t_lc::includesCode(tLC)) {
     318      retVal *= 100.0;
     319    }
    319320  }
    320321
     
    355356  retVal = sqrt(retVal);
    356357
    357   if (_prn.system() == 'R'  &&
    358       (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) {
     358  if (_prn.system() == 'R'  && t_lc::includesCode(tLC)) {
    359359    retVal *= 2.0;
    360360  }
Note: See TracChangeset for help on using the changeset viewer.