- Timestamp:
- Aug 22, 2012, 10:16:48 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r4537 r4547 379 379 _pppQuickStartLineEdit = new QLineEdit(settings.value("pppQuickStart").toString()); 380 380 _pppMaxSolGapLineEdit = new QLineEdit(settings.value("pppMaxSolGap").toString()); 381 _pppAudioResponseLineEdit = new QLineEdit(settings.value("pppAudioResponse").toString()); 381 382 _pppRefCrdXLineEdit = new QLineEdit(settings.value("pppRefCrdX").toString()); 382 383 _pppRefCrdYLineEdit = new QLineEdit(settings.value("pppRefCrdY").toString()); … … 887 888 _pppQuickStartLineEdit->setMaximumWidth(6*ww); 888 889 _pppMaxSolGapLineEdit->setMaximumWidth(6*ww); 890 _pppAudioResponseLineEdit->setMaximumWidth(6*ww); 889 891 _pppRefCrdXLineEdit->setMaximumWidth(10*ww); 890 892 _pppRefCrdYLineEdit->setMaximumWidth(10*ww); … … 987 989 ppp2Layout->addWidget(_pppMaxSolGapLineEdit, ir, 7, Qt::AlignRight); 988 990 ppp2Layout->addWidget(new QLabel("Max Sol. Gap (sec)"), ir, 8); 991 ++ir; 992 ppp2Layout->addWidget(new QLabel("Basics cont'd"), ir, 0); 993 ppp2Layout->addWidget(_pppAudioResponseLineEdit, ir, 1, Qt::AlignRight); 994 ppp2Layout->addWidget(new QLabel("Audio response (m)"), ir, 2); 989 995 ++ir; 990 996 ppp2Layout->addWidget(new QLabel("Sigmas"), ir, 0); … … 1257 1263 _pppQuickStartLineEdit->setWhatsThis(tr("<p>Enter the lenght of a startup period in seconds for which you want to fix the PPP solution to a known XYZ coordinate as introduced above and adjust a sigma 'XYZ Ini' according to the coordinate's precision. Fixing the coordinate is done in BNC through setting the 'Sigma XYZ Noise' you define below temporarily to zero.</p><p>This so-called Quick-Start option allows the PPP solution to rapidly converge. It requires that the antenna remains unmoved on the know position throughout the startup period.</p><p>A value of 120 is likely to be an appropriate choice for 'Quick-Start'. Default is an empty option field, meaning that you don't want BNC to operate in Quick-Start mode.</p>")); 1258 1264 _pppMaxSolGapLineEdit->setWhatsThis(tr("<p>Specify a 'Maximum Solution Gap' in seconds. Should the time span between two consecutive solutions exceed this limit, the algorithm returns into Quick-Start mode and fixes the introduced reference coordinate for the specified period. A value of '60' seconds could be an appropriate choice.</p><p>This option makes only sense for a stationary operated receiver where solution convergence can be enforced because a good approximation for the rover position is known. Default is an empty option field, meaning that you don't want BNC to return into the Quick-Start mode after failures caused i.e. by longer lasting outages.</p>")); 1265 _pppAudioResponseLineEdit->setWhatsThis(tr("<p>Specify an 'Audio response' threshold in meters. A beep is produced by BNC whenever a horizontal PPP coordinate component differs by more than the threshold value from the marker coordinate.</p><p>Default is an empty option field, meaning that you don't want BNC to produce alarm signals.</p>")); 1259 1266 _pppSigPLineEdit->setWhatsThis(tr("<p>Enter a sigma for your phase observations in meters.</p><p>The higher the sigma you enter, the less the contribution of phase observations to a PPP solutions based on a combination of code and phase data. 0.02 (default) is likely to be an appropriate choice.</p>")); 1260 1267 _pppAverageLineEdit->setWhatsThis(tr("<p>Enter the length of a sliding time window in minutes. BNC will continuously output moving average positions computed from those individual positions obtained most recently throughout this period.</p><p>An empty option field (default) means that you don't want BNC to output moving average positions.</p>")); … … 1721 1728 settings.setValue("pppQuickStart", _pppQuickStartLineEdit->text()); 1722 1729 settings.setValue("pppMaxSolGap", _pppMaxSolGapLineEdit->text()); 1730 settings.setValue("pppAudioResponse", _pppAudioResponseLineEdit->text()); 1723 1731 settings.setValue("pppSigmaCode",_pppSigCLineEdit->text()); 1724 1732 settings.setValue("pppSigmaPhase",_pppSigPLineEdit->text()); … … 2301 2309 bool enable3 = enable2 && !_pppQuickStartLineEdit->text().isEmpty(); 2302 2310 enableWidget(enable3, _pppMaxSolGapLineEdit); 2311 enableWidget(enable3, _pppAudioResponseLineEdit); 2303 2312 2304 2313 bool enable4 = enable && !_pppAntexFileChooser->fileName().isEmpty();
Note:
See TracChangeset
for help on using the changeset viewer.