Changeset 9578 in ntrip
- Timestamp:
- Dec 17, 2021, 3:07:33 PM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r9567 r9578 519 519 // use observations only if satellite code biases are available 520 520 // ------------------------------------------------------------ 521 useObsWithCodeBiasesOnly(_obsRover);521 //useObsWithCodeBiasesOnly(_obsRover); 522 522 523 523 if (int(_obsRover.size()) < _opt->_minObs) { -
trunk/BNC/src/PPP/pppSatObs.cpp
r9577 r9578 314 314 // De-Weight measurements 315 315 // ---------------------- 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 } 319 320 } 320 321 … … 355 356 retVal = sqrt(retVal); 356 357 357 if (_prn.system() == 'R' && 358 (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 358 if (_prn.system() == 'R' && t_lc::includesCode(tLC)) { 359 359 retVal *= 2.0; 360 360 }
Note:
See TracChangeset
for help on using the changeset viewer.