Changeset 9579 in ntrip for trunk/BNC/src/PPP/pppFilter.cpp
- Timestamp:
- Dec 21, 2021, 2:02:02 PM (3 years ago)
- File:
-
- 1 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 }
Note:
See TracChangeset
for help on using the changeset viewer.