[297] | 1 | // Part of BNC, a utility for retrieving decoding and
|
---|
[464] | 2 | // converting GNSS data streams from NTRIP broadcasters.
|
---|
[297] | 3 | //
|
---|
[464] | 4 | // Copyright (C) 2007
|
---|
[297] | 5 | // German Federal Agency for Cartography and Geodesy (BKG)
|
---|
| 6 | // http://www.bkg.bund.de
|
---|
[464] | 7 | // Czech Technical University Prague, Department of Geodesy
|
---|
[297] | 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 |
|
---|
[222] | 25 | #ifndef GPSDECODER_H
|
---|
| 26 | #define GPSDECODER_H
|
---|
| 27 |
|
---|
[625] | 28 | #include <iostream>
|
---|
[1218] | 29 | #include <vector>
|
---|
| 30 | #include <string>
|
---|
[621] | 31 | #include <QList>
|
---|
[1239] | 32 | #include <QStringList>
|
---|
[35] | 33 |
|
---|
[649] | 34 | #include "bncconst.h"
|
---|
[3528] | 35 | #include "bncrinex.h"
|
---|
[649] | 36 |
|
---|
[4389] | 37 | extern "C" {
|
---|
| 38 | #include "rtcm3torinex.h"
|
---|
| 39 | }
|
---|
| 40 |
|
---|
[2709] | 41 | class t_obs {
|
---|
| 42 | public:
|
---|
| 43 | t_obs() {
|
---|
[2712] | 44 | StatID[0] = '\x0';
|
---|
[2709] | 45 | satSys = 'G';
|
---|
| 46 | satNum = 0;
|
---|
| 47 | slotNum = 0;
|
---|
| 48 | GPSWeek = 0;
|
---|
| 49 | GPSWeeks = 0.0;
|
---|
[4389] | 50 | _dataflags = 0;
|
---|
| 51 | _dataflags2 = 0;
|
---|
[4403] | 52 | for (int ie = 0; ie < GNSSENTRY_NUMBER; ie++) {
|
---|
| 53 | _measdata[ie] = 0.0;
|
---|
| 54 | _codetype[ie] = 0;
|
---|
[4389] | 55 | }
|
---|
[2709] | 56 | slip_cnt_L1 = -1;
|
---|
| 57 | slip_cnt_L2 = -1;
|
---|
| 58 | slip_cnt_L5 = -1;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | ~t_obs() {}
|
---|
| 62 |
|
---|
[4403] | 63 | double measdata(const QString& rnxStr, float rnxVer) const;
|
---|
| 64 | void setMeasdata(const QString& rnxStr, float rnxVer, double value);
|
---|
[2709] | 65 |
|
---|
[2691] | 66 | char StatID[20+1]; // Station ID
|
---|
| 67 | char satSys; // Satellite System ('G' or 'R')
|
---|
| 68 | int satNum; // Satellite Number (PRN for GPS NAVSTAR)
|
---|
| 69 | int slotNum; // Slot Number (for Glonass)
|
---|
| 70 | int GPSWeek; // Week of GPS-Time
|
---|
| 71 | double GPSWeeks; // Second of Week (GPS-Time)
|
---|
| 72 |
|
---|
| 73 | int slip_cnt_L1; // L1 cumulative loss of continuity indicator (negative value = undefined)
|
---|
| 74 | int slip_cnt_L2; // L2 cumulative loss of continuity indicator (negative value = undefined)
|
---|
| 75 | int slip_cnt_L5; // L5 cumulative loss of continuity indicator (negative value = undefined)
|
---|
[4389] | 76 |
|
---|
| 77 | double _measdata[GNSSENTRY_NUMBER]; // data fields */
|
---|
| 78 | unsigned long long _dataflags; // GNSSDF_xxx */
|
---|
| 79 | unsigned int _dataflags2; // GNSSDF2_xxx */
|
---|
| 80 | const char* _codetype[GNSSENTRY_NUMBER];
|
---|
[4403] | 81 |
|
---|
[4440] | 82 | QString rnxStr(int iEntry);
|
---|
| 83 |
|
---|
[4403] | 84 | private:
|
---|
[4415] | 85 | int iEntry(QString rnxStr, float rnxVer) const;
|
---|
[222] | 86 | };
|
---|
[35] | 87 |
|
---|
| 88 | class GPSDecoder {
|
---|
[622] | 89 | public:
|
---|
[3528] | 90 | GPSDecoder();
|
---|
[622] | 91 |
|
---|
[3528] | 92 | virtual ~GPSDecoder() {delete _rnx;}
|
---|
[622] | 93 |
|
---|
[3528] | 94 | virtual t_irc Decode(char* buffer, int bufLen,
|
---|
| 95 | std::vector<std::string>& errmsg) = 0;
|
---|
| 96 |
|
---|
| 97 |
|
---|
[1567] | 98 | virtual int corrGPSEpochTime() const {return -1;}
|
---|
| 99 |
|
---|
[3529] | 100 | void initRinex(const QByteArray& staID, const QUrl& mountPoint,
|
---|
| 101 | const QByteArray& latitude, const QByteArray& longitude,
|
---|
| 102 | const QByteArray& nmea, const QByteArray& ntripVersion);
|
---|
| 103 |
|
---|
[3528] | 104 | void dumpRinexEpoch(const t_obs& obs, const QByteArray& format);
|
---|
| 105 |
|
---|
| 106 | void setRinexReconnectFlag(bool flag);
|
---|
| 107 |
|
---|
[1268] | 108 | struct t_antInfo {
|
---|
| 109 | enum t_type { ARP, APC };
|
---|
| 110 |
|
---|
| 111 | t_antInfo() {
|
---|
| 112 | xx = yy = zz = height = 0.0;
|
---|
| 113 | type = ARP;
|
---|
| 114 | height_f = false;
|
---|
| 115 | message = 0;
|
---|
| 116 | };
|
---|
| 117 |
|
---|
| 118 | double xx;
|
---|
| 119 | double yy;
|
---|
| 120 | double zz;
|
---|
| 121 | t_type type;
|
---|
| 122 | double height;
|
---|
| 123 | bool height_f;
|
---|
| 124 | int message;
|
---|
| 125 | };
|
---|
| 126 |
|
---|
[2711] | 127 | QList<t_obs> _obsList;
|
---|
[3528] | 128 | QList<int> _typeList; // RTCM message types
|
---|
| 129 | QStringList _antType; // RTCM antenna descriptor
|
---|
| 130 | QList<t_antInfo> _antList; // RTCM antenna XYZ
|
---|
| 131 | bncRinex* _rnx; // RINEX writer
|
---|
[222] | 132 | };
|
---|
[35] | 133 |
|
---|
| 134 | #endif
|
---|