Changeset 2949 in ntrip


Ignore:
Timestamp:
Feb 2, 2011, 12:31:47 PM (13 years ago)
Author:
weber
Message:

PPP section updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r2946 r2949  
    380380                                settings.value("pppPlotCoordinates").toInt()));
    381381
    382   _pppIgnoreSatAntCheckBox = new QCheckBox();
    383   _pppIgnoreSatAntCheckBox->setCheckState(Qt::CheckState(
    384                                 settings.value("pppIgnoreSatAnt").toInt()));
     382  _pppApplySatAntCheckBox = new QCheckBox();
     383  _pppApplySatAntCheckBox->setCheckState(Qt::CheckState(
     384                                settings.value("pppApplySatAnt").toInt()));
    385385
    386386  connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)),
     
    514514  _pppAntexLineEdit->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>"));
    515515  _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. Phase center variations are not yet applied by BNC.</p><p>Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets.</p>"));
    516   _pppIgnoreSatAntCheckBox->setWhatsThis(tr("<p>Satellite orbit and clock corrections refer to the satellite's antenna phase centers and hence observations are actually to be corrected for satellite antenna offsets. Tick 'Ignore Offsets' to not correct observations for satellite antenna phase center offsets.</p><p>Default is to correct observations for satellite antenna phase center offsets."));
     516  _pppApplySatAntCheckBox->setWhatsThis(tr("<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."));
    517517
    518518  // Canvas with Editable Fields
     
    815815  ppp2Layout->addWidget(new QLabel("Antenna Name"),             0, 8);
    816816  ppp2Layout->addWidget(new QLabel("Satellite Antenna"),        1, 0);
    817   ppp2Layout->addWidget(_pppIgnoreSatAntCheckBox,               1, 1, Qt::AlignRight);
    818   ppp2Layout->addWidget(new QLabel("Ignore Offsets"),           1, 2, Qt::AlignLeft);
     817  ppp2Layout->addWidget(_pppApplySatAntCheckBox,                1, 1, Qt::AlignRight);
     818  ppp2Layout->addWidget(new QLabel("Apply Offsets"),            1, 2, Qt::AlignLeft);
    819819  ppp2Layout->addWidget(new QLabel("Sigmas"),                   2, 0);
    820820  ppp2Layout->addWidget(_pppSigCLineEdit,                       2, 1, Qt::AlignRight);
     
    826826  ppp2Layout->addWidget(_pppSigTrpP,                            2, 7);
    827827  ppp2Layout->addWidget(new QLabel("Tropo White Noise"),        2, 8);
    828   ppp2Layout->addWidget(new QLabel("Options"),                  3, 0);
     828  ppp2Layout->addWidget(new QLabel("Options cont'd"),           3, 0);
    829829  ppp2Layout->addWidget(_pppSync,                               3, 1);
    830830  ppp2Layout->addWidget(new QLabel("Sync Corr (sec)   "),       3, 2);
     
    12291229  settings.setValue("pppAntenna",      _pppAntennaLineEdit->text());
    12301230  settings.setValue("pppAntex",        _pppAntexLineEdit->text());         
    1231   settings.setValue("pppIgnoreSatAnt", _pppIgnoreSatAntCheckBox->checkState());
     1231  settings.setValue("pppApplySatAnt", _pppApplySatAntCheckBox->checkState());
    12321232  settings.setValue("mountPoints", mountPoints);
    12331233  settings.setValue("obsRate",     _obsRateComboBox->currentText());
     
    18311831      if (!_pppAntexLineEdit->text().isEmpty() ) {
    18321832      _pppAntennaLineEdit->setEnabled(true);
    1833       _pppIgnoreSatAntCheckBox->setEnabled(true);
     1833      _pppApplySatAntCheckBox->setEnabled(true);
    18341834      _pppAntennaLineEdit->setPalette(palette_white);
    1835       _pppIgnoreSatAntCheckBox->setPalette(palette_white);
     1835      _pppApplySatAntCheckBox->setPalette(palette_white);
    18361836      }
    18371837      else {
    18381838      _pppAntennaLineEdit->setEnabled(false);
    1839       _pppIgnoreSatAntCheckBox->setEnabled(false);
     1839      _pppApplySatAntCheckBox->setEnabled(false);
    18401840      _pppAntennaLineEdit->setPalette(palette_gray);
    1841       _pppIgnoreSatAntCheckBox->setPalette(palette_gray);
     1841      _pppApplySatAntCheckBox->setPalette(palette_gray);
    18421842      }
    18431843      _pppSigCLineEdit->setPalette(palette_white);
     
    19001900      _pppAntexLineEdit->setPalette(palette_gray);
    19011901      _pppAntennaLineEdit->setPalette(palette_gray);
    1902       _pppIgnoreSatAntCheckBox->setPalette(palette_gray);
     1902      _pppApplySatAntCheckBox->setPalette(palette_gray);
    19031903      _pppSPPComboBox->setEnabled(false);
    19041904      _pppNMEALineEdit->setEnabled(false);
     
    19231923      _pppAntexLineEdit->setEnabled(false);
    19241924      _pppAntennaLineEdit->setEnabled(false);
    1925       _pppIgnoreSatAntCheckBox->setEnabled(false);
     1925      _pppApplySatAntCheckBox->setEnabled(false);
    19261926    }
    19271927  }
Note: See TracChangeset for help on using the changeset viewer.