Ignore:
Timestamp:
Nov 20, 2014, 2:07:01 PM (9 years ago)
Author:
stoecker
Message:

support type 1043 sbas ephemeris

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/rtcm3torinex/lib/rtcm3torinex.h

    r5674 r6329  
    401401};
    402402
     403struct sbasephemeris {
     404  int    satellite;
     405  int    IODN;             /*          [bits  14- 21] */
     406  int    GPSweek_TOE;
     407  int    TOW;
     408  int    TOE;              /*  [s]     [bits  22- 34] */
     409  double agf0;             /*  [s]     [bits 206-217] */
     410  double agf1;             /*  [s/s]   [bits 218-225] */
     411  double x_pos;            /*  [km]    [bits  39- 68] */
     412  double x_velocity;       /*  [km/s]  [bits 124-140] */
     413  double x_acceleration;   /*  [km/s^2][bits 176-185] */
     414  double y_pos;            /*  [km]    [bits  69- 98] */
     415  double y_velocity;       /*  [km/s]  [bits 141-157] */
     416  double y_acceleration;   /*  [km/s^2][bits 186-195] */
     417  double z_pos;            /*  [km]    [bits  99-123] */
     418  double z_velocity;       /*  [km/s]  [bits 158-175] */
     419  double z_acceleration;   /*  [km/s^2][bits 196-205] */
     420  int    URA;              /*          [bits  35- 38] */
     421};
     422
    403423struct galileoephemeris {
    404424  int    flags;            /* GALEPHF_xxx */
     
    451471  struct galileoephemeris ephemerisGALILEO;
    452472  struct glonassephemeris ephemerisGLONASS;
     473  struct sbasephemeris ephemerisSBAS;
    453474  struct gnssdata DataNew;
    454475  int    GLOFreq[PRN_GLONASS_NUM]; /* frequency numbers of GLONASS + 100 */
     
    493514  const char * gpsephemeris;
    494515  const char * qzssephemeris;
     516  const char * sbasephemeris;
    495517  FILE *       glonassfile;
    496518  FILE *       gpsfile;
    497519  FILE *       qzssfile;
     520  FILE *       sbasfile;
    498521};
    499522
Note: See TracChangeset for help on using the changeset viewer.