Changeset 3771 in ntrip for trunk/BNC/bncwindow.cpp
- Timestamp:
- Apr 4, 2012, 3:25:11 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r3770 r3771 388 388 _pppSPPComboBox = new QComboBox(); 389 389 _pppSPPComboBox->setEditable(false); 390 _pppSPPComboBox->addItems(QString(" PPP,SPP,RNX").split(","));390 _pppSPPComboBox->addItems(QString("Realtime-PPP,Realtime-SPP,Post-Processing").split(",")); 391 391 int ik = _pppSPPComboBox->findText(settings.value("pppSPP").toString()); 392 392 if (ik != -1) { … … 849 849 _pppSync->setMaximumWidth(6*ww); 850 850 _pppSPPComboBox->setMinimumWidth(15*ww); 851 //_pppSPPComboBox->setMaximumWidth(15*ww); // weber852 851 _pppNMEAPortLineEdit->setMaximumWidth(10*ww); 853 852 … … 1161 1160 _pppMountLineEdit->setWhatsThis(tr("<p>Specify an observations stream by its mountpoint from the 'Streams' list compiled below if you want BNC to estimate coordinates for the affected receiver position through a PPP solution. Example: 'FFMJ1'</p><p>Note that PPP in BNC requires to also pull a stream carrying RTCM Version 3 satellite orbit and clock corrections to Broadcast Ephemeris referring to the satellites' Antenna Phase Centers (APC). Stream CLK11 on NTRIP broadcaster products.igs-ip.net is an example.</p><p>Pulling in addition a third stream carrying Broadcast Ephemeris messages in high repetition rate is suggested if such messages are comeing from the receiver in low repetition rate or don't come at all from there.</p>")); 1162 1161 _pppCorrMountLineEdit->setWhatsThis(tr("<p>You must specify an orbit/clock corrections stream by its mountpoint from the 'Streams' list compiled below. Example: 'CLK10'</p>")); 1163 _pppSPPComboBox->setWhatsThis(tr("<p>Choose between plain Single Point Positioning (SPP) and Precise Point Positioning (PPP) .</p>"));1162 _pppSPPComboBox->setWhatsThis(tr("<p>Choose between plain Single Point Positioning (SPP) and Precise Point Positioning (PPP) in real-time and post processing mode.</p>")); 1164 1163 _teqcActionComboBox->setWhatsThis(tr("<p>Select an editing action.</p>")); 1165 1164 _pppUsePhaseCheckBox->setWhatsThis(tr("<p>By default BNC applies a PPP solution using an ionosphere free P3 linear combination of code observations.</p><p>Tick 'Use phase obs' for an ionosphere free L3 linear combination of phase observations.</p>")); … … 2079 2078 2080 2079 enable = (!_pppMountLineEdit->text().isEmpty() && !_pppCorrMountLineEdit->text().isEmpty()) || 2081 (!_pppMountLineEdit->text().isEmpty() && _pppSPPComboBox->currentText() == " SPP") ||2082 (_pppSPPComboBox->currentText() == " RNX");2080 (!_pppMountLineEdit->text().isEmpty() && _pppSPPComboBox->currentText() == "Realtime-SPP") || 2081 (_pppSPPComboBox->currentText() == "Post-Processing"); 2083 2082 2084 2083 enableWidget(enable, _pppNMEALineEdit); … … 2121 2120 enableWidget(enable6, _pppSigPLineEdit); 2122 2121 2123 bool enable7 = enable && _pppSPPComboBox->currentText() == " PPP";2122 bool enable7 = enable && _pppSPPComboBox->currentText() == "Realtime-PPP"; 2124 2123 enableWidget(enable7, _pppSync); 2125 2124 2126 bool enable8 = _pppSPPComboBox->currentText() == " PPP";2125 bool enable8 = _pppSPPComboBox->currentText() == "Realtime-PPP"; 2127 2126 enableWidget(enable8, _pppCorrMountLineEdit); 2128 2127 2129 bool enable9 = _pppSPPComboBox->currentText() == " RNX";2128 bool enable9 = _pppSPPComboBox->currentText() == "Post-Processing"; 2130 2129 enableWidget(enable9, _postObsFileChooser); 2131 2130 enableWidget(enable9, _postNavFileChooser); … … 2156 2155 _aogroup->currentIndex() == _tabIndexPPP2) { 2157 2156 _actPostProcessing->setText("Start PPP"); 2158 bool enable = _pppSPPComboBox->currentText() == " RNX";2157 bool enable = _pppSPPComboBox->currentText() == "Post-Processing"; 2159 2158 _actPostProcessing->setEnabled(enable); 2160 2159 }
Note:
See TracChangeset
for help on using the changeset viewer.