- Timestamp:
- May 22, 2012, 3:03:51 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncsettings.cpp
r4182 r4209 129 129 setValue_p("pppAntenna", ""); 130 130 setValue_p("pppAntex", ""); 131 setValue_p("pppApplySatAnt", "0");132 131 setValue_p("pppUsePhase", ""); 133 132 setValue_p("pppEstTropo", ""); -
trunk/BNC/bncwindow.cpp
r4202 r4209 414 414 _pppPlotCoordinates->setCheckState(Qt::CheckState( 415 415 settings.value("pppPlotCoordinates").toInt())); 416 417 _pppApplySatAntCheckBox = new QCheckBox();418 _pppApplySatAntCheckBox->setCheckState(Qt::CheckState(419 settings.value("pppApplySatAnt").toInt()));420 416 421 417 connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)), … … 971 967 ppp2Layout->addWidget(_pppAntennaLineEdit, ir, 5,1,3); 972 968 ppp2Layout->addWidget(new QLabel("Antenna Name"), ir, 8); 973 ++ir;974 ppp2Layout->addWidget(new QLabel("Antennas cont'd"), ir, 0);975 ppp2Layout->addWidget(_pppApplySatAntCheckBox, ir, 1, Qt::AlignRight);976 ppp2Layout->addWidget(new QLabel("Apply Sat. Ant. Offsets"),ir, 2);977 969 ++ir; 978 970 ppp2Layout->addWidget(new QLabel("Basics"), ir, 0, 1, 5); … … 1278 1270 _pppAntexFileChooser->setWhatsThis(tr("<p>IGS provides a file containing absolute phase center corrections for GNSS satellite and receiver antennas in ANTEX format. Entering the full path to such an ANTEX file is required for correcting observations for antenna phase center offsets and variations. It allows you to specify the name of your receiver's antenna (as contained in the ANTEX file) to apply such corrections.</p><p>Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets and variations.</p>")); 1279 1271 _pppAntennaLineEdit->setWhatsThis(tr("<p>Specify the receiver's antenna name as defined in your ANTEX file. Observations will be corrected for the antenna phase center's offset which may result in a reduction of a few centimeters at max. Corrections for phase center variations are not yet applied by BNC. The specified name must consist of 20 characters. Add trailing blanks if the antenna name has less then 20 characters.</p><p>Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets.</p>")); 1280 _pppApplySatAntCheckBox->setWhatsThis(tr("<p>This option is not yet working.</p><p>Satellite orbit and clock corrections refer to the satellite's antenna phase centers and hence observations are actually <u>not</u> to be corrected for satellite antenna phase center offsets. However, you may like to tick 'Apply Offsets' to force BNC to correct observations for satellite antenna phase center offsets.</p><p>Default is to <u>not</u> correct observations for satellite antenna phase center offsets."));1281 1272 _cmbTable->setWhatsThis(tr("<p>BNC allows to process several orbit and clock corrections streams in real-time to produce, encode, upload and save a combination of correctors coming from various providers. Hit the 'Add Row' button, double click on the 'Mountpoint' field to enter a Broadcast Ephemeris corrections mountpoint from the 'Streams' section below and hit Enter. Then double click on the 'AC Name' field to enter your choice of an abbreviation for the Analysis Center (AC) providing the stream. Finally, double click on the 'Weight' field to enter the weight to be applied for this stream in the combination.<ul><li>Note that an appropriate 'Wait for full corr epoch' value needs to be specified for the combination under the 'Broadcast Corrections' tab. A value of 15 seconds would make sense there if the update rate of incoming clock corrections is i.e. 10 seconds.</li><li>Note also that you need to tick 'Use GLONASS' which is part ot the 'PPP (2)' panel in case you want to produce an GPS plus GLONASS combination.</li></ul></p><p>Note further that the orbit information in the final combination stream is just copied from one of the incoming streams. The stream used for providing the orbits may vary over time: if the orbit providing stream has an outage then BNC switches to the next remaining stream for getting hold of the orbit information.</p><p>The combination process requires Broadcast Ephemeris. Besides the orbit and clock corrections stream(s) BNC should therefore pull a stream carrying Broadcast Ephemeris in the form of RTCM Version 3 messages.</p><p>It is possible to specify only one Broadcast Ephemeris corrections stream in the combination table. Instead of combining corrections BNC will then merge them with Broadcast Ephemeris to save results in SP3 and/or Clock RINEX format.")); 1282 1273 _cmbMaxresLineEdit->setWhatsThis(tr("<p>BNC combines all incoming clocks according to specified weights. Individual clock estimates that differ by more than 'Maximal Residuum' meters from the average of all clocks will be ignored.<p></p>It is suggested to specify a value of about 0.2 m for the Kalman filter combination approach and a value of about 3.0 meters for the Single-Epoch combination approach.</p><p>Default is a value of '999.0'.</p>")); … … 1714 1705 settings.setValue("pppAntenna", _pppAntennaLineEdit->text()); 1715 1706 settings.setValue("pppAntex", _pppAntexFileChooser->fileName()); 1716 settings.setValue("pppApplySatAnt", _pppApplySatAntCheckBox->checkState());1717 1707 settings.setValue("pppUsePhase", _pppUsePhaseCheckBox->checkState()); 1718 1708 settings.setValue("pppEstTropo", _pppEstTropoCheckBox->checkState()); … … 2305 2295 bool enable4 = enable && !_pppAntexFileChooser->fileName().isEmpty(); 2306 2296 enableWidget(enable4, _pppAntennaLineEdit); 2307 enableWidget(enable4, _pppApplySatAntCheckBox);2308 2297 2309 2298 bool enable5 = enable && _pppEstTropoCheckBox->isChecked(); -
trunk/BNC/bncwindow.h
r4179 r4209 162 162 QLineEdit* _pppAntennaLineEdit; 163 163 qtFileChooser* _pppAntexFileChooser; 164 QCheckBox* _pppApplySatAntCheckBox;165 164 166 165 qtFileChooser* _postObsFileChooser;
Note:
See TracChangeset
for help on using the changeset viewer.