Changeset 8372 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Jun 13, 2018, 2:37:07 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcedit.cpp
r8368 r8372 337 337 } 338 338 339 i f (_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) { 341 341 applyLLI(obsFile, epo); 342 342 outObsFile.writeEpoch(epo);
Note:
See TracChangeset
for help on using the changeset viewer.