Changeset 8475 in ntrip for branches/BNC_2.12
- Timestamp:
- Sep 6, 2018, 9:51:48 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp
r8473 r8475 1071 1071 GETFLOATSIGNM(eph._z_pos, 27, 1.0 / (double )(1 << 11)) 1072 1072 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 1073 1081 GETBITS(eph._P3, 1) /* P3 */ 1074 1082 GETFLOATSIGNM(eph._gamma, 11, 1.0 / (double )(1 << 30) / (double )(1 << 10)) … … 1094 1102 eph._tt = eph._TOC; 1095 1103 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) */ 1104 1105 _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0); 1105 1106
Note:
See TracChangeset
for help on using the changeset viewer.