Changeset 4209 in ntrip


Ignore:
Timestamp:
May 22, 2012, 3:03:51 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncsettings.cpp

    r4182 r4209  
    129129      setValue_p("pppAntenna",          "");
    130130      setValue_p("pppAntex",            "");
    131       setValue_p("pppApplySatAnt",      "0");
    132131      setValue_p("pppUsePhase",         "");
    133132      setValue_p("pppEstTropo",         "");
  • trunk/BNC/bncwindow.cpp

    r4202 r4209  
    414414  _pppPlotCoordinates->setCheckState(Qt::CheckState(
    415415                                settings.value("pppPlotCoordinates").toInt()));
    416 
    417   _pppApplySatAntCheckBox = new QCheckBox();
    418   _pppApplySatAntCheckBox->setCheckState(Qt::CheckState(
    419                                 settings.value("pppApplySatAnt").toInt()));
    420416
    421417  connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)),
     
    971967  ppp2Layout->addWidget(_pppAntennaLineEdit,                  ir, 5,1,3);
    972968  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);
    977969  ++ir;
    978970  ppp2Layout->addWidget(new QLabel("Basics"),                 ir, 0, 1, 5);
     
    12781270  _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>"));
    12791271  _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."));
    12811272  _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."));
    12821273  _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>"));
     
    17141705  settings.setValue("pppAntenna",      _pppAntennaLineEdit->text());
    17151706  settings.setValue("pppAntex",        _pppAntexFileChooser->fileName());
    1716   settings.setValue("pppApplySatAnt", _pppApplySatAntCheckBox->checkState());
    17171707  settings.setValue("pppUsePhase", _pppUsePhaseCheckBox->checkState());
    17181708  settings.setValue("pppEstTropo", _pppEstTropoCheckBox->checkState());
     
    23052295    bool enable4 = enable && !_pppAntexFileChooser->fileName().isEmpty();
    23062296    enableWidget(enable4, _pppAntennaLineEdit);
    2307     enableWidget(enable4, _pppApplySatAntCheckBox);
    23082297
    23092298    bool enable5 = enable && _pppEstTropoCheckBox->isChecked();
  • trunk/BNC/bncwindow.h

    r4179 r4209  
    162162    QLineEdit* _pppAntennaLineEdit;
    163163    qtFileChooser* _pppAntexFileChooser;
    164     QCheckBox* _pppApplySatAntCheckBox;
    165164
    166165    qtFileChooser* _postObsFileChooser;
Note: See TracChangeset for help on using the changeset viewer.