- Timestamp:
- Mar 20, 2008, 5:06:27 PM (17 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r738 r740 90 90 _lastDumpSec = 0; 91 91 92 ///// _samplingRate = settings.value("rnxSampl").toInt(); 93 _samplingRate = 0; 92 _samplingRate = settings.value("binSampl").toInt(); 94 93 _waitTime = settings.value("waitTime").toInt(); 95 94 if (_waitTime < 1) { -
trunk/BNC/bnchelp.html
r739 r740 315 315 <p><a name="syncport"><h4>3.7.1 Output Port - optional</h4></p> 316 316 <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>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.</p> 318 318 <p>The binary output is a continuous stream in the following order:</p> 319 319 <pre> -
trunk/BNC/bncwindow.cpp
r739 r740 153 153 _rnxSamplSpinBox->setValue(settings.value("rnxSampl").toInt()); 154 154 _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 155 164 _obsRateComboBox = new QComboBox(); 156 165 _obsRateComboBox->setMaximumWidth(9*ww); … … 281 290 _ephIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Navigation file.</p>")); 282 291 _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>")); 283 293 _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>")); 284 294 _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>")); … … 344 354 sLayout->addWidget(new QLabel("File (full path)"), 2, 0); 345 355 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); 348 359 sLayout->addWidget(new QLabel(" "),5,0); 360 sLayout->addWidget(new QLabel(" "),6,0); 349 361 sgroup->setLayout(sLayout); 350 362 … … 549 561 settings.setValue("ephIntr", _ephIntrComboBox->currentText()); 550 562 settings.setValue("rnxSampl", _rnxSamplSpinBox->value()); 563 settings.setValue("binSampl", _binSamplSpinBox->value()); 551 564 settings.setValue("rnxSkel", _rnxSkelLineEdit->text()); 552 565 settings.setValue("rnxAppend", _rnxAppendCheckBox->checkState()); -
trunk/BNC/bncwindow.h
r728 r740 100 100 QComboBox* _ephIntrComboBox; 101 101 QSpinBox* _rnxSamplSpinBox; 102 QSpinBox* _binSamplSpinBox; 102 103 QCheckBox* _rnxAppendCheckBox; 103 104 QCheckBox* _makePauseCheckBox;
Note:
See TracChangeset
for help on using the changeset viewer.