Changeset 9699 in ntrip for trunk/BNC/src
- Timestamp:
- Apr 14, 2022, 9:43:06 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9670 r9699 164 164 LOG << "processSystem != success (fin-processing)" << endl; 165 165 if (OPT->_obsModelType == OPT->DCMcodeBias || 166 OPT->_obsModelType == OPT->DCMphaseBias) {166 OPT->_obsModelType == OPT->DCMphaseBias) { 167 167 _xFlt = xFltOld; 168 168 _QFlt = QFltOld; … … 267 267 // Check number of observations 268 268 // ---------------------------- 269 if (iObs == -1) { 270 LOG << " number of observations == -1\n"; 271 return failure; 269 270 if (OPT->_obsModelType == OPT->DCMcodeBias || 271 OPT->_obsModelType == OPT->DCMphaseBias) { 272 if (nSat < 2.0) { 273 LOG << " number of observations < 2\n"; 274 return failure; 275 } 276 } 277 else { 278 if (iObs == -1) { 279 LOG << " number of observations == -1\n"; 280 return failure; 281 } 272 282 } 273 283 … … 348 358 // for refSats no ambiguity parameter exists 349 359 if ((obs->prn() == refPrn) 350 && (t_lc::toString(maxOutlierLC) == "l1" 351 ||t_lc::toString(maxOutlierLC) == "l2")) {360 && (t_lc::toString(maxOutlierLC) == "l1" || 361 t_lc::toString(maxOutlierLC) == "l2")) { 352 362 _obsPool->setRefSatChangeRequired(sys, true); 353 363 LOG << epoTimeStr << " Outlier (" … … 381 391 obs->setRes(tLC, vv[ii]); 382 392 LOG << epoTimeStr << " RES " << left << setw(3) 383 << t_lc::toString(tLC) << right << ' '; 384 if (t_lc::toString(tLC) == "Tz0") { 385 LOG << sys << " "; 386 } else { 387 LOG << obs->prn().toString(); 388 } 393 << t_lc::toString(tLC) << right << ' ' 394 << obs->prn().toString(); 389 395 LOG << setw(9) << setprecision(4) << vv[ii] << endl; 390 396 }
Note:
See TracChangeset
for help on using the changeset viewer.