Changeset 8373 in ntrip for branches/BNC_2.12/src/rinex


Ignore:
Timestamp:
Jun 13, 2018, 2:46:20 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
  • branches/BNC_2.12/src/rinex/reqcedit.cpp

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