Changeset 6264 in ntrip


Ignore:
Timestamp:
Oct 28, 2014, 12:42:47 PM (9 years ago)
Author:
stuerze
Message:

minor changes to get more realistic results for gap investigation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r6257 r6264  
    563563      if (prevTime.valid()) {
    564564        double dt = currTime - prevTime;
    565         if (dt != obsInterval) {
     565        double intpart, fractpart;
     566        fractpart = modf(dt, &intpart);
     567        if (fractpart > obsInterval || intpart > obsInterval) {
    566568          gapL1 = true;
    567569          gapL2 = true;
Note: See TracChangeset for help on using the changeset viewer.