Ignore:
Timestamp:
Sep 6, 2018, 9:51:48 AM (6 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r8473 r8475  
    10711071    GETFLOATSIGNM(eph._z_pos, 27, 1.0 / (double )(1 << 11))
    10721072    GETFLOATSIGNM(eph._z_acceleration, 5, 1.0 / (double )(1 << 30))
     1073
     1074    eph._xv(1) = eph._x_pos * 1.e3;
     1075    eph._xv(2) = eph._y_pos * 1.e3;
     1076    eph._xv(3) = eph._z_pos * 1.e3;
     1077    eph._xv(4) = eph._x_velocity * 1.e3;
     1078    eph._xv(5) = eph._y_velocity * 1.e3;
     1079    eph._xv(6) = eph._z_velocity * 1.e3;
     1080
    10731081    GETBITS(eph._P3, 1)    /* P3 */
    10741082    GETFLOATSIGNM(eph._gamma, 11, 1.0 / (double )(1 << 30) / (double )(1 << 10))
     
    10941102    eph._tt = eph._TOC;
    10951103
    1096     eph._xv(1) = eph._x_pos * 1.e3;
    1097     eph._xv(2) = eph._y_pos * 1.e3;
    1098     eph._xv(3) = eph._z_pos * 1.e3;
    1099     eph._xv(4) = eph._x_velocity * 1.e3;
    1100     eph._xv(5) = eph._y_velocity * 1.e3;
    1101     eph._xv(6) = eph._z_velocity * 1.e3;
    1102 
    1103    GLOFreq[sv - 1] = 100 + eph._frequency_number ; /* store frequency for other users (MSM) */
     1104    GLOFreq[sv - 1] = 100 + eph._frequency_number ; /* store frequency for other users (MSM) */
    11041105    _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0);
    11051106
Note: See TracChangeset for help on using the changeset viewer.