Changeset 6559 in ntrip
- Timestamp:
- Jan 21, 2015, 5:57:23 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncrtnetuploadcaster.cpp
r6557 r6559 64 64 bncSettings settings; 65 65 QString intr = settings.value("uploadIntr").toString(); 66 QStringList help = settings.value("combineStreams").toStringList(); 67 if (help.size() > 1) { // combination stream upload 66 QStringList hlp = settings.value("combineStreams").toStringList(); 67 _samplRtcmEphCorr = settings.value("uploadSamplRtcmEphCorr").toDouble(); 68 if (hlp.size() > 1) { // combination stream upload 68 69 _samplRtcmClkCorr = settings.value("cmbSampl").toInt(); 69 70 } else { // single stream upload or sp3 file generation 70 71 _samplRtcmClkCorr = 5; // default 71 72 } 72 _samplRtcmEphCorr = settings.value("uploadSamplRtcmEphCorr").toDouble();73 73 int samplClkRnx = settings.value("uploadSamplClkRnx").toInt(); 74 74 int samplSp3 = settings.value("uploadSamplSp3").toInt() * 60; … … 311 311 int ephUpdInd = clkUpdInd; // default 312 312 313 if (_samplRtcmEphCorr != 5) { 313 if (_samplRtcmClkCorr > 5.0 && _samplRtcmEphCorr <= 5.0) { // combined orb and clock 314 ephUpdInd = determineUpdateInd(_samplRtcmClkCorr); 315 } 316 if (_samplRtcmClkCorr > 5.0) { 317 clkUpdInd = determineUpdateInd(_samplRtcmClkCorr); 318 } 319 if (_samplRtcmEphCorr > 5.0) { 314 320 ephUpdInd = determineUpdateInd(_samplRtcmEphCorr); 315 }316 if (_samplRtcmClkCorr != 5) {317 clkUpdInd = determineUpdateInd(_samplRtcmClkCorr);318 321 } 319 322
Note:
See TracChangeset
for help on using the changeset viewer.