Changeset 3771 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Apr 4, 2012, 3:25:11 PM (12 years ago)
Author:
weber
Message:

PPP options changed to Realtime-PPP, Realtime-SPP und Post-Processing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3770 r3771  
    388388  _pppSPPComboBox = new QComboBox();
    389389  _pppSPPComboBox->setEditable(false);
    390   _pppSPPComboBox->addItems(QString("PPP,SPP,RNX").split(","));
     390  _pppSPPComboBox->addItems(QString("Realtime-PPP,Realtime-SPP,Post-Processing").split(","));
    391391  int ik = _pppSPPComboBox->findText(settings.value("pppSPP").toString());
    392392  if (ik != -1) {
     
    849849  _pppSync->setMaximumWidth(6*ww);
    850850  _pppSPPComboBox->setMinimumWidth(15*ww);
    851 //_pppSPPComboBox->setMaximumWidth(15*ww); // weber
    852851  _pppNMEAPortLineEdit->setMaximumWidth(10*ww);
    853852
     
    11611160  _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>"));
    11621161  _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>"));
    11641163  _teqcActionComboBox->setWhatsThis(tr("<p>Select an editing action.</p>"));
    11651164  _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>"));
     
    20792078
    20802079    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");
    20832082
    20842083    enableWidget(enable, _pppNMEALineEdit);
     
    21212120    enableWidget(enable6, _pppSigPLineEdit);
    21222121
    2123     bool enable7 = enable && _pppSPPComboBox->currentText() == "PPP";
     2122    bool enable7 = enable && _pppSPPComboBox->currentText() == "Realtime-PPP";
    21242123    enableWidget(enable7, _pppSync);
    21252124
    2126     bool enable8 = _pppSPPComboBox->currentText() == "PPP";
     2125    bool enable8 = _pppSPPComboBox->currentText() == "Realtime-PPP";
    21272126    enableWidget(enable8, _pppCorrMountLineEdit);
    21282127
    2129     bool enable9 = _pppSPPComboBox->currentText() == "RNX";
     2128    bool enable9 = _pppSPPComboBox->currentText() == "Post-Processing";
    21302129    enableWidget(enable9, _postObsFileChooser);
    21312130    enableWidget(enable9, _postNavFileChooser);
     
    21562155               _aogroup->currentIndex() == _tabIndexPPP2) {
    21572156        _actPostProcessing->setText("Start PPP");
    2158         bool enable = _pppSPPComboBox->currentText() == "RNX";
     2157        bool enable = _pppSPPComboBox->currentText() == "Post-Processing";
    21592158        _actPostProcessing->setEnabled(enable);
    21602159      }
Note: See TracChangeset for help on using the changeset viewer.