Changeset 10012 in ntrip


Ignore:
Timestamp:
Mar 17, 2023, 5:12:43 PM (13 months ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppFilter.cpp

    r10011 r10012  
    360360      }
    361361      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;
    366362        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;
    367367          _obsPool->setRefSatChangeRequired(sys, true);
    368368          break;
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r10010 r10012  
    3333using namespace std;
    3434
    35 const double   GLO_WEIGHT_FACTOR = 2.0;
    36 const double   BDS_WEIGHT_FACTOR = 2.0;
     35const double   GLO_WEIGHT_FACTOR = 1.0;
     36const double   BDS_WEIGHT_FACTOR = 1.0;
    3737
    3838// Constructor
     
    398398
    399399  retVal = sqrt(retVal);
    400 
    401   // De-Weight GLO+BDS
    402   // -----------------
    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 
    410400
    411401  return retVal;
Note: See TracChangeset for help on using the changeset viewer.