[280] | 1 | // Part of BNC, a utility for retrieving decoding and
|
---|
[464] | 2 | // converting GNSS data streams from NTRIP broadcasters.
|
---|
[280] | 3 | //
|
---|
[464] | 4 | // Copyright (C) 2007
|
---|
[280] | 5 | // German Federal Agency for Cartography and Geodesy (BKG)
|
---|
| 6 | // http://www.bkg.bund.de
|
---|
[464] | 7 | // Czech Technical University Prague, Department of Geodesy
|
---|
[280] | 8 | // http://www.fsv.cvut.cz
|
---|
| 9 | //
|
---|
| 10 | // Email: euref-ip@bkg.bund.de
|
---|
| 11 | //
|
---|
| 12 | // This program is free software; you can redistribute it and/or
|
---|
| 13 | // modify it under the terms of the GNU General Public License
|
---|
| 14 | // as published by the Free Software Foundation, version 2.
|
---|
| 15 | //
|
---|
| 16 | // This program is distributed in the hope that it will be useful,
|
---|
| 17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 19 | // GNU General Public License for more details.
|
---|
| 20 | //
|
---|
| 21 | // You should have received a copy of the GNU General Public License
|
---|
| 22 | // along with this program; if not, write to the Free Software
|
---|
| 23 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
[35] | 24 |
|
---|
| 25 | /* -------------------------------------------------------------------------
|
---|
[93] | 26 | * BKG NTRIP Client
|
---|
[35] | 27 | * -------------------------------------------------------------------------
|
---|
| 28 | *
|
---|
| 29 | * Class: main
|
---|
| 30 | *
|
---|
| 31 | * Purpose: Application starts here
|
---|
| 32 | *
|
---|
| 33 | * Author: L. Mervart
|
---|
| 34 | *
|
---|
| 35 | * Created: 24-Dec-2005
|
---|
| 36 | *
|
---|
[7268] | 37 | * Changes:
|
---|
[35] | 38 | *
|
---|
| 39 | * -----------------------------------------------------------------------*/
|
---|
| 40 |
|
---|
[274] | 41 | #include <unistd.h>
|
---|
[603] | 42 | #include <signal.h>
|
---|
[35] | 43 | #include <QApplication>
|
---|
| 44 | #include <QFile>
|
---|
| 45 | #include <iostream>
|
---|
| 46 |
|
---|
[5066] | 47 | #include "app.h"
|
---|
[5070] | 48 | #include "bnccore.h"
|
---|
[35] | 49 | #include "bncwindow.h"
|
---|
[1535] | 50 | #include "bncsettings.h"
|
---|
[2012] | 51 | #include "bncversion.h"
|
---|
[3251] | 52 | #include "upload/bncephuploadcaster.h"
|
---|
[5887] | 53 | #include "rinex/reqcedit.h"
|
---|
| 54 | #include "rinex/reqcanalyze.h"
|
---|
[6343] | 55 | #include "orbComp/sp3Comp.h"
|
---|
[35] | 56 |
|
---|
| 57 | using namespace std;
|
---|
| 58 |
|
---|
[603] | 59 | void catch_signal(int) {
|
---|
| 60 | cout << "Program Interrupted by Ctrl-C" << endl;
|
---|
[3005] | 61 | exit(0);
|
---|
[603] | 62 | }
|
---|
| 63 |
|
---|
[82] | 64 | // Main Program
|
---|
| 65 | /////////////////////////////////////////////////////////////////////////////
|
---|
[4490] | 66 | int main(int argc, char* argv[]) {
|
---|
[35] | 67 |
|
---|
[4446] | 68 | bool interactive = true;
|
---|
[4716] | 69 | #ifdef WIN32
|
---|
| 70 | bool displaySet = true;
|
---|
| 71 | #else
|
---|
[4490] | 72 | bool displaySet = false;
|
---|
[4716] | 73 | #endif
|
---|
[1552] | 74 | QByteArray rawFileName;
|
---|
[1501] | 75 | QString confFileName;
|
---|
[1146] | 76 |
|
---|
[7293] | 77 | QByteArray printHelp =
|
---|
[7273] | 78 | "Usage: bnc --nw \n"
|
---|
| 79 | " --version \n"
|
---|
[7504] | 80 | " --display <name> \n"
|
---|
[7273] | 81 | " --conf <confFileName> \n"
|
---|
| 82 | " --file <rawFileName> \n"
|
---|
| 83 | " --key <keyName> <keyValue>\n"
|
---|
| 84 | "\n"
|
---|
[7504] | 85 | "Appearance keys:\n"
|
---|
| 86 | " startTab <Index of top panel to be presented at start time [integer number: 0-17]>\n"
|
---|
| 87 | " statusTab <Index of bottom panel to be presented at start time [integer number: 0-3]>\n"
|
---|
| 88 | " font <Font specification [character string in quotation marks, example: \"Helvetica,14,-1,5,50,0,0,0,0,0\"]>\n"
|
---|
[7273] | 89 | "\n"
|
---|
| 90 | "Network Panel keys:\n"
|
---|
[7504] | 91 | " proxyHost <Proxy host, name or IP address [character string]>\n"
|
---|
| 92 | " proxyPort <Proxy port [integer number]>\n"
|
---|
| 93 | " sslCaCertPath <Full path to SSL certificates [character string]>\n"
|
---|
| 94 | " ignoreSslErrors <Ignore SSL authorization errors [integer number: 0=no, 2=yes]>\n"
|
---|
[7273] | 95 | "\n"
|
---|
| 96 | "General Panel keys:\n"
|
---|
[7504] | 97 | " logFile <Logfile, full path [character string]>\n"
|
---|
| 98 | " rnxAppend <Append files [integer number: 0=no, 2=yes]>\n"
|
---|
| 99 | " onTheFlyInterval <Configuration reload interval [character string: 1 day,1 hour,5 min,1 min]>\n"
|
---|
| 100 | " autoStart <Auto start [integer number: 0=no, 2=yes]>\n"
|
---|
| 101 | " rawOutFile <Raw output file, full path [character string]>\n"
|
---|
[7273] | 102 | "\n"
|
---|
| 103 | "RINEX Observations Panel keys:\n"
|
---|
[7504] | 104 | " rnxPath <Directory [character string]>\n"
|
---|
| 105 | " rnxIntr <File interval [character string: 1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day]>\n"
|
---|
| 106 | " rnxSampl <File sampling rate [integer number of seconds: 0,5|10|15|20|25|30|35|40|45|50|55|60]> \n"
|
---|
| 107 | " rnxSkel <RINEX skeleton file extension [character string]>\n"
|
---|
| 108 | " rnxOnlyWithSKL <Using RINEX skeleton file is mandatory [integer number: 0=no, 2=yes]>\n"
|
---|
| 109 | " rnxScript <File upload script, full path [character string]>\n"
|
---|
| 110 | " rnxV2Priority <Priority of signal attributes [character string, list separated by blank character, example: G:CWPX_? R:CP]>\n"
|
---|
| 111 | " rnxV3 <Produce version 3 file contents [integer number: 0=no, 2=yes]>\n"
|
---|
| 112 | " rnxV3filenames <Produce version 3 filenames [integer number: 0=no, 2=yes]>\n"
|
---|
[7273] | 113 | "\n"
|
---|
| 114 | "RINEX Ephemeris Panel keys:\n"
|
---|
[7504] | 115 | " ephPath <Directory [character string]>\n"
|
---|
| 116 | " ephIntr <File interval [character string: 1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day]>\n"
|
---|
| 117 | " ephOutPort <Output port [integer number]>\n"
|
---|
| 118 | " ephV3 <Produce version 3 file contents [integer number: 0=no, 2=yes]>\n"
|
---|
| 119 | " ephV3filenames <Produce version 3 filenames [integer number: 0=no, 2=yes]>\n"
|
---|
[7273] | 120 | "\n"
|
---|
| 121 | "RINEX Editing and QC Panel keys:\n"
|
---|
[7504] | 122 | " reqcAction <Action specification [character string: Blank|Edit/Concatenate|Analyze]>\n"
|
---|
| 123 | " reqcObsFile <Input observations file(s), full path [character string, comma separated list in quotation marks]>\n"
|
---|
| 124 | " reqcNavFile <Input navigation file(s), full path [character string, comma separated list in quotation marks]>\n"
|
---|
| 125 | " reqcOutObsFile <Output observations file, full path [character string]>\n"
|
---|
| 126 | " reqcOutNavFile <Output navigation file, full path [character string]>\n"
|
---|
| 127 | " reqcOutLogFile <Output logfile, full path [character string]>\n"
|
---|
| 128 | " reqcLogSummaryOnly <Output only summary of logfile [integer number: 0=no, 2=yes]>\n"
|
---|
| 129 | " reqcSkyPlotSignals <Observation signals [character string, list separated by blank character, example: C:2&7 E:1&5 G:1&2 J:1&2 R:1&2 S:1&5]>\n"
|
---|
| 130 | " reqcPlotDir <QC plots directory [character string]>\n"
|
---|
| 131 | " reqcRnxVersion <RINEX version [integer number: 2|3]>\n"
|
---|
| 132 | " reqcSampling <RINEX output file sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]>\n"
|
---|
| 133 | " reqcV2Priority <Version 2 priority of signal attributes [character string, list separated by blank character, example: G:CWPX_? R:CP]>\n"
|
---|
| 134 | " reqcStartDateTime <Start time [character string, example: 1967-11-02T00:00:00]>\n"
|
---|
| 135 | " reqcEndDateTime <Stop time [character string, example: 2099-01-01T00:00:00 >\n"
|
---|
| 136 | " reqcRunBy <Operators name [character string]>\n"
|
---|
| 137 | " reqcUseObsTypes <Use observation types [character string, list separated by blank character, example: G:C1C G:L1C R:C1C RC1P]>\n"
|
---|
| 138 | " reqcComment <Additional comments [character string]>\n"
|
---|
| 139 | " reqcOldMarkerName <Old marker name [character string]>\n"
|
---|
| 140 | " reqcNewMarkerName <New marker name [character string]>\n"
|
---|
| 141 | " reqcOldAntennaName <Old antenna name [character string]>\n"
|
---|
| 142 | " reqcNewAntennaName <New antenna name [character string]>\n"
|
---|
| 143 | " reqcOldAntennaNumber <Old antenna number [character string]>\n"
|
---|
| 144 | " reqcNewAntennaNumber <New antenna number [character string]>\n"
|
---|
| 145 | " reqcOldAntennadN <Old north eccentritity [character string]>\n"
|
---|
| 146 | " reqcNewAntennadN <New north eccentricity [character string]>\n"
|
---|
| 147 | " reqcOldAntennadE <Old east eccentricity [character string]>\n"
|
---|
| 148 | " reqcNewAntennadE <New east eccentricity [character string]>\n"
|
---|
| 149 | " reqcOldAntennadU <Old up eccentricity [character string]>\n"
|
---|
| 150 | " reqcNewAntennadU <New up eccentricity [character string]>\n"
|
---|
| 151 | " reqcOldReceiverName <Old receiver name [character string]>\n"
|
---|
| 152 | " reqcNewReceiverName <New receiver name [character string]>\n"
|
---|
| 153 | " reqcOldReceiverNumber <Old receiver number [character string]>\n"
|
---|
| 154 | " reqcNewReceiverNumber <New receiver number [character string]>\n"
|
---|
[7273] | 155 | "\n"
|
---|
| 156 | "SP3 Comparison Panel keys:\n"
|
---|
[7504] | 157 | " sp3CompFile <SP3 input files, full path [character string, comma separated list in quotation marks]>\n"
|
---|
| 158 | " sp3CompExclude <Satellite exclusion list [character string, comma separated list in quotation marks, example: \"G04,G31,R\"]>\n"
|
---|
| 159 | " sp3CompOutLogFile <Output logfile, full path [character string]>\n"
|
---|
[7273] | 160 | "\n"
|
---|
| 161 | "Broadcast Corrections Panel keys:\n"
|
---|
[7504] | 162 | " corrPath <Directory for saving files in ASCII format [character string]>\n"
|
---|
| 163 | " corrIntr <File interval [character string: 1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day]>\n"
|
---|
| 164 | " corrPort <Output port [integer number]>\n"
|
---|
[7273] | 165 | "\n"
|
---|
| 166 | "Feed Engine Panel keys:\n"
|
---|
[7504] | 167 | " outPort <Output port, synchronized [integer number]>\n"
|
---|
| 168 | " outWait <Wait for full observation epoch [integer number of seconds: 1-30]>\n"
|
---|
| 169 | " outSampl <Sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]>\n"
|
---|
| 170 | " outFile <Output file, full path [character string]>\n"
|
---|
| 171 | " outUPort <Output port, unsynchronized [integer number]>\n"
|
---|
[7273] | 172 | "\n"
|
---|
| 173 | "Serial Output Panel:\n"
|
---|
[7504] | 174 | " serialMountPoint <Mountpoint [character string]>\n"
|
---|
| 175 | " serialPortName <Port name [character string]>\n"
|
---|
| 176 | " serialBaudRate <Baud rate [integer number: 110|300|600|1200|2400|4800|9600|19200|38400|57600|115200]>\n"
|
---|
| 177 | " serialFlowControl <Flow control [character string: OFF|XONXOFF|HARDWARE>\n"
|
---|
| 178 | " serialDataBits <Data bits [integer number: 5|6|7|8]>\n"
|
---|
| 179 | " serialParity <Parity [character string: NONE|ODD|EVEN|SPACE]>\n"
|
---|
| 180 | " serialStopBits <Stop bits [integer number: 1|2]>\n"
|
---|
| 181 | " serialAutoNMEA <NMEA specification [character string: no|Auto|Manual GPGGA|Manual GNGGA]>\n"
|
---|
| 182 | " serialFileNMEA <NMEA filename, full path [character string]>\n"
|
---|
| 183 | " serialHeightNMEA <Height [floating-point number]>\n"
|
---|
| 184 | " serialHeightNMEASampling <Sampling rate [integer number of seconds: 0|10|20|30|...|280|290|300]>\n"
|
---|
[7273] | 185 | "\n"
|
---|
| 186 | "Outages Panel keys:\n"
|
---|
[7504] | 187 | " adviseObsRate <Stream observation rate [character string: 0.1 Hz|0.2 Hz|0.5 Hz|1 Hz|5 Hz]> \n"
|
---|
| 188 | " adviseFail <Failure threshold [integer number of minutes: 0-60]>\n"
|
---|
| 189 | " adviseReco <Recovery threshold [integer number of minutes: 0-60]>\n"
|
---|
| 190 | " adviseScript <Advisory script, full path [character string]>\n"
|
---|
[7273] | 191 | "\n"
|
---|
| 192 | "Miscellaneous Panel keys:\n"
|
---|
[7504] | 193 | " miscMount <Mountpoint [character string]>\n"
|
---|
| 194 | " miscIntr <Interval for logging latency [character string: 2 sec,10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day]>\n"
|
---|
| 195 | " miscScanRTCM <Scan for RTCM message numbers [integer number: 0=no, 2=yes]>\n"
|
---|
| 196 | " miscPort <Output port [integer number]>\n"
|
---|
[7273] | 197 | "\n"
|
---|
| 198 | "PPP Client Panel 1 keys:\n"
|
---|
[7293] | 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/antexFile <ANTEX file>\n"
|
---|
[7506] | 206 | " PPP/logPath <Directory for PPP log file>\n"
|
---|
[7503] | 207 | " PPP/nmeaPath <Directory for NMEA output file>\n"
|
---|
| 208 | " PPP/snxtroPath <Directory for SINEX troposphere output file>\n"
|
---|
[7506] | 209 | " PPP/v3filenames <Produce version 3 filenames, 0=no, 2=yes>\n"
|
---|
[7504] | 210 | " 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"
|
---|
| 211 | " PPP/snxtroSampl <SINEX troposphere file sampling rate [integer number of seconds: 0,30,60,90,120,150,180,210,240,270,300]>\n"
|
---|
[7273] | 212 | "\n"
|
---|
| 213 | "PPP Client Panel 2 keys:\n"
|
---|
[7477] | 214 | " PPP/staTable <Stations table, semicolon separated list>\n"
|
---|
[7273] | 215 | "\n"
|
---|
| 216 | "PPP Client Panel 3 keys:\n"
|
---|
[7293] | 217 | " PPP/lcGPS <Select linear combination from GPS code or phase data>\n"
|
---|
| 218 | " PPP/lcGLONASS <Select linear combination from GLONASS code or phase data>\n"
|
---|
| 219 | " PPP/lcGalileo <Select linear combination from Galileo code or phase data>\n"
|
---|
| 220 | " PPP/lcBDS <Select linear combination from BDS code or phase data>\n"
|
---|
| 221 | " PPP/sigmaC1 <Sigma for code observations [m]>\n"
|
---|
| 222 | " PPP/sigmaL1 <Sigma for phase observations [m]>\n"
|
---|
| 223 | " PPP/maxResC1 <Maximal residuum for code observations [m]>\n"
|
---|
| 224 | " PPP/maxResL1 <Maximal residuum for phase observations [m]>\n"
|
---|
| 225 | " PPP/eleWgtCode <Elevation dependent waiting of code observations, 0=no, 2=yes>\n"
|
---|
| 226 | " PPP/eleWgtPhase <Elevation dependent waiting of phase observations, 0=no, 2=yes>\n"
|
---|
| 227 | " PPP/minObs <Minimum number of observations>\n"
|
---|
| 228 | " PPP/minEle <Minimum elevation [deg]>\n"
|
---|
| 229 | " PPP/corrWaitTime <Wait for clock corrections [sec]>\n"
|
---|
| 230 | " PPP/seedingTime <Seeding time span for Quick Start [sec]>\n"
|
---|
[7273] | 231 | "\n"
|
---|
| 232 | "PPP Client Panel 4 keys:\n"
|
---|
[7293] | 233 | " PPP/plotCoordinates <Mountpoint for time series plot>\n"
|
---|
| 234 | " PPP/audioResponse <Audio response threshold [m]>\n"
|
---|
| 235 | " PPP/useOpenStreetMap <OSM track map, true|false>\n"
|
---|
| 236 | " PPP/useGoogleMap <Google track map, true|false>\n"
|
---|
| 237 | " PPP/mapWinDotSize <Size of dots on map>\n"
|
---|
| 238 | " PPP/mapWinDotColor <Color of dots and cross hair on map, red|yellow>\n"
|
---|
| 239 | " PPP/mapSpeedSlider <Offline processing speed for mapping, 1-100>\n"
|
---|
[7273] | 240 | "\n"
|
---|
| 241 | "Combine Corrections Panel keys:\n"
|
---|
[7477] | 242 | " cmbStreams <Correction streams, semicolon separated list>\n"
|
---|
[7283] | 243 | " cmbMethodFilter <Approach, Single-Epoch|Filter\n"
|
---|
| 244 | " cmbMaxres <Clock outlier threshold [m]\n"
|
---|
| 245 | " cmbSampl <Orbit and clock sampling [m]\n"
|
---|
| 246 | " cmbUseGlonass <Use GLONASS in combination, 0=no, 2=yes\n"
|
---|
[7273] | 247 | "\n"
|
---|
| 248 | "Upload Corrections Panel keys:\n"
|
---|
[7283] | 249 | " uploadMountpointsOut <Upload corrections table>\n"
|
---|
| 250 | " uploadIntr <File interval, length of SP3 and Clock RINEX files>\n"
|
---|
| 251 | " uploadSamplRtcmEphCorr <Orbit corrections sampling interval [sec]>\n"
|
---|
| 252 | " uploadSamplSp3 <SP3 file sampling [min]>\n"
|
---|
| 253 | " uploadSamplClkRnx <Clock RINEX file sampling [sec]>\n"
|
---|
[7273] | 254 | "\n"
|
---|
| 255 | "Custom Trafo keys:\n"
|
---|
[7283] | 256 | " trafo_dx <Translation X [m]>\n"
|
---|
| 257 | " trafo_dy <Translation Y [m]>\n"
|
---|
| 258 | " trafo_dz <Translation Z [m]>\n"
|
---|
| 259 | " trafo_dxr <Translation change X [m/y]>\n"
|
---|
| 260 | " trafo_dyr <Translation change Y [m/y]>\n"
|
---|
| 261 | " trafo_dzr <Translation change Z [m/y]>\n"
|
---|
| 262 | " trafo_ox <Rotation X [as]>\n"
|
---|
| 263 | " trafo_oy <Rotation Y [as]>\n"
|
---|
| 264 | " trafo_oz <Rotation Z [as]>\n"
|
---|
| 265 | " trafo_oxr <Rotation change X [as/y]>\n"
|
---|
| 266 | " trafo_oyr <Rotation change Y [as/y]>\n"
|
---|
| 267 | " trafo_ozr <Rotation change Z [as/y]>\n"
|
---|
| 268 | " trafo_sc <Scale [10^-9]>\n"
|
---|
| 269 | " trafo_scr <Scale change [10^-9/y]>\n"
|
---|
| 270 | " trafo_t0 <Reference year [y]>\n"
|
---|
[7273] | 271 | "\n"
|
---|
| 272 | "Upload Ephemeris Panel keys:\n"
|
---|
[7283] | 273 | " uploadEphHost <Host>\n"
|
---|
| 274 | " uploadEphPort <Port>\n"
|
---|
| 275 | " uploadEphMountpoint <Mountpoint>\n"
|
---|
| 276 | " uploadEphPassword <Password>\n"
|
---|
| 277 | " uploadEphSample <Sampling interval [sec]>\n"
|
---|
[7273] | 278 | "\n"
|
---|
| 279 | "Add Stream keys:\n"
|
---|
[7477] | 280 | " mountPoints <Mountpoints, semicolon separated list>\n"
|
---|
[7283] | 281 | " ntripVersion <Ntrip Version, 1|2|2s|R|U>\n"
|
---|
| 282 | " casterUrlList <Visited URLs>\n"
|
---|
| 283 | "\n"
|
---|
[7477] | 284 | "Note:\n"
|
---|
| 285 | "Configuration options which contain one or more blank characters"
|
---|
| 286 | " must be enclosed by quotation marks when specified on the command line.\n"
|
---|
| 287 | "\n"
|
---|
| 288 | "Examples command lines:\n"
|
---|
[7284] | 289 | "(1) /home/weber/bin/bnc\n"
|
---|
| 290 | "(2) /Applications/bnc.app/Contents/MacOS/bnc\n"
|
---|
[7286] | 291 | "(3) /home/weber/bin/bnc --conf /home/weber/MyConfigFile.bnc\n"
|
---|
| 292 | "(4) bnc --conf /Users/weber/.config/BKG/BNC.bnc -nw\n"
|
---|
[7284] | 293 | "(5) bnc --conf /dev/null --key startTab 4 --key reqcAction Edit/Concatenate"
|
---|
[7283] | 294 | " --key reqcObsFile AGAR.15O --key reqcOutObsFile AGAR_X.15O"
|
---|
[7477] | 295 | " --key reqcRnxVersion 2 --key reqcSampling 30 --key reqcV2Priority CWPX_?\n"
|
---|
| 296 | "(6) bnc --key mountPoints \"//user:pass@mgex.igs-ip.net:2101/CUT07 RTCM_3.0 ETH 9.03 38.74 no 2;"
|
---|
| 297 | "//user:pass@www.igs-ip.net:2101/FFMJ1 RTCM_3.1 DEU 50.09 8.66 no 2\"\n"
|
---|
| 298 | "(7) bnc --key cmbStreams \"CLK11 BLG 1.0;CLK93 CNES 1.0\"\n"
|
---|
| 299 | "(8) bnc --key PPP/staTable \"FFMJ1,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7777;"
|
---|
| 300 | "CUT07,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7778\"\n";
|
---|
[3977] | 301 |
|
---|
[100] | 302 | for (int ii = 1; ii < argc; ii++) {
|
---|
[3977] | 303 | if (QRegExp("--?help").exactMatch(argv[ii])) {
|
---|
| 304 | cout << printHelp.data();
|
---|
| 305 | exit(0);
|
---|
| 306 | }
|
---|
| 307 | if (QRegExp("--?nw").exactMatch(argv[ii])) {
|
---|
[4446] | 308 | interactive = false;
|
---|
[100] | 309 | }
|
---|
[7268] | 310 | if (QRegExp("--?version").exactMatch(argv[ii])) {
|
---|
| 311 | cout << BNCPGMNAME << endl;
|
---|
| 312 | exit(0);
|
---|
| 313 | }
|
---|
[4490] | 314 | if (QRegExp("--?display").exactMatch(argv[ii])) {
|
---|
| 315 | displaySet = true;
|
---|
[4492] | 316 | strcpy(argv[ii], "-display"); // make it "-display" not "--display"
|
---|
[4490] | 317 | }
|
---|
[1552] | 318 | if (ii + 1 < argc) {
|
---|
[3977] | 319 | if (QRegExp("--?conf").exactMatch(argv[ii])) {
|
---|
[1552] | 320 | confFileName = QString(argv[ii+1]);
|
---|
[1146] | 321 | }
|
---|
[3977] | 322 | if (QRegExp("--?file").exactMatch(argv[ii])) {
|
---|
[4446] | 323 | interactive = false;
|
---|
[1553] | 324 | rawFileName = QByteArray(argv[ii+1]);
|
---|
[1552] | 325 | }
|
---|
[1156] | 326 | }
|
---|
[1146] | 327 | }
|
---|
| 328 |
|
---|
[4162] | 329 | #ifdef Q_OS_MAC
|
---|
[4446] | 330 | if (argc== 3 && interactive) {
|
---|
[4162] | 331 | confFileName = QString(argv[2]);
|
---|
| 332 | }
|
---|
| 333 | #else
|
---|
[4446] | 334 | if (argc == 2 && interactive) {
|
---|
[1585] | 335 | confFileName = QString(argv[1]);
|
---|
| 336 | }
|
---|
[4162] | 337 | #endif
|
---|
[1585] | 338 |
|
---|
[6548] | 339 | #ifdef Q_OS_MACX
|
---|
| 340 | if ( QSysInfo::MacintoshVersion > QSysInfo::MV_10_8 )
|
---|
| 341 | {
|
---|
| 342 | // fix Mac OS X 10.9 (mavericks) font issue
|
---|
| 343 | // https://bugreports.qt-project.org/browse/QTBUG-32789
|
---|
| 344 | QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande");
|
---|
| 345 | }
|
---|
| 346 | #endif
|
---|
| 347 |
|
---|
[4491] | 348 | bool GUIenabled = interactive || displaySet;
|
---|
[5066] | 349 | t_app app(argc, argv, GUIenabled);
|
---|
[1516] | 350 |
|
---|
[1538] | 351 | app.setApplicationName("BNC");
|
---|
| 352 | app.setOrganizationName("BKG");
|
---|
| 353 | app.setOrganizationDomain("www.bkg.bund.de");
|
---|
[5084] | 354 |
|
---|
| 355 | BNC_CORE->setGUIenabled(GUIenabled);
|
---|
[5068] | 356 | BNC_CORE->setConfFileName( confFileName );
|
---|
[1538] | 357 |
|
---|
[1535] | 358 | bncSettings settings;
|
---|
[1503] | 359 |
|
---|
[3976] | 360 | for (int ii = 1; ii < argc - 2; ii++) {
|
---|
[3978] | 361 | if (QRegExp("--?key").exactMatch(argv[ii])) {
|
---|
[3976] | 362 | QString key(argv[ii+1]);
|
---|
| 363 | QString val(argv[ii+2]);
|
---|
[7476] | 364 | if (val.indexOf(";") != -1) {
|
---|
[7293] | 365 | settings.setValue(key, val.split(";", QString::SkipEmptyParts));
|
---|
| 366 | }
|
---|
| 367 | else {
|
---|
| 368 | settings.setValue(key, val);
|
---|
| 369 | }
|
---|
[3976] | 370 | }
|
---|
| 371 | }
|
---|
| 372 |
|
---|
[180] | 373 | // Interactive Mode - open the main window
|
---|
| 374 | // ---------------------------------------
|
---|
[4446] | 375 | if (interactive) {
|
---|
[113] | 376 |
|
---|
[5072] | 377 | BNC_CORE->setMode(t_bncCore::interactive);
|
---|
[3280] | 378 |
|
---|
[113] | 379 | QString fontString = settings.value("font").toString();
|
---|
| 380 | if ( !fontString.isEmpty() ) {
|
---|
| 381 | QFont newFont;
|
---|
| 382 | if (newFont.fromString(fontString)) {
|
---|
| 383 | QApplication::setFont(newFont);
|
---|
| 384 | }
|
---|
| 385 | }
|
---|
[7268] | 386 |
|
---|
[173] | 387 | app.setWindowIcon(QPixmap(":ntrip-logo.png"));
|
---|
[113] | 388 |
|
---|
[82] | 389 | bncWindow* bncWin = new bncWindow();
|
---|
[5068] | 390 | BNC_CORE->setMainWindow(bncWin);
|
---|
[35] | 391 | bncWin->show();
|
---|
| 392 | }
|
---|
[180] | 393 |
|
---|
[7268] | 394 | // Post-Processing PPP
|
---|
[6343] | 395 | // -------------------
|
---|
| 396 | else if (settings.value("PPP/dataSource").toString() == "RINEX Files") {
|
---|
| 397 | bncCaster* caster = new bncCaster();
|
---|
| 398 | BNC_CORE->setCaster(caster);
|
---|
| 399 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
| 400 | BNC_CORE->startPPP();
|
---|
| 401 | }
|
---|
| 402 |
|
---|
[3974] | 403 | // Post-Processing reqc edit
|
---|
| 404 | // -------------------------
|
---|
[5864] | 405 | else if (settings.value("reqcAction").toString() == "Edit/Concatenate") {
|
---|
[5072] | 406 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[3974] | 407 | t_reqcEdit* reqcEdit = new t_reqcEdit(0);
|
---|
| 408 | reqcEdit->start();
|
---|
| 409 | }
|
---|
| 410 |
|
---|
[3975] | 411 | // Post-Processing reqc analyze
|
---|
| 412 | // ----------------------------
|
---|
| 413 | else if (settings.value("reqcAction").toString() == "Analyze") {
|
---|
[5072] | 414 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[3975] | 415 | t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0);
|
---|
| 416 | reqcAnalyze->start();
|
---|
| 417 | }
|
---|
| 418 |
|
---|
[6343] | 419 | // SP3 Files Comparison
|
---|
| 420 | // --------------------
|
---|
| 421 | else if (!settings.value("sp3CompFile").toString().isEmpty()) {
|
---|
[5926] | 422 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[6343] | 423 | t_sp3Comp* sp3Comp = new t_sp3Comp(0);
|
---|
| 424 | sp3Comp->start();
|
---|
[5926] | 425 | }
|
---|
| 426 |
|
---|
[3974] | 427 | // Non-Interactive (data gathering)
|
---|
| 428 | // --------------------------------
|
---|
[35] | 429 | else {
|
---|
[621] | 430 |
|
---|
[1138] | 431 | signal(SIGINT, catch_signal);
|
---|
| 432 |
|
---|
[3251] | 433 | bncEphUploadCaster* casterEph = new bncEphUploadCaster(); (void) casterEph;
|
---|
[7268] | 434 |
|
---|
[5729] | 435 | bncCaster* caster = new bncCaster();
|
---|
[7268] | 436 |
|
---|
[5068] | 437 | BNC_CORE->setCaster(caster);
|
---|
[7327] | 438 | BNC_CORE->setPortEph(settings.value("ephOutPort").toInt());
|
---|
[5068] | 439 | BNC_CORE->setPortCorr(settings.value("corrPort").toInt());
|
---|
| 440 | BNC_CORE->initCombination();
|
---|
[7268] | 441 |
|
---|
[5729] | 442 | BNC_CORE->connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit()));
|
---|
[7268] | 443 |
|
---|
[6569] | 444 | BNC_CORE->slotMessage("========== Start BNC v" BNCVERSION " ("BNC_OS") ==========", true);
|
---|
[5845] | 445 |
|
---|
[1170] | 446 | // Normal case - data from Internet
|
---|
| 447 | // --------------------------------
|
---|
[3974] | 448 | if ( rawFileName.isEmpty() ) {
|
---|
[5072] | 449 | BNC_CORE->setMode(t_bncCore::nonInteractive);
|
---|
[5946] | 450 | BNC_CORE->startPPP();
|
---|
[5905] | 451 |
|
---|
[4250] | 452 | caster->readMountPoints();
|
---|
[1170] | 453 | if (caster->numStations() == 0) {
|
---|
[1552] | 454 | exit(0);
|
---|
[1170] | 455 | }
|
---|
| 456 | }
|
---|
[7268] | 457 |
|
---|
[1170] | 458 | // Special case - data from file
|
---|
| 459 | // -----------------------------
|
---|
| 460 | else {
|
---|
[5072] | 461 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[5946] | 462 | BNC_CORE->startPPP();
|
---|
[5905] | 463 |
|
---|
| 464 | bncRawFile* rawFile = new bncRawFile(rawFileName, "", bncRawFile::input);
|
---|
[2519] | 465 | bncGetThread* getThread = new bncGetThread(rawFile);
|
---|
[2528] | 466 | caster->addGetThread(getThread, true);
|
---|
[35] | 467 | }
|
---|
| 468 | }
|
---|
[180] | 469 |
|
---|
| 470 | // Start the application
|
---|
| 471 | // ---------------------
|
---|
[35] | 472 | return app.exec();
|
---|
| 473 | }
|
---|