Ignore:
Timestamp:
Apr 29, 2019, 3:32:08 PM (5 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3Decoder.cpp

    r8702 r8708  
    10921092    GETFLOATSIGNM(eph._z_acceleration, 5, 1.0 / (double )(1 << 30))
    10931093
    1094     eph._xv(1) = eph._x_pos * 1.e3;
    1095     eph._xv(2) = eph._y_pos * 1.e3;
    1096     eph._xv(3) = eph._z_pos * 1.e3;
    1097     eph._xv(4) = eph._x_velocity * 1.e3;
    1098     eph._xv(5) = eph._y_velocity * 1.e3;
    1099     eph._xv(6) = eph._z_velocity * 1.e3;
    1100 
    11011094    GETBITS(eph._P3, 1)    /* P3 */
    11021095    GETFLOATSIGNM(eph._gamma, 11, 1.0 / (double )(1 << 30) / (double )(1 << 10))
     
    11211114    eph._gps_utc = gnumleap(year, month, day);
    11221115    eph._tt = eph._TOC;
     1116   
     1117    eph._xv(1) = eph._x_pos * 1.e3;
     1118    eph._xv(2) = eph._y_pos * 1.e3;
     1119    eph._xv(3) = eph._z_pos * 1.e3;
     1120    eph._xv(4) = eph._x_velocity * 1.e3;
     1121    eph._xv(5) = eph._y_velocity * 1.e3;
     1122    eph._xv(6) = eph._z_velocity * 1.e3;
    11231123
    11241124    GLOFreq[sv - 1] = 100 + eph._frequency_number ; /* store frequency for other users (MSM) */
    11251125    _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0);
    11261126
    1127     if (eph._xv.size() == 6) {
    1128       emit newGlonassEph(eph);
    1129       decoded = true;
    1130     }
     1127    emit newGlonassEph(eph);
     1128    decoded = true;
    11311129  }
    11321130  return decoded;
Note: See TracChangeset for help on using the changeset viewer.