- Timestamp:
- Nov 23, 2008, 6:47:47 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnchelp.html
r1230 r1231 349 349 BNC can generate synchronized or unsynchronized observations epoch by epoch from all stations and satellites to feed a real-time GNSS engine. The output can be produced in a binary format through an IP port and/or a plain ASCII format to save the observations in a local file. It comprises the following observations where available:</p> 350 350 <p> 351 StatID, SVPRN, GPSWeek, GPSWeeks, C1, C2, P1, P2, L1, L2, slip_ _cnt_L1, slip__cnt_L2, lock__timei_L1, lock__timei_L2, S1, S2, SNR1, SNR2351 StatID, SVPRN, GPSWeek, GPSWeeks, C1, C2, P1, P2, L1, L2, slip_cnt_L1, slip_cnt_L2, lock_timei_L1, lock_timei_L2, S1, S2, SNR1, SNR2 352 352 </p> 353 353 <p> -
trunk/BNC/bncwindow.cpp
r1230 r1231 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 _outUPortLineEdit->setWhatsThis(tr("BNC can produce u synchronized 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 unsynchronized 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(cgroup,tr("Ephemeris Corrections")); 315 316 aogroup->addTab(sgroup,tr("Feed Engine")); 316 aogroup->addTab(cgroup,tr("Ephemeris Corrections"));317 317 aogroup->addTab(agroup,tr("Monitor")); 318 318 aogroup->addTab(rgroup,tr("RTCM Scan")); … … 332 332 QGridLayout* gLayout = new QGridLayout; 333 333 gLayout->setColumnMinimumWidth(0,14*ww); 334 gLayout->addWidget(new QLabel("Logfile (full path)"), 0,0);335 gLayout->addWidget(_logFileLineEdit, 0,1);336 gLayout->addWidget(new QLabel("Append files") ,1,0);337 gLayout->addWidget(_rnxAppendCheckBox, 1,1);338 gLayout->addWidget(new QLabel("Reread configuration") ,2,0);339 gLayout->addWidget(_onTheFlyComboBox, 2,1);334 gLayout->addWidget(new QLabel("Logfile (full path)"), 0, 0); 335 gLayout->addWidget(_logFileLineEdit, 0, 1); 336 gLayout->addWidget(new QLabel("Append files"), 1, 0); 337 gLayout->addWidget(_rnxAppendCheckBox, 1, 1); 338 gLayout->addWidget(new QLabel("Reread configuration"), 2, 0); 339 gLayout->addWidget(_onTheFlyComboBox, 2, 1); 340 340 gLayout->addWidget(new QLabel("General settings for logfile, file handling and configuration on-the-fly."),3, 0, 1, 2, Qt::AlignLeft); 341 341 gLayout->addWidget(new QLabel(" "),4,0); 342 342 gLayout->addWidget(new QLabel(" "),5,0); 343 gLayout->addWidget(new QLabel(" "),6,0);344 343 ggroup->setLayout(gLayout); 345 344 346 345 QGridLayout* sLayout = new QGridLayout; 347 346 sLayout->setColumnMinimumWidth(0,14*ww); 348 sLayout->addWidget(new QLabel("Port (synchronized)"), 347 sLayout->addWidget(new QLabel("Port (synchronized)"), 0, 0); 349 348 sLayout->addWidget(_outPortLineEdit, 0, 1); 350 349 sLayout->addWidget(new QLabel("Wait for full epoch"), 0, 2, Qt::AlignRight); … … 355 354 sLayout->addWidget(_outFileLineEdit, 2, 1, 1, 30); 356 355 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 anengine."),4,0,1,30);356 sLayout->addWidget(_binSamplSpinBox, 3, 1, Qt::AlignLeft); 357 sLayout->addWidget(new QLabel("Output decoded observations in binary format to feed a real-time GNSS engine."),4,0,1,30); 359 358 sLayout->addWidget(new QLabel(" "),5,0); 360 359 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 379 360 380 361 QGridLayout* eLayout = new QGridLayout; … … 411 392 QGridLayout* rLayout = new QGridLayout; 412 393 rLayout->setColumnMinimumWidth(0,14*ww); 413 rLayout->addWidget(new QLabel("Mountpoint"), 0,0, Qt::AlignLeft);414 rLayout->addWidget(_messTypesLineEdit, 0,1,1,15,Qt::AlignLeft);394 rLayout->addWidget(new QLabel("Mountpoint"), 0, 0, Qt::AlignLeft); 395 rLayout->addWidget(_messTypesLineEdit, 0, 1,1,15,Qt::AlignLeft); 415 396 rLayout->addWidget(new QLabel("Scan RTCM Version 3.x stream to log numbers of message types and antenna information."),1, 0, 1, 4, Qt::AlignLeft); 416 rLayout->addWidget(new QLabel(" "), 2,0);417 rLayout->addWidget(new QLabel(" "), 3,0);418 rLayout->addWidget(new QLabel(" "), 4,0);419 rLayout->addWidget(new QLabel(" "), 5,0);397 rLayout->addWidget(new QLabel(" "), 2, 0); 398 rLayout->addWidget(new QLabel(" "), 3, 0); 399 rLayout->addWidget(new QLabel(" "), 4, 0); 400 rLayout->addWidget(new QLabel(" "), 5, 0); 420 401 rgroup->setLayout(rLayout); 421 402
Note:
See TracChangeset
for help on using the changeset viewer.