Changeset 9579 in ntrip
- Timestamp:
- Dec 21, 2021, 2:02:02 PM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9577 r9579 344 344 // for refSats no ambiguity parameter exists 345 345 if ((obs->prn() == refPrn) && 346 (t_lc::toString(maxOutlierLC) == "l1" || 347 t_lc::toString(maxOutlierLC) == " l2")) {346 (t_lc::toString(maxOutlierLC) == "l1" || t_lc::toString(maxOutlierLC) == "l2" || 347 t_lc::toString(maxOutlierLC) == "c1" || t_lc::toString(maxOutlierLC) == "c2" )) { 348 348 _obsPool->setRefSatChangeRequired(sys, true); 349 349 LOG << epoTimeStr << " Outlier (" … … 540 540 LOG << string(_epoTime) << " ADD IONO_NOISE TO " << par->prn().toString() << endl; 541 541 par->setIndex(ind); 542 _QFlt(ind+1,ind+1) += par->sigma0() * par->sigma0();542 _QFlt(ind+1,ind+1) = par->sigma0() * par->sigma0(); 543 543 irc = success; 544 544 } … … 786 786 _xFlt = _datumTrafo->D21() * xFltOld; 787 787 788 //#ifdef BNC_DEBUG_PPP788 #ifdef BNC_DEBUG_PPP 789 789 LOG << "xFltOld:\n" << xFltOld << endl; 790 790 LOG << "xFlt :\n" << _xFlt << endl; 791 //#endif791 #endif 792 792 793 793 // Reset Ambiguities after Datum Transformation … … 799 799 if (refPrnNew != refPrnOld) { 800 800 t_irc irc = resetAmb(refPrnOld, allObs); 801 if (OPT->_obsModelType == OPT->DCMcodeBias) {802 if (irc == success) {803 addNoiseToIono(sys);804 }805 }806 801 } 807 802 } -
trunk/BNC/src/PPP/pppSatObs.cpp
r9578 r9579 315 315 // ---------------------- 316 316 if (_prn.system() == 'R' ) { 317 if (t_lc::includesCode(tLC)) { 318 retVal *= 100.0; 319 } 317 retVal *= 5.0; 320 318 } 321 319 … … 356 354 retVal = sqrt(retVal); 357 355 358 if (_prn.system() == 'R' && t_lc::includesCode(tLC)) {359 retVal *= 2.0;356 if (_prn.system() == 'R' ) { 357 retVal *= 5.0; 360 358 } 361 359
Note:
See TracChangeset
for help on using the changeset viewer.