Changeset 10012 in ntrip for trunk/BNC/src/PPP/pppSatObs.cpp


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

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.