- Timestamp:
- Mar 26, 2024, 1:21:58 PM (6 months ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r10406 r10411 310 310 string epoTimeStr = string(_epoTime); 311 311 const vector<t_pppParam*> ¶ms = _parlist->params(); 312 int maxNumberOfReset = 2.0*(obsVector.size() - OPT->_minObs);313 int numberOfReset = 0;314 312 315 313 for (unsigned ii = 0; ii < LCs.size(); ii++) { … … 360 358 361 359 if (fabs(vv) > SLIP) { 362 numberOfReset++;363 360 LOG << epoTimeStr << " cycle slip detected " << t_lc::toString(tLC) << ' ' 364 361 << obs->prn().toString() << ' ' << setw(8) << setprecision(4) << vv << endl; 365 if (numberOfReset < maxNumberOfReset) {366 resetAmb(obs->prn(), obsVector, tLC);367 }368 362 } 369 363 } -
trunk/BNC/src/PPP/pppSatObs.cpp
r10384 r10411 33 33 using namespace std; 34 34 35 const double GLO_WEIGHT_FACTOR = 5.0;36 const double BDS_WEIGHT_FACTOR = 1.0;37 35 38 36 // Constructor … … 354 352 retVal = sqrt(retVal); 355 353 356 // De-Weight R +C357 // ----------- --354 // De-Weight R 355 // ----------- 358 356 if (_prn.system() == 'R') { 359 retVal *= GLO_WEIGHT_FACTOR; 360 } 361 if (_prn.system() == 'C') { 362 retVal *= BDS_WEIGHT_FACTOR; 363 } 357 retVal *= 5.0; 358 } 359 364 360 365 361 // Elevation-Dependent Weighting … … 398 394 399 395 retVal = sqrt(retVal); 396 397 // Enlarge maxRes GLO 398 // ------------------ 399 if (_prn.system() == 'R' && t_lc::includesCode(tLC)) { 400 retVal *= 2.0; 401 } 400 402 401 403 return retVal; -
trunk/BNC/src/combination/bnccomb.cpp
r10410 r10411 1402 1402 double MAX_DISPLACEMENT = MAX_DISPLACEMENT_INIT; 1403 1403 if (sys == 'C') { 1404 MAX_DISPLACEMENT *= 4.0;1404 MAX_DISPLACEMENT *= 3.0; 1405 1405 } 1406 1406 if (sys == 'R') {
Note:
See TracChangeset
for help on using the changeset viewer.