Changeset 8170 in ntrip for branches/BNC_2.12


Ignore:
Timestamp:
Oct 27, 2017, 9:26:09 AM (6 years ago)
Author:
stuerze
Message:

update intervall for IRNSS adapted

File:
1 edited

Legend:

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

    r8167 r8170  
    231231    return;
    232232  }
    233   else if (eph->type() == t_eph::BDS     && timeDiff > 6*3600) { // updates 1 (GEO) up to 6 hours
    234     eph->setCheckState(t_eph::outdated);
    235     return;
    236   }
    237   else if (eph->type() == t_eph::IRNSS   && timeDiff > 4*3600) { // update interval: 2h, data sets are valid for 4 hours
     233  else if (eph->type() == t_eph::BDS     && timeDiff > 6*3600) { // updates (GEO) up to 6 hours
     234    eph->setCheckState(t_eph::outdated);
     235    return;
     236  }
     237  else if (eph->type() == t_eph::IRNSS   && timeDiff > 24*3600) { // update interval: up to 24 hours
    238238    eph->setCheckState(t_eph::outdated);
    239239    return;
     
    280280      return;
    281281    }
    282     else if  (eph->type() == t_eph::IRNSS  && dt > 4*3600) {
     282    else if  (eph->type() == t_eph::IRNSS  && dt > 24*3600) {
    283283      ephL->setCheckState(t_eph::outdated);
    284284      return;
Note: See TracChangeset for help on using the changeset viewer.