Changeset 7293 in ntrip
- Timestamp:
- Sep 22, 2015, 2:53:32 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncmain.cpp
r7286 r7293 75 75 QString confFileName; 76 76 77 QByteArray printHelp = 77 QByteArray printHelp = 78 78 "Usage: bnc --nw \n" 79 79 " --version \n" … … 121 121 "RINEX Editing and QC Panel keys:\n" 122 122 " reqcAction <Action, Edit/Concatenate|Analyze>\n" 123 " reqcObsFile <Input observations file(s) >\n"124 " reqcNavFile <Input navigation file(s) >\n"123 " reqcObsFile <Input observations file(s) as comma separated list> \n" 124 " reqcNavFile <Input navigation file(s) as comma separated list>\n" 125 125 " reqcOutObsFile <Output observations file>\n" 126 126 " reqcOutNavFile <Output navigation file>\n" … … 197 197 "\n" 198 198 "PPP Client Panel 1 keys:\n" 199 " dataSource <Data source, Real-Time Streams| RINEX Files>\n"200 " rinexObs <RINEX observation file>\n"201 " rinexNav <RINEX navigation file>\n"202 " corrMount <Corrections mountpoint>\n"203 " corrFile <Corrections file>\n"204 " crdFile <Coordinates file>\n"205 " logFilePPP <PPP logfile>\n"206 " antexFile <ANTEX file>\n"207 " nmeaFile <NMEA output file>\n"208 " snxtroFile <SINEX troposphere output filename>\n"209 " snxtroSampl <SINEX troposphere sampling rate [sec]>\n"199 " PPP/dataSource <Data source, Real-Time Streams| RINEX Files>\n" 200 " PPP/rinexObs <RINEX observation file>\n" 201 " PPP/rinexNav <RINEX navigation file>\n" 202 " PPP/corrMount <Corrections mountpoint>\n" 203 " PPP/corrFile <Corrections file>\n" 204 " PPP/crdFile <Coordinates file>\n" 205 " PPP/logFilePPP <PPP logfile>\n" 206 " PPP/antexFile <ANTEX file>\n" 207 " PPP/nmeaFile <NMEA output file>\n" 208 " PPP/snxtroFile <SINEX troposphere output filename>\n" 209 " PPP/snxtroSampl <SINEX troposphere sampling rate [sec]>\n" 210 210 "\n" 211 211 "PPP Client Panel 2 keys:\n" 212 " staTable <Stations table>\n"212 " PPP/staTable <Stations table as semicolon separated list>\n" 213 213 "\n" 214 214 "PPP Client Panel 3 keys:\n" 215 " lcGPS <Select linear combination from GPS code or phase data>\n"216 " lcGLONASS <Select linear combination from GLONASS code or phase data>\n"217 " lcGalileo <Select linear combination from Galileo code or phase data>\n"218 " lcBDS <Select linear combination from BDS code or phase data>\n"219 " sigmaC1 <Sigma for code observations [m]>\n"220 " sigmaL1 <Sigma for phase observations [m]>\n"221 " maxResC1 <Maximal residuum for code observations [m]>\n"222 " maxResL1 <Maximal residuum for phase observations [m]>\n"223 " eleWgtCode <Elevation dependent waiting of code observations, 0=no, 2=yes>\n"224 " eleWgtPhase <Elevation dependent waiting of phase observations, 0=no, 2=yes>\n"225 " minObs <Minimum number of observations>\n"226 " minEle <Minimum elevation [deg]>\n"227 " corrWaitTime <Wait for clock corrections [sec]>\n"228 " seedingTime <Seeding time span for Quick Start [sec]>\n"215 " PPP/lcGPS <Select linear combination from GPS code or phase data>\n" 216 " PPP/lcGLONASS <Select linear combination from GLONASS code or phase data>\n" 217 " PPP/lcGalileo <Select linear combination from Galileo code or phase data>\n" 218 " PPP/lcBDS <Select linear combination from BDS code or phase data>\n" 219 " PPP/sigmaC1 <Sigma for code observations [m]>\n" 220 " PPP/sigmaL1 <Sigma for phase observations [m]>\n" 221 " PPP/maxResC1 <Maximal residuum for code observations [m]>\n" 222 " PPP/maxResL1 <Maximal residuum for phase observations [m]>\n" 223 " PPP/eleWgtCode <Elevation dependent waiting of code observations, 0=no, 2=yes>\n" 224 " PPP/eleWgtPhase <Elevation dependent waiting of phase observations, 0=no, 2=yes>\n" 225 " PPP/minObs <Minimum number of observations>\n" 226 " PPP/minEle <Minimum elevation [deg]>\n" 227 " PPP/corrWaitTime <Wait for clock corrections [sec]>\n" 228 " PPP/seedingTime <Seeding time span for Quick Start [sec]>\n" 229 229 "\n" 230 230 "PPP Client Panel 4 keys:\n" 231 " plotCoordinates <Mountpoint for time series plot>\n"232 " audioResponse <Audio response threshold [m]>\n"233 " useOpenStreetMap <OSM track map, true|false>\n"234 " useGoogleMap <Google track map, true|false>\n"235 " mapWinDotSize <Size of dots on map>\n"236 " mapWinDotColor <Color of dots and cross hair on map, red|yellow>\n"237 " mapSpeedSlider <Offline processing speed for mapping, 1-100>\n"231 " PPP/plotCoordinates <Mountpoint for time series plot>\n" 232 " PPP/audioResponse <Audio response threshold [m]>\n" 233 " PPP/useOpenStreetMap <OSM track map, true|false>\n" 234 " PPP/useGoogleMap <Google track map, true|false>\n" 235 " PPP/mapWinDotSize <Size of dots on map>\n" 236 " PPP/mapWinDotColor <Color of dots and cross hair on map, red|yellow>\n" 237 " PPP/mapSpeedSlider <Offline processing speed for mapping, 1-100>\n" 238 238 "\n" 239 239 "Combine Corrections Panel keys:\n" … … 276 276 "\n" 277 277 "Add Stream keys:\n" 278 " mountPoints <Mountpoint list>\n"278 " mountPoints <Mountpoints as semicolon separated list> \n" 279 279 " ntripVersion <Ntrip Version, 1|2|2s|R|U>\n" 280 280 " casterUrlList <Visited URLs>\n" … … 351 351 QString key(argv[ii+1]); 352 352 QString val(argv[ii+2]); 353 settings.setValue(key, val); 353 if (val.indexOf(";")) { 354 settings.setValue(key, val.split(";", QString::SkipEmptyParts)); 355 } 356 else { 357 settings.setValue(key, val); 358 } 354 359 } 355 360 }
Note:
See TracChangeset
for help on using the changeset viewer.