[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 =
|
---|
[7510] | 78 | "Usage:\n"
|
---|
| 79 | " bnc --help\n"
|
---|
| 80 | " --nw\n"
|
---|
| 81 | " --version\n"
|
---|
| 82 | " --display {name}\n"
|
---|
| 83 | " --conf {confFileName}\n"
|
---|
| 84 | " --file {rawFileName}\n"
|
---|
| 85 | " --key {keyName} {keyValue}\n"
|
---|
[7273] | 86 | "\n"
|
---|
| 87 | "Network Panel keys:\n"
|
---|
[7510] | 88 | " proxyHost {Proxy host, name or IP address [character string]}\n"
|
---|
| 89 | " proxyPort {Proxy port [integer number]}\n"
|
---|
| 90 | " sslCaCertPath {Full path to SSL certificates [character string]}\n"
|
---|
[7513] | 91 | " sslIgnoreErrors {Ignore SSL authorization errors [integer number: 0=no,2=yes]}\n"
|
---|
[7273] | 92 | "\n"
|
---|
| 93 | "General Panel keys:\n"
|
---|
[7512] | 94 | " logFile {Logfile, full path [character string]}\n"
|
---|
| 95 | " rnxAppend {Append files [integer number: 0=no,2=yes]}\n"
|
---|
| 96 | " onTheFlyInterval {Configuration reload interval [character string: 1 day|1 hour|5 min|1 min]}\n"
|
---|
| 97 | " autoStart {Auto start [integer number: 0=no,2=yes]}\n"
|
---|
| 98 | " rawOutFile {Raw output file, full path [character string]}\n"
|
---|
[7273] | 99 | "\n"
|
---|
| 100 | "RINEX Observations Panel keys:\n"
|
---|
[7510] | 101 | " rnxPath {Directory [character string]}\n"
|
---|
| 102 | " rnxIntr {File interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
|
---|
| 103 | " rnxSampl {File sampling rate [integer number of seconds: 0,5|10|15|20|25|30|35|40|45|50|55|60]} \n"
|
---|
| 104 | " rnxSkel {RINEX skeleton file extension [character string]}\n"
|
---|
| 105 | " rnxOnlyWithSKL {Using RINEX skeleton file is mandatory [integer number: 0=no,2=yes]}\n"
|
---|
| 106 | " rnxScript {File upload script, full path [character string]}\n"
|
---|
| 107 | " rnxV2Priority {Priority of signal attributes [character string, list separated by blank character, example: G:CWPX_? R:CP]}\n"
|
---|
| 108 | " rnxV3 {Produce version 3 file contents [integer number: 0=no,2=yes]}\n"
|
---|
| 109 | " rnxV3filenames {Produce version 3 filenames [integer number: 0=no,2=yes]}\n"
|
---|
[7273] | 110 | "\n"
|
---|
| 111 | "RINEX Ephemeris Panel keys:\n"
|
---|
[7510] | 112 | " ephPath {Directory [character string]}\n"
|
---|
| 113 | " ephIntr {File interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
|
---|
| 114 | " ephOutPort {Output port [integer number]}\n"
|
---|
| 115 | " ephV3 {Produce version 3 file contents [integer number: 0=no,2=yes]}\n"
|
---|
| 116 | " ephV3filenames {Produce version 3 filenames [integer number: 0=no,2=yes]}\n"
|
---|
[7273] | 117 | "\n"
|
---|
| 118 | "RINEX Editing and QC Panel keys:\n"
|
---|
[7510] | 119 | " reqcAction {Action specification [character string: Blank|Edit/Concatenate|Analyze]}\n"
|
---|
| 120 | " reqcObsFile {Input observations file(s), full path [character string, comma separated list in quotation marks]}\n"
|
---|
| 121 | " reqcNavFile {Input navigation file(s), full path [character string, comma separated list in quotation marks]}\n"
|
---|
| 122 | " reqcOutObsFile {Output observations file, full path [character string]}\n"
|
---|
| 123 | " reqcOutNavFile {Output navigation file, full path [character string]}\n"
|
---|
| 124 | " reqcOutLogFile {Output logfile, full path [character string]}\n"
|
---|
| 125 | " reqcLogSummaryOnly {Output only summary of logfile [integer number: 0=no,2=yes]}\n"
|
---|
| 126 | " 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"
|
---|
| 127 | " reqcPlotDir {QC plots directory [character string]}\n"
|
---|
| 128 | " reqcRnxVersion {RINEX version [integer number: 2|3]}\n"
|
---|
| 129 | " reqcSampling {RINEX output file sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]}\n"
|
---|
| 130 | " reqcV2Priority {Version 2 priority of signal attributes [character string, list separated by blank character, example: G:CWPX_? R:CP]}\n"
|
---|
| 131 | " reqcStartDateTime {Start time [character string, example: 1967-11-02T00:00:00]}\n"
|
---|
| 132 | " reqcEndDateTime {Stop time [character string, example: 2099-01-01T00:00:00 }\n"
|
---|
| 133 | " reqcRunBy {Operators name [character string]}\n"
|
---|
| 134 | " reqcUseObsTypes {Use observation types [character string, list separated by blank character, example: G:C1C G:L1C R:C1C RC1P]}\n"
|
---|
| 135 | " reqcComment {Additional comments [character string]}\n"
|
---|
| 136 | " reqcOldMarkerName {Old marker name [character string]}\n"
|
---|
| 137 | " reqcNewMarkerName {New marker name [character string]}\n"
|
---|
| 138 | " reqcOldAntennaName {Old antenna name [character string]}\n"
|
---|
| 139 | " reqcNewAntennaName {New antenna name [character string]}\n"
|
---|
| 140 | " reqcOldAntennaNumber {Old antenna number [character string]}\n"
|
---|
| 141 | " reqcNewAntennaNumber {New antenna number [character string]}\n"
|
---|
| 142 | " reqcOldAntennadN {Old north eccentritity [character string]}\n"
|
---|
| 143 | " reqcNewAntennadN {New north eccentricity [character string]}\n"
|
---|
| 144 | " reqcOldAntennadE {Old east eccentricity [character string]}\n"
|
---|
| 145 | " reqcNewAntennadE {New east eccentricity [character string]}\n"
|
---|
| 146 | " reqcOldAntennadU {Old up eccentricity [character string]}\n"
|
---|
| 147 | " reqcNewAntennadU {New up eccentricity [character string]}\n"
|
---|
| 148 | " reqcOldReceiverName {Old receiver name [character string]}\n"
|
---|
| 149 | " reqcNewReceiverName {New receiver name [character string]}\n"
|
---|
| 150 | " reqcOldReceiverNumber {Old receiver number [character string]}\n"
|
---|
| 151 | " reqcNewReceiverNumber {New receiver number [character string]}\n"
|
---|
[7273] | 152 | "\n"
|
---|
| 153 | "SP3 Comparison Panel keys:\n"
|
---|
[7510] | 154 | " sp3CompFile {SP3 input files, full path [character string, comma separated list in quotation marks]}\n"
|
---|
| 155 | " sp3CompExclude {Satellite exclusion list [character string, comma separated list in quotation marks, example: \"G04,G31,R\"]}\n"
|
---|
| 156 | " sp3CompOutLogFile {Output logfile, full path [character string]}\n"
|
---|
[7273] | 157 | "\n"
|
---|
| 158 | "Broadcast Corrections Panel keys:\n"
|
---|
[7510] | 159 | " corrPath {Directory for saving files in ASCII format [character string]}\n"
|
---|
| 160 | " corrIntr {File interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
|
---|
| 161 | " corrPort {Output port [integer number]}\n"
|
---|
[7273] | 162 | "\n"
|
---|
| 163 | "Feed Engine Panel keys:\n"
|
---|
[7510] | 164 | " outPort {Output port, synchronized [integer number]}\n"
|
---|
| 165 | " outWait {Wait for full observation epoch [integer number of seconds: 1-30]}\n"
|
---|
| 166 | " outSampl {Sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]}\n"
|
---|
| 167 | " outFile {Output file, full path [character string]}\n"
|
---|
| 168 | " outUPort {Output port, unsynchronized [integer number]}\n"
|
---|
[7273] | 169 | "\n"
|
---|
| 170 | "Serial Output Panel:\n"
|
---|
[7510] | 171 | " serialMountPoint {Mountpoint [character string]}\n"
|
---|
| 172 | " serialPortName {Port name [character string]}\n"
|
---|
| 173 | " serialBaudRate {Baud rate [integer number: 110|300|600|1200|2400|4800|9600|19200|38400|57600|115200]}\n"
|
---|
| 174 | " serialFlowControl {Flow control [character string: OFF|XONXOFF|HARDWARE}\n"
|
---|
| 175 | " serialDataBits {Data bits [integer number: 5|6|7|8]}\n"
|
---|
| 176 | " serialParity {Parity [character string: NONE|ODD|EVEN|SPACE]}\n"
|
---|
| 177 | " serialStopBits {Stop bits [integer number: 1|2]}\n"
|
---|
| 178 | " serialAutoNMEA {NMEA specification [character string: no|Auto|Manual GPGGA|Manual GNGGA]}\n"
|
---|
| 179 | " serialFileNMEA {NMEA filename, full path [character string]}\n"
|
---|
| 180 | " serialHeightNMEA {Height [floating-point number]}\n"
|
---|
| 181 | " serialHeightNMEASampling {Sampling rate [integer number of seconds: 0|10|20|30|...|280|290|300]}\n"
|
---|
[7273] | 182 | "\n"
|
---|
| 183 | "Outages Panel keys:\n"
|
---|
[7510] | 184 | " adviseObsRate {Stream observation rate [character string: 0.1 Hz|0.2 Hz|0.5 Hz|1 Hz|5 Hz]} \n"
|
---|
| 185 | " adviseFail {Failure threshold [integer number of minutes: 0-60]}\n"
|
---|
| 186 | " adviseReco {Recovery threshold [integer number of minutes: 0-60]}\n"
|
---|
| 187 | " adviseScript {Advisory script, full path [character string]}\n"
|
---|
[7273] | 188 | "\n"
|
---|
| 189 | "Miscellaneous Panel keys:\n"
|
---|
[7510] | 190 | " miscMount {Mountpoint [character string]}\n"
|
---|
| 191 | " miscIntr {Interval for logging latency [character string: Blank|2 sec|10 sec|1 min|5 min|15 min|1 hour|6 hours|1 day]}\n"
|
---|
| 192 | " miscScanRTCM {Scan for RTCM message numbers [integer number: 0=no,2=yes]}\n"
|
---|
| 193 | " miscPort {Output port [integer number]}\n"
|
---|
[7273] | 194 | "\n"
|
---|
| 195 | "PPP Client Panel 1 keys:\n"
|
---|
[7510] | 196 | " PPP/dataSource {Data source [character string: Blank|Real-Time Streams|RINEX Files]}\n"
|
---|
| 197 | " PPP/rinexObs {RINEX observation file, full path [character string]}\n"
|
---|
| 198 | " PPP/rinexNav {RINEX navigation file, full path [character string]}\n"
|
---|
| 199 | " PPP/corrMount {Corrections mountpoint [character string]}\n"
|
---|
| 200 | " PPP/corrFile {Corrections file, full path [character string]}\n"
|
---|
| 201 | " PPP/crdFile {Coordinates file, full path [character string]}\n"
|
---|
| 202 | " PPP/logPath {Directory for PPP log files [character string]}\n"
|
---|
| 203 | " PPP/antexFile {ANTEX file, full path [character string]}\n"
|
---|
| 204 | " PPP/nmeaPath {Directory for NMEA output files [character string]}\n"
|
---|
| 205 | " PPP/snxtroPath {Directory for SINEX troposphere output files [character string]}\n"
|
---|
| 206 | " PPP/v3filenames {Produce version 3 filenames, 0=no,2=yes}\n"
|
---|
| 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"
|
---|
[7273] | 209 | "\n"
|
---|
| 210 | "PPP Client Panel 2 keys:\n"
|
---|
[7510] | 211 | " PPP/staTable {Station specifications table [character string, semicolon separated list, each element in quotaion marks, example:\n"
|
---|
| 212 | " \"FFMJ1,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7777\";\"CUT07,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7778\"]}\n"
|
---|
[7273] | 213 | "\n"
|
---|
| 214 | "PPP Client Panel 3 keys:\n"
|
---|
[7510] | 215 | " PPP/lcGPS {Select linear combination from GPS code or phase data [character string; P3|P3&L3]}\n"
|
---|
| 216 | " PPP/lcGLONASS {Select linear combination from GLONASS code or phase data [character string: no|P3|L3|P3&L3]}\n"
|
---|
| 217 | " PPP/lcGalileo {Select linear combination from Galileo code or phase data [character string: no|P3|L3|P3&L3]}\n"
|
---|
| 218 | " PPP/lcBDS {Select linear combination from BDS code or phase data [character string: no|P3|L3|P3&L3]}\n"
|
---|
| 219 | " PPP/sigmaC1 {Sigma for code observations in meters [floating-point number]}\n"
|
---|
| 220 | " PPP/sigmaL1 {Sigma for phase observations in meters [floating-point number]}\n"
|
---|
| 221 | " PPP/maxResC1 {Maximal residuum for code observations in meters [floating-point number]}\n"
|
---|
| 222 | " PPP/maxResL1 {Maximal residuum for phase observations in meters [floating-point number]}\n"
|
---|
| 223 | " PPP/eleWgtCode {Elevation dependent waiting of code observations [integer number: 0=no,2=yes]}\n"
|
---|
| 224 | " PPP/eleWgtPhase {Elevation dependent waiting of phase observations [integer number: 0=no,2=yes]}\n"
|
---|
| 225 | " PPP/minObs {Minimum number of observations [integer number: 4|5|6]}\n"
|
---|
| 226 | " PPP/minEle {Minimum satellite elevation in degrees [integer number: 0-20]}\n"
|
---|
| 227 | " PPP/corrWaitTime {Wait for clock corrections [integer number of seconds: no|1-20]}\n"
|
---|
| 228 | " PPP/seedingTime {Seeding time span for Quick Start [integer number of seconds]}\n"
|
---|
[7273] | 229 | "\n"
|
---|
| 230 | "PPP Client Panel 4 keys:\n"
|
---|
[7510] | 231 | " PPP/plotCoordinates {Mountpoint for time series plot [character string]}\n"
|
---|
| 232 | " PPP/audioResponse {Audio response threshold in meters [floating-point number]}\n"
|
---|
| 233 | " PPP/useOpenStreetMap {OSM track map [character string: true|false]}\n"
|
---|
| 234 | " PPP/useGoogleMap {Google track map [character string: true|false]}\n"
|
---|
| 235 | " PPP/mapWinDotSize {Size of dots on map [integer number: 0-10]}\n"
|
---|
| 236 | " PPP/mapWinDotColor {Color of dots and cross hair on map [character string: red|yellow]}\n"
|
---|
| 237 | " PPP/mapSpeedSlider {Offline processing speed for mapping [integer number: 1-100]}\n"
|
---|
[7273] | 238 | "\n"
|
---|
| 239 | "Combine Corrections Panel keys:\n"
|
---|
[7510] | 240 | " cmbStreams {Correction streams table [character string, semicolon separated list, each element in quotation marks, example:\n"
|
---|
| 241 | " \"IGS01 ESA 1.0\";\"IGS03 BKG 1.0\"]}\n"
|
---|
| 242 | " cmbMethodFilter {Combination approach [character string: Single-Epoch|Filter]\n"
|
---|
| 243 | " cmbMaxres {Clock outlier residuum threshold in meters [floating-point number]\n"
|
---|
| 244 | " cmbSampl {Clock sampling rate [integer number of seconds: 10|20|30|40|50|60]}\n"
|
---|
| 245 | " cmbUseGlonass {Use GLONASS in combination [integer number: 0=no,2=yes]\n"
|
---|
[7273] | 246 | "\n"
|
---|
| 247 | "Upload Corrections Panel keys:\n"
|
---|
[7510] | 248 | " uploadMountpointsOut {Upload corrections table [character string, semicolon separated list, each element in quotation marks, example:\n"
|
---|
| 249 | " \"www.igs-ip.net,2101,IGS01,pass,IGS08,0,/home/user/BNC$[GPSWD}.sp3,/home/user/BNC$[GPSWD}.clk,258,1,0,0 byte(s)\";\n"
|
---|
| 250 | " \"www.euref-ip.net,2101,EUREF01,pass,ETRF2000,0,,,258,2,0,0 byte(s)\"]}\n"
|
---|
| 251 | " uploadIntr {Length of SP3 and Clock RINEX file interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
|
---|
| 252 | " uploadSamplRtcmEphCorr {Orbit corrections stream sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]}\n"
|
---|
| 253 | " uploadSamplSp3 {SP3 file sampling rate [integer number of minutes: 0-15]}\n"
|
---|
| 254 | " uploadSamplClkRnx {Clock RINEX file sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]}\n"
|
---|
[7273] | 255 | "\n"
|
---|
| 256 | "Custom Trafo keys:\n"
|
---|
[7510] | 257 | " trafo_dx {Translation X in meters [floating-point number]\n"
|
---|
| 258 | " trafo_dy {Translation Y in meters [floating-point number]\n"
|
---|
| 259 | " trafo_dz {Translation Z in meters [floating-point number]\n"
|
---|
| 260 | " trafo_dxr {Translation change X in meters per year [floating-point number]\n"
|
---|
| 261 | " trafo_dyr {Translation change Y in meters per year [floating-point number]\n"
|
---|
| 262 | " trafo_dzr {Translation change Z in meters per year [floating-point number]\n"
|
---|
| 263 | " trafo_ox {Rotation X in arcsec [floating-point number]}\n"
|
---|
| 264 | " trafo_oy {Rotation Y in arcsec [floating-point number]}\n"
|
---|
| 265 | " trafo_oz {Rotation Z in arcsec [floating-point number]}\n"
|
---|
| 266 | " trafo_oxr {Rotation change X in arcsec per year [floating-point number]}\n"
|
---|
| 267 | " trafo_oyr {Rotation change Y in arcsec per year [floating-point number]}\n"
|
---|
| 268 | " trafo_ozr {Rotation change Z in arcsec per year [floating-point number]}\n"
|
---|
| 269 | " trafo_sc {Scale [10^-9, floating-point number]}\n"
|
---|
| 270 | " trafo_scr {Scale change [10^-9 per year, floating-point number]}\n"
|
---|
| 271 | " trafo_t0 {Reference year [integer number]}\n"
|
---|
[7273] | 272 | "\n"
|
---|
| 273 | "Upload Ephemeris Panel keys:\n"
|
---|
[7510] | 274 | " uploadEphHost {Broadcaster host, name or IP address [character string]}\n"
|
---|
| 275 | " uploadEphPort {Broadcaster port [integer number]}\n"
|
---|
| 276 | " uploadEphMountpoint {Mountpoint [character string]}\n"
|
---|
| 277 | " uploadEphPassword {Stream upload password [character string]}\n"
|
---|
| 278 | " uploadEphSample {Stream upload sampling rate [integer number of seconds: 5|10|15|20|25|30|35|40|45|50|55|60]}\n"
|
---|
[7273] | 279 | "\n"
|
---|
| 280 | "Add Stream keys:\n"
|
---|
[7510] | 281 | " mountPoints {Mountpoints [character string, semicolon separated list, example:\n"
|
---|
| 282 | " //user:pass@www.igs-ip.net:2101/FFMJ1 RTCM_3.1 DEU 50.09 8.66 no 2;\n"
|
---|
| 283 | " //user:pass@www.igs-ip.net:2101/FFMJ2 RTCM_3.1 DEU 50.09 8.66 no 2}\n"
|
---|
| 284 | " ntripVersion {Ntrip Version [character string: 1|2|2s|R|U]}\n"
|
---|
| 285 | " casterUrlList {Visited Broadcasters [character string, comma separated list]}\n"
|
---|
[7283] | 286 | "\n"
|
---|
[7541] | 287 | "Appearance keys:\n"
|
---|
| 288 | " startTab {Index of top panel to be presented at start time [integer number: 0-17]}\n"
|
---|
| 289 | " statusTab {Index of bottom panel to be presented at start time [integer number: 0-3]}\n"
|
---|
| 290 | " font {Font specification [character string in quotation marks, example: \"Helvetica,14,-1,5,50,0,0,0,0,0\"]}\n"
|
---|
| 291 | "\n"
|
---|
[7477] | 292 | "Note:\n"
|
---|
| 293 | "Configuration options which contain one or more blank characters"
|
---|
[7507] | 294 | " must be enclosed by quotation marks when specified on command line.\n"
|
---|
[7477] | 295 | "\n"
|
---|
| 296 | "Examples command lines:\n"
|
---|
[7284] | 297 | "(1) /home/weber/bin/bnc\n"
|
---|
| 298 | "(2) /Applications/bnc.app/Contents/MacOS/bnc\n"
|
---|
[7286] | 299 | "(3) /home/weber/bin/bnc --conf /home/weber/MyConfigFile.bnc\n"
|
---|
| 300 | "(4) bnc --conf /Users/weber/.config/BKG/BNC.bnc -nw\n"
|
---|
[7284] | 301 | "(5) bnc --conf /dev/null --key startTab 4 --key reqcAction Edit/Concatenate"
|
---|
[7283] | 302 | " --key reqcObsFile AGAR.15O --key reqcOutObsFile AGAR_X.15O"
|
---|
[7477] | 303 | " --key reqcRnxVersion 2 --key reqcSampling 30 --key reqcV2Priority CWPX_?\n"
|
---|
| 304 | "(6) bnc --key mountPoints \"//user:pass@mgex.igs-ip.net:2101/CUT07 RTCM_3.0 ETH 9.03 38.74 no 2;"
|
---|
| 305 | "//user:pass@www.igs-ip.net:2101/FFMJ1 RTCM_3.1 DEU 50.09 8.66 no 2\"\n"
|
---|
| 306 | "(7) bnc --key cmbStreams \"CLK11 BLG 1.0;CLK93 CNES 1.0\"\n"
|
---|
| 307 | "(8) bnc --key PPP/staTable \"FFMJ1,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7777;"
|
---|
| 308 | "CUT07,100.0,100.0,100.0,100.0,100.0,100.0,0.1,3e-6,7778\"\n";
|
---|
[3977] | 309 |
|
---|
[100] | 310 | for (int ii = 1; ii < argc; ii++) {
|
---|
[3977] | 311 | if (QRegExp("--?help").exactMatch(argv[ii])) {
|
---|
| 312 | cout << printHelp.data();
|
---|
| 313 | exit(0);
|
---|
| 314 | }
|
---|
| 315 | if (QRegExp("--?nw").exactMatch(argv[ii])) {
|
---|
[4446] | 316 | interactive = false;
|
---|
[100] | 317 | }
|
---|
[7268] | 318 | if (QRegExp("--?version").exactMatch(argv[ii])) {
|
---|
| 319 | cout << BNCPGMNAME << endl;
|
---|
| 320 | exit(0);
|
---|
| 321 | }
|
---|
[4490] | 322 | if (QRegExp("--?display").exactMatch(argv[ii])) {
|
---|
| 323 | displaySet = true;
|
---|
[4492] | 324 | strcpy(argv[ii], "-display"); // make it "-display" not "--display"
|
---|
[4490] | 325 | }
|
---|
[1552] | 326 | if (ii + 1 < argc) {
|
---|
[3977] | 327 | if (QRegExp("--?conf").exactMatch(argv[ii])) {
|
---|
[1552] | 328 | confFileName = QString(argv[ii+1]);
|
---|
[1146] | 329 | }
|
---|
[3977] | 330 | if (QRegExp("--?file").exactMatch(argv[ii])) {
|
---|
[4446] | 331 | interactive = false;
|
---|
[1553] | 332 | rawFileName = QByteArray(argv[ii+1]);
|
---|
[1552] | 333 | }
|
---|
[1156] | 334 | }
|
---|
[1146] | 335 | }
|
---|
| 336 |
|
---|
[4162] | 337 | #ifdef Q_OS_MAC
|
---|
[4446] | 338 | if (argc== 3 && interactive) {
|
---|
[4162] | 339 | confFileName = QString(argv[2]);
|
---|
| 340 | }
|
---|
| 341 | #else
|
---|
[4446] | 342 | if (argc == 2 && interactive) {
|
---|
[1585] | 343 | confFileName = QString(argv[1]);
|
---|
| 344 | }
|
---|
[4162] | 345 | #endif
|
---|
[1585] | 346 |
|
---|
[6548] | 347 | #ifdef Q_OS_MACX
|
---|
| 348 | if ( QSysInfo::MacintoshVersion > QSysInfo::MV_10_8 )
|
---|
| 349 | {
|
---|
| 350 | // fix Mac OS X 10.9 (mavericks) font issue
|
---|
| 351 | // https://bugreports.qt-project.org/browse/QTBUG-32789
|
---|
| 352 | QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande");
|
---|
| 353 | }
|
---|
| 354 | #endif
|
---|
| 355 |
|
---|
[4491] | 356 | bool GUIenabled = interactive || displaySet;
|
---|
[5066] | 357 | t_app app(argc, argv, GUIenabled);
|
---|
[1516] | 358 |
|
---|
[1538] | 359 | app.setApplicationName("BNC");
|
---|
| 360 | app.setOrganizationName("BKG");
|
---|
| 361 | app.setOrganizationDomain("www.bkg.bund.de");
|
---|
[5084] | 362 |
|
---|
| 363 | BNC_CORE->setGUIenabled(GUIenabled);
|
---|
[5068] | 364 | BNC_CORE->setConfFileName( confFileName );
|
---|
[1538] | 365 |
|
---|
[1535] | 366 | bncSettings settings;
|
---|
[1503] | 367 |
|
---|
[3976] | 368 | for (int ii = 1; ii < argc - 2; ii++) {
|
---|
[3978] | 369 | if (QRegExp("--?key").exactMatch(argv[ii])) {
|
---|
[3976] | 370 | QString key(argv[ii+1]);
|
---|
| 371 | QString val(argv[ii+2]);
|
---|
[7476] | 372 | if (val.indexOf(";") != -1) {
|
---|
[7293] | 373 | settings.setValue(key, val.split(";", QString::SkipEmptyParts));
|
---|
| 374 | }
|
---|
| 375 | else {
|
---|
| 376 | settings.setValue(key, val);
|
---|
| 377 | }
|
---|
[3976] | 378 | }
|
---|
| 379 | }
|
---|
| 380 |
|
---|
[7640] | 381 | bncWindow* bncWin = 0;
|
---|
| 382 | t_reqcEdit* reqcEdit = 0;
|
---|
| 383 | t_reqcAnalyze* reqcAnalyze = 0;
|
---|
| 384 | t_sp3Comp* sp3Comp = 0;
|
---|
| 385 | bncEphUploadCaster* casterEph = 0;
|
---|
| 386 | bncCaster* caster = 0;
|
---|
| 387 | bncRawFile* rawFile = 0;
|
---|
| 388 | bncGetThread* getThread = 0;
|
---|
| 389 |
|
---|
[180] | 390 | // Interactive Mode - open the main window
|
---|
| 391 | // ---------------------------------------
|
---|
[4446] | 392 | if (interactive) {
|
---|
[113] | 393 |
|
---|
[5072] | 394 | BNC_CORE->setMode(t_bncCore::interactive);
|
---|
[3280] | 395 |
|
---|
[113] | 396 | QString fontString = settings.value("font").toString();
|
---|
| 397 | if ( !fontString.isEmpty() ) {
|
---|
| 398 | QFont newFont;
|
---|
| 399 | if (newFont.fromString(fontString)) {
|
---|
| 400 | QApplication::setFont(newFont);
|
---|
| 401 | }
|
---|
| 402 | }
|
---|
[7268] | 403 |
|
---|
[173] | 404 | app.setWindowIcon(QPixmap(":ntrip-logo.png"));
|
---|
[113] | 405 |
|
---|
[7640] | 406 | bncWin = new bncWindow();
|
---|
[5068] | 407 | BNC_CORE->setMainWindow(bncWin);
|
---|
[35] | 408 | bncWin->show();
|
---|
| 409 | }
|
---|
[180] | 410 |
|
---|
[7268] | 411 | // Post-Processing PPP
|
---|
[6343] | 412 | // -------------------
|
---|
| 413 | else if (settings.value("PPP/dataSource").toString() == "RINEX Files") {
|
---|
[7640] | 414 | caster = new bncCaster();
|
---|
[6343] | 415 | BNC_CORE->setCaster(caster);
|
---|
| 416 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
| 417 | BNC_CORE->startPPP();
|
---|
| 418 | }
|
---|
| 419 |
|
---|
[3974] | 420 | // Post-Processing reqc edit
|
---|
| 421 | // -------------------------
|
---|
[5864] | 422 | else if (settings.value("reqcAction").toString() == "Edit/Concatenate") {
|
---|
[5072] | 423 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[7640] | 424 | reqcEdit = new t_reqcEdit(0);
|
---|
[3974] | 425 | reqcEdit->start();
|
---|
| 426 | }
|
---|
| 427 |
|
---|
[3975] | 428 | // Post-Processing reqc analyze
|
---|
| 429 | // ----------------------------
|
---|
| 430 | else if (settings.value("reqcAction").toString() == "Analyze") {
|
---|
[5072] | 431 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[7640] | 432 | reqcAnalyze = new t_reqcAnalyze(0);
|
---|
[3975] | 433 | reqcAnalyze->start();
|
---|
| 434 | }
|
---|
| 435 |
|
---|
[6343] | 436 | // SP3 Files Comparison
|
---|
| 437 | // --------------------
|
---|
| 438 | else if (!settings.value("sp3CompFile").toString().isEmpty()) {
|
---|
[5926] | 439 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[7640] | 440 | sp3Comp = new t_sp3Comp(0);
|
---|
[6343] | 441 | sp3Comp->start();
|
---|
[5926] | 442 | }
|
---|
| 443 |
|
---|
[3974] | 444 | // Non-Interactive (data gathering)
|
---|
| 445 | // --------------------------------
|
---|
[35] | 446 | else {
|
---|
[621] | 447 |
|
---|
[1138] | 448 | signal(SIGINT, catch_signal);
|
---|
| 449 |
|
---|
[7640] | 450 | casterEph = new bncEphUploadCaster(); (void) casterEph;
|
---|
[7268] | 451 |
|
---|
[7640] | 452 | caster = new bncCaster();
|
---|
[7268] | 453 |
|
---|
[5068] | 454 | BNC_CORE->setCaster(caster);
|
---|
[7327] | 455 | BNC_CORE->setPortEph(settings.value("ephOutPort").toInt());
|
---|
[5068] | 456 | BNC_CORE->setPortCorr(settings.value("corrPort").toInt());
|
---|
| 457 | BNC_CORE->initCombination();
|
---|
[7268] | 458 |
|
---|
[5729] | 459 | BNC_CORE->connect(caster, SIGNAL(getThreadsFinished()), &app, SLOT(quit()));
|
---|
[7268] | 460 |
|
---|
[6569] | 461 | BNC_CORE->slotMessage("========== Start BNC v" BNCVERSION " ("BNC_OS") ==========", true);
|
---|
[5845] | 462 |
|
---|
[1170] | 463 | // Normal case - data from Internet
|
---|
| 464 | // --------------------------------
|
---|
[3974] | 465 | if ( rawFileName.isEmpty() ) {
|
---|
[5072] | 466 | BNC_CORE->setMode(t_bncCore::nonInteractive);
|
---|
[5946] | 467 | BNC_CORE->startPPP();
|
---|
[5905] | 468 |
|
---|
[4250] | 469 | caster->readMountPoints();
|
---|
[1170] | 470 | if (caster->numStations() == 0) {
|
---|
[1552] | 471 | exit(0);
|
---|
[1170] | 472 | }
|
---|
| 473 | }
|
---|
[7268] | 474 |
|
---|
[1170] | 475 | // Special case - data from file
|
---|
| 476 | // -----------------------------
|
---|
| 477 | else {
|
---|
[5072] | 478 | BNC_CORE->setMode(t_bncCore::batchPostProcessing);
|
---|
[5946] | 479 | BNC_CORE->startPPP();
|
---|
[5905] | 480 |
|
---|
[7640] | 481 | rawFile = new bncRawFile(rawFileName, "", bncRawFile::input);
|
---|
| 482 | getThread = new bncGetThread(rawFile);
|
---|
[2528] | 483 | caster->addGetThread(getThread, true);
|
---|
[35] | 484 | }
|
---|
| 485 | }
|
---|
[180] | 486 |
|
---|
| 487 | // Start the application
|
---|
| 488 | // ---------------------
|
---|
[7640] | 489 | app.exec();
|
---|
| 490 | if (interactive) {
|
---|
| 491 | delete bncWin;
|
---|
| 492 | }
|
---|
| 493 | if (caster) {
|
---|
| 494 | delete caster;
|
---|
| 495 | }
|
---|
| 496 | if (casterEph) {
|
---|
| 497 | delete casterEph;
|
---|
| 498 | }
|
---|
| 499 | if (rawFile) {
|
---|
| 500 | delete rawFile;
|
---|
| 501 | }
|
---|
| 502 | return 0;
|
---|
[35] | 503 | }
|
---|