- Timestamp:
- Apr 20, 2009, 11:16:40 AM (16 years ago)
- Location:
- trunk/BNS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bnshelp.html
r1804 r1805 679 679 <tr><td>outFile_3=/home/weber/rinex/CLCK3</td><td>Broadcast Corrections III: Save (full path)</td></tr> 680 680 <tr><td>beClocks3=0</td><td>Broadcast Corrections III: Broadcast clocks</td></tr> 681 <tr><td>outHostEph=www.igs-ip.net</td><td>Broadcast Ephemeris: Host</td></tr> 682 <tr><td>outPortEph=2101</td><td>Broadcast Ephemeris: Port</td></tr> 683 <tr><td>mountpoint_Eph=BRDC0</td><td>Broadcast Ephemeris: Mountpoint</td></tr> 684 <tr><td>passwordEph=pass</td><td>Broadcast Ephemeris: Password</td></tr> 685 <tr><td>samplEph=5</td><td>Broadcast Ephemeris: Sampling</td></tr> 681 686 <tr><td>trafo_dx=0.0541</td><td>Broadcast Corrections: System > Custom</td></tr> 682 687 <tr><td>trafo_dy=0.0502</td><td>Broadcast Corrections: System > Custom</td></tr> -
trunk/BNS/bnssettings.cpp
r1795 r1805 66 66 setValue("mountpoint_Eph",""); 67 67 setValue("passwordEph", ""); 68 setValue("samplEph", "5"); 68 69 69 70 setValue("trafo_dx", "0.0541"); -
trunk/BNS/bnswindow.cpp
r1803 r1805 231 231 _password_Eph_LineEdit->setEchoMode(QLineEdit::Password); 232 232 _mountpoint_Eph_LineEdit = new QLineEdit(settings.value("mountpoint_Eph").toString()); 233 _samplEphSpinBox = new QSpinBox; 234 _samplEphSpinBox->setMinimum(0); 235 _samplEphSpinBox->setMaximum(60); 236 _samplEphSpinBox->setSingleStep(5); 237 _samplEphSpinBox->setMaximumWidth(9*ww); 238 _samplEphSpinBox->setValue(settings.value("samplEph").toInt()); 239 _samplEphSpinBox->setSuffix(" sec"); 233 240 234 241 // RINEX Clocks Options … … 301 308 _mountpoint_Eph_LineEdit->setWhatsThis(tr("Specify the mounpoint for stream upload to an NTRIP Broadcaster.")); 302 309 _password_Eph_LineEdit->setWhatsThis(tr("Specify the stream upload password protecting the mounpoint on an NTRIP Broadcaster.")); 310 _samplEphSpinBox->setWhatsThis(tr("Select the Broadcast Ephemeris sampling interval in seconds. Defaut is '5' meaning that a complete set of Broadcast Ephemeris is uploaded every 5 seconds.")); 303 311 _rnxPathLineEdit->setWhatsThis(tr("Specify the path for saving the generated clock corrections as Clock RINEX files. If the specified directory does not exist, BNS will not create Clock RINEX files.")); 304 312 _rnxIntrComboBox->setWhatsThis(tr("Select the length of the Clock RINEX file.")); … … 594 602 layout_casEph->addWidget(new QLabel(" Password"), 1, 2, Qt::AlignRight); 595 603 layout_casEph->addWidget(_password_Eph_LineEdit, 1, 3); 596 layout_casEph->addWidget(new QLabel("Upload concatenated Broadcast Ephemeris in RTCMv3 format to caster."), 2, 0, 1, 50); 597 layout_casEph->addWidget(new QLabel(""), 3, 0); 604 layout_casEph->addWidget(new QLabel("Sampling"), 2, 0); 605 layout_casEph->addWidget(_samplEphSpinBox, 2, 1); 606 layout_casEph->addWidget(new QLabel("Upload concatenated RTCMv3 Broadcast Ephemeris caster."), 3, 0, 1, 50); 598 607 599 608 tab_casEph->setLayout(layout_casEph); … … 604 613 _mountpoint_Eph_LineEdit->setStyleSheet("background-color: lightGray"); 605 614 _password_Eph_LineEdit->setStyleSheet("background-color: lightGray"); 615 _samplEphSpinBox->setStyleSheet("background-color: lightGray"); 606 616 _outPort_Eph_LineEdit->setEnabled(false); 607 617 _mountpoint_Eph_LineEdit->setEnabled(false); 608 618 _password_Eph_LineEdit->setEnabled(false); 619 _samplEphSpinBox->setEnabled(false); 609 620 } 610 621 … … 877 888 settings.setValue("mountpoint_Eph",_mountpoint_Eph_LineEdit->text()); 878 889 settings.setValue("passwordEph", _password_Eph_LineEdit->text()); 890 settings.setValue("samplEph", _samplEphSpinBox->value()); 879 891 880 892 settings.setValue("rnxPath", _rnxPathLineEdit->text()); … … 1152 1164 _mountpoint_Eph_LineEdit->setStyleSheet("background-color: white"); 1153 1165 _password_Eph_LineEdit->setStyleSheet("background-color: white"); 1166 _samplEphSpinBox->setStyleSheet("background-color: white"); 1154 1167 _outPort_Eph_LineEdit->setEnabled(true); 1155 1168 _mountpoint_Eph_LineEdit->setEnabled(true); 1156 1169 _password_Eph_LineEdit->setEnabled(true); 1170 _samplEphSpinBox->setEnabled(true); 1157 1171 } else { 1158 1172 _outPort_Eph_LineEdit->setStyleSheet("background-color: lightGray"); 1159 1173 _mountpoint_Eph_LineEdit->setStyleSheet("background-color: lightGray"); 1160 1174 _password_Eph_LineEdit->setStyleSheet("background-color: lightGray"); 1175 _samplEphSpinBox->setStyleSheet("background-color: lightGray"); 1161 1176 _outPort_Eph_LineEdit->setEnabled(false); 1162 1177 _mountpoint_Eph_LineEdit->setEnabled(false); 1163 1178 _password_Eph_LineEdit->setEnabled(false); 1179 _samplEphSpinBox->setEnabled(false); 1164 1180 } 1165 1181 } -
trunk/BNS/bnswindow.h
r1803 r1805 118 118 QLineEdit* _mountpoint_Eph_LineEdit; 119 119 QLineEdit* _password_Eph_LineEdit; 120 QSpinBox* _samplEphSpinBox; 120 121 121 122 QLineEdit* _rnxPathLineEdit;
Note:
See TracChangeset
for help on using the changeset viewer.