Changeset 8404 in ntrip for branches/BNC_2.12
- Timestamp:
- Jul 5, 2018, 12:52:20 PM (6 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bncmain.cpp
r8398 r8404 206 206 " PPP/snxtroPath {Directory for SINEX troposphere output files [character string]}\n" 207 207 " PPP/snxtroIntr {SINEX troposphere file interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n" 208 " PPP/snxtroSampl {SINEX troposphere file sampling rate [ integer number of seconds: 0|30|60|90|120|150|180|210|240|270|300]}\n"208 " PPP/snxtroSampl {SINEX troposphere file sampling rate [character string: 1 sec|5 sec|10 sec|30 sec|60 sec|300 sec]}\n" 209 209 " PPP/snxtroAc {SINEX troposphere Analysis Center [character string]}\n" 210 210 " PPP/snxtroSol {SINEX troposphere solution ID [character string]}\n" -
branches/BNC_2.12/src/bncsinextro.cpp
r8135 r8404 32 32 33 33 _opt = opt; 34 (!sampl) ? _sampl = 1 :_sampl = sampl;34 _sampl = sampl; 35 35 36 36 _antex = 0; -
branches/BNC_2.12/src/bncwindow.cpp
r8400 r8404 1326 1326 _pppWidgets._snxtroPath->setWhatsThis(tr("<p>Specify a directory for saving SINEX Troposphere files. If the specified directory does not exist, BNC will not create such files.</p><p>Default is an empty option field, meaning that no SINEX Troposphere files shall be produced.</p>")); 1327 1327 _pppWidgets._snxtroIntr->setWhatsThis(tr("<p>Select a length for SINEX Troposphere files.</p><p>Default 'SNX TRO interval' for saving SINEX Troposphere files on disk is '1 hour'.</p>")); 1328 _pppWidgets._snxtroSampl->setWhatsThis(tr("<p>Select a 'Sampling' rate for saving troposphere parameters.</p> <p>Default 'SNX TRO sampling' rate is '0', meaning that all troposphere estimates will be saved on disk.</p>"));1328 _pppWidgets._snxtroSampl->setWhatsThis(tr("<p>Select a 'Sampling' rate for saving troposphere parameters.</p>")); 1329 1329 _pppWidgets._snxtroAc->setWhatsThis(tr("<p>Specify a 3-character abbreviation describing you as the generating Analysis Center (AC) in your SINEX troposphere files.</p>")); 1330 1330 _pppWidgets._snxtroSol->setWhatsThis(tr("<p>Specify a 4-character solution ID to allow a distingtion between different solutions per AC.</p>")); -
branches/BNC_2.12/src/pppRun.cpp
r8321 r8404 225 225 snxtroFileSkl = snxtroFileSkl + ID4 + "${GPSWD}" + distStr + ".tro"; 226 226 } 227 sampl = settings.value("PPP/snxtroSampl").to Int();227 sampl = settings.value("PPP/snxtroSampl").toString().split("sec").first().toInt(); 228 228 intr = settings.value("PPP/snxtroIntr").toString(); 229 229 _snxtroFile = new bncSinexTro(_opt, snxtroFileSkl, intr, sampl); -
branches/BNC_2.12/src/pppWidgets.cpp
r7945 r8404 62 62 _nmeaPath = new QLineEdit(); _nmeaPath ->setObjectName("PPP/nmeaPath"); _widgets << _nmeaPath; 63 63 _snxtroPath = new QLineEdit(); _snxtroPath ->setObjectName("PPP/snxtroPath"); _widgets << _snxtroPath; 64 _snxtroSampl = new Q SpinBox(); _snxtroSampl->setObjectName("PPP/snxtroSampl"); _widgets << _snxtroSampl;64 _snxtroSampl = new QComboBox(); _snxtroSampl->setObjectName("PPP/snxtroSampl"); _widgets << _snxtroSampl; 65 65 _snxtroIntr = new QComboBox(); _snxtroIntr ->setObjectName("PPP/snxtroIntr"); _widgets << _snxtroIntr; 66 66 _snxtroAc = new QLineEdit(); _snxtroAc ->setObjectName("PPP/snxtroAc"); _widgets << _snxtroAc; … … 141 141 #endif 142 142 143 _snxtroSampl->setMinimum(0); 144 _snxtroSampl->setMaximum(300); 145 _snxtroSampl->setSingleStep(30); 146 _snxtroSampl->setSuffix(" sec"); 143 _snxtroSampl->setEditable(false); 144 _snxtroSampl->addItems(QString("1 sec,5 sec,10 sec,30 sec,60 sec,300 sec").split(",")); 147 145 148 146 _snxtroIntr->setEditable(false); -
branches/BNC_2.12/src/pppWidgets.h
r7764 r8404 48 48 QLineEdit* _nmeaPath; 49 49 QLineEdit* _snxtroPath; 50 Q SpinBox*_snxtroSampl;50 QComboBox* _snxtroSampl; 51 51 QComboBox* _snxtroIntr; 52 52 QLineEdit* _snxtroAc;
Note:
See TracChangeset
for help on using the changeset viewer.