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.
|
---|
25 |
|
---|
26 | #ifndef GPSDECODER_H
|
---|
27 | #define GPSDECODER_H
|
---|
28 |
|
---|
29 | #include <list>
|
---|
30 |
|
---|
31 | class Observation {
|
---|
32 | public:
|
---|
33 | Observation() {
|
---|
34 | flags = 0;
|
---|
35 | StatID[0] = '\0';
|
---|
36 | satSys = 'G';
|
---|
37 | satNum = 0;
|
---|
38 | slot = 0;
|
---|
39 | GPSWeek = 0;
|
---|
40 | GPSWeeks = 0.0;
|
---|
41 | C1 = 0.0;
|
---|
42 | C2 = 0.0;
|
---|
43 | P1 = 0.0;
|
---|
44 | P2 = 0.0;
|
---|
45 | L1 = 0.0;
|
---|
46 | L2 = 0.0;
|
---|
47 | SNR1 = 0;
|
---|
48 | SNR2 = 0;
|
---|
49 | }
|
---|
50 | int flags;
|
---|
51 | char StatID[20+1];// Station ID
|
---|
52 | char satSys; // Satellite System ('G' or 'R')
|
---|
53 | int satNum; // Satellite Number (PRN for GPS NAVSTAR)
|
---|
54 | int slot; // Slot Number (for Glonass)
|
---|
55 | int GPSWeek; // Week of GPS-Time
|
---|
56 | double GPSWeeks; // Second of Week (GPS-Time)
|
---|
57 | double C1; // CA-code pseudorange (meters)
|
---|
58 | double C2; // CA-code pseudorange (meters)
|
---|
59 | double P1; // P1-code pseudorange (meters)
|
---|
60 | double P2; // P2-code pseudorange (meters)
|
---|
61 | double L1; // L1 carrier phase (cycles)
|
---|
62 | double L2; // L2 carrier phase (cycles)
|
---|
63 | int SNR1; // L1 signal-to noise ratio (RINEX convention)
|
---|
64 | int SNR2; // L2 signal-to noise ratio (RINEX convention)
|
---|
65 | };
|
---|
66 |
|
---|
67 | class GPSDecoder {
|
---|
68 | public:
|
---|
69 | virtual void Decode(char* buffer, int bufLen) = 0;
|
---|
70 | virtual ~GPSDecoder() {}
|
---|
71 | std::list<Observation*> _obsList;
|
---|
72 | };
|
---|
73 |
|
---|
74 | #endif
|
---|