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

Last change on this file since 354 was 341, checked in by mervart, 18 years ago

* empty log message *

File size: 2.3 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 satSys = 'G';
37 satNum = 0;
38 slot = 0;
39 GPSWeek = 0;
40 GPSWeeks = 0.0;
41 C1 = 0.0;
42 P1 = 0.0;
43 P2 = 0.0;
44 L1 = 0.0;
45 L2 = 0.0;
46 SNR1 = 0;
47 SNR2 = 0;
48 }
49 int flags;
50 char StatID[20+1];// Station ID
51 char satSys; // Satellite System ('G' or 'R')
52 int satNum; // Satellite Number (PRN for GPS NAVSTAR)
53 int slot; // Slot Number (for Glonass)
54 int GPSWeek; // Week of GPS-Time
55 double GPSWeeks; // Second of Week (GPS-Time)
56 double C1; // CA-code pseudorange (meters)
57 double P1; // P1-code pseudorange (meters)
58 double P2; // P2-code pseudorange (meters)
59 double L1; // L1 carrier phase (cycles)
60 double L2; // L2 carrier phase (cycles)
61 int SNR1; // L1 signal-to noise ratio (RINEX convention)
62 int SNR2; // L2 signal-to noise ratio (RINEX convention)
63};
64
65class GPSDecoder {
66 public:
67 virtual void Decode(char* buffer, int bufLen) = 0;
68 virtual ~GPSDecoder() {}
69 std::list<Observation*> _obsList;
70};
71
72#endif
Note: See TracBrowser for help on using the repository browser.