Changeset 8652 in ntrip for branches/BNC_2.12/src
- Timestamp:
- Apr 2, 2019, 9:26:36 PM (6 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bncephuser.cpp
r8613 r8652 221 221 return; 222 222 } 223 else if (eph->type() == t_eph::GLONASS && timeDiff > 1*3600) { // updated every 30 minutes223 else if (eph->type() == t_eph::GLONASS && timeDiff > 2*3600) { // updated every 30 minutes 224 224 eph->setCheckState(t_eph::outdated); 225 225 return; … … 267 267 return; 268 268 } 269 else if (eph->type() == t_eph::GLONASS && dt > 1*3600) {269 else if (eph->type() == t_eph::GLONASS && dt > 2*3600) { 270 270 ephL->setCheckState(t_eph::outdated); 271 271 return; -
branches/BNC_2.12/src/ephemeris.cpp
r8651 r8652 613 613 double dtPos = bncTime(GPSweek, GPSweeks) - _tt; 614 614 615 if (fabs(dtPos) > 3600.0) {615 if (fabs(dtPos) > 2 * 3600.0) { 616 616 return failure; 617 617 }
Note:
See TracChangeset
for help on using the changeset viewer.