Changeset 8708 in ntrip
- Timestamp:
- Apr 29, 2019, 3:32:08 PM (6 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r8702 r8708 1092 1092 GETFLOATSIGNM(eph._z_acceleration, 5, 1.0 / (double )(1 << 30)) 1093 1093 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 1101 1094 GETBITS(eph._P3, 1) /* P3 */ 1102 1095 GETFLOATSIGNM(eph._gamma, 11, 1.0 / (double )(1 << 30) / (double )(1 << 10)) … … 1121 1114 eph._gps_utc = gnumleap(year, month, day); 1122 1115 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; 1123 1123 1124 1124 GLOFreq[sv - 1] = 100 + eph._frequency_number ; /* store frequency for other users (MSM) */ 1125 1125 _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0); 1126 1126 1127 if (eph._xv.size() == 6) { 1128 emit newGlonassEph(eph); 1129 decoded = true; 1130 } 1127 emit newGlonassEph(eph); 1128 decoded = true; 1131 1129 } 1132 1130 return decoded; -
trunk/BNC/src/upload/bncuploadcaster.cpp
r8689 r8708 102 102 _outBuffer.clear(); 103 103 } 104 msleep( 200); //sleep 0.2sec104 msleep(100); //sleep 0.1 sec 105 105 } 106 106 else {
Note:
See TracChangeset
for help on using the changeset viewer.