source: ntrip/trunk/BNC/RTCM/GPSDecoder.h@ 306

Last change on this file since 306 was 297, checked in by mervart, 19 years ago

* empty log message *

File size: 2.1 KB
Line 
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
31class Observation {
32 public:
33 Observation() {
34 flags = 0;
35 StatID[0] = '\0';
36 SVPRN = 0;
37 GPSWeek = 0;
38 GPSWeeks = 0.0;
39 C1 = 0.0;
40 P1 = 0.0;
41 P2 = 0.0;
42 L1 = 0.0;
43 L2 = 0.0;
44 SNR1 = 0;
45 SNR2 = 0;
46 }
47 int flags;
48 char StatID[5+1]; // Station ID
49 int SVPRN; // Satellite PRN
50 int GPSWeek; // Week of GPS-Time
51 double GPSWeeks; // Second of Week (GPS-Time)
52 double C1; // CA-code pseudorange (meters)
53 double P1; // P1-code pseudorange (meters)
54 double P2; // P2-code pseudorange (meters)
55 double L1; // L1 carrier phase (cycles)
56 double L2; // L2 carrier phase (cycles)
57 int SNR1; // L1 signal-to noise ratio (0.1 dB)
58 int SNR2; // L2 signal-to noise ratio (0.1 dB)
59};
60
61class GPSDecoder {
62 public:
63 virtual void Decode(char* buffer, int bufLen) = 0;
64 virtual ~GPSDecoder() {}
65 std::list<Observation*> _obsList;
66};
67
68#endif
Note: See TracBrowser for help on using the repository browser.