[6135] | 1 | #ifndef PPPSATOBS_H
|
---|
| 2 | #define PPPSATOBS_H
|
---|
[5743] | 3 |
|
---|
| 4 | #include <string>
|
---|
| 5 | #include <map>
|
---|
| 6 | #include <newmat.h>
|
---|
[5810] | 7 | #include "pppInclude.h"
|
---|
[6135] | 8 | #include "satObs.h"
|
---|
[5743] | 9 | #include "bnctime.h"
|
---|
| 10 |
|
---|
[5814] | 11 | namespace BNC_PPP {
|
---|
[5743] | 12 |
|
---|
[5810] | 13 | class t_pppStation;
|
---|
[5743] | 14 |
|
---|
[5819] | 15 | class t_pppSatObs {
|
---|
[5743] | 16 | public:
|
---|
[5823] | 17 | t_pppSatObs(const t_satObs& satObs);
|
---|
[5819] | 18 | ~t_pppSatObs();
|
---|
[6023] | 19 | bool isValid() const {return _valid;};
|
---|
[6020] | 20 | bool isValid(t_lc::type tLC) const;
|
---|
[5743] | 21 | const t_prn& prn() const {return _prn;}
|
---|
| 22 | const ColumnVector& xc() const {return _xcSat;}
|
---|
| 23 | const bncTime& time() const {return _time;}
|
---|
[5810] | 24 | t_irc cmpModel(const t_pppStation* station);
|
---|
[6027] | 25 | double obsValue(t_lc::type tLC, bool* valid = 0) const;
|
---|
[5743] | 26 | double cmpValue(t_lc::type tLC) const;
|
---|
| 27 | double cmpValueForBanc(t_lc::type tLC) const;
|
---|
| 28 | double rho() const {return _model._rho;}
|
---|
| 29 | double sagnac() const {return _model._sagnac;}
|
---|
| 30 | double eleSat() const {return _model._eleSat;}
|
---|
| 31 | bool modelSet() const {return _model._set;}
|
---|
| 32 | void printModel() const;
|
---|
[6021] | 33 | void lcCoeff(t_lc::type tLC,
|
---|
| 34 | std::map<t_frequency::type, double>& codeCoeff,
|
---|
| 35 | std::map<t_frequency::type, double>& phaseCoeff) const;
|
---|
[5743] | 36 | double lambda(t_lc::type tLC) const;
|
---|
| 37 | double sigma(t_lc::type tLC) const;
|
---|
[5916] | 38 | double maxRes(t_lc::type tLC) const;
|
---|
[5743] | 39 | bool outlier() const {return _outlier;}
|
---|
| 40 | void setOutlier() {_outlier = true;}
|
---|
| 41 | void setRes(t_lc::type tLC, double res);
|
---|
| 42 | double getRes(t_lc::type tLC) const;
|
---|
| 43 |
|
---|
| 44 | bool slip() const {
|
---|
[6017] | 45 | for (unsigned ii = 1; ii < t_frequency::max; ii++) {
|
---|
| 46 | if (_obs[ii] && _obs[ii]->_slip) {
|
---|
[5743] | 47 | return true;
|
---|
| 48 | }
|
---|
| 49 | }
|
---|
| 50 | return false;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | int slipCounter() const {
|
---|
| 54 | int cnt = -1;
|
---|
[6017] | 55 | for (unsigned ii = 1; ii < t_frequency::max; ii++) {
|
---|
| 56 | if (_obs[ii] && _obs[ii]->_slipCounter > cnt) {
|
---|
| 57 | cnt = _obs[ii]->_slipCounter;
|
---|
[5743] | 58 | }
|
---|
| 59 | }
|
---|
| 60 | return cnt;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | int biasJumpCounter() const {
|
---|
| 64 | int jmp = -1;
|
---|
[6017] | 65 | for (unsigned ii = 1; ii < t_frequency::max; ii++) {
|
---|
| 66 | if (_obs[ii] && _obs[ii]->_biasJumpCounter > jmp) {
|
---|
| 67 | jmp = _obs[ii]->_biasJumpCounter;
|
---|
[5743] | 68 | }
|
---|
| 69 | }
|
---|
| 70 | return jmp;
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | private:
|
---|
| 74 | class t_model {
|
---|
| 75 | public:
|
---|
| 76 | t_model() {reset();}
|
---|
| 77 | ~t_model() {}
|
---|
| 78 | void reset() {
|
---|
| 79 | _set = false;
|
---|
| 80 | _rho = 0.0;
|
---|
| 81 | _eleSat = 0.0;
|
---|
| 82 | _azSat = 0.0;
|
---|
| 83 | _recClkM = 0.0;
|
---|
| 84 | _satClkM = 0.0;
|
---|
| 85 | _sagnac = 0.0;
|
---|
| 86 | _antEcc = 0.0;
|
---|
| 87 | _tropo = 0.0;
|
---|
| 88 | _tide = 0.0;
|
---|
| 89 | _windUp = 0.0;
|
---|
[6022] | 90 | for (unsigned ii = 0; ii < t_frequency::max; ii++) {
|
---|
| 91 | _antPCO[ii] = 0.0;
|
---|
| 92 | _codeBias[ii] = 0.0;
|
---|
| 93 | _phaseBias[ii] = 0.0;
|
---|
| 94 | }
|
---|
[5743] | 95 | }
|
---|
| 96 | bool _set;
|
---|
| 97 | double _rho;
|
---|
| 98 | double _eleSat;
|
---|
| 99 | double _azSat;
|
---|
| 100 | double _recClkM;
|
---|
| 101 | double _satClkM;
|
---|
| 102 | double _sagnac;
|
---|
| 103 | double _antEcc;
|
---|
| 104 | double _tropo;
|
---|
| 105 | double _tide;
|
---|
| 106 | double _windUp;
|
---|
[6022] | 107 | double _antPCO[t_frequency::max];
|
---|
| 108 | double _codeBias[t_frequency::max];
|
---|
| 109 | double _phaseBias[t_frequency::max];
|
---|
[5743] | 110 | };
|
---|
| 111 |
|
---|
[6017] | 112 | void prepareObs(const t_satObs& satObs);
|
---|
| 113 |
|
---|
[6023] | 114 | bool _valid;
|
---|
[6026] | 115 | t_frequency::type _fType1;
|
---|
| 116 | t_frequency::type _fType2;
|
---|
[5830] | 117 | t_prn _prn;
|
---|
| 118 | bncTime _time;
|
---|
| 119 | int _channel;
|
---|
[6017] | 120 | t_frqObs* _obs[t_frequency::max];
|
---|
[5830] | 121 | ColumnVector _xcSat;
|
---|
| 122 | ColumnVector _vvSat;
|
---|
| 123 | t_model _model;
|
---|
| 124 | bool _outlier;
|
---|
| 125 | std::map<t_lc::type, double> _res;
|
---|
[5743] | 126 | };
|
---|
| 127 |
|
---|
| 128 | }
|
---|
| 129 |
|
---|
| 130 | #endif
|
---|