Changeset 10222 in ntrip for trunk/BNC/src
- Timestamp:
- Oct 9, 2023, 11:39:03 AM (16 months ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r10220 r10222 344 344 t_lc::type tLC = t_lc::dummy; 345 345 double offGlo = 0.0; 346 const double MAXRES = 1 50.0;346 const double MAXRES = 1000.0; 347 347 348 348 if (OPT->useSystem('R')) { … … 396 396 t_lc::type tLC = t_lc::dummy; 397 397 double offGal = 0.0; 398 const double MAXRES = 1 50.0;398 const double MAXRES = 1000.0; 399 399 400 400 if (OPT->useSystem('E')) { … … 449 449 t_lc::type tLC = t_lc::dummy; 450 450 double offBds = 0.0; 451 const double MAXRES = 1 50.0;451 const double MAXRES = 1000.0; 452 452 453 453 if (_opt->useSystem('C')) { -
trunk/BNC/src/PPP/pppSatObs.cpp
r10220 r10222 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 = 3.0; 36 const double BDS_WEIGHT_FACTOR = 3.0; 37 37 38 38 // Constructor … … 390 390 391 391 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 } 392 402 393 403 return retVal;
Note:
See TracChangeset
for help on using the changeset viewer.