Changeset 8373 in ntrip for branches/BNC_2.12/src/rinex
- Timestamp:
- Jun 13, 2018, 2:46:20 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/rinex/reqcedit.cpp
r8370 r8373 336 336 } 337 337 338 i f (_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) { 340 340 applyLLI(obsFile, epo); 341 341 outObsFile.writeEpoch(epo);
Note:
See TracChangeset
for help on using the changeset viewer.