source: ntrip/trunk/BNC/src/PPP/pppClient.h@ 9600

Last change on this file since 9600 was 9600, checked in by stuerze, 2 years ago
  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 3.1 KB
Line 
1#ifndef PPPCLIENT_H
2#define PPPCLIENT_H
3
4#include <sstream>
5#include <vector>
6#include <QMap>
7#include "pppInclude.h"
8#include "ephemeris.h"
9#include "pppOptions.h"
10#include "pppModel.h"
11#include "pppRefSat.h"
12
13class bncAntex;
14
15namespace BNC_PPP {
16
17class t_pppEphPool;
18class t_pppObsPool;
19class t_pppSatObs;
20class t_pppStation;
21class t_pppFilter;
22
23class t_pppClient : public interface_pppClient {
24 public:
25 t_pppClient(const t_pppOptions* opt);
26 ~t_pppClient();
27
28 void putEphemeris(const t_eph* eph);
29 void putTec(const t_vTec* vTec);
30 void putOrbCorrections(const std::vector<t_orbCorr*>& corr);
31 void putClkCorrections(const std::vector<t_clkCorr*>& corr);
32 void putCodeBiases(const std::vector<t_satCodeBias*>& biases);
33 void putPhaseBiases(const std::vector<t_satPhaseBias*>& biases);
34 void processEpoch(const std::vector<t_satObs*>& satObs, t_output* output);
35
36 const t_pppEphPool* ephPool() const {return _ephPool;}
37 const t_pppObsPool* obsPool() const {return _obsPool;}
38 const bncAntex* antex() const {return _antex;}
39 const t_pppStation* staRover() const {return _staRover;}
40 double offGR() const {return _offGR;}
41 double offGE() const {return _offGE;}
42 double offGC() const {return _offGC;}
43
44 std::ostringstream& log() {return *_log;}
45 const t_pppOptions* opt() const {return _opt;}
46
47 static t_irc bancroft(const Matrix& BBpass, ColumnVector& pos);
48
49 static t_pppClient* instance();
50
51 void reset();
52
53 private:
54 void initOutput(t_output* output);
55 void finish(t_irc irc, int ind);
56 void clearObs();
57 t_irc prepareObs(const std::vector<t_satObs*>& satObs,
58 std::vector<t_pppSatObs*>& obsVector, bncTime& epoTime);
59 bool preparePseudoObs(std::vector<t_pppSatObs*>& obsVector);
60 void useObsWithCodeBiasesOnly(std::vector<t_pppSatObs*>& obsVector);
61 t_irc cmpModel(t_pppStation* station, const ColumnVector& xyzc,
62 std::vector<t_pppSatObs*>& obsVector);
63 t_irc cmpBancroft(const bncTime& epoTime, std::vector<t_pppSatObs*>& obsVector,
64 ColumnVector& xyzc, bool print);
65 t_irc handleRefSatellites(std::vector<t_pppSatObs*>& obsVector);
66 void setRefSatellites(std::vector<t_pppSatObs*>& obsVector);
67 void setHistoricalRefSats();
68
69 t_output* _output;
70 t_pppEphPool* _ephPool;
71 t_pppObsPool* _obsPool;
72 bncTime _epoTimeRover;
73 t_pppStation* _staRover;
74 bncAntex* _antex;
75 t_pppFilter* _filter;
76 double _offGR;
77 double _offGE;
78 double _offGC;
79 std::vector<t_pppSatObs*> _obsRover;
80 QMap<char, t_pppRefSat*> _refSatMap;
81 std::ostringstream* _log;
82 t_pppOptions* _opt;
83 t_tides* _tides;
84 bool _pseudoObsIono;
85 int _numEpoProcessing;
86 QMap<char, QList<t_prn>> _historicalRefSats;
87};
88
89}; // namespace BNC_PPP
90
91#define PPP_CLIENT (BNC_PPP::t_pppClient::instance())
92#define LOG (BNC_PPP::t_pppClient::instance()->log())
93#define OPT (BNC_PPP::t_pppClient::instance()->opt())
94
95#endif
Note: See TracBrowser for help on using the repository browser.