- Timestamp:
- Jun 20, 2016, 5:21:17 PM (8 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncmain.cpp
r7944 r7961 204 204 " PPP/logPath {Directory for PPP log files [character string]}\n" 205 205 " PPP/antexFile {ANTEX file, full path [character string]}\n" 206 #ifdef USE_PPP 207 " PPP/blqFile {ANTEX file, full path [character string]}\n" 208 #endif 206 209 " PPP/nmeaPath {Directory for NMEA output files [character string]}\n" 207 210 " PPP/snxtroPath {Directory for SINEX troposphere output files [character string]}\n" -
trunk/BNC/src/bncwindow.cpp
r7949 r7961 917 917 pppLayout1->addWidget(new QLabel("Coordinates file"), ir, 0); 918 918 pppLayout1->addWidget(_pppWidgets._crdFile, ir, 1); 919 pppLayout1->addWidget(new QLabel(" Version 3 filenames"),ir, 3); 920 pppLayout1->addWidget(_pppWidgets._v3filenames, ir, 4, 1, 3); 919 #ifdef USE_PPP 920 pppLayout1->addWidget(new QLabel(" BLQ file"), ir, 3); 921 pppLayout1->addWidget(_pppWidgets._blqFile, ir, 4, 1, 3); 922 #endif 921 923 ++ir; 922 924 pppLayout1->addWidget(new QLabel("Logfile directory"), ir, 0); … … 932 934 pppLayout1->addWidget(_pppWidgets._snxtroSampl, ir, 6, Qt::AlignRight); 933 935 ++ir; 936 pppLayout1->addWidget(new QLabel("Version 3 filenames"), ir, 0); 937 pppLayout1->addWidget(_pppWidgets._v3filenames, ir, 1, 1, 3); 934 938 pppLayout1->addWidget(new QLabel(" SNX TRO AC"), ir, 3); 935 939 pppLayout1->addWidget(_pppWidgets._snxtroAc, ir, 4); 936 pppLayout1->addWidget(new QLabel(" SNX TRO solution") ,ir, 5);940 pppLayout1->addWidget(new QLabel(" SNX TRO solution"), ir, 5); 937 941 pppLayout1->addWidget(_pppWidgets._snxtroSol, ir, 6, Qt::AlignRight); 938 942 pppLayout1->setRowStretch(ir, 999); … … 1351 1355 _pppWidgets._corrFile->setWhatsThis(tr("<p>Specify the Broadcast Ephemeris Corrections file as saved beforehand using BNC.</p><p>If you don't specify corrections by this option, BNC will fall back to Single Point Positioning (SPP, positioning from RINEX Obs and RINEX Nav files only) instead of doing PPP.</p>")); 1352 1356 _pppWidgets._antexFile->setWhatsThis(tr("<p>Observations in RTCM streams or RINEX files should be referred to the receiver's and to the satellite's Antenna Phase Center (APC) and therefore be corrected for<ul><li>Receiver APC offsets</li><li>Receiver APC variations</li><li>Satellite APC offsets.</li></ul> Specify the full path to an IGS 'ANTEX file' which contains APC offsets and variations.</p><p>If you don't specify an 'ANTEX file' then observations will not be corrected for APC offsets and variations.</p>")); 1357 _pppWidgets._blqFile->setWhatsThis(tr("<p>Enter the full path to an ocean loading file in BLQ format. It contains a record for each site, which shows a header with information on the ocean tide model, the site name and the geographic coordinates. The first three rows of numbers designate amplitudes (meter), radial, west, south, and are followed by three lines with the corresponding phase values (degrees).</p>")); 1353 1358 _pppWidgets._crdFile->setWhatsThis(tr("<p>Enter the full path to an ASCII file which specifies the streams or files of those stations you want to process. Specifying a 'Coordinates file' is optional. If it exists, it should contain one record per station with the following parameters separated by blank character:<p><ul><li>Specify the station either by<ul><li>the 'Mountpoint' of the station's RTCM stream (when in real-time PPP mode), or</li><li>the 4-charater station ID of the RINEX Observations file (when in post processing PPP mode).</li></ul></li><li>Approximate X,Y,Z coordinate of station's Antenna Reference Point [m] (ARP, specify '0.0 0.0 0.0' if unknown).</li><li>North, East and Up component of antenna eccentricity [m] (specify '0.0 0.0 0.0' if unknown).</li><li>20 Characters describing the antenna type and radome following the IGS 'ANTEX file' standard (leave blank if unknown).</li><li>Receiver type following the naming conventions for IGS equipment.</li></ul></p><p>Records with exclamation mark '!' in the first column or blank records will be interpreted as comment lines and ignored.</p>")); 1354 1359 _pppWidgets._v3filenames->setWhatsThis(tr("<p>Tick 'Version 3 filenames' to let BNC create so-called extended filenames for PPP logfiles, NMEA files and SINEX Troposphere files following the RINEX Version 3 standard.</p><p>Default is an empty check box, meaning to create filenames following the RINEX Version 2 standard. The file content is not affected by this option. It only concerns the filenames.</p>")); -
trunk/BNC/src/pppMain.cpp
r7943 r7961 173 173 174 174 opt->_crdFile.assign(settings.value("PPP/crdFile").toString().toStdString()); 175 #ifdef USE_PPP 175 176 opt->_antexFileName.assign(settings.value("PPP/antexFile").toString().toStdString()); 177 #endif 178 opt->_blqFileName.assign(settings.value("PPP/blqFile").toString().toStdString()); 176 179 177 180 opt->_sigmaC1 = settings.value("PPP/sigmaC1").toDouble(); if (opt->_sigmaC1 <= 0.0) opt->_sigmaC1 = 2.0; -
trunk/BNC/src/pppOptions.h
r7521 r7961 38 38 std::string _antNameRover; 39 39 std::string _antexFileName; 40 std::string _blqFileName; 40 41 double _sigmaC1; 41 42 double _sigmaL1; -
trunk/BNC/src/pppWidgets.cpp
r7943 r7961 59 59 _crdFile = new qtFileChooser(); _crdFile ->setObjectName("PPP/crdFile"); _widgets << _crdFile; 60 60 _antexFile = new qtFileChooser(); _antexFile ->setObjectName("PPP/antexFile"); _widgets << _antexFile; 61 _blqFile = new qtFileChooser(); _blqFile ->setObjectName("PPP/blqFile"); _widgets << _blqFile; 61 62 _logPath = new QLineEdit(); _logPath ->setObjectName("PPP/logPath"); _widgets << _logPath; 62 63 _nmeaPath = new QLineEdit(); _nmeaPath ->setObjectName("PPP/nmeaPath"); _widgets << _nmeaPath; … … 220 221 delete _crdFile; 221 222 delete _antexFile; 223 delete _blqFile; 222 224 delete _logPath; 223 225 delete _nmeaPath; -
trunk/BNC/src/pppWidgets.h
r7764 r7961 45 45 qtFileChooser* _crdFile; 46 46 qtFileChooser* _antexFile; 47 qtFileChooser* _blqFile; 47 48 QLineEdit* _logPath; 48 49 QLineEdit* _nmeaPath;
Note:
See TracChangeset
for help on using the changeset viewer.