Changeset 1230 in ntrip for trunk/BNC/bncwindow.cpp
- Timestamp:
- Nov 23, 2008, 12:13:21 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r1222 r1230 263 263 _proxyHostLineEdit->setWhatsThis(tr("<p>If you are running BNC within a protected Local Area Network (LAN), you might need to use a proxy server to access the Internet. Enter your proxy server IP and port number in case one is operated in front of BNC. If you do not know the IP and port of your proxy server, check the proxy server settings in your Internet browser or ask your network administrator.</p><p>Note that IP streaming is sometimes not allowed in a LAN. In this case you need to ask your network administrator for an appropriate modification of the local security policy or for the installation of a TCP relay to the NTRIP broadcasters. If these are not possible, you might need to run BNC outside your LAN on a network that has unobstructed connection to the Internet.</p>")); 264 264 _proxyPortLineEdit->setWhatsThis(tr("<p>If you are running BNC within a protected Local Area Network (LAN), you might need to use a proxy server to access the Internet. Enter your proxy server IP and port number in case one is operated in front of BNC. If you do not know the IP and port of your proxy server, check the proxy server settings in your Internet browser or ask your network administrator.</p><p>Note that IP streaming is sometimes not allowed in a LAN. In this case you need to ask your network administrator for an appropriate modification of the local security policy or for the installation of a TCP relay to the NTRIP broadcasters. If these are not possible, you might need to run BNC outside your LAN on a network that has unobstructed connection to the Internet.</p>")); 265 _waitTimeSpinBox->setWhatsThis(tr("<p>When feeding a real-time GNSS engine waiting for input epoch by epoch, BNC drops whatever is received later than 'Wait for full epoch' seconds. A value of 3 to 5 seconds is recommended, depending on the latency of the incoming streams and the delay acceptable to your real-time GNSS engine or products.</p><p>Note that 'Wait for full epoch' does not effect the RINEX Observation file content. Observations received later than 'Wait for full epoch' seconds will still be included in the RINEX Observation files.</p>"));265 _waitTimeSpinBox->setWhatsThis(tr("<p>When feeding a real-time GNSS engine waiting for synchronized input epoch by epoch, BNC drops whatever is received later than 'Wait for full epoch' seconds. A value of 3 to 5 seconds is recommended, depending on the latency of the incoming streams and the delay acceptable to your real-time GNSS engine or products.</p><p>Note that 'Wait for full epoch' does not effect the RINEX Observation file content. Observations received later than 'Wait for full epoch' seconds will still be included in the RINEX Observation files.</p>")); 266 266 _outFileLineEdit->setWhatsThis(tr("Specify the full path to a file where synchronized observations are saved in plain ASCII format. Beware that the size of this file can rapidly increase depending on the number of incoming streams.")); 267 267 _outPortLineEdit->setWhatsThis(tr("BNC can produce synchronized observations in binary format on your local host through an IP port. Specify a port number here to activate this function.")); 268 _out PortLineEdit->setWhatsThis(tr("Unsynchronized observations in binary format on your local host through an IP port. Specify a port number here to activate this function."));268 _outUPortLineEdit->setWhatsThis(tr("BNC can produce usynchronized observations in binary format on your local host through an IP port. Specify a port number here to activate this function.")); 269 269 _outEphPortLineEdit->setWhatsThis(tr("BNC can produce ephemeris data in RINEX ASCII format on your local host through an IP port. Specify a port number here to activate this function.")); 270 270 _corrPortLineEdit->setWhatsThis(tr("BNC can produce Broadcast Ephemeris Corrections on your local host through an IP port. Specify a port number here to activate this function.")); … … 313 313 aogroup->addTab(ogroup,tr("RINEX Observations")); 314 314 aogroup->addTab(egroup,tr("RINEX Ephemeris")); 315 aogroup->addTab(sgroup,tr(" Synchronized Observations"));315 aogroup->addTab(sgroup,tr("Feed Engine")); 316 316 aogroup->addTab(cgroup,tr("Ephemeris Corrections")); 317 317 aogroup->addTab(agroup,tr("Monitor")); … … 346 346 QGridLayout* sLayout = new QGridLayout; 347 347 sLayout->setColumnMinimumWidth(0,14*ww); 348 sLayout->addWidget(new QLabel("Port "),0, 0);348 sLayout->addWidget(new QLabel("Port (synchronized)"), 0, 0); 349 349 sLayout->addWidget(_outPortLineEdit, 0, 1); 350 sLayout->addWidget(new QLabel(" Port (Unsynchronized)"), 0, 2);351 sLayout->addWidget(_ outUPortLineEdit, 0, 3);352 sLayout->addWidget(new QLabel(" Wait for full epoch"),1, 0);353 sLayout->addWidget(_ waitTimeSpinBox,1, 1);350 sLayout->addWidget(new QLabel("Wait for full epoch"), 0, 2, Qt::AlignRight); 351 sLayout->addWidget(_waitTimeSpinBox, 0, 3, Qt::AlignLeft); 352 sLayout->addWidget(new QLabel("Port (unsynchronized)"), 1, 0); 353 sLayout->addWidget(_outUPortLineEdit, 1, 1); 354 354 sLayout->addWidget(new QLabel("File (full path)"), 2, 0); 355 sLayout->addWidget(_outFileLineEdit, 2, 1, 1, 3 );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,4,Qt::AlignLeft);355 sLayout->addWidget(_outFileLineEdit, 2, 1, 1, 30); 356 sLayout->addWidget(new QLabel("Sampling"), 3, 0); 357 sLayout->addWidget(_binSamplSpinBox, 3, 1,1,1, Qt::AlignLeft); 358 sLayout->addWidget(new QLabel("Output decoded synchronized or unsynchronized observations epoch by epoch to feed an engine."),4,0,1,30); 359 359 sLayout->addWidget(new QLabel(" "),5,0); 360 sLayout->addWidget(new QLabel(" "),6,0);361 360 sgroup->setLayout(sLayout); 361 362 //QGridLayout* oLayout = new QGridLayout; 363 //oLayout->setColumnMinimumWidth(0,14*ww); 364 //oLayout->addWidget(new QLabel("Directory"), 0, 0); 365 //oLayout->addWidget(_rnxPathLineEdit, 0, 1,1,12); 366 //oLayout->addWidget(new QLabel("Interval"), 1, 0); 367 //oLayout->addWidget(_rnxIntrComboBox, 1, 1); 368 //oLayout->addWidget(new QLabel("Sampling"), 1, 2, Qt::AlignRight); 369 //oLayout->addWidget(_rnxSamplSpinBox, 1, 3, Qt::AlignLeft); 370 //oLayout->addWidget(new QLabel("Skeleton extension"), 2, 0); 371 //oLayout->addWidget(_rnxSkelLineEdit, 2, 1,1,1, Qt::AlignLeft); 372 //oLayout->addWidget(new QLabel("Script (full path)"), 3, 0); 373 //oLayout->addWidget(_rnxScrpLineEdit, 3, 1,1,12); 374 //oLayout->addWidget(new QLabel("Version 3"), 4, 0); 375 //oLayout->addWidget(_rnxV3CheckBox, 4, 1); 376 //oLayout->addWidget(new QLabel("Saving RINEX observation files."),5,0,1,12, Qt::AlignLeft); 377 //ogroup->setLayout(oLayout); 378 362 379 363 380 QGridLayout* eLayout = new QGridLayout;
Note:
See TracChangeset
for help on using the changeset viewer.