Changeset 10998 in ntrip for trunk/BNC/src/satObs.h
- Timestamp:
- Aug 28, 2026, 9:23:41 PM (13 days ago)
- File:
-
- 1 edited
-
trunk/BNC/src/satObs.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.h
r10993 r10998 104 104 }; 105 105 106 // SSR source format, shared by orbit corrections and phase biases: governs the 107 // relativistic-correction formula for orbits (velocity-based per IS-GPS-200D 108 // 20.3.3.3.3.1 for RTCM-SSR/RTCM-SSR-new, classic eccentricity-based otherwise) 109 // and the applicable parameter set for phase biases (old vs new RTCM-SSR). 110 enum e_ssrFormat {ssrUnknown = 0, ssrRtcmOld = 1, ssrRtcmNew = 2}; 111 106 112 class t_orbCorr { 107 113 public: … … 117 123 ColumnVector _xr; 118 124 ColumnVector _dotXr; 119 bool _rtcmSsr; // true: RTCM-SSR/RTCM-SSR-new source (velocity-based relativistic 120 // correction per IS-GPS-200D 20.3.3.3.3.1); false: IGS-SSR or 121 // unknown source (classic eccentricity-based correction) 125 e_ssrFormat _ssrFormat; 122 126 }; 123 127 … … 192 196 t_satPhaseBias() { 193 197 _updateInt = 0; 198 _ssrFormat = ssrUnknown; 194 199 _dispBiasConstistInd = 0; 195 200 _MWConsistInd = 0; … … 203 208 bncTime _time; 204 209 unsigned int _updateInt; // not satellite specific 210 e_ssrFormat _ssrFormat; // not satellite specific 205 211 unsigned int _dispBiasConstistInd; // not satellite specific 206 212 unsigned int _MWConsistInd; // not satellite specific
Note:
See TracChangeset
for help on using the changeset viewer.
