Changeset 8372 in ntrip for trunk/BNC/src/rinex/reqcedit.cpp


Ignore:
Timestamp:
Jun 13, 2018, 2:37:07 PM (6 years ago)
Author:
stuerze
Message:

minor changes to allow 10 Hz observation data processing (latency checker) and resampling (RINEX files, feed engine)

File:
1 edited

Legend:

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

    r8368 r8372  
    337337        }
    338338
    339         if (_samplingRate == 0 ||
    340             fmod(round(epo->tt.gpssec()), _samplingRate) == 0) {
     339        int sec = int(nint(epo->tt.gpssec()*10));
     340        if (_samplingRate == 0 || sec % (_samplingRate*10) == 0) {
    341341          applyLLI(obsFile, epo);
    342342          outObsFile.writeEpoch(epo);
Note: See TracChangeset for help on using the changeset viewer.