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


Ignore:
Timestamp:
Apr 10, 2019, 3:40:43 PM (5 years ago)
Author:
stuerze
Message:

check with respect to wrong observation epochs is improved

File:
1 edited

Legend:

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

    r8646 r8673  
    257257  bncTime currTime(week, sec);
    258258
    259   if (fabs(currTime - obsTime) > maxDt) {
     259  if (((currTime - obsTime) < 0.0) ||
     260      (fabs(currTime - obsTime) > maxDt)) {
    260261    return true;
    261262  }
Note: See TracChangeset for help on using the changeset viewer.