Changeset 8492 in ntrip for branches/BNC_2.12
- Timestamp:
- Sep 24, 2018, 2:13:47 PM (6 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bncwindow.cpp
r8424 r8492 280 280 _outSamplComboBox = new QComboBox(); 281 281 _outSamplComboBox->addItems(QString("0.1 sec,1 sec,5 sec,10 sec,15 sec,30 sec,60 sec").split(",")); 282 int nn = _ rnxSamplComboBox->findText(settings.value("rnxSampl").toString());282 int nn = _outSamplComboBox->findText(settings.value("outSampl").toString()); 283 283 if (nn != -1) { 284 _ rnxSamplComboBox->setCurrentIndex(nn);284 _outSamplComboBox->setCurrentIndex(nn); 285 285 } 286 286 _outFileLineEdit = new QLineEdit(settings.value("outFile").toString()); … … 2185 2185 populateMountPointsTable(); 2186 2186 bncSettings settings; 2187 _outSamplComboBox->findText(settings.value(" rnxSampl").toString());2187 _outSamplComboBox->findText(settings.value("outSampl").toString()); 2188 2188 _outWaitSpinBox->setValue(settings.value("outWait").toInt()); 2189 2189 QListIterator<bncGetThread*> iTh(threads); -
branches/BNC_2.12/src/reqcdlg.cpp
r8398 r8492 35 35 * Created: 28-Mar-2012 36 36 * 37 * Changes: 37 * Changes: 38 38 * 39 39 * -----------------------------------------------------------------------*/ … … 90 90 _reqcSampling->addItems(QString("0.1 sec,1 sec,5 sec,10 sec,15 sec,30 sec,60 sec").split(",")); 91 91 bncSettings settings; 92 int ll = _reqcSampling->findText(settings.value("reqcSampl ").toString());92 int ll = _reqcSampling->findText(settings.value("reqcSampling").toString()); 93 93 if (ll != -1) { 94 94 _reqcSampling->setCurrentIndex(ll); … … 229 229 // WhatsThis, RINEX Editing & QC 230 230 // ----------------------------- 231 _reqcRnxVersion->setWhatsThis(tr("<p>Select version number of emerging new RINEX file.</p><p>Note the following:</p><p>When converting <u>RINEX Version 2 to Version 3 </u>Observation files, the tracking mode or channel information (signal attribute, see RINEX Version 3 documentation) in the (last out of the three characters) observation code is left blank if unknown.</p><p>When converting <u>RINEX Version 3 to Version 2</u>, the mapping of observations follows a 'Signal priority list' with signal attributes as defined in RINEX Version 3.</p>")); 231 _reqcRnxVersion->setWhatsThis(tr("<p>Select version number of emerging new RINEX file.</p><p>Note the following:</p><p>When converting <u>RINEX Version 2 to Version 3 </u>Observation files, the tracking mode or channel information (signal attribute, see RINEX Version 3 documentation) in the (last out of the three characters) observation code is left blank if unknown.</p><p>When converting <u>RINEX Version 3 to Version 2</u>, the mapping of observations follows a 'Signal priority list' with signal attributes as defined in RINEX Version 3.</p>")); 232 232 _reqcSampling->setWhatsThis(tr("<p>Select sampling rate of emerging new RINEX Observation file.</p>")); 233 233 _reqcV2Priority->setWhatsThis(tr("<p>Specify a priority list of characters defining signal attributes as defined in RINEX Version 3. Priorities will be used to map observations with RINEX Version 3 attributes from incoming streams to Version 2. The underscore character '_' stands for undefined attributes. A question mark '?' can be used as wildcard which represents any one character.</p><p>Signal priorities can be specified as equal for all systems, as system specific or as system and freq. specific. For example: </li><ul><li>'CWPX_?' (General signal priorities valid for all GNSS) </li><li>'C:IQX I:ABCX' (System specific signal priorities for BDS and IRNSS) </li><li>'G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX' (System and frequency specific signal priorities) </li></ul>Default is the following priority list 'G:12&PWCSLXYN_ G:5&IQX_ R:12&PC_ R:3&IQX_ E:16&BCX_ E:578&IQX_ J:1&SLXCZ_ J:26&SLX_ J:5&IQX_ C:IQX_ I:ABCX_ S:1&C_ S:5&IQX_'.</p>")); … … 280 280 void reqcDlg::closeEvent(QCloseEvent* event) { 281 281 282 int iRet = QMessageBox::question(this, "Close", "Save Options?", 282 int iRet = QMessageBox::question(this, "Close", "Save Options?", 283 283 QMessageBox::Yes, QMessageBox::No, 284 284 QMessageBox::Cancel);
Note:
See TracChangeset
for help on using the changeset viewer.