Changeset 9618 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jan 23, 2022, 9:42:55 PM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP/pppFilter.cpp ¶
r9604 r9618 270 270 return failure; 271 271 } 272 if (!preProcessing && 273 (OPT->_obsModelType == OPT->DCMcodeBias || 274 OPT->_obsModelType == OPT->DCMphaseBias)) { 275 if (nSat < 2.0) { 276 LOG << " number of observations < 2\n"; 277 return failure; 278 } 279 } 280 272 281 273 if ((!iOutlier) && 282 274 (OPT->_obsModelType == OPT->DCMcodeBias || … … 718 710 for (unsigned jj = 0; jj < allObs.size(); jj++) { 719 711 if (allObs[jj]->prn().system() == sys) { 712 allObs[jj]->resetOutlier(); 720 713 obsVector.push_back(allObs[jj]); 721 714 } -
TabularUnified trunk/BNC/src/PPP/pppSatObs.cpp ¶
r9612 r9618 632 632 //////////////////////////////////////////////////////////////////////////// 633 633 void t_pppSatObs::printObsMinusComputed() const { 634 // TODO: LOGshould be LOG635 cout.setf(ios::fixed);636 cout<< "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl634 // TODO: cout should be LOG 635 LOG.setf(ios::fixed); 636 LOG << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl 637 637 << "========================== " << endl; 638 638 for (unsigned ii = 0; ii < OPT->LCs(_prn.system()).size(); ii++) { 639 639 t_lc::type tLC = OPT->LCs(_prn.system())[ii]; 640 cout<< "OBS-CMP " << setw(4) << t_lc::toString(tLC) << ": " << _prn.toString() << " "640 LOG << "OBS-CMP " << setw(4) << t_lc::toString(tLC) << ": " << _prn.toString() << " " 641 641 << setw(12) << setprecision(3) << obsValue(tLC) << " " 642 642 << setw(12) << setprecision(3) << cmpValue(tLC) << " " … … 644 644 } 645 645 } 646 647 646 648 647 //
Note:
See TracChangeset
for help on using the changeset viewer.