Ignore:
Timestamp:
Jul 20, 2020, 3:54:44 PM (4 years ago)
Author:
stuerze
Message:

initial import igs ssr encoding and decoding + debug output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp

    r8938 r8987  
    14291429    GETFLOATSIGN(eph._omega, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
    14301430    GETFLOATSIGN(eph._OMEGADOT, 24, R2R_PI/(double)(1<<30)/(double)(1<<13))
    1431     GETFLOATSIGN(eph._BGD_1_5A, 10,
    1432         1.0 / (double )(1 << 30) / (double )(1 << 2))
     1431    GETFLOATSIGN(eph._BGD_1_5A, 10, 1.0 / (double )(1 << 30) / (double )(1 << 2))
    14331432    if (eph._inav) {
    14341433      /* set unused F/NAV values */
     
    16241623       * extracted data block. That does no harm, as it anyway skip everything
    16251624       * else. */
    1626       if ((id >= 1057 && id <= 1068) || (id >= 1240 && id <= 1270)) {
     1625      if ((id >= 1057 && id <= 1068) ||
     1626          (id >= 1240 && id <= 1270) ||
     1627          (id == 4076)) {
    16271628        if (!_coDecoders.contains(_staID.toAscii()))
    16281629          _coDecoders[_staID.toAscii()] = new RTCM3coDecoder(_staID);
Note: See TracChangeset for help on using the changeset viewer.