source: ntrip/trunk/BNC/src/PPP/pppFilter.h@ 8905

Last change on this file since 8905 was 8905, checked in by stuerze, 4 years ago

some developments regarding PPP, not completed!

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 2.6 KB
Line 
1#ifndef FILTER_H
2#define FILTER_H
3
4#include <vector>
5#include <newmat.h>
6#include "pppInclude.h"
7#include "pppParlist.h"
8#include "bnctime.h"
9#include "t_prn.h"
10
11namespace BNC_PPP {
12
13class t_pppParlist;
14class t_pppObsPool;
15class t_pppSatObs;
16
17class t_pppFilter {
18 public:
19 t_pppFilter(t_pppObsPool* obsPool);
20 ~t_pppFilter();
21
22 t_irc processEpoch(int num);
23
24 const ColumnVector& x() const {return _xFlt;}
25 const SymmetricMatrix& Q() const {return _QFlt;}
26
27 int numSat() const {return _numSat;}
28 double HDOP() const {return _dop.H;}
29 double HDOV() const {return _dop.V;}
30 double PDOP() const {return _dop.P;}
31 double GDOP() const {return _dop.G;}
32 double trp() const {
33 const std::vector<t_pppParam*>& par = _parlist->params();
34 for (unsigned ii = 0; ii < par.size(); ++ii) {
35 if (par[ii]->type() == t_pppParam::trp) {
36 return x()[ii];
37 }
38 }
39 return 0.0;
40 };
41 double trpStdev() const {
42 const std::vector<t_pppParam*>& par = _parlist->params();
43 for (unsigned ii = 0; ii < par.size(); ++ii) {
44 if (par[ii]->type() == t_pppParam::trp) {
45 return sqrt(Q()[ii][ii]);
46 }
47 }
48 return 0.0;
49 };
50
51 private:
52 class t_slip {
53 public:
54 t_slip() {
55 _slip = false;
56 _obsSlipCounter = -1;
57 _biasJumpCounter = -1;
58 }
59 bool _slip;
60 int _obsSlipCounter;
61 int _biasJumpCounter;
62 };
63
64 class t_dop {
65 public:
66 t_dop() {reset();}
67 void reset() {H = V = P = T = G = 0.0;}
68 double H;
69 double V;
70 double P;
71 double T;
72 double G;
73 };
74
75 t_irc processSystem(const std::vector<t_lc::type>& LCs,
76 const std::vector<t_pppSatObs*>& obsVector,
77 const t_prn& refPrn,
78 bool pseudoObsIonoAvailable,
79 bool preProcessing);
80
81 t_irc detectCycleSlips(const std::vector<t_lc::type>& LCs,
82 const std::vector<t_pppSatObs*>& obsVector,
83 const t_prn& refPrn,
84 bool preProcessing);
85
86 t_irc resetAmb(t_prn prn, const std::vector<t_pppSatObs*>& obsVector,
87 SymmetricMatrix* QSav = 0, ColumnVector* xSav = 0);
88
89 void cmpDOP(const std::vector<t_pppSatObs*>& obsVector);
90
91 void predictCovCrdPart(const SymmetricMatrix& QFltOld);
92
93 bncTime _epoTime;
94 t_pppParlist* _parlist;
95 t_pppObsPool* _obsPool;
96 SymmetricMatrix _QFlt;
97 ColumnVector _xFlt;
98 ColumnVector _x0;
99 t_slip _slips[t_prn::MAXPRN+1];
100 int _numSat;
101 t_dop _dop;
102 bncTime _firstEpoTime;
103 bncTime _lastEpoTimeOK;
104};
105
106}
107
108#endif
Note: See TracBrowser for help on using the repository browser.