Changeset 1682 in ntrip


Ignore:
Timestamp:
Mar 2, 2009, 12:37:52 AM (15 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r1681 r1682  
    174174  _ephV3CheckBox->setCheckState(Qt::CheckState(settings.value("ephV3").toInt()));
    175175
    176   // Ephemeris Corrections Options
     176  // Broadcast Corrections Options
    177177  // -----------------------------
    178178  _corrPathLineEdit    = new QLineEdit(settings.value("corrPath").toString());
     
    382382  aogroup->addTab(ogroup,tr("RINEX Observations"));
    383383  aogroup->addTab(egroup,tr("RINEX Ephemeris"));
    384   aogroup->addTab(cgroup,tr("Ephemeris Corrections"));
     384  aogroup->addTab(cgroup,tr("Broadcast Corrections"));
    385385  aogroup->addTab(sgroup,tr("Feed Engine"));
    386386  aogroup->addTab(sergroup,tr("Serial Link"));
     
    504504  }   
    505505
    506   // Ephemeris Corrections
     506  // Broadcast Corrections
    507507  // ---------------------
    508508  QGridLayout* cLayout = new QGridLayout;
     
    13491349  }
    13501350
    1351   // Ephemeris Corrections
     1351  // Broadcast Corrections
    13521352  // ---------------------
    13531353  if (aogroup->currentIndex() == 4) {
  • trunk/BNS/bns.cpp

    r1673 r1682  
    386386    ////
    387387    //// Falls Clocks aus den Broadcast Ephemeris gewuenscht:
     388    //// (2nd order relativistic effect taken out for
     389    //// compatibility with IGS products?)
    388390    ////
    389391    //// if ( Qt::CheckState(settings.value("beClocks1 oder beClocks2").toInt()) == Qt::Checked) {
  • trunk/BNS/bnswindow.cpp

    r1671 r1682  
    169169
    170170
    171   // Ephemeris Corrections I Options
     171  // Broadcast Corrections I Options
    172172  // -------------------------------
    173173  _outHost_1_LineEdit    = new QLineEdit(settings.value("outHost1").toString());
     
    187187  _beClocks1CheckBox->setCheckState(Qt::CheckState(settings.value("beClocks1").toInt()));
    188188
    189   // Ephemeris Corrections II Options
     189  // Broadcast Corrections II Options
    190190  // --------------------------------
    191191  _outHost_2_LineEdit    = new QLineEdit(settings.value("outHost2").toString());
     
    271271  _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."));
    272272  _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>"));
    275275
    276276
     
    365365  tab_co->setLayout(layout_co);
    366366
    367   // Ephemeris Corrections I Tab
     367  // Broadcast Corrections I Tab
    368368  // ---------------------------
    369369  QWidget* tab_cas1 = new QWidget();
    370   tabs->addTab(tab_cas1, "Ephemeris Corrections I");
     370  tabs->addTab(tab_cas1, "Broadcast Corrections I");
    371371
    372372  QGridLayout* layout_cas1 = new QGridLayout;
     
    416416  }
    417417
    418   // Ephemeris Corrections II Tab
     418  // Broadcast Corrections II Tab
    419419  // ----------------------------
    420420  QWidget* tab_cas2 = new QWidget();
    421   tabs->addTab(tab_cas2, "Ephemeris Corrections II");
     421  tabs->addTab(tab_cas2, "Broadcast Corrections II");
    422422
    423423  QGridLayout* layout_cas2 = new QGridLayout;
     
    545545  _statusLbl[7] = new QLabel("RINEX Ephemeris:"); 
    546546  _statusLbl[4] = new QLabel("Clocks & Orbits:");
    547   _statusLbl[5] = new QLabel("Ephemeris Corrections I:"); 
    548   _statusLbl[6] = new QLabel("Ephemeris Corrections II:"); 
     547  _statusLbl[5] = new QLabel("Broadcast Corrections I:"); 
     548  _statusLbl[6] = new QLabel("Broadcast Corrections II:"); 
    549549  _statusLbl[3] = new QLabel("0 byte(s)"); _statusCnt[3] = 0;
    550550
     
    832832  }
    833833
    834   // Enable/disable  Ephemeris Corrections I Options
     834  // Enable/disable  Broadcast Corrections I Options
    835835  // -----------------------------------------------
    836836  if (tabs->currentIndex() == 4) {
     
    866866  }
    867867
    868   // Enable/disable Ephemeris Corrections II Options
     868  // Enable/disable Broadcast Corrections II Options
    869869  // -----------------------------------------------
    870870  if (tabs->currentIndex() == 5) {
Note: See TracChangeset for help on using the changeset viewer.