Changeset 9618 in ntrip for trunk/BNC/src
- Timestamp:
- Jan 23, 2022, 9:42:55 PM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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 } -
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 // -
trunk/BNC/src/pppMain.cpp
r9611 r9618 206 206 opt->_obsModelType = t_pppOptions::PPPRTK; 207 207 opt->_pseudoObsIono = false; 208 opt->_noiseIon = 0.1;208 opt->_noiseIon = 10.0; 209 209 } 210 210 else if (settings.value("PPP/modelObs").toString() == "Uncombined PPP") { 211 211 opt->_obsModelType = t_pppOptions::UncombPPP; 212 opt->_noiseIon = 0.1;212 opt->_noiseIon = 10.0; 213 213 if (opt->_pseudoObsIono) { 214 214 opt->_refSatRequired = true; … … 219 219 opt->_refSatRequired = true; 220 220 opt->_noiseCodeBias = 100.0; 221 opt->_noiseIon = 0.1;221 opt->_noiseIon = 10.0; 222 222 } 223 223 else if (settings.value("PPP/modelObs").toString() == "DCM with Phase Biases") { … … 225 225 opt->_refSatRequired = true; 226 226 opt->_noisePhaseBias = 100.0; 227 opt->_noiseIon = 0.1;227 opt->_noiseIon = 10.0; 228 228 } 229 229 #endif
Note:
See TracChangeset
for help on using the changeset viewer.