Changeset 10012 in ntrip for trunk/BNC/src
- Timestamp:
- Mar 17, 2023, 5:12:43 PM (23 months ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r10011 r10012 360 360 } 361 361 if (preProcessing) { 362 LOG << epoTimeStr << " Outlier ("363 << ((preProcessing) ? "pre-processing) " : "fin-processing) ")364 << t_lc::toString(maxOutlierLC) << ' ' << obs->prn().toString()365 << ' ' << setw(8) << setprecision(4) << maxOutlier << endl;366 362 if (obs->prn() == refPrn) { 363 LOG << epoTimeStr << " Outlier (" 364 << ((preProcessing) ? "pre-processing) " : "fin-processing) ") 365 << t_lc::toString(maxOutlierLC) << ' ' << obs->prn().toString() 366 << ' ' << setw(8) << setprecision(4) << maxOutlier << endl; 367 367 _obsPool->setRefSatChangeRequired(sys, true); 368 368 break; -
trunk/BNC/src/PPP/pppSatObs.cpp
r10010 r10012 33 33 using namespace std; 34 34 35 const double GLO_WEIGHT_FACTOR = 2.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 … … 398 398 399 399 retVal = sqrt(retVal); 400 401 // De-Weight GLO+BDS402 // -----------------403 if (_prn.system() == 'R' && t_lc::includesCode(tLC)) {404 retVal *= GLO_WEIGHT_FACTOR;405 }406 if (_prn.system() == 'C' && t_lc::includesCode(tLC)){407 retVal *= BDS_WEIGHT_FACTOR;408 }409 410 400 411 401 return retVal;
Note:
See TracChangeset
for help on using the changeset viewer.