- Timestamp:
- Mar 17, 2023, 10:17:00 AM (23 months ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r10008 r10009 349 349 } 350 350 if (preProcessing) { 351 LOG << epoTimeStr << " Outlier (" 352 << ((preProcessing) ? "pre-processing) " : "fin-processing) ") 353 << t_lc::toString(maxOutlierLC) << ' ' << obs->prn().toString() 354 << ' ' << setw(8) << setprecision(4) << maxOutlier << endl; 351 355 if (obs->prn() == refPrn) { 352 356 _obsPool->setRefSatChangeRequired(sys, true); 353 LOG << epoTimeStr << " Outlier ("354 << ((preProcessing) ? "pre-processing) " : "fin-processing) ")355 << t_lc::toString(maxOutlierLC) << ' ' << obs->prn().toString()356 << ' ' << setw(8) << setprecision(4) << maxOutlier << endl;357 357 break; 358 } //else {obs->setOutlier();} 358 } else { 359 obs->setOutlier(); 360 } 359 361 } else { // fin-processing 360 362 LOG << epoTimeStr << " Outlier " << t_lc::toString(maxOutlierLC) << ' ' -
trunk/BNC/src/PPP/pppParlist.cpp
r10004 r10009 510 510 } 511 511 512 513 512 if (OPT->_obsModelType == OPT->DCMcodeBias || 514 513 OPT->_obsModelType == OPT->DCMphaseBias) { … … 693 692 required.push_back(new t_pppParam(t_pppParam::clkR, t_prn(), t_lc::dummy)); 694 693 695 // G lonassClock Offset694 // GLONASS Clock Offset 696 695 // -------------------- 697 if (_usedSystems.contains('R') && (_usedSystems.contains('G') || _usedSystems.contains('E'))) { 696 if ( _usedSystems.contains('R') && 697 (_usedSystems.contains('G') || _usedSystems.contains('E') || _usedSystems.contains('C'))) { 698 698 required.push_back(new t_pppParam(t_pppParam::offGlo, t_prn(), t_lc::dummy)); 699 699 } -
trunk/BNC/src/PPP/pppSatObs.cpp
r9866 r10009 33 33 using namespace std; 34 34 35 const double GLO_WEIGHT_FACTOR = 5.0;36 const double BDS_WEIGHT_FACTOR = 2.0;35 const double GLO_WEIGHT_FACTOR = 1.0; 36 const double BDS_WEIGHT_FACTOR = 1.0; 37 37 38 38 // Constructor … … 48 48 _signalPriorities = QString::fromStdString(OPT->_signalPriorities); 49 49 if (!_signalPriorities.size()) { 50 if (OPT->_obsModelType == OPT->DCMcodeBias || 50 if (OPT->_obsModelType == OPT->DCMcodeBias || 51 51 OPT->_obsModelType == OPT->DCMphaseBias) { 52 52 // at the moment only one code or phase bias per system (G,R,E,C)/modulation considered
Note:
See TracChangeset
for help on using the changeset viewer.