Changeset 2794 in ntrip


Ignore:
Timestamp:
Dec 14, 2010, 3:40:22 PM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncsettings.cpp

    r2750 r2794  
    9090    setValue("pppEstTropo",      "");
    9191    setValue("pppGLONASS",       "");
     92    setValue("pppGalileo",       "");
    9293    setValue("pppPlotCoordinates", "");
    9394    setValue("pppRefCrdX",       "");
  • trunk/BNC/bncwindow.cpp

    r2765 r2794  
    368368  _pppGLONASSCheckBox->setCheckState(Qt::CheckState(
    369369                                    settings.value("pppGLONASS").toInt()));
     370  _pppGalileoCheckBox = new QCheckBox();
     371  _pppGalileoCheckBox->setCheckState(Qt::CheckState(
     372                                    settings.value("pppGalileo").toInt()));
    370373
    371374  _pppPlotCoordinates = new QCheckBox();
     
    470473  _pppEstTropoCheckBox->setWhatsThis(tr("<p>By default BNC does not introduce troposphere parameters when estimating coordinates.</p><p>Tick 'Estimate tropo' to introduce troposphere parameters when estimating coordinates.</p>"));
    471474  _pppGLONASSCheckBox->setWhatsThis(tr("<p>By default BNC does not use GLONASS observations in PPP mode.</p><p>Tick 'Use GLONASS' for a combined processing of both, GPS and GLONASS observations in PPP mode.</p>"));
     475  _pppGalileoCheckBox->setWhatsThis(tr("<p>By default BNC does not use Galileo observations in PPP mode.</p><p>Tick 'Use Galileo' for a combined processing of both, GPS and Galileo observations in PPP mode.</p>"));
    472476  _pppPlotCoordinates->setWhatsThis(tr("<p>PPP time series of North (red), East (green) and Up (blue) coordinate components are shown in the 'PPP Plot' tab when this option is selected. Values will be either referred to an XYZ reference coordinate (if specified) or referred to the first estimated coordinate. The sliding PPP time series window will cover the period of the latest 5 minutes.</p><p>Note that a PPP time series makes only sense for a stationary operated receiver."));
    473477  _pppNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where PPP results are saved as NMEA messages.</p>"));
     
    748752  pppLayout->addWidget(_pppGLONASSCheckBox,                  1, 5, Qt::AlignRight);
    749753  pppLayout->addWidget(new QLabel("Use GLONASS"),            1, 6);
    750   pppLayout->addWidget(_pppPlotCoordinates,                  1, 7, Qt::AlignRight);
    751   pppLayout->addWidget(new QLabel("PPP Plot               "),1, 8);
     754  pppLayout->addWidget(_pppGalileoCheckBox,                  1, 7, Qt::AlignRight);
     755  pppLayout->addWidget(new QLabel("Use Galileo"),            1, 8);
     756  pppLayout->addWidget(_pppPlotCoordinates,                  1, 9, Qt::AlignRight);
     757  pppLayout->addWidget(new QLabel("PPP Plot               "),1,10);
    752758  pppLayout->addWidget(new QLabel("Options cont'd"),         2, 0); 
    753759  pppLayout->addWidget(_pppSigCLineEdit,                     2, 1, Qt::AlignRight);
     
    11021108  settings.setValue("pppEstTropo", _pppEstTropoCheckBox->checkState());
    11031109  settings.setValue("pppGLONASS",  _pppGLONASSCheckBox->checkState());
     1110  settings.setValue("pppGalileo",  _pppGalileoCheckBox->checkState());
    11041111  settings.setValue("mountPoints", mountPoints);
    11051112  settings.setValue("obsRate",     _obsRateComboBox->currentText());
     
    16531660      _pppEstTropoCheckBox->setPalette(palette_white);
    16541661      _pppGLONASSCheckBox->setPalette(palette_white);
     1662      _pppGalileoCheckBox->setPalette(palette_white);
    16551663      _pppSPPComboBox->setEnabled(true);
    16561664      _pppNMEALineEdit->setEnabled(true);
     
    16631671      _pppEstTropoCheckBox->setEnabled(true);
    16641672      _pppGLONASSCheckBox->setEnabled(true);
     1673      _pppGalileoCheckBox->setEnabled(true);
    16651674      _pppRefCrdXLineEdit->setPalette(palette_white);
    16661675      _pppRefCrdXLineEdit->setEnabled(true);
     
    17231732      _pppEstTropoCheckBox->setPalette(palette_gray);
    17241733      _pppGLONASSCheckBox->setPalette(palette_gray);
     1734      _pppGalileoCheckBox->setPalette(palette_gray);
    17251735      _pppSigCLineEdit->setPalette(palette_gray);
    17261736      _pppSigPLineEdit->setPalette(palette_gray);
     
    17411751      _pppEstTropoCheckBox->setEnabled(false);
    17421752      _pppGLONASSCheckBox->setEnabled(false);
     1753      _pppGalileoCheckBox->setEnabled(false);
    17431754      _pppSigCLineEdit->setEnabled(false);
    17441755      _pppSigPLineEdit->setEnabled(false);
  • trunk/BNC/bncwindow.h

    r2728 r2794  
    131131    QCheckBox* _pppEstTropoCheckBox;
    132132    QCheckBox* _pppGLONASSCheckBox;
     133    QCheckBox* _pppGalileoCheckBox;
    133134    QCheckBox* _rnxV3CheckBox;
    134135    QCheckBox* _ephV3CheckBox;
Note: See TracChangeset for help on using the changeset viewer.