Changeset 7611 in ntrip
- Timestamp:
- Dec 7, 2015, 5:50:04 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.h
r7169 r7611 15 15 public: 16 16 t_frqObs() { 17 _code = 0.0; 18 _codeValid = false; 19 _phase = 0.0; 20 _phaseValid = false; 21 _doppler = 0.0; 22 _dopplerValid = false; 23 _snr = 0.0; 24 _snrValid = false; 25 _slip = false; 26 _slipCounter = 0; 17 _code = 0.0; 18 _codeValid = false; 19 _phase = 0.0; 20 _phaseValid = false; 21 _doppler = 0.0; 22 _dopplerValid = false; 23 _snr = 0.0; 24 _snrValid = false; 25 _slip = false; 26 _slipCounter = 0; 27 27 _biasJumpCounter = 0; 28 28 } 29 std::string _rnxType2ch; 30 double _code; 31 bool _codeValid; 32 double _phase; 33 bool _phaseValid; 34 double _doppler; 35 bool _dopplerValid; 36 double _snr; 37 bool _snrValid; 38 bool _slip; 39 int _slipCounter; 29 std::string _rnxType2ch; 30 double _code; 31 bool _codeValid; 32 double _phase; 33 bool _phaseValid; 34 double _doppler; 35 bool _dopplerValid; 36 double _snr; 37 bool _snrValid; 38 bool _slip; 39 int _slipCounter; 40 40 int _biasJumpCounter; 41 41 }; … … 92 92 char _system; 93 93 ColumnVector _xr; 94 ColumnVector _dotXr; 94 ColumnVector _dotXr; 95 95 }; 96 96 … … 113 113 public: 114 114 t_frqCodeBias() { 115 _value = 0.0; 115 _value = 0.0; 116 116 } 117 117 std::string _rnxType2ch; … … 133 133 public: 134 134 t_frqPhaseBias() { 135 _value = 0.0; 135 _value = 0.0; 136 136 _fixIndicator = 0; 137 137 _fixWideLaneIndicator = 0; … … 169 169 class t_vTecLayer { 170 170 public: 171 t_vTecLayer() { 172 _height = 0.0; 173 } 171 174 double _height; 172 175 Matrix _C;
Note:
See TracChangeset
for help on using the changeset viewer.