| 1 | // Part of BNC, a utility for retrieving decoding and
|
|---|
| 2 | // converting GNSS data streams from NTRIP broadcasters.
|
|---|
| 3 | //
|
|---|
| 4 | // Copyright (C) 2007
|
|---|
| 5 | // German Federal Agency for Cartography and Geodesy (BKG)
|
|---|
| 6 | // http://www.bkg.bund.de
|
|---|
| 7 | // Czech Technical University Prague, Department of Geodesy
|
|---|
| 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.
|
|---|
| 24 |
|
|---|
| 25 | #ifndef BNCPPPCLIENT_H
|
|---|
| 26 | #define BNCPPPCLIENT_H
|
|---|
| 27 |
|
|---|
| 28 | #include <QtNetwork>
|
|---|
| 29 |
|
|---|
| 30 | #include <newmat.h>
|
|---|
| 31 |
|
|---|
| 32 | #include "bncconst.h"
|
|---|
| 33 | #include "bnctime.h"
|
|---|
| 34 | #include "RTCM/GPSDecoder.h"
|
|---|
| 35 | #include "RTCM3/ephemeris.h"
|
|---|
| 36 |
|
|---|
| 37 | class bncModel;
|
|---|
| 38 |
|
|---|
| 39 | class t_satData {
|
|---|
| 40 | public:
|
|---|
| 41 | enum codeType {P_CODE, C_CODE};
|
|---|
| 42 | QString prn;
|
|---|
| 43 | double P1;
|
|---|
| 44 | double P2;
|
|---|
| 45 | double P3;
|
|---|
| 46 | double L1;
|
|---|
| 47 | double L2;
|
|---|
| 48 | double L3;
|
|---|
| 49 | codeType codeTypeF1;
|
|---|
| 50 | codeType codeTypeF2;
|
|---|
| 51 | ColumnVector xx;
|
|---|
| 52 | ColumnVector vv;
|
|---|
| 53 | double clk;
|
|---|
| 54 | bool clkCorr;
|
|---|
| 55 | double eleSat;
|
|---|
| 56 | double azSat;
|
|---|
| 57 | double rho;
|
|---|
| 58 | };
|
|---|
| 59 |
|
|---|
| 60 | class t_epoData {
|
|---|
| 61 | public:
|
|---|
| 62 | t_epoData() {}
|
|---|
| 63 | ~t_epoData() {
|
|---|
| 64 | QMapIterator<QString, t_satData*> itGPS(satDataGPS);
|
|---|
| 65 | while (itGPS.hasNext()) {
|
|---|
| 66 | itGPS.next();
|
|---|
| 67 | delete itGPS.value();
|
|---|
| 68 | }
|
|---|
| 69 | QMapIterator<QString, t_satData*> itGlo(satDataGlo);
|
|---|
| 70 | while (itGlo.hasNext()) {
|
|---|
| 71 | itGlo.next();
|
|---|
| 72 | delete itGlo.value();
|
|---|
| 73 | }
|
|---|
| 74 | }
|
|---|
| 75 | unsigned sizeGPS() const {return satDataGPS.size();}
|
|---|
| 76 | unsigned sizeGlo() const {return satDataGlo.size();}
|
|---|
| 77 | unsigned sizeAll() const {return satDataGPS.size() + satDataGlo.size();}
|
|---|
| 78 | bncTime tt;
|
|---|
| 79 | QMap<QString, t_satData*> satDataGPS;
|
|---|
| 80 | QMap<QString, t_satData*> satDataGlo;
|
|---|
| 81 | };
|
|---|
| 82 |
|
|---|
| 83 | class t_corr {
|
|---|
| 84 | public:
|
|---|
| 85 | t_corr() {
|
|---|
| 86 | raoSet = false;
|
|---|
| 87 | dClkSet = false;
|
|---|
| 88 | }
|
|---|
| 89 | bool ready() {return raoSet && dClkSet;}
|
|---|
| 90 | bncTime tt;
|
|---|
| 91 | int iod;
|
|---|
| 92 | double dClk;
|
|---|
| 93 | ColumnVector rao;
|
|---|
| 94 | ColumnVector dotRao;
|
|---|
| 95 | bool raoSet;
|
|---|
| 96 | bool dClkSet;
|
|---|
| 97 | };
|
|---|
| 98 |
|
|---|
| 99 | class t_bias {
|
|---|
| 100 | public:
|
|---|
| 101 | t_bias() {
|
|---|
| 102 | p1c1 = 0.0;
|
|---|
| 103 | p1p2 = 0.0;
|
|---|
| 104 | }
|
|---|
| 105 | bncTime tt;
|
|---|
| 106 | double p1c1;
|
|---|
| 107 | double p1p2;
|
|---|
| 108 | };
|
|---|
| 109 |
|
|---|
| 110 | class bncPPPclient : public QObject {
|
|---|
| 111 | Q_OBJECT
|
|---|
| 112 |
|
|---|
| 113 | public:
|
|---|
| 114 | bncPPPclient(QByteArray staID);
|
|---|
| 115 | ~bncPPPclient();
|
|---|
| 116 | void putNewObs(p_obs pp);
|
|---|
| 117 |
|
|---|
| 118 | public slots:
|
|---|
| 119 | void slotNewEphGPS(gpsephemeris gpseph);
|
|---|
| 120 | void slotNewEphGlonass(glonassephemeris gloeph);
|
|---|
| 121 | void slotNewCorrections(QList<QString> corrList);
|
|---|
| 122 |
|
|---|
| 123 | signals:
|
|---|
| 124 | void newPosition(bncTime time, double x, double y, double z);
|
|---|
| 125 | void newNMEAstr(QByteArray str);
|
|---|
| 126 |
|
|---|
| 127 | private:
|
|---|
| 128 | t_irc getSatPos(const bncTime& tt, const QString& prn,
|
|---|
| 129 | ColumnVector& xc, ColumnVector& vv, bool& corr);
|
|---|
| 130 | void processEpoch();
|
|---|
| 131 | void applyCorr(const bncTime& tt, const t_corr* cc, ColumnVector& xc,
|
|---|
| 132 | ColumnVector& vv);
|
|---|
| 133 | t_irc cmpToT(t_satData* satData);
|
|---|
| 134 |
|
|---|
| 135 | QByteArray _staID;
|
|---|
| 136 | QMutex _mutex;
|
|---|
| 137 | QMap<QString, t_eph*> _eph;
|
|---|
| 138 | QMap<QString, t_corr*> _corr;
|
|---|
| 139 | QMap<QString, t_bias*> _bias;
|
|---|
| 140 | t_epoData* _epoData;
|
|---|
| 141 | bncModel* _model;
|
|---|
| 142 | bool _useGlonass;
|
|---|
| 143 | };
|
|---|
| 144 |
|
|---|
| 145 | #endif
|
|---|