Changeset 8690 in ntrip
- Timestamp:
- Apr 24, 2019, 2:47:28 PM (6 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bncephuser.cpp
r8677 r8690 227 227 return; 228 228 } 229 else if (eph->type() == t_eph::GLONASS && timeDiff > 1*3600) { // updated every 30 minutes229 else if (eph->type() == t_eph::GLONASS && timeDiff > 2*3600) { // updated every 30 minutes 230 230 eph->setCheckState(t_eph::outdated); 231 231 return; … … 273 273 return; 274 274 } 275 else if (eph->type() == t_eph::GLONASS && dt > 1*3600) {275 else if (eph->type() == t_eph::GLONASS && dt > 2*3600) { 276 276 ephL->setCheckState(t_eph::outdated); 277 277 return; -
branches/BNC_2.12/src/ephemeris.cpp
r8686 r8690 613 613 double dtPos = bncTime(GPSweek, GPSweeks) - _tt; 614 614 615 if (fabs(dtPos) > 3600.0) {615 if (fabs(dtPos) > 24 * 3600.0) { 616 616 return failure; 617 617 }
Note:
See TracChangeset
for help on using the changeset viewer.