Changeset 9577 in ntrip
- Timestamp:
- Dec 17, 2021, 8:58:51 AM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9570 r9577 354 354 else { 355 355 if (par) { 356 //par->setAmbResetCandidate();356 par->setAmbResetCandidate(); 357 357 obs->setOutlier(); 358 358 } … … 366 366 << obs->prn().toString() << ' ' << setw(8) << setprecision(4) << maxOutlier << endl; 367 367 if (par) { 368 //if (par->ambResetCandidate()) {368 if (par->ambResetCandidate()) { 369 369 resetAmb(par->prn(), obsVector, &QSav, &xSav); 370 //}371 //else {372 //par->setAmbResetCandidate();373 //obs->setOutlier();374 //}370 } 371 else { 372 par->setAmbResetCandidate(); 373 obs->setOutlier(); 374 } 375 375 } 376 376 else { -
trunk/BNC/src/PPP/pppSatObs.cpp
r9576 r9577 319 319 } 320 320 321 if (_prn.system() == 'C' &&322 (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) {323 retVal *= 2.0;324 }325 326 321 // Elevation-Dependent Weighting 327 322 // ----------------------------- … … 359 354 360 355 retVal = sqrt(retVal); 356 357 if (_prn.system() == 'R' && 358 (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 359 retVal *= 2.0; 360 } 361 361 362 362 return retVal;
Note:
See TracChangeset
for help on using the changeset viewer.