- Timestamp:
- Mar 2, 2009, 12:37:52 AM (16 years ago)
- Location:
- trunk/BNS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r1673 r1682 386 386 //// 387 387 //// Falls Clocks aus den Broadcast Ephemeris gewuenscht: 388 //// (2nd order relativistic effect taken out for 389 //// compatibility with IGS products?) 388 390 //// 389 391 //// if ( Qt::CheckState(settings.value("beClocks1 oder beClocks2").toInt()) == Qt::Checked) { -
trunk/BNS/bnswindow.cpp
r1671 r1682 169 169 170 170 171 // EphemerisCorrections I Options171 // Broadcast Corrections I Options 172 172 // ------------------------------- 173 173 _outHost_1_LineEdit = new QLineEdit(settings.value("outHost1").toString()); … … 187 187 _beClocks1CheckBox->setCheckState(Qt::CheckState(settings.value("beClocks1").toInt())); 188 188 189 // EphemerisCorrections II Options189 // Broadcast Corrections II Options 190 190 // -------------------------------- 191 191 _outHost_2_LineEdit = new QLineEdit(settings.value("outHost2").toString()); … … 271 271 _sp3SamplSpinBox->setWhatsThis(tr("Select the SP3 orbit file sampling interval in seconds. A value of zero '0' tells BNS to store all available samples into SP3 orbit files.")); 272 272 _autoStartCheckBox->setWhatsThis(tr("<p>Tick 'Auto start' for auto-start of BNS at startup time in window mode with preassigned processing options.</p>")); 273 _beClocks1CheckBox->setWhatsThis(tr("<p> Send broadcast clocks instead of broadcast clock corrections and ignore the incoming clock estimates.</p>"));274 _beClocks2CheckBox->setWhatsThis(tr("<p> Send broadcast clocks instead of broadcast clock corrections and ignore the incoming clock estimates.</p>"));273 _beClocks1CheckBox->setWhatsThis(tr("<p>Ignore incoming clock estimates and send broadcast clocks instead of broadcast clock corrections.</p><p>Note that for compatibility with IGS post processing products these clocks are reduced for the 2nd order relativistic effect.</p>")); 274 _beClocks2CheckBox->setWhatsThis(tr("<p>Ignore incoming clock estimates and send broadcast clocks instead of broadcast clock corrections.</p><p>Note that for compatibility with IGS post processing products these clocks are reduced for the 2nd order relativistic effect.</p>")); 275 275 276 276 … … 365 365 tab_co->setLayout(layout_co); 366 366 367 // EphemerisCorrections I Tab367 // Broadcast Corrections I Tab 368 368 // --------------------------- 369 369 QWidget* tab_cas1 = new QWidget(); 370 tabs->addTab(tab_cas1, " EphemerisCorrections I");370 tabs->addTab(tab_cas1, "Broadcast Corrections I"); 371 371 372 372 QGridLayout* layout_cas1 = new QGridLayout; … … 416 416 } 417 417 418 // EphemerisCorrections II Tab418 // Broadcast Corrections II Tab 419 419 // ---------------------------- 420 420 QWidget* tab_cas2 = new QWidget(); 421 tabs->addTab(tab_cas2, " EphemerisCorrections II");421 tabs->addTab(tab_cas2, "Broadcast Corrections II"); 422 422 423 423 QGridLayout* layout_cas2 = new QGridLayout; … … 545 545 _statusLbl[7] = new QLabel("RINEX Ephemeris:"); 546 546 _statusLbl[4] = new QLabel("Clocks & Orbits:"); 547 _statusLbl[5] = new QLabel(" EphemerisCorrections I:");548 _statusLbl[6] = new QLabel(" EphemerisCorrections II:");547 _statusLbl[5] = new QLabel("Broadcast Corrections I:"); 548 _statusLbl[6] = new QLabel("Broadcast Corrections II:"); 549 549 _statusLbl[3] = new QLabel("0 byte(s)"); _statusCnt[3] = 0; 550 550 … … 832 832 } 833 833 834 // Enable/disable EphemerisCorrections I Options834 // Enable/disable Broadcast Corrections I Options 835 835 // ----------------------------------------------- 836 836 if (tabs->currentIndex() == 4) { … … 866 866 } 867 867 868 // Enable/disable EphemerisCorrections II Options868 // Enable/disable Broadcast Corrections II Options 869 869 // ----------------------------------------------- 870 870 if (tabs->currentIndex() == 5) {
Note:
See TracChangeset
for help on using the changeset viewer.