Ignore:
Timestamp:
Jul 15, 2020, 9:24:30 AM (4 years ago)
Author:
stuerze
Message:

intial imprort for igs ssr encoding and decoding

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/clock_and_orbit/clock_orbit_rtcm.h

    r8969 r8970  
    3838
    3939enum ClockOrbitType {
    40   COTYPE_GPSORBIT        = COBBASE_GPS + COBOFS_ORBIT,
     40  COTYPE_GPSORBIT        = COBBASE_GPS     + COBOFS_ORBIT,
    4141  COTYPE_GPSCLOCK,
    42   COTYPE_GPSCOMBINED     = COBBASE_GPS + COBOFS_COMBINED,
     42  COTYPE_GPSCOMBINED     = COBBASE_GPS     + COBOFS_COMBINED,
    4343  COTYPE_GPSURA,
    4444  COTYPE_GPSHR,
     
    5656  COTYPE_GALILEOHR,
    5757
    58   COTYPE_QZSSORBIT       = COBBASE_QZSS + COBOFS_ORBIT,
     58  COTYPE_QZSSORBIT       = COBBASE_QZSS    + COBOFS_ORBIT,
    5959  COTYPE_QZSSCLOCK,
    60   COTYPE_QZSSCOMBINED    = COBBASE_QZSS + COBOFS_COMBINED,
     60  COTYPE_QZSSCOMBINED    = COBBASE_QZSS    + COBOFS_COMBINED,
    6161  COTYPE_QZSSURA,
    6262  COTYPE_QZSSHR,
    6363
    64   COTYPE_SBASORBIT       = COBBASE_SBAS + COBOFS_ORBIT,
     64  COTYPE_SBASORBIT       = COBBASE_SBAS    + COBOFS_ORBIT,
    6565  COTYPE_SBASCLOCK,
    66   COTYPE_SBASCOMBINED    = COBBASE_SBAS + COBOFS_COMBINED,
     66  COTYPE_SBASCOMBINED    = COBBASE_SBAS    + COBOFS_COMBINED,
    6767  COTYPE_SBASURA,
    6868  COTYPE_SBASHR,
    6969
    70   COTYPE_BDSORBIT        = COBBASE_BDS + COBOFS_ORBIT,
     70  COTYPE_BDSORBIT        = COBBASE_BDS     + COBOFS_ORBIT,
    7171  COTYPE_BDSCLOCK,
    7272  COTYPE_BDSCOMBINED     = COBBASE_BDS + COBOFS_COMBINED,
     
    248248xxx->Sat[CLOCKORBIT_OFFSETGPS]. */
    249249
    250 #ifdef COR_LEGACY
    251 /* old names */
    252 #define NumberOfGPSSat     NumberOfSat[CLOCKORBIT_SATGPS]
    253 #define NumberOfGLONASSSat NumberOfSat[CLOCKORBIT_SATGLONASS]
    254 #define GPSEpochTime       EpochTime[CLOCKORBIT_SATGPS] /* 0 .. 604799 s */
    255 #define GLONASSEpochTime   EpochTime[CLOCKORBIT_SATGLONASS] /* 0 .. 86399 s (86400 for leap second) */
    256 #define ClockDataSupplied  Supplied[COBOFS_CLOCK]
    257 #define HRDataSupplied     Supplied[COBOFS_HR]
    258 #define OrbitDataSupplied  Supplied[COBOFS_ORBIT]
    259 #define URADataSupplied    Supplied[COBOFS_URA]
    260 #define GetClockOrbitBias(a,b,c,d,e) GetSSR(a,b,0,0,c,d,e)
    261 #endif /* COR_LEGACY */
    262 
    263 /* latency check code, disabled by default */
    264 #ifdef COR_LATENCY
    265 #define COR_LATENCYCOUNT 100
    266 #endif
    267 
    268250struct ClockOrbit {
    269251  enum ClockOrbitType messageType;
     
    271253  unsigned int NumberOfSat[CLOCKORBIT_SATNUM]; /* 0 .. CLOCKORBIT_NUM... */
    272254  unsigned int Supplied[COBOFS_NUM];           /* boolean */
    273 #ifdef COR_LATENCY
    274   unsigned int epochGPS[COR_LATENCYCOUNT+1];   /* Weber, for latency */
    275   unsigned int epochSize;                      /* Weber, for latency */
    276 #endif
    277255  unsigned int SSRIOD;
    278256  unsigned int SSRProviderID;
Note: See TracChangeset for help on using the changeset viewer.