source: ntrip/trunk/BNC/src/bncephuser.h@ 6140

Last change on this file since 6140 was 6140, checked in by mervart, 10 years ago
File size: 3.0 KB
Line 
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 BNCEPHUSER_H
26#define BNCEPHUSER_H
27
28#include <QtCore>
29#include <newmat.h>
30
31#include "bncconst.h"
32#include "bnctime.h"
33#include "ephemeris.h"
34
35extern "C" {
36# include "clock_orbit_rtcm.h"
37}
38
39class t_corr {
40 public:
41 t_corr() {
42 rao.ReSize(3);
43 dotRao.ReSize(3);
44 messageType = 0;
45 iod = 0;
46 dClk = 0.0;
47 dotDClk = 0.0;
48 dotDotDClk = 0.0;
49 hrClk = 0.0;
50 rao = 0.0;
51 dotRao = 0.0;
52 eph = 0;
53 }
54
55 ~t_corr() {}
56
57 bool ready() {return tRao.valid() && tClk.valid();}
58
59 static bool relevantMessageType(int msgType) {
60 return ( msgType == COTYPE_GPSCOMBINED ||
61 msgType == COTYPE_GLONASSCOMBINED ||
62 msgType == COTYPE_GPSORBIT ||
63 msgType == COTYPE_GPSCLOCK ||
64 msgType == COTYPE_GLONASSORBIT ||
65 msgType == COTYPE_GLONASSCLOCK ||
66 msgType == COTYPE_GPSHR ||
67 msgType == COTYPE_GLONASSHR );
68 }
69
70 t_irc readLine(const QString& line);
71
72 int messageType;
73 QString prn;
74 bncTime tClk;
75 bncTime tRao;
76 int iod;
77 double dClk;
78 double dotDClk;
79 double dotDotDClk;
80 double hrClk;
81 ColumnVector rao;
82 ColumnVector dotRao;
83 const t_eph* eph;
84};
85
86class bncEphUser : public QObject {
87 Q_OBJECT
88
89 public:
90 bncEphUser(bool connectSlots = true);
91 virtual ~bncEphUser();
92
93 class t_ephPair {
94 public:
95 t_ephPair(t_eph* lastEph) {
96 last = lastEph;
97 prev = 0;
98 }
99 ~t_ephPair() {
100 delete last;
101 delete prev;
102 }
103 t_eph* last;
104 t_eph* prev;
105 };
106
107 const t_ephPair* ephPair(const QString& prn) {
108 if (_eph.contains(prn)) {
109 return _eph[prn];
110 }
111 else {
112 return 0;
113 }
114 }
115
116 t_irc putNewEph(t_eph* eph);
117
118 public slots:
119 void slotNewEphGPS(gpsephemeris gpseph);
120 void slotNewEphGlonass(glonassephemeris gloeph);
121 void slotNewEphGalileo(galileoephemeris galeph);
122
123 protected:
124 virtual void ephBufferChanged() {}
125 QMutex _mutex;
126 QMap<QString, t_ephPair*> _eph;
127};
128
129#endif
Note: See TracBrowser for help on using the repository browser.