Changeset 8186 in ntrip
- Timestamp:
- Nov 17, 2017, 1:58:23 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r8183 r8186 1046 1046 GETBITS(i, 5) 1047 1047 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);1051 1048 GETBITS(eph._almanac_health, 1) /* almanac healthy */ 1052 1049 GETBITS(eph._almanac_health_availablility_indicator, 1) /* almanac health ok */ … … 1102 1099 eph._xv(5) = eph._y_velocity * 1.e3; 1103 1100 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); 1104 1104 1105 1105 emit newGlonassEph(eph);
Note:
See TracChangeset
for help on using the changeset viewer.