Changeset 7041 in ntrip


Ignore:
Timestamp:
Jul 13, 2015, 5:35:22 PM (9 years ago)
Author:
stuerze
Message:

minor changes in ephemeris check regarding alowed age of data sets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncephuser.cpp

    r6981 r7041  
    209209
    210210  if      (eph->type() == t_eph::GPS  || t_eph::Galileo) {
    211     if (timeDiff > 4*3600) { // data sets are valid for 4 hours
     211    if (timeDiff > 4*3600) { // update interval: 2h, data sets are valid for 4 hours
    212212      eph->setCheckState(t_eph::bad);
    213213      return;
     
    221221  }
    222222  else if (eph->type() == t_eph::QZSS) {
    223     if (timeDiff > 1*3600) {
     223    if (timeDiff > 1*1800) {
    224224      eph->setCheckState(t_eph::bad);
    225225      return;
     
    227227  }
    228228  else if (eph->type() == t_eph::SBAS) {
    229     if (timeDiff > 300) { // maximum update interval
     229    if (timeDiff > 600) { // maximum update interval: 300 sec
    230230      eph->setCheckState(t_eph::bad);
    231231      return;
Note: See TracChangeset for help on using the changeset viewer.