Changeset 10009 in ntrip for trunk


Ignore:
Timestamp:
Mar 17, 2023, 10:17:00 AM (14 months ago)
Author:
stuerze
Message:

minor changes

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

Legend:

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

    r10008 r10009  
    349349      }
    350350      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;
    351355        if (obs->prn() == refPrn) {
    352356          _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;
    357357          break;
    358         } //else {obs->setOutlier();}
     358        } else {
     359          obs->setOutlier();
     360        }
    359361      } else {    // fin-processing
    360362        LOG << epoTimeStr << " Outlier " << t_lc::toString(maxOutlierLC) << ' '
  • trunk/BNC/src/PPP/pppParlist.cpp

    r10004 r10009  
    510510  }
    511511
    512 
    513512  if (OPT->_obsModelType == OPT->DCMcodeBias ||
    514513      OPT->_obsModelType == OPT->DCMphaseBias) {
     
    693692  required.push_back(new t_pppParam(t_pppParam::clkR, t_prn(), t_lc::dummy));
    694693
    695   // Glonass Clock Offset
     694  // GLONASS Clock Offset
    696695  // --------------------
    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'))) {
    698698    required.push_back(new t_pppParam(t_pppParam::offGlo, t_prn(), t_lc::dummy));
    699699  }
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9866 r10009  
    3333using namespace std;
    3434
    35 const double   GLO_WEIGHT_FACTOR = 5.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
     
    4848  _signalPriorities = QString::fromStdString(OPT->_signalPriorities);
    4949  if (!_signalPriorities.size()) {
    50     if (OPT->_obsModelType == OPT->DCMcodeBias || 
     50    if (OPT->_obsModelType == OPT->DCMcodeBias ||
    5151        OPT->_obsModelType == OPT->DCMphaseBias) {
    5252      // 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.