Changeset 9582 in ntrip
- Timestamp:
- Dec 23, 2021, 12:27:21 PM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9579 r9582 344 344 // for refSats no ambiguity parameter exists 345 345 if ((obs->prn() == refPrn) && 346 (t_lc::toString(maxOutlierLC) == "l1" || t_lc::toString(maxOutlierLC) == "l2" ||347 t_lc::toString(maxOutlierLC) == " c1" || t_lc::toString(maxOutlierLC) == "c2" )) {346 (t_lc::toString(maxOutlierLC) == "l1" || 347 t_lc::toString(maxOutlierLC) == "l2" )) { 348 348 _obsPool->setRefSatChangeRequired(sys, true); 349 349 LOG << epoTimeStr << " Outlier (" … … 353 353 } 354 354 else { 355 if (par) { 356 par->setAmbResetCandidate(); 357 obs->setOutlier(); 358 } 359 else { 360 obs->setOutlier(); 361 } 355 obs->setOutlier(); 362 356 } 363 357 } … … 366 360 << obs->prn().toString() << ' ' << setw(8) << setprecision(4) << maxOutlier << endl; 367 361 if (par) { 368 if (par->ambResetCandidate()) { 369 resetAmb(par->prn(), obsVector, &QSav, &xSav); 370 } 371 else { 372 par->setAmbResetCandidate(); 373 obs->setOutlier(); 374 } 362 resetAmb(par->prn(), obsVector, &QSav, &xSav); 375 363 } 376 364 else { … … 799 787 if (refPrnNew != refPrnOld) { 800 788 t_irc irc = resetAmb(refPrnOld, allObs); 789 if (OPT->_obsModelType == OPT->DCMcodeBias) { 790 if (irc == success) { 791 addNoiseToIono(sys); 792 } 793 } 801 794 } 802 795 } -
trunk/BNC/src/PPP/pppSatObs.cpp
r9581 r9582 314 314 // De-Weight measurements 315 315 // ---------------------- 316 if (_prn.system() == 'R' 317 retVal *= 100.0;316 if (_prn.system() == 'R') { 317 retVal *= 50.0; 318 318 } 319 319 … … 354 354 retVal = sqrt(retVal); 355 355 356 if (_prn.system() == 'R' 356 if (_prn.system() == 'R') { 357 357 retVal *= 5.0; 358 358 }
Note:
See TracChangeset
for help on using the changeset viewer.