[7237] | 1 | #ifndef PPPSATOBS_H
|
---|
| 2 | #define PPPSATOBS_H
|
---|
| 3 |
|
---|
| 4 | #include <string>
|
---|
| 5 | #include <map>
|
---|
| 6 | #include <newmat.h>
|
---|
| 7 | #include "pppInclude.h"
|
---|
| 8 | #include "satObs.h"
|
---|
| 9 | #include "bnctime.h"
|
---|
| 10 |
|
---|
| 11 | namespace BNC_PPP {
|
---|
| 12 |
|
---|
| 13 | class t_pppStation;
|
---|
| 14 |
|
---|
| 15 | class t_pppSatObs {
|
---|
| 16 | public:
|
---|
| 17 | t_pppSatObs(const t_satObs& satObs);
|
---|
| 18 | ~t_pppSatObs();
|
---|
| 19 | bool isValid() const {return _valid;};
|
---|
| 20 | bool isValid(t_lc::type tLC) const;
|
---|
[8905] | 21 | bool isReference() const {return _reference;};
|
---|
| 22 | void setAsReference() {_reference = true;};
|
---|
[7237] | 23 | const t_prn& prn() const {return _prn;}
|
---|
| 24 | const ColumnVector& xc() const {return _xcSat;}
|
---|
| 25 | const bncTime& time() const {return _time;}
|
---|
| 26 | t_irc cmpModel(const t_pppStation* station);
|
---|
| 27 | double obsValue(t_lc::type tLC, bool* valid = 0) const;
|
---|
| 28 | double cmpValue(t_lc::type tLC) const;
|
---|
| 29 | double cmpValueForBanc(t_lc::type tLC) const;
|
---|
| 30 | double rho() const {return _model._rho;}
|
---|
| 31 | double sagnac() const {return _model._sagnac;}
|
---|
| 32 | double eleSat() const {return _model._eleSat;}
|
---|
| 33 | bool modelSet() const {return _model._set;}
|
---|
| 34 | void printModel() const;
|
---|
[8905] | 35 | void printObsMinusComputed() const;
|
---|
[7836] | 36 | void lcCoeff(t_lc::type tLC,
|
---|
[7237] | 37 | std::map<t_frequency::type, double>& codeCoeff,
|
---|
[8905] | 38 | std::map<t_frequency::type, double>& phaseCoeff,
|
---|
| 39 | std::map<t_frequency::type, double>& ionoCoeff) const;
|
---|
[7237] | 40 | double lambda(t_lc::type tLC) const;
|
---|
| 41 | double sigma(t_lc::type tLC) const;
|
---|
| 42 | double maxRes(t_lc::type tLC) const;
|
---|
| 43 | bool outlier() const {return _outlier;}
|
---|
| 44 | void setOutlier() {_outlier = true;}
|
---|
| 45 | void setRes(t_lc::type tLC, double res);
|
---|
| 46 | double getRes(t_lc::type tLC) const;
|
---|
[8905] | 47 | void setPseudoObsIono(t_frequency::type freq, double stecRefSat);
|
---|
[8961] | 48 | void setPseudoObsTropo();
|
---|
[8905] | 49 | double getIonoCodeDelay(t_frequency::type freq) {return _model._ionoCodeDelay[freq];}
|
---|
[7237] | 50 |
|
---|
[7836] | 51 | // RINEX
|
---|
[7237] | 52 | bool slip() const {
|
---|
| 53 | for (unsigned ii = 1; ii < t_frequency::max; ii++) {
|
---|
| 54 | if (_obs[ii] && _obs[ii]->_slip) {
|
---|
| 55 | return true;
|
---|
| 56 | }
|
---|
| 57 | }
|
---|
| 58 | return false;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
[7836] | 61 | // RTCM
|
---|
[7237] | 62 | int slipCounter() const {
|
---|
| 63 | int cnt = -1;
|
---|
| 64 | for (unsigned ii = 1; ii < t_frequency::max; ii++) {
|
---|
| 65 | if (_obs[ii] && _obs[ii]->_slipCounter > cnt) {
|
---|
| 66 | cnt = _obs[ii]->_slipCounter;
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | return cnt;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | int biasJumpCounter() const {
|
---|
| 73 | int jmp = -1;
|
---|
| 74 | for (unsigned ii = 1; ii < t_frequency::max; ii++) {
|
---|
| 75 | if (_obs[ii] && _obs[ii]->_biasJumpCounter > jmp) {
|
---|
| 76 | jmp = _obs[ii]->_biasJumpCounter;
|
---|
| 77 | }
|
---|
| 78 | }
|
---|
| 79 | return jmp;
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | private:
|
---|
| 83 | class t_model {
|
---|
| 84 | public:
|
---|
| 85 | t_model() {reset();}
|
---|
| 86 | ~t_model() {}
|
---|
| 87 | void reset() {
|
---|
[8905] | 88 | _set = false;
|
---|
| 89 | _rho = 0.0;
|
---|
| 90 | _eleSat = 0.0;
|
---|
| 91 | _azSat = 0.0;
|
---|
| 92 | _recClkM = 0.0;
|
---|
| 93 | _satClkM = 0.0;
|
---|
| 94 | _sagnac = 0.0;
|
---|
| 95 | _antEcc = 0.0;
|
---|
| 96 | _tropo = 0.0;
|
---|
[8961] | 97 | _tropo0 = 0.0;
|
---|
[8905] | 98 | _tideEarth = 0.0;
|
---|
| 99 | _tideOcean = 0.0;
|
---|
| 100 | _windUp = 0.0;
|
---|
| 101 | _rel = 0.0;
|
---|
[7237] | 102 | for (unsigned ii = 0; ii < t_frequency::max; ii++) {
|
---|
[7250] | 103 | _antPCO[ii] = 0.0;
|
---|
| 104 | _codeBias[ii] = 0.0;
|
---|
| 105 | _phaseBias[ii] = 0.0;
|
---|
| 106 | _ionoCodeDelay[ii] = 0.0;
|
---|
[7237] | 107 | }
|
---|
| 108 | }
|
---|
| 109 | bool _set;
|
---|
| 110 | double _rho;
|
---|
| 111 | double _eleSat;
|
---|
| 112 | double _azSat;
|
---|
| 113 | double _recClkM;
|
---|
| 114 | double _satClkM;
|
---|
| 115 | double _sagnac;
|
---|
| 116 | double _antEcc;
|
---|
| 117 | double _tropo;
|
---|
[8961] | 118 | double _tropo0;
|
---|
[8905] | 119 | double _tideEarth;
|
---|
| 120 | double _tideOcean;
|
---|
[7237] | 121 | double _windUp;
|
---|
[8619] | 122 | double _rel;
|
---|
[7237] | 123 | double _antPCO[t_frequency::max];
|
---|
| 124 | double _codeBias[t_frequency::max];
|
---|
| 125 | double _phaseBias[t_frequency::max];
|
---|
[7250] | 126 | double _ionoCodeDelay[t_frequency::max];
|
---|
[7237] | 127 | };
|
---|
| 128 |
|
---|
| 129 | void prepareObs(const t_satObs& satObs);
|
---|
| 130 |
|
---|
| 131 | bool _valid;
|
---|
[8905] | 132 | bool _reference;
|
---|
[7237] | 133 | t_frequency::type _fType1;
|
---|
| 134 | t_frequency::type _fType2;
|
---|
| 135 | t_prn _prn;
|
---|
| 136 | bncTime _time;
|
---|
| 137 | int _channel;
|
---|
| 138 | t_frqObs* _obs[t_frequency::max];
|
---|
| 139 | ColumnVector _xcSat;
|
---|
| 140 | ColumnVector _vvSat;
|
---|
| 141 | t_model _model;
|
---|
| 142 | bool _outlier;
|
---|
| 143 | std::map<t_lc::type, double> _res;
|
---|
[7250] | 144 | double _signalPropagationTime;
|
---|
[8905] | 145 | double _stecRefSat;
|
---|
| 146 | double _stecSat;
|
---|
[8961] | 147 | double _tropo0;
|
---|
[7237] | 148 | };
|
---|
| 149 |
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | #endif
|
---|