Changeset 9565 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Dec 14, 2021, 1:10:26 PM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r9561 r9565 517 517 } 518 518 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 525 523 526 524 if (int(_obsRover.size()) < _opt->_minObs) { -
trunk/BNC/src/PPP/pppSatObs.cpp
r9562 r9565 311 311 retVal = sqrt(retVal); 312 312 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)) { 321 316 retVal *= 2.0; 322 317 } 323 318 */ 324 319 // Elevation-Dependent Weighting 325 320 // -----------------------------
Note:
See TracChangeset
for help on using the changeset viewer.