Changeset 8398 in ntrip for branches/BNC_2.12/src/rinex
- Timestamp:
- Jun 28, 2018, 12:53:59 PM (6 years ago)
- Location:
- branches/BNC_2.12/src/rinex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/rinex/reqcanalyze.cpp
r8370 r8398 819 819 << "End Time : " << _qcFile._endTime.datestr().c_str() << ' ' 820 820 << _qcFile._endTime.timestr(1,'.').c_str() << endl 821 << "Interval : " << _qcFile._interval 821 << "Interval : " << _qcFile._interval << " sec" << endl; 822 822 823 823 // Number of systems -
branches/BNC_2.12/src/rinex/reqcedit.cpp
r8373 r8398 69 69 _rnxVersion = defaultRnxObsVersion3; 70 70 } 71 _samplingRate = settings.value("reqcSampling").to Int();71 _samplingRate = settings.value("reqcSampling").toString().split("sec").first().toDouble(); 72 72 _begTime = bncTime(settings.value("reqcStartDateTime").toString().toAscii().data()); 73 73 _endTime = bncTime(settings.value("reqcEndDateTime").toString().toAscii().data()); … … 118 118 << _rnxVersion << endl; 119 119 *_log << QByteArray("Sampling").leftJustified(15) << ": " 120 << _samplingRate << endl;120 << _samplingRate << " sec" << endl; 121 121 *_log << QByteArray("Start time").leftJustified(15) << ": " 122 122 << _begTime.datestr().c_str() << ' ' … … 337 337 338 338 int sec = int(nint(epo->tt.gpssec()*10)); 339 if ( _samplingRate == 0 || sec % (_samplingRate*10) == 0) {339 if (sec % (int(_samplingRate)*10) == 0) { 340 340 applyLLI(obsFile, epo); 341 341 outObsFile.writeEpoch(epo); -
branches/BNC_2.12/src/rinex/reqcedit.h
r7474 r8398 71 71 QString _outNavFileName; 72 72 double _rnxVersion; 73 int_samplingRate;73 double _samplingRate; 74 74 bncTime _begTime; 75 75 bncTime _endTime;
Note:
See TracChangeset
for help on using the changeset viewer.