Changeset 9551 in ntrip for trunk/BNC/src/PPP/pppSatObs.cpp
- Timestamp:
- Nov 23, 2021, 2:35:04 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppSatObs.cpp
r9548 r9551 305 305 306 306 retVal = sqrt(retVal); 307 /* 308 / /De-Weight GLONASS307 308 /* De-Weight GLONASS 309 309 // ----------------- 310 if (_prn.system() == 'R' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 311 retVal *= 5.0; 312 } 313 314 // De-Weight BDS 315 // ------------- 316 if (_prn.system() == 'C' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 310 if ((OPT->_obsModelType == OPT->DCMphaseBias && _prn.system() == 'R' ) && 311 (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC)) ) { 317 312 retVal *= 2.0; 318 313 } … … 353 348 354 349 retVal = sqrt(retVal); 355 /*356 // De-Weight GLONASS357 // -----------------358 if (_prn.system() == 'R' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) {359 retVal *= 5.0;360 }361 362 // De-Weight BDS363 // -------------364 if (_prn.system() == 'C' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) {365 retVal *= 2.0;366 }367 */368 350 369 351 return retVal;
Note:
See TracChangeset
for help on using the changeset viewer.