Changeset 740 in ntrip


Ignore:
Timestamp:
Mar 20, 2008, 5:06:27 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnccaster.cpp

    r738 r740  
    9090  _lastDumpSec   = 0;
    9191
    92   /////  _samplingRate = settings.value("rnxSampl").toInt();
    93   _samplingRate = 0;
     92  _samplingRate = settings.value("binSampl").toInt();
    9493  _waitTime     = settings.value("waitTime").toInt();
    9594  if (_waitTime < 1) {
  • trunk/BNC/bnchelp.html

    r739 r740  
    315315<p><a name="syncport"><h4>3.7.1 Output Port - optional</h4></p>
    316316<p>
    317 BNC can produce synchronized observations in binary format on your local host (IP 127.0.0.1) through an IP port. Specify an IP port number here to activate this function. The default is an empty option field, meaning that no binary output is generated. Note that the sampling interval for the binary output equals the RINEX Observation sampling interval.</p>
     317BNC can produce synchronized observations in binary format on your local host (IP 127.0.0.1) through an IP port. Specify an IP port number here to activate this function. The default is an empty option field, meaning that no binary output is generated.</p>
    318318<p>The binary output is a continuous stream in the following order:</p>
    319319<pre>
  • trunk/BNC/bncwindow.cpp

    r739 r740  
    153153  _rnxSamplSpinBox->setValue(settings.value("rnxSampl").toInt());
    154154  _rnxSamplSpinBox->setSuffix(" sec");
     155
     156  _binSamplSpinBox    = new QSpinBox();
     157  _binSamplSpinBox->setMinimum(0);
     158  _binSamplSpinBox->setMaximum(60);
     159  _binSamplSpinBox->setSingleStep(5);
     160  _binSamplSpinBox->setMaximumWidth(9*ww);
     161  _binSamplSpinBox->setValue(settings.value("binSampl").toInt());
     162  _binSamplSpinBox->setSuffix(" sec");
     163
    155164  _obsRateComboBox    = new QComboBox();
    156165  _obsRateComboBox->setMaximumWidth(9*ww);
     
    281290  _ephIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Navigation file.</p>"));
    282291  _rnxSamplSpinBox->setWhatsThis(tr("<p>Select the RINEX Observation sampling interval in seconds. A value of zero '0' tells BNC to store all received epochs into RINEX.</p>"));
     292  _binSamplSpinBox->setWhatsThis(tr("<p>Select the Observation sampling interval in seconds. A value of zero '0' tells BNC to send/store all received epochs.</p>"));
    283293  _obsRateComboBox->setWhatsThis(tr("<p>BNC can collect all returns (success or failure) coming from a decoder within a certain short time span to then decide whether a stream has an outage or its content is corrupted. The procedure needs a rough estimate of the expected 'Observation rate' of the incoming streams. When a continuous problem is detected, BNC can inform its operator about this event through an advisory note.</p><p>An empty option field (default) means that you don't want an explicit information from BNC about stream outages and incoming streams that can not be decoded and that the special procedure for handling of corrupted streams is bypassed.</p>"));
    284294  _adviseRecoSpinBox->setWhatsThis(tr("<p>Following a stream outage or a longer series of bad observations, an advisory note is generated when valid observations are received again throughout the 'Recovery threshold' time span. A value of about 5min (default) is recommended.</p><p>A value of zero '0' means that for any stream recovery, however short, BNC immediately generates an advisory note.</p><p>Note that for using this function you need to specify the 'Observation rate'.</p>"));
     
    344354  sLayout->addWidget(new QLabel("File (full path)"),              2, 0);
    345355  sLayout->addWidget(_outFileLineEdit,                            2, 1);
    346   sLayout->addWidget(new QLabel("Output synchronized observations epoch by epoch."),3,0,1,2,Qt::AlignLeft);
    347   sLayout->addWidget(new QLabel("    "),4,0);
     356  sLayout->addWidget(new QLabel("Sampling"),                      3, 0, Qt::AlignLeft);
     357  sLayout->addWidget(_binSamplSpinBox,                            3, 1, Qt::AlignLeft);
     358  sLayout->addWidget(new QLabel("Output synchronized observations epoch by epoch."),4,0,1,2,Qt::AlignLeft);
    348359  sLayout->addWidget(new QLabel("    "),5,0);
     360  sLayout->addWidget(new QLabel("    "),6,0);
    349361  sgroup->setLayout(sLayout);
    350362
     
    549561  settings.setValue("ephIntr",     _ephIntrComboBox->currentText());
    550562  settings.setValue("rnxSampl",    _rnxSamplSpinBox->value());
     563  settings.setValue("binSampl",    _binSamplSpinBox->value());
    551564  settings.setValue("rnxSkel",     _rnxSkelLineEdit->text());
    552565  settings.setValue("rnxAppend",   _rnxAppendCheckBox->checkState());
  • trunk/BNC/bncwindow.h

    r728 r740  
    100100    QComboBox* _ephIntrComboBox;
    101101    QSpinBox*  _rnxSamplSpinBox;
     102    QSpinBox*  _binSamplSpinBox;
    102103    QCheckBox* _rnxAppendCheckBox;
    103104    QCheckBox* _makePauseCheckBox;
Note: See TracChangeset for help on using the changeset viewer.