Changeset 9265 in ntrip for trunk/BNC/src
- Timestamp:
- Nov 21, 2020, 9:41:29 PM (4 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncephuser.cpp
r9260 r9265 314 314 } 315 315 316 if (diff < MAXDIFF || diffC < MAXDIFF) {316 if (diff < MAXDIFF) { 317 317 if (dt != 0.0) { 318 318 if (diff < MINDIFF && diffC < MINDIFF && ephL->checkState() == t_eph::ok) { -
trunk/BNC/src/combination/bnccomb.cpp
r9264 r9265 405 405 t_eph* ephPrev = _ephUser.ephPrev(prn); 406 406 if (ephLast == 0) { 407 //emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1(), true);407 emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1(), true); 408 408 delete newCorr; 409 409 continue; … … 418 418 } 419 419 else { 420 //emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1() +421 //QString(" with IOD %1").arg(newCorr->_iod).toLatin1(), true);420 emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1() + 421 QString(" with IOD %1").arg(newCorr->_iod).toLatin1(), true); 422 422 delete newCorr; 423 423 continue; … … 458 458 return; 459 459 } 460 // No switch, if the last one is too recent 460 461 /* No switch, if the last one is too recent 461 462 // ---------------------------------------- 462 463 const int MINAGE = 100; // seconds, upload is waiting 60 seconds + combi has ~30 seconds latency … … 464 465 lastEph->receptDateTime().secsTo(currentDateAndTimeGPS()) < MINAGE) { 465 466 return; 466 } 467 467 }*/ 468 468 469 ColumnVector oldXC(6); 469 470 ColumnVector oldVV(3); … … 477 478 ColumnVector dV = newVV - oldVV; 478 479 double dC = newXC(4) - oldXC(4); 479 480 480 481 /* small check 481 482 // -----------
Note:
See TracChangeset
for help on using the changeset viewer.