[297] | 1 | // Part of BNC, a utility for retrieving decoding and
|
---|
| 2 | // converting GNSS data streams from NTRIP broadcasters,
|
---|
| 3 | // written by Leos Mervart.
|
---|
| 4 | //
|
---|
| 5 | // Copyright (C) 2006
|
---|
| 6 | // German Federal Agency for Cartography and Geodesy (BKG)
|
---|
| 7 | // http://www.bkg.bund.de
|
---|
| 8 | // Czech Technical University Prague, Department of Advanced Geodesy
|
---|
| 9 | // http://www.fsv.cvut.cz
|
---|
| 10 | //
|
---|
| 11 | // Email: euref-ip@bkg.bund.de
|
---|
| 12 | //
|
---|
| 13 | // This program is free software; you can redistribute it and/or
|
---|
| 14 | // modify it under the terms of the GNU General Public License
|
---|
| 15 | // as published by the Free Software Foundation, version 2.
|
---|
| 16 | //
|
---|
| 17 | // This program is distributed in the hope that it will be useful,
|
---|
| 18 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 19 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 20 | // GNU General Public License for more details.
|
---|
| 21 | //
|
---|
| 22 | // You should have received a copy of the GNU General Public License
|
---|
| 23 | // along with this program; if not, write to the Free Software
|
---|
| 24 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
[35] | 25 |
|
---|
[222] | 26 | #ifndef GPSDECODER_H
|
---|
| 27 | #define GPSDECODER_H
|
---|
| 28 |
|
---|
[35] | 29 | #include <list>
|
---|
| 30 |
|
---|
[222] | 31 | class Observation {
|
---|
| 32 | public:
|
---|
| 33 | Observation() {
|
---|
| 34 | flags = 0;
|
---|
| 35 | StatID[0] = '\0';
|
---|
[341] | 36 | satSys = 'G';
|
---|
| 37 | satNum = 0;
|
---|
| 38 | slot = 0;
|
---|
[222] | 39 | GPSWeek = 0;
|
---|
| 40 | GPSWeeks = 0.0;
|
---|
| 41 | C1 = 0.0;
|
---|
[366] | 42 | C2 = 0.0;
|
---|
[222] | 43 | P1 = 0.0;
|
---|
| 44 | P2 = 0.0;
|
---|
| 45 | L1 = 0.0;
|
---|
| 46 | L2 = 0.0;
|
---|
[367] | 47 | S1 = 0.0;
|
---|
| 48 | S2 = 0.0;
|
---|
[222] | 49 | SNR1 = 0;
|
---|
| 50 | SNR2 = 0;
|
---|
| 51 | }
|
---|
| 52 | int flags;
|
---|
[341] | 53 | char StatID[20+1];// Station ID
|
---|
| 54 | char satSys; // Satellite System ('G' or 'R')
|
---|
| 55 | int satNum; // Satellite Number (PRN for GPS NAVSTAR)
|
---|
| 56 | int slot; // Slot Number (for Glonass)
|
---|
[222] | 57 | int GPSWeek; // Week of GPS-Time
|
---|
| 58 | double GPSWeeks; // Second of Week (GPS-Time)
|
---|
| 59 | double C1; // CA-code pseudorange (meters)
|
---|
[366] | 60 | double C2; // CA-code pseudorange (meters)
|
---|
[222] | 61 | double P1; // P1-code pseudorange (meters)
|
---|
| 62 | double P2; // P2-code pseudorange (meters)
|
---|
| 63 | double L1; // L1 carrier phase (cycles)
|
---|
| 64 | double L2; // L2 carrier phase (cycles)
|
---|
[367] | 65 | double S1; // L1 signal-to noise ratio
|
---|
| 66 | double S2; // L2 signal-to noise ratio
|
---|
| 67 | int SNR1; // L1 signal-to noise ratio (mapped to integer)
|
---|
| 68 | int SNR2; // L2 signal-to noise ratio (mapped to integer)
|
---|
[222] | 69 | };
|
---|
[35] | 70 |
|
---|
| 71 | class GPSDecoder {
|
---|
[222] | 72 | public:
|
---|
| 73 | virtual void Decode(char* buffer, int bufLen) = 0;
|
---|
| 74 | virtual ~GPSDecoder() {}
|
---|
| 75 | std::list<Observation*> _obsList;
|
---|
| 76 | };
|
---|
[35] | 77 |
|
---|
| 78 | #endif
|
---|