- Timestamp:
- Feb 26, 2010, 4:21:35 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncsettings.cpp ¶
r2304 r2340 77 77 setValue("waitTime", "5"); 78 78 setValue("pppMount", ""); 79 setValue("pppNavi", ""); 79 80 setValue("pppStatic", ""); 80 81 setValue("pppUsePhase", ""); -
TabularUnified trunk/BNC/bncwindow.cpp ¶
r2318 r2340 337 337 // ----------- 338 338 _pppMountLineEdit = new QLineEdit(settings.value("pppMount").toString()); 339 _pppUsePhaseCheckBox = new QCheckBox(); 339 340 _pppNMEALineEdit = new QLineEdit(settings.value("nmeaFile").toString()); 340 341 _pppNMEAPortLineEdit = new QLineEdit(settings.value("nmeaPort").toString()); … … 349 350 _pppOriginComboBox->setCurrentIndex(ij); 350 351 } 352 _pppNaviCheckBox = new QCheckBox(); 353 _pppNaviCheckBox->setCheckState(Qt::CheckState( 354 settings.value("pppNavi").toInt())); 351 355 _pppStaticCheckBox = new QCheckBox(); 352 356 _pppStaticCheckBox->setCheckState(Qt::CheckState( … … 443 447 _serialHeightNMEALineEdit->setWhatsThis(tr("<p>Specify an approximate 'Height' above mean sea level in meter for your VRS to simulate an inital NMEA-GGA message.</p><p>The setting of this option is ignored in case of streams coming from physical reference stations.</p>")); 444 448 _pppMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint if you want BNC to estimate coordinates for the affected receiver position through a PPP solution.</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 www.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 only in low repetition rate or dont come at all from there.</p>")); 449 _pppNaviCheckBox->setWhatsThis(tr("<p>Don't apply any Broadcast Ephemeris Corrections, carry out plain Navigation Solution.</p>")); 445 450 _pppStaticCheckBox->setWhatsThis(tr("<p>By default BNC considers the rover receiver as mobile.</p><p>Tick 'Static' to consider a static observation sitatuion and adapt appropriate filter characteristics for that.</p>")); 446 451 _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>")); … … 693 698 pppLayout->setColumnMinimumWidth(0,14*ww); 694 699 pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0); 695 pppLayout->addWidget(_pppMountLineEdit, 0, 1, 1, 3); 700 pppLayout->addWidget(_pppMountLineEdit, 0, 1, 1, 2); 701 pppLayout->addWidget(_pppNaviCheckBox, 0, 3); 702 pppLayout->addWidget(new QLabel("Navigation solution"), 0, 4); 696 703 pppLayout->addWidget(new QLabel("Options"), 1, 0); 697 704 pppLayout->addWidget(_pppStaticCheckBox, 1, 1); … … 1027 1034 settings.setValue("miscMount", _miscMountLineEdit->text()); 1028 1035 settings.setValue("pppMount", _pppMountLineEdit->text()); 1036 settings.setValue("pppNavi", _pppNaviCheckBox->checkState()); 1029 1037 settings.setValue("nmeaFile", _pppNMEALineEdit->text()); 1030 1038 settings.setValue("nmeaPort", _pppNMEAPortLineEdit->text()); … … 1572 1580 || sender() == _pppOriginComboBox) { 1573 1581 if (!_pppMountLineEdit->text().isEmpty()) { 1582 _pppNaviCheckBox->setPalette(palette_white); 1574 1583 _pppNMEALineEdit->setPalette(palette_white); 1575 1584 _pppNMEAPortLineEdit->setPalette(palette_white); … … 1582 1591 _pppGLONASSCheckBox->setPalette(palette_white); 1583 1592 _pppOriginComboBox->setPalette(palette_white); 1593 _pppNaviCheckBox->setEnabled(true); 1584 1594 _pppNMEALineEdit->setEnabled(true); 1585 1595 _pppNMEAPortLineEdit->setEnabled(true); … … 1609 1619 } 1610 1620 } else { 1621 _pppNaviCheckBox->setPalette(palette_gray); 1611 1622 _pppNMEALineEdit->setPalette(palette_gray); 1612 1623 _pppNMEAPortLineEdit->setPalette(palette_gray); … … 1619 1630 _pppGLONASSCheckBox->setPalette(palette_gray); 1620 1631 _pppOriginComboBox->setPalette(palette_gray); 1632 _pppNaviCheckBox->setEnabled(false); 1621 1633 _pppNMEALineEdit->setEnabled(false); 1622 1634 _pppNMEAPortLineEdit->setEnabled(false); -
TabularUnified trunk/BNC/bncwindow.h ¶
r2303 r2340 119 119 QLineEdit* _pppRefCrdYLineEdit; 120 120 QLineEdit* _pppRefCrdZLineEdit; 121 QCheckBox* _pppNaviCheckBox; 121 122 QCheckBox* _pppStaticCheckBox; 122 123 QCheckBox* _pppUsePhaseCheckBox;
Note:
See TracChangeset
for help on using the changeset viewer.