Changeset 8690 in ntrip for branches/BNC_2.12


Ignore:
Timestamp:
Apr 24, 2019, 2:47:28 PM (5 years ago)
Author:
stuerze
Message:

minor changes

Location:
branches/BNC_2.12/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncephuser.cpp

    r8677 r8690  
    227227      return;
    228228    }
    229     else if (eph->type() == t_eph::GLONASS && timeDiff > 1*3600) { // updated every 30 minutes
     229    else if (eph->type() == t_eph::GLONASS && timeDiff > 2*3600) { // updated every 30 minutes
    230230      eph->setCheckState(t_eph::outdated);
    231231      return;
     
    273273      return;
    274274    }
    275     else if (eph->type() == t_eph::GLONASS && dt > 1*3600) {
     275    else if (eph->type() == t_eph::GLONASS && dt > 2*3600) {
    276276      ephL->setCheckState(t_eph::outdated);
    277277      return;
  • branches/BNC_2.12/src/ephemeris.cpp

    r8686 r8690  
    613613  double dtPos = bncTime(GPSweek, GPSweeks) - _tt;
    614614
    615   if (fabs(dtPos) > 3600.0) {
     615  if (fabs(dtPos) > 24 * 3600.0) {
    616616    return failure;
    617617  }
Note: See TracChangeset for help on using the changeset viewer.