Changeset 10998 in ntrip for trunk/BNC/src/satObs.h


Ignore:
Timestamp:
Aug 28, 2026, 9:23:41 PM (13 days ago)
Author:
stuerze
Message:

minor changes regarding RTCM-SSR

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/satObs.h

    r10993 r10998  
    104104};
    105105
     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).
     110enum e_ssrFormat {ssrUnknown = 0, ssrRtcmOld = 1, ssrRtcmNew = 2};
     111
    106112class t_orbCorr {
    107113 public:
     
    117123  ColumnVector   _xr;
    118124  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;
    122126};
    123127
     
    192196  t_satPhaseBias() {
    193197    _updateInt  = 0;
     198    _ssrFormat  = ssrUnknown;
    194199    _dispBiasConstistInd = 0;
    195200    _MWConsistInd = 0;
     
    203208  bncTime                     _time;
    204209  unsigned int                _updateInt;           // not satellite specific
     210  e_ssrFormat                 _ssrFormat;           // not satellite specific
    205211  unsigned int                _dispBiasConstistInd; // not satellite specific
    206212  unsigned int                _MWConsistInd;        // not satellite specific
Note: See TracChangeset for help on using the changeset viewer.