source: ntrip/trunk/BNC/src/pppWidgets.cpp@ 9237

Last change on this file since 9237 was 9237, checked in by stuerze, 3 years ago

pppMap now with OSM only

File size: 29.0 KB
RevLine 
[5692]1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: t_pppWidgets
30 *
31 * Purpose: This class stores widgets for PPP options
32 *
33 * Author: L. Mervart
34 *
35 * Created: 29-Jul-2014
36 *
[7488]37 * Changes:
[5692]38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42
[8252]43#include <QCheckBox>
44#include <QComboBox>
45#include <QHeaderView>
46#include <QLineEdit>
47#include <QPushButton>
48#include <QRadioButton>
49#include <QSpinBox>
50#include <QTableWidget>
51
[6045]52#include "pppWidgets.h"
[5692]53#include "qtfilechooser.h"
[5694]54#include "bncsettings.h"
[5950]55#include "bnccore.h"
[5692]56
57using namespace std;
58
59// Constructor
60////////////////////////////////////////////////////////////////////////////
61t_pppWidgets::t_pppWidgets() {
[5699]62
[7488]63 _dataSource = new QComboBox(); _dataSource ->setObjectName("PPP/dataSource"); _widgets << _dataSource;
64 _rinexObs = new qtFileChooser(); _rinexObs ->setObjectName("PPP/rinexObs"); _widgets << _rinexObs;
65 _rinexNav = new qtFileChooser(); _rinexNav ->setObjectName("PPP/rinexNav"); _widgets << _rinexNav;
[5701]66 _corrMount = new QLineEdit(); _corrMount ->setObjectName("PPP/corrMount"); _widgets << _corrMount;
[7488]67 _corrFile = new qtFileChooser(); _corrFile ->setObjectName("PPP/corrFile"); _widgets << _corrFile;
68 _crdFile = new qtFileChooser(); _crdFile ->setObjectName("PPP/crdFile"); _widgets << _crdFile;
69 _antexFile = new qtFileChooser(); _antexFile ->setObjectName("PPP/antexFile"); _widgets << _antexFile;
[7961]70 _blqFile = new qtFileChooser(); _blqFile ->setObjectName("PPP/blqFile"); _widgets << _blqFile;
[7506]71 _logPath = new QLineEdit(); _logPath ->setObjectName("PPP/logPath"); _widgets << _logPath;
72 _nmeaPath = new QLineEdit(); _nmeaPath ->setObjectName("PPP/nmeaPath"); _widgets << _nmeaPath;
73 _snxtroPath = new QLineEdit(); _snxtroPath ->setObjectName("PPP/snxtroPath"); _widgets << _snxtroPath;
[8403]74 _snxtroSampl = new QComboBox(); _snxtroSampl->setObjectName("PPP/snxtroSampl"); _widgets << _snxtroSampl;
[7500]75 _snxtroIntr = new QComboBox(); _snxtroIntr ->setObjectName("PPP/snxtroIntr"); _widgets << _snxtroIntr;
[7764]76 _snxtroAc = new QLineEdit(); _snxtroAc ->setObjectName("PPP/snxtroAc"); _widgets << _snxtroAc;
77 _snxtroSol = new QLineEdit(); _snxtroSol ->setObjectName("PPP/snxtroSol"); _widgets << _snxtroSol;
[9158]78 _v2filenames = new QCheckBox(); _v2filenames ->setObjectName("PPP/v2filenames"); _widgets << _v2filenames;
[7488]79 _staTable = new QTableWidget(); _staTable ->setObjectName("PPP/staTable"); _widgets << _staTable;
80 _lcGPS = new QComboBox(); _lcGPS ->setObjectName("PPP/lcGPS"); _widgets << _lcGPS;
81 _lcGLONASS = new QComboBox(); _lcGLONASS ->setObjectName("PPP/lcGLONASS"); _widgets << _lcGLONASS;
82 _lcGalileo = new QComboBox(); _lcGalileo ->setObjectName("PPP/lcGalileo"); _widgets << _lcGalileo;
[6883]83 _lcBDS = new QComboBox(); _lcBDS ->setObjectName("PPP/lcBDS"); _widgets << _lcBDS;
[8905]84 _modelObs = new QComboBox(); _modelObs ->setObjectName("PPP/modelObs"); _widgets << _modelObs;
85 _pseudoObs = new QComboBox(); _pseudoObs ->setObjectName("PPP/pseudoObs"); _widgets << _pseudoObs;
[7488]86 _sigmaC1 = new QLineEdit(); _sigmaC1 ->setObjectName("PPP/sigmaC1"); _widgets << _sigmaC1;
87 _sigmaL1 = new QLineEdit(); _sigmaL1 ->setObjectName("PPP/sigmaL1"); _widgets << _sigmaL1;
88 _maxResC1 = new QLineEdit(); _maxResC1 ->setObjectName("PPP/maxResC1"); _widgets << _maxResC1;
89 _maxResL1 = new QLineEdit(); _maxResL1 ->setObjectName("PPP/maxResL1"); _widgets << _maxResL1;
[5961]90 _minObs = new QSpinBox(); _minObs ->setObjectName("PPP/minObs"); _widgets << _minObs;
91 _minEle = new QSpinBox(); _minEle ->setObjectName("PPP/minEle"); _widgets << _minEle;
92 _eleWgtCode = new QCheckBox(); _eleWgtCode ->setObjectName("PPP/eleWgtCode"); _widgets << _eleWgtCode;
93 _eleWgtPhase = new QCheckBox(); _eleWgtPhase ->setObjectName("PPP/eleWgtPhase"); _widgets << _eleWgtPhase;
94 _seedingTime = new QLineEdit(); _seedingTime ->setObjectName("PPP/seedingTime"); _widgets << _seedingTime;
[5699]95 _corrWaitTime = new QSpinBox(); _corrWaitTime->setObjectName("PPP/corrWaitTime"); _widgets << _corrWaitTime;
[5961]96
97 _addStaButton = new QPushButton("Add Station"); _widgets << _addStaButton;
98 _delStaButton = new QPushButton("Delete Station"); _widgets << _delStaButton;
99
[6718]100 _addStaButton->setWhatsThis(tr("<p>Hit the 'Add Station' button to add a new line to the Station table.</p>"));
101 _delStaButton->setWhatsThis(tr("<p>Hit the 'Delete Station' button to delete a highlighted row from the Station table.</p>"));
102
[5955]103 _plotCoordinates = new QLineEdit; _plotCoordinates ->setObjectName("PPP/plotCoordinates"); _widgets << _plotCoordinates;
104 _mapWinButton = new QPushButton; _mapWinButton ->setObjectName("PPP/mapWinButton"); _widgets << _mapWinButton;
[6729]105 _audioResponse = new QLineEdit; _audioResponse ->setObjectName("PPP/audioResponse"); _widgets << _audioResponse;
[5955]106 _mapWinDotSize = new QLineEdit; _mapWinDotSize ->setObjectName("PPP/mapWinDotSize"); _widgets << _mapWinDotSize;
107 _mapWinDotColor = new QComboBox; _mapWinDotColor ->setObjectName("PPP/mapWinDotColor"); _widgets << _mapWinDotColor;
108 _mapSpeedSlider = new QSlider; _mapSpeedSlider ->setObjectName("PPP/mapSpeedSlider"); _widgets << _mapSpeedSlider;
[5893]109
[5697]110 _dataSource->setEditable(false);
[6710]111 _dataSource->addItems(QString(",Real-Time Streams,RINEX Files").split(","));
[5699]112 connect(_dataSource, SIGNAL(currentIndexChanged(const QString&)), this, SLOT(slotEnableWidgets()));
[8905]113 connect(_modelObs, SIGNAL(currentIndexChanged(const QString&)), this, SLOT(slotEnableWidgets()));
114 connect(_snxtroPath, SIGNAL(textChanged(const QString &)), this, SLOT(slotPPPTextChanged()));
115 connect(_snxtroAc, SIGNAL(textChanged(const QString &)), this, SLOT(slotPPPTextChanged()));
116 connect(_snxtroSol, SIGNAL(textChanged(const QString &)), this, SLOT(slotPPPTextChanged()));
[5697]117
[6659]118 slotEnableWidgets();
[6656]119
[5697]120 _lcGPS->setEditable(false);
[7239]121#ifdef USE_PPP_SSR_I
[7207]122 _lcGPS->addItems(QString("P3,P3&L3").split(","));
[7049]123#else
[8905]124 _lcGPS->addItems(QString("no,Pi,Li,Pi&Li").split(","));
[7049]125#endif
[5697]126
127 _lcGLONASS->setEditable(false);
[7261]128#ifdef USE_PPP_SSR_I
129 _lcGLONASS->addItems(QString("no,P3,L3,P3&L3").split(","));
130#else
[8905]131 _lcGLONASS->addItems(QString("no,Pi,Li,Pi&Li").split(","));
[7261]132#endif
[5697]133
134 _lcGalileo->setEditable(false);
[7261]135#ifdef USE_PPP_SSR_I
[5699]136 _lcGalileo->addItems(QString("no,P3,L3,P3&L3").split(","));
[7261]137#else
[8905]138 _lcGalileo->addItems(QString("no,Pi,Li,Pi&Li").split(","));
[7261]139#endif
[5697]140
[6883]141 _lcBDS->setEditable(false);
[7261]142#ifdef USE_PPP_SSR_I
[6883]143 _lcBDS->addItems(QString("no,P3,L3,P3&L3").split(","));
[7261]144#else
[8905]145 _lcBDS->addItems(QString("no,Pi,Li,Pi&Li").split(","));
[7261]146#endif
[6883]147
[8905]148 _modelObs->setEditable(false);
149 _pseudoObs->setEditable(false);
150#ifdef USE_PPP_SSR_I
151 _modelObs->addItems(QString("Ionosphere-free PPP").split(","));
152 _pseudoObs->addItems(QString("no").split(","));
153#else
154 _modelObs->addItems(QString("Ionosphere-free PPP,Uncombined PPP,PPP-RTK,DCM with Code Biases,DCM with Phase Biases").split(","));
[8961]155 _pseudoObs->addItems(QString("no,Ionosphere,Iono+Tropo").split(","));
[8905]156#endif
157
[8403]158 _snxtroSampl->setEditable(false);
159 _snxtroSampl->addItems(QString("1 sec,5 sec,10 sec,30 sec,60 sec,300 sec").split(","));
[6607]160
[7488]161 _snxtroIntr->setEditable(false);
162 _snxtroIntr->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
[7495]163 _snxtroIntr->setCurrentIndex(6);
[7488]164
[5962]165 _minObs->setMinimum(4);
166 _minObs->setMaximum(6);
167 _minObs->setSingleStep(1);
168
169 _minEle->setMinimum(0);
170 _minEle->setMaximum(20);
171 _minEle->setSingleStep(1);
172 _minEle->setSuffix(" deg");
173
[5698]174 _corrWaitTime->setMinimum(0);
175 _corrWaitTime->setMaximum(20);
176 _corrWaitTime->setSingleStep(1);
177 _corrWaitTime->setSuffix(" sec");
178
[6883]179 _staTable->setColumnCount(10);
[5703]180 _staTable->setRowCount(0);
[5702]181 _staTable->setHorizontalHeaderLabels(
[6883]182 QString("Station,Sigma N,Sigma E,Sigma H,Noise N,Noise E,Noise H,Tropo Sigma,Tropo Noise, NMEA Port").split(","));
[5703]183 _staTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
184 _staTable->setSelectionBehavior(QAbstractItemView::SelectRows);
[8252]185#if QT_VERSION >= 0x050000
[8231]186 _staTable->horizontalHeader()->setSectionResizeMode(QHeaderView::Interactive);
[8252]187#endif
[5703]188 _staTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
[7488]189
[5703]190 connect(_addStaButton, SIGNAL(clicked()), this, SLOT(slotAddStation()));
191 connect(_delStaButton, SIGNAL(clicked()), this, SLOT(slotDelStation()));
[5702]192
[5893]193 _mapWinButton->setText("Open Map");
194
[5955]195 _mapWinDotColor->setEditable(false);
196 _mapWinDotColor->addItems(QString("red,yellow").split(","));
[5893]197
198 _mapSpeedSlider->setOrientation(Qt::Horizontal);
199 _mapSpeedSlider->setRange(1, 100);
200 _mapSpeedSlider->setTickPosition(QSlider::TicksBelow);
201 _mapSpeedSlider->setTickInterval(10);
[5950]202 connect(_mapSpeedSlider, SIGNAL(valueChanged(int)), BNC_CORE, SIGNAL(mapSpeedSliderChanged(int)));
203
[7658]204 // WhatsThis, PPP (2)
205 // ------------------
[8010]206 _staTable->setWhatsThis(tr("<p>Specify values for Sigma and white Noise of the Stations North, East and Height coordinate components in meters. Specify also a Sigma in meters for a priori model based Tropospheric delays and a Sigma in meters per second for the delay's Noise.</p><p>Specifying one record per Station is mandatory. BNC will only process data for stations which are listed here. To define a station, specify the 'Mountpoint' when in 'Real-Time Streams' mode or the 4-character station ID when in 'RINEX Files' mode.</p><p>'Sigma' is meant to describe the uncertainty of a single coordinate or tropospheric delay estimated for one epoch. 'Noise' is meant to describe the variation of estimates from epoch to epoch.</p><p><ul><li>A Sigma of 100.0 meters may be an appropriate choice e.g. for the initial N/E/H coordinates. However, this value may be significantly smaller (i.e. 0.01) for stations with well-known a priori coordinates.</li><li>A Noise of 100.0 meters for the estimated N/E/H coordinates may also be appropriate considering the potential movement of a rover position.</li><li>A value of 0.1 meters may be an appropriate Sigma for the a priori model based Tropospheric delay estimation.</li><li>Specify a Noise to describe the expected variation of the tropospheric effect over time. Supposing 1Hz observation data, specifying a value of 3e-6 would mean that the tropospheric effect may vary 3600 * 3e-6 = 0.01 meters per hour.</li></ul></p><p>You can also specify a 'NMEA Port' to output coordinates in NMEA format through an IP port of your local host. <i>[key: PPP/staTable]</i></p>"));
[6715]207
[7658]208 // WhatsThis, PPP (3)
209 // ------------------
[8010]210 _corrWaitTime->setWhatsThis(tr("<p>Zero value means that BNC processes each epoch of data immediately after its arrival using satellite clock corrections available at that time.</p><p> Specifying a non-zero value (i.e. 5 sec) means that the epochs of data are buffered and the processing of each epoch is postponed till the satellite clock corrections not older than '5 sec' (example) become available. <i>[key: PPP/corrWaitTime]</i><p>"));
211 _seedingTime->setWhatsThis(tr("<p>Enter the length of a startup period in seconds for which you want to fix the PPP solutions to known a priori coordinates as introduced through option 'Coordinates file'. Adjust 'Sigma N/E/H' in the PPP Stations table according to the coordinate's precision. Fixing a priori coordinates is done in BNC through setting 'Sigma N/E/H' temporarily to zero.</p><p>This option allows the PPP solution to rapidly converge. It requires that the antenna remains unmoved on the a priori known position throughout the startup period.</p><p>A value of 60 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning that you don't want BNC to fix PPP solutions during startup to an a priori coordinate. <i>[key: PPP/seedingTime]</i></p>"));
[6720]212
[7663]213 // WhatsThis, PPP (4)
214 // ------------------
[8010]215 _plotCoordinates->setWhatsThis(tr("<p>For one of your PPP Stations BNC can produce a time series plot of coordinate displacements in the 'PPP Plot' tab below. Specify a 'Mountpoint' (when in 'Real-Time Streams' mode) or the 4-character station ID (when in 'RINEX Files' mode) to define the station whose coordinate displacements you would like to see plotted.</p><p>Note that this option makes only sense for a stationary receiver with known a priori marker coordinates as specified through PPP option 'Coordinates file'.</p><p>Default is an empty option field, meaning that BNC shall not produce a time series plot of PPP coordinate displacements. <i>[key: PPP/plotCoordinates]</i></p>"));
216 _audioResponse->setWhatsThis(tr("<p>Specify an 'Audio response' threshold in meters. A beep is produced by BNC whenever a horizontal PPP coordinate component differs by more than the threshold value from the a priori marker coordinate.</p><p>Default is an empty option field, meaning that you don't want BNC to produce alarm signals. <i>[key: PPP/audioResponse]</i></p>"));
[7677]217 _mapWinButton->setWhatsThis(tr("<p>You may like to track your rover position using Google Maps or Open Street Map as a background map. A 'Track map' can be produced with BNC in 'Real-Time Streams' or 'RINEX files' PPP mode.</p><p>The 'Open Map' button opens a windows showing a map according to specified options.</p><p>Even in 'RINEX files' post processing mode you should not forget to specify a proxy under the 'Network' tab if that is operated in front of BNC because the program needs to download the map data.</p>"));
[8010]218 _mapWinDotSize->setWhatsThis(tr("<p>Specify the size of dots showing rover positions on the track map.</p><p>A dot size of '3' may be appropriate. The maximum possible dot size is '10'. An empty option field or a size of '0' would mean that you don't want BNC to show the rover's track on the map. <i>[key: PPP/mapWinDotSize]</i></p>"));
219 _mapWinDotColor->setWhatsThis(tr("<p>Specify the color of dots showing the rover track on the map. <i>[key: PPP/mapWinDotColor]</i></p>"));
220 _mapSpeedSlider->setWhatsThis(tr("<p>With BNC in 'RINEX files' PPP post processing mode you can specify the speed of computations as appropriate for 'Track map' visualization.</p><p>Note that you can adjust 'Post-processing speed' on-the-fly while BNC is already processing your observations. <i>[key: PPP/mapSpeedSlider]</i></p>"));
[6729]221
[5696]222 readOptions();
[5692]223}
224
[7488]225//
[5694]226////////////////////////////////////////////////////////////////////////////
[7640]227t_pppWidgets::~t_pppWidgets() {
228 delete _dataSource;
229 delete _rinexObs;
230 delete _rinexNav;
231 delete _corrMount;
232 delete _corrFile;
233 delete _crdFile;
234 delete _antexFile;
[7961]235 delete _blqFile;
[7640]236 delete _logPath;
237 delete _nmeaPath;
238 delete _snxtroPath;
239 delete _snxtroSampl;
240 delete _snxtroIntr;
[7764]241 delete _snxtroAc;
242 delete _snxtroSol;
[9158]243 delete _v2filenames;
[7640]244 for (int iRow = _staTable->rowCount()-1; iRow >=0; iRow--) {
245 _staTable->removeRow(iRow);
246 }
247 delete _staTable;
248 delete _lcGPS;
249 delete _lcGLONASS;
250 delete _lcGalileo;
251 delete _lcBDS;
[8905]252 delete _modelObs;
253 delete _pseudoObs;
[7640]254 delete _sigmaC1;
255 delete _sigmaL1;
256 delete _maxResC1;
257 delete _maxResL1;
258 delete _minObs;
259 delete _minEle;
260 delete _eleWgtCode;
261 delete _eleWgtPhase;
262 delete _seedingTime;
263 delete _corrWaitTime;
264 delete _addStaButton;
265 delete _delStaButton;
266 delete _plotCoordinates;
267 delete _mapWinButton;
268 delete _audioResponse;
269 delete _mapWinDotSize;
270 delete _mapWinDotColor;
271 delete _mapSpeedSlider;
272}
273
274//
275////////////////////////////////////////////////////////////////////////////
[5696]276void t_pppWidgets::readOptions() {
277
278 bncSettings settings;
279
[5707]280 // ComboBoxes
281 // ----------
[5696]282 int ii = _dataSource->findText(settings.value(_dataSource->objectName()).toString());
283 if (ii != -1) {
284 _dataSource->setCurrentIndex(ii);
285 }
286 ii = _lcGPS->findText(settings.value(_lcGPS->objectName()).toString());
287 if (ii != -1) {
288 _lcGPS->setCurrentIndex(ii);
289 }
290 ii = _lcGLONASS->findText(settings.value(_lcGLONASS->objectName()).toString());
291 if (ii != -1) {
292 _lcGLONASS->setCurrentIndex(ii);
293 }
294 ii = _lcGalileo->findText(settings.value(_lcGalileo->objectName()).toString());
295 if (ii != -1) {
296 _lcGalileo->setCurrentIndex(ii);
297 }
[6883]298 ii = _lcBDS->findText(settings.value(_lcBDS->objectName()).toString());
299 if (ii != -1) {
300 _lcBDS->setCurrentIndex(ii);
301 }
[8905]302 ii = _modelObs->findText(settings.value(_modelObs->objectName()).toString());
303 if (ii != -1) {
304 _modelObs->setCurrentIndex(ii);
305 }
306 ii = _pseudoObs->findText(settings.value(_pseudoObs->objectName()).toString());
307 if (ii != -1) {
308 _pseudoObs->setCurrentIndex(ii);
309 }
[7488]310 ii = _snxtroIntr->findText(settings.value(_snxtroIntr->objectName()).toString());
311 if (ii != -1) {
312 _snxtroIntr->setCurrentIndex(ii);
313 }
[5696]314
[5707]315 // FileChoosers
316 // ------------
[5696]317 _rinexObs ->setFileName(settings.value(_rinexObs ->objectName()).toString());
318 _rinexNav ->setFileName(settings.value(_rinexNav ->objectName()).toString());
319 _corrFile ->setFileName(settings.value(_corrFile ->objectName()).toString());
320 _crdFile ->setFileName(settings.value(_crdFile ->objectName()).toString());
321 _antexFile->setFileName(settings.value(_antexFile->objectName()).toString());
[7966]322 _blqFile->setFileName(settings.value(_blqFile->objectName()).toString());
[5696]323
[5707]324 // LineEdits
325 // ---------
[5969]326 _corrMount ->setText(settings.value(_corrMount ->objectName()).toString());
[7506]327 _logPath ->setText(settings.value(_logPath ->objectName()).toString());
328 _nmeaPath ->setText(settings.value(_nmeaPath ->objectName()).toString());
329 _snxtroPath ->setText(settings.value(_snxtroPath ->objectName()).toString());
[7764]330 _snxtroAc ->setText(settings.value(_snxtroAc ->objectName()).toString());
331 _snxtroSol ->setText(settings.value(_snxtroSol ->objectName()).toString());
[5696]332
[7047]333 if (!settings.value(_sigmaC1->objectName()).toString().isEmpty()) {
334 _sigmaC1->setText(settings.value(_sigmaC1->objectName()).toString());
335 }
336 else {
337 _sigmaC1->setText("2.0");
338 }
339
340 if (!settings.value(_sigmaL1->objectName()).toString().isEmpty()) {
341 _sigmaL1->setText(settings.value(_sigmaL1->objectName()).toString());
342 }
343 else {
344 _sigmaL1->setText("0.01");
345 }
346
347 if (!settings.value(_maxResC1->objectName()).toString().isEmpty()) {
348 _maxResC1->setText(settings.value(_maxResC1->objectName()).toString());
349 }
350 else {
[7069]351 _maxResC1->setText("4.0");
[7047]352 }
353
354 if (!settings.value(_maxResL1->objectName()).toString().isEmpty()) {
355 _maxResL1->setText(settings.value(_maxResL1->objectName()).toString());
356 }
[7488]357 else {
[7047]358 _maxResL1->setText("0.03");
359 }
360
[7069]361 if (!settings.value(_seedingTime->objectName()).toString().isEmpty()) {
362 _seedingTime->setText(settings.value(_seedingTime->objectName()).toString());
363 }
364 else {
[7076]365 _seedingTime->setText("0");
[7069]366 }
367
[5969]368 // CheckBoxes
369 // ----------
370 _eleWgtCode ->setCheckState(Qt::CheckState(settings.value(_eleWgtCode ->objectName()).toInt()));
371 _eleWgtPhase->setCheckState(Qt::CheckState(settings.value(_eleWgtPhase->objectName()).toInt()));
[9158]372 _v2filenames->setCheckState(Qt::CheckState(settings.value(_v2filenames->objectName()).toInt()));
[5969]373
374 // SpinBoxex
375 // ---------
376 _minObs->setValue(settings.value(_minObs->objectName()).toInt());
377 _minEle->setValue(settings.value(_minEle->objectName()).toInt());
[5696]378 _corrWaitTime->setValue(settings.value(_corrWaitTime->objectName()).toInt());
[5707]379
[8403]380
381 ii = _snxtroSampl->findText(settings.value(_snxtroSampl->objectName()).toString());
382 if (ii != -1) {
383 _snxtroSampl->setCurrentIndex(ii);
384 }
385
[5707]386 // Table with stations
387 // -------------------
388 for (int iRow = _staTable->rowCount()-1; iRow >=0; iRow--) {
389 _staTable->removeRow(iRow);
390 }
391 int iRow = -1;
392 QListIterator<QString> it(settings.value(_staTable->objectName()).toStringList());
393 while (it.hasNext()) {
394 QStringList hlp = it.next().split(",");
395 ++iRow;
396 _staTable->insertRow(iRow);
397 for (int iCol = 0; iCol < hlp.size(); iCol++) {
398 _staTable->setItem(iRow, iCol, new QTableWidgetItem(hlp[iCol]));
399 }
400 }
[5893]401
402 // Plots and Maps
403 // --------------
[5955]404 _plotCoordinates ->setText(settings.value(_plotCoordinates->objectName()).toString());
[6729]405 _audioResponse ->setText(settings.value(_audioResponse->objectName()).toString());
[5955]406 _mapWinDotSize ->setText(settings.value(_mapWinDotSize->objectName()).toString());
[5893]407
[5955]408 ii = _mapWinDotColor->findText(settings.value(_mapWinDotColor->objectName()).toString());
[5893]409 if (ii != -1) {
[5955]410 _mapWinDotColor->setCurrentIndex(ii);
[5893]411 }
412
413 int speed = settings.value(_mapSpeedSlider->objectName()).toInt();
414 if (speed == 0) speed = _mapSpeedSlider->maximum();
415 _mapSpeedSlider->setSliderPosition(speed);
[5696]416}
417
[7488]418//
[5696]419////////////////////////////////////////////////////////////////////////////
[5694]420void t_pppWidgets::saveOptions() {
421
422 bncSettings settings;
423
[5695]424 settings.setValue(_dataSource ->objectName(), _dataSource ->currentText());
425 settings.setValue(_rinexObs ->objectName(), _rinexObs ->fileName());
426 settings.setValue(_rinexNav ->objectName(), _rinexNav ->fileName());
[5701]427 settings.setValue(_corrMount ->objectName(), _corrMount ->text());
[5695]428 settings.setValue(_corrFile ->objectName(), _corrFile ->fileName());
429 settings.setValue(_crdFile ->objectName(), _crdFile ->fileName());
430 settings.setValue(_antexFile ->objectName(), _antexFile ->fileName());
[7966]431 settings.setValue(_blqFile ->objectName(), _blqFile ->fileName());
[7506]432 settings.setValue(_logPath ->objectName(), _logPath ->text());
433 settings.setValue(_nmeaPath ->objectName(), _nmeaPath ->text());
434 settings.setValue(_snxtroPath ->objectName(), _snxtroPath ->text());
[8403]435 settings.setValue(_snxtroSampl ->objectName(), _snxtroSampl ->currentText());
[7764]436 settings.setValue(_snxtroIntr ->objectName(), _snxtroIntr ->currentText());
437 settings.setValue(_snxtroAc ->objectName(), _snxtroAc ->text());
438 settings.setValue(_snxtroSol ->objectName(), _snxtroSol ->text());
[9158]439 settings.setValue(_v2filenames ->objectName(), _v2filenames ->checkState());
[5695]440 settings.setValue(_lcGPS ->objectName(), _lcGPS ->currentText());
441 settings.setValue(_lcGLONASS ->objectName(), _lcGLONASS ->currentText());
442 settings.setValue(_lcGalileo ->objectName(), _lcGalileo ->currentText());
[6883]443 settings.setValue(_lcBDS ->objectName(), _lcBDS ->currentText());
[8905]444 settings.setValue(_modelObs ->objectName(), _modelObs ->currentText());
445 settings.setValue(_pseudoObs ->objectName(), _pseudoObs ->currentText());
[5695]446 settings.setValue(_sigmaC1 ->objectName(), _sigmaC1 ->text());
447 settings.setValue(_sigmaL1 ->objectName(), _sigmaL1 ->text());
448 settings.setValue(_corrWaitTime->objectName(), _corrWaitTime->value());
[5969]449 settings.setValue(_maxResC1 ->objectName(), _maxResC1 ->text());
450 settings.setValue(_maxResL1 ->objectName(), _maxResL1 ->text());
451 settings.setValue(_seedingTime ->objectName(), _seedingTime ->text());
452 settings.setValue(_minObs ->objectName(), _minObs ->value());
453 settings.setValue(_minEle ->objectName(), _minEle ->value());
454 settings.setValue(_eleWgtCode ->objectName(), _eleWgtCode ->checkState());
455 settings.setValue(_eleWgtPhase ->objectName(), _eleWgtPhase ->checkState());
[5694]456
[5707]457 QStringList staList;
458 for (int iRow = 0; iRow < _staTable->rowCount(); iRow++) {
459 QString hlp;
460 for (int iCol = 0; iCol < _staTable->columnCount(); iCol++) {
461 if (_staTable->item(iRow, iCol)) {
462 hlp += _staTable->item(iRow, iCol)->text() + ",";
463 }
464 }
465 if (!hlp.isEmpty()) {
466 staList << hlp;
467 }
468 }
469 settings.setValue(_staTable->objectName(), staList);
[5894]470
[5955]471 settings.setValue(_plotCoordinates ->objectName(), _plotCoordinates ->text());
[6729]472 settings.setValue(_audioResponse ->objectName(), _audioResponse ->text());
[5955]473 settings.setValue(_mapWinDotSize ->objectName(), _mapWinDotSize ->text());
474 settings.setValue(_mapWinDotColor ->objectName(), _mapWinDotColor ->currentText());
475 settings.setValue(_mapSpeedSlider ->objectName(), _mapSpeedSlider ->value());
[5694]476}
[5699]477
[7488]478//
[5699]479////////////////////////////////////////////////////////////////////////////
480void t_pppWidgets::slotEnableWidgets() {
481
482 const static QPalette paletteWhite(QColor(255, 255, 255));
483 const static QPalette paletteGray(QColor(230, 230, 230));
484
[6710]485 bool allDisabled = _dataSource->currentText() == "";
[5699]486 bool realTime = _dataSource->currentText() == "Real-Time Streams";
[5701]487 bool rinexFiles = _dataSource->currentText() == "RINEX Files";
[8905]488 bool enablePseudoObs;
489 if (_modelObs->currentText() == "PPP-RTK" ||
490 _modelObs->currentText() == "Ionosphere-free PPP") {
491 enablePseudoObs = false;
492 }
493 else {
494 enablePseudoObs = true;
495 }
[5699]496
497 QListIterator<QWidget*> it(_widgets);
498 while (it.hasNext()) {
[5700]499 QWidget* widget = it.next();
500 widget->setEnabled(!allDisabled);
[5699]501 }
502
[5701]503 if (realTime) {
[7488]504 _rinexObs->setEnabled(false);
505 _rinexNav->setEnabled(false);
506 _corrFile->setEnabled(false);
[5701]507 }
508 else if (rinexFiles) {
[8905]509 _corrMount ->setEnabled(false);
510 _audioResponse->setEnabled(false);
[5701]511 }
512
[7506]513 if ( _snxtroPath->text() != "" && !allDisabled) {
[7488]514 _snxtroSampl->setEnabled(true);
515 _snxtroIntr ->setEnabled(true);
[7764]516 _snxtroAc ->setEnabled(true);
517 _snxtroSol ->setEnabled(true);
[6748]518 }
519 else {
[7488]520 _snxtroSampl->setEnabled(false);
521 _snxtroIntr ->setEnabled(false);
[7764]522 _snxtroAc ->setEnabled(false);
523 _snxtroSol ->setEnabled(false);
[6748]524 }
525
[8905]526 if (enablePseudoObs) {
527 _pseudoObs->setEnabled(true);
528 } else {
529 _pseudoObs->setEnabled(false);
530 }
531
[5699]532 _dataSource->setEnabled(true);
[5700]533
534 it.toFront();
535 while (it.hasNext()) {
536 QWidget* widget = it.next();
537 if (widget->isEnabled()) {
538 widget->setPalette(paletteWhite);
539 }
540 else {
541 widget->setPalette(paletteGray);
542 }
543 }
[5699]544}
[5703]545
[7488]546//
[5703]547////////////////////////////////////////////////////////////////////////////
548void t_pppWidgets::slotAddStation() {
[5706]549 int iRow = _staTable->rowCount();
550 _staTable->insertRow(iRow);
551 for (int iCol = 0; iCol < _staTable->columnCount(); iCol++) {
[7045]552 if (iCol == 0) _staTable->setItem(iRow, iCol, new QTableWidgetItem(""));
553 if (iCol == 1) _staTable->setItem(iRow, iCol, new QTableWidgetItem("100.0"));
554 if (iCol == 2) _staTable->setItem(iRow, iCol, new QTableWidgetItem("100.0"));
555 if (iCol == 3) _staTable->setItem(iRow, iCol, new QTableWidgetItem("100.0"));
556 if (iCol == 4) _staTable->setItem(iRow, iCol, new QTableWidgetItem("100.0"));
557 if (iCol == 5) _staTable->setItem(iRow, iCol, new QTableWidgetItem("100.0"));
558 if (iCol == 6) _staTable->setItem(iRow, iCol, new QTableWidgetItem("100.0"));
559 if (iCol == 7) _staTable->setItem(iRow, iCol, new QTableWidgetItem("0.1"));
560 if (iCol == 8) _staTable->setItem(iRow, iCol, new QTableWidgetItem("3e-6"));
[7180]561 if (iCol == 9) _staTable->setItem(iRow, iCol, new QTableWidgetItem("0"));
[5706]562 }
[5703]563}
564
[7488]565//
[5703]566////////////////////////////////////////////////////////////////////////////
567void t_pppWidgets::slotDelStation() {
[5706]568 int nRows = _staTable->rowCount();
569 bool flg[nRows];
570 for (int iRow = 0; iRow < nRows; iRow++) {
571 if (_staTable->isItemSelected(_staTable->item(iRow,1))) {
572 flg[iRow] = true;
573 }
574 else {
575 flg[iRow] = false;
576 }
577 }
578 for (int iRow = nRows-1; iRow >= 0; iRow--) {
579 if (flg[iRow]) {
580 _staTable->removeRow(iRow);
581 }
582 }
[5703]583}
[5707]584
[6748]585// PPP Text
586////////////////////////////////////////////////////////////////////////////
587void t_pppWidgets::slotPPPTextChanged(){
588
589 const static QPalette paletteWhite(QColor(255, 255, 255));
590 const static QPalette paletteGray(QColor(230, 230, 230));
591
592 // SNX TRO file sampling
593 // ---------------------
[7506]594 if (sender() == 0 || sender() == _snxtroPath) {
595 if ( _snxtroPath->text() != "" ) {
[7488]596 _snxtroSampl->setEnabled(true);
[7764]597 _snxtroIntr ->setEnabled(true);
598 _snxtroAc ->setEnabled(true);
599 _snxtroSol ->setEnabled(true);
[6748]600 _snxtroSampl->setPalette(paletteWhite);
[7764]601 _snxtroIntr ->setPalette(paletteWhite);
602 _snxtroAc ->setPalette(paletteWhite);
603 _snxtroSol ->setPalette(paletteWhite);
[6748]604 }
605 else {
[7488]606 _snxtroSampl->setEnabled(false);
[7764]607 _snxtroIntr ->setEnabled(false);
608 _snxtroAc ->setEnabled(false);
609 _snxtroSol ->setEnabled(false);
[6748]610 _snxtroSampl->setPalette(paletteGray);
[7764]611 _snxtroIntr ->setPalette(paletteGray);
612 _snxtroAc ->setPalette(paletteGray);
613 _snxtroSol ->setPalette(paletteGray);
[6748]614 }
615 }
[8905]616
617
[6748]618}
Note: See TracBrowser for help on using the repository browser.