Ignore:
Timestamp:
Nov 17, 2017, 1:58:23 PM (6 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r8183 r8186  
    10461046    GETBITS(i, 5)
    10471047    eph._frequency_number = i - 7;
    1048     GLOFreq[sv - 1] = 100 + i - 7; /* store frequency for other users (MSM) */
    1049     _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(
    1050         eph._frequency_number, 2, 'f', 0);
    10511048    GETBITS(eph._almanac_health, 1) /* almanac healthy */
    10521049    GETBITS(eph._almanac_health_availablility_indicator, 1) /* almanac health ok */
     
    11021099    eph._xv(5) = eph._y_velocity * 1.e3;
    11031100    eph._xv(6) = eph._z_velocity * 1.e3;
     1101
     1102    GLOFreq[sv - 1] = 100 + eph._frequency_number ; /* store frequency for other users (MSM) */
     1103    _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0);
    11041104
    11051105    emit newGlonassEph(eph);
Note: See TracChangeset for help on using the changeset viewer.