Changeset 9548 in ntrip for trunk/BNC/src/PPP/pppSatObs.cpp
- Timestamp:
- Nov 18, 2021, 4:55:06 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppSatObs.cpp
r9539 r9548 93 93 for (unsigned ii = 0; ii < OPT->LCs(_prn.system()).size(); ii++) { 94 94 t_lc::type tLC = OPT->LCs(_prn.system())[ii]; 95 if (tLC == t_lc::GIM || tLC == t_lc::Tz0) {continue;}95 if (tLC == t_lc::GIM) {continue;} 96 96 if (!isValid(tLC)) { 97 97 _valid = false; … … 191 191 return; 192 192 case t_lc::GIM: 193 case t_lc::Tz0:194 193 case t_lc::dummy: 195 194 case t_lc::maxLc: … … 222 221 return _stecRefSat; 223 222 } 224 }225 226 if (tLC == t_lc::Tz0) {227 return _model._tropo0;228 223 } 229 224 … … 310 305 311 306 retVal = sqrt(retVal); 312 307 /* 313 308 // De-Weight GLONASS 314 309 // ----------------- … … 322 317 retVal *= 2.0; 323 318 } 324 319 */ 325 320 // Elevation-Dependent Weighting 326 321 // ----------------------------- … … 358 353 359 354 retVal = sqrt(retVal); 360 355 /* 361 356 // De-Weight GLONASS 362 357 // ----------------- 363 358 if (_prn.system() == 'R' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 364 retVal *= 2.0;359 retVal *= 5.0; 365 360 } 366 361 … … 370 365 retVal *= 2.0; 371 366 } 372 367 */ 373 368 374 369 return retVal; … … 645 640 cmpValue = _stecSat; 646 641 } 647 else if (tLC == t_lc::Tz0) {648 cmpValue = _model._tropo0;649 }650 642 else { 651 643 // Non-Dispersive Part
Note:
See TracChangeset
for help on using the changeset viewer.