Changeset 10222 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Oct 9, 2023, 11:39:03 AM (7 months ago)
Author:
stuerze
Message:

minor changes regarding ppp

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

Legend:

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

    r10220 r10222  
    344344  t_lc::type tLC = t_lc::dummy;
    345345  double offGlo = 0.0;
    346   const double MAXRES = 150.0;
     346  const double MAXRES = 1000.0;
    347347
    348348  if (OPT->useSystem('R')) {
     
    396396  t_lc::type tLC  = t_lc::dummy;
    397397  double offGal = 0.0;
    398   const double MAXRES = 150.0;
     398  const double MAXRES = 1000.0;
    399399
    400400  if (OPT->useSystem('E')) {
     
    449449  t_lc::type tLC = t_lc::dummy;
    450450  double offBds = 0.0;
    451   const double MAXRES = 150.0;
     451  const double MAXRES = 1000.0;
    452452
    453453  if (_opt->useSystem('C')) {
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r10220 r10222  
    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 = 3.0;
     36const double   BDS_WEIGHT_FACTOR = 3.0;
    3737
    3838// Constructor
     
    390390
    391391  retVal = sqrt(retVal);
     392
     393
     394  // Enlarge maxRes GLO+BDS
     395  // ----------------------
     396  if (_prn.system() == 'R' && t_lc::includesCode(tLC)) {
     397    retVal *= GLO_WEIGHT_FACTOR;
     398  }
     399  if (_prn.system() == 'C' && t_lc::includesCode(tLC)){
     400    retVal *= BDS_WEIGHT_FACTOR;
     401  }
    392402
    393403  return retVal;
Note: See TracChangeset for help on using the changeset viewer.