Changeset 10217 in ntrip for trunk/BNC/src
- Timestamp:
- Sep 26, 2023, 2:35:26 PM (14 months ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r10195 r10217 213 213 } 214 214 } 215 /*vector<t_pppSatObs*>::iterator it = obsVector.begin(); 216 while (it != obsVector.end()) { 217 t_pppSatObs* satObs = *it; 218 satObs->printObsMinusComputed(); 219 it++; 220 }*/ 221 215 /* 216 vector<t_pppSatObs*>::iterator it = obsVector.begin(); 217 while (it != obsVector.end()) { 218 t_pppSatObs* satObs = *it; 219 satObs->printObsMinusComputed(); 220 it++; 221 } 222 */ 222 223 return pseudoObsIono; 223 224 } … … 296 297 // Check Blunders 297 298 // -------------- 298 const double BLUNDER = 1 50.0;299 const double BLUNDER = 100.0; 299 300 double maxRes = 0.0; 300 301 unsigned maxResIndex = 0; … … 343 344 t_lc::type tLC = t_lc::dummy; 344 345 double offGlo = 0.0; 345 const double MAXRES = 1 50.0;346 const double MAXRES = 100.0; 346 347 347 348 if (OPT->useSystem('R')) { … … 395 396 t_lc::type tLC = t_lc::dummy; 396 397 double offGal = 0.0; 397 const double MAXRES = 1 50.0;398 const double MAXRES = 100.0; 398 399 399 400 if (OPT->useSystem('E')) { … … 448 449 t_lc::type tLC = t_lc::dummy; 449 450 double offBds = 0.0; 450 const double MAXRES = 1 50.0;451 const double MAXRES = 100.0; 451 452 452 453 if (_opt->useSystem('C')) { -
trunk/BNC/src/PPP/pppSatObs.cpp
r10042 r10217 101 101 if (obs->_rnxType2ch == obsType.toStdString() && 102 102 obs->_codeValid && obs->_code && 103 obs->_phaseValid && obs->_phase && 104 obs->_lockTimeValid && obs->_lockTime > 5.0) { 103 obs->_phaseValid && obs->_phase) { 105 104 _obs[iFreq] = new t_frqObs(*obs); //cout << "================> newObs: " << obs->_rnxType2ch <<endl; 106 105 } -
trunk/BNC/src/bncrinex.cpp
r9760 r10217 186 186 bncNetQuery* query = new bncNetQueryV2(true); 187 187 QByteArray outData; 188 url = sklDir + "/" +staID;188 url = sklDir + staID; 189 189 query->waitForRequestResult(url, outData); 190 190 if (query->status() == bncNetQuery::finished && … … 194 194 } 195 195 else { 196 url = sklDir + "/" +staIDalternative;196 url = sklDir + staIDalternative; 197 197 query->waitForRequestResult(url, outData); 198 198 if (query->status() == bncNetQuery::finished && -
trunk/BNC/src/pppRun.cpp
r10214 r10217 292 292 // Check regarding current time 293 293 // ---------------------------- 294 if ( BNC_CORE->mode() != t_bncCore::batchPostProcessing) {294 if (OPT->_realTime && BNC_CORE->mode() != t_bncCore::batchPostProcessing ) { 295 295 if ((newObs->_time >= currentTime) || // future time stamp 296 296 (currentTime - newObs->_time) > 60.0) { // very old data sets
Note:
See TracChangeset
for help on using the changeset viewer.