Changeset 9376 in ntrip for trunk/BNC/src/bncutils.cpp


Ignore:
Timestamp:
Mar 12, 2021, 11:18:59 AM (3 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r9368 r9376  
    271271  double dt = currentTime - toc;
    272272
    273   // update interval: 2h, data sets are valid for 4 hours + 5 min
    274   if      (eph->type() == t_eph::GPS     && dt > 14700.0) {
     273  // update interval: 2h, data sets are valid for 4 hours
     274  if      (eph->type() == t_eph::GPS     && dt > 14400.0) {
    275275    return true;
    276276  }
    277   // update interval: 3h, data sets are valid for 4 hours + 5 min
    278   else if (eph->type() == t_eph::Galileo && dt > 14700.0) {
     277  // update interval: 3h, data sets are valid for 4 hours
     278  else if (eph->type() == t_eph::Galileo && dt > 14400.0) {
    279279    return true;
    280280  }
    281281  // updated every 30 minutes + 5 min
    282   else if (eph->type() == t_eph::GLONASS && dt > 3900.0) {
     282  else if (eph->type() == t_eph::GLONASS && dt >  3900.0) {
    283283    return true;
    284284  }
    285   // orbit parameters are valid for 7200 seconds (minimum) + 5 min
    286   else if (eph->type() == t_eph::QZSS    && dt > 7500.0) {
     285  // orbit parameters are valid for 7200 seconds (minimum)
     286  else if (eph->type() == t_eph::QZSS    && dt >  7200.0) {
    287287    return true;
    288288  }
    289   // maximum update interval: 300 sec + 5 min
    290   else if (eph->type() == t_eph::SBAS    && dt > 600.0) {
     289  // maximum update interval: 300 sec
     290  else if (eph->type() == t_eph::SBAS    && dt >   600.0) {
    291291    return true;
    292292  }
    293293  // updates 1h + 5 min
    294   else if (eph->type() == t_eph::BDS     && dt > 3900.0) {
     294  else if (eph->type() == t_eph::BDS     && dt >  3900.0) {
    295295    return true;
    296296  }
    297   // update interval: up to 24 hours + 5 min
    298   else if (eph->type() == t_eph::IRNSS   && dt > 86700.0) {
     297  // update interval: up to 24 hours
     298  else if (eph->type() == t_eph::IRNSS   && dt > 86400.0) {
    299299    return true;
    300300  }
Note: See TracChangeset for help on using the changeset viewer.