- Timestamp:
- Jan 16, 2022, 10:00:04 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9601 r9602 266 266 // Check number of observations 267 267 // ---------------------------- 268 269 if (!preProcessing &&270 (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;268 if (!preProcessing) { 269 if (OPT->_obsModelType == OPT->DCMcodeBias || 270 OPT->_obsModelType == OPT->DCMphaseBias) { 271 if (nSat < 2.0) { 272 LOG << " number of observations < 2\n"; 273 return failure; 274 } 275 } 276 else { 277 if (iObs == -1) { 278 LOG << " number of observations == -1\n"; 279 return failure; 280 } 281 281 } 282 282 }
Note:
See TracChangeset
for help on using the changeset viewer.