Changeset 9315 in ntrip for trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
- Timestamp:
- Dec 17, 2020, 3:30:05 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r9306 r9315 1059 1059 #ifdef BNC_DEBUG_BCEP 1060 1060 emit(newMessage(QString("%1: Block %2 (%3) SQRT_A %4 m!") 1061 .arg(_staID).arg(10 20,4).arg(eph._prn.toString().c_str())1061 .arg(_staID).arg(1019,4).arg(eph._prn.toString().c_str()) 1062 1062 .arg(eph._sqrt_A,10,'F',3).toLatin1(), true)); 1063 1063 #endif … … 1119 1119 GETBITS(eph._almanac_health, 1) /* almanac healthy */ 1120 1120 GETBITS(eph._almanac_health_availablility_indicator, 1) /* almanac health ok */ 1121 /* 1121 1122 if (eph._almanac_health_availablility_indicator == 0.0) { 1122 1123 #ifdef BNC_DEBUG_BCEP 1123 1124 emit(newMessage(QString("%1: Block %2 (%3): ALM = %4: missing data!") 1124 .arg(_staID).arg(10 19,4).arg(eph._prn.toString().c_str())1125 .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()) 1125 1126 .arg(eph._almanac_health_availablility_indicator).toLatin1(), true)); 1126 1127 #endif 1127 1128 return false; 1128 } 1129 }*/ 1129 1130 GETBITS(eph._P1, 2) /* P1 */ 1130 1131 GETBITS(i, 5) … … 1165 1166 #ifdef BNC_DEBUG_BCEP 1166 1167 emit(newMessage(QString("%1: Block %2 (%3): NT = %4: missing data!") 1167 .arg(_staID).arg(10 19,4).arg(eph._prn.toString().c_str()).arg(eph._M_NT,4).toLatin1(), true));1168 .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).arg(eph._M_NT,4).toLatin1(), true)); 1168 1169 #endif 1169 1170 return false; … … 1174 1175 #ifdef BNC_DEBUG_BCEP 1175 1176 emit(newMessage(QString("%1: Block %2 (%3): ADD = %4: missing data!") 1176 .arg(_staID).arg(10 19,4).arg(eph._prn.toString().c_str())1177 .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()) 1177 1178 .arg(eph._additional_data_availability).toLatin1(), true)); 1178 1179 #endif … … 1196 1197 #ifdef BNC_DEBUG_BCEP 1197 1198 emit(newMessage(QString("%1: Block %2 (%3): zero position!") 1198 .arg(_staID).arg(10 19,4).arg(eph._prn.toString().c_str()).toLatin1(), true));1199 .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).toLatin1(), true)); 1199 1200 #endif 1200 1201 return false; … … 1206 1207 #ifdef BNC_DEBUG_BCEP 1207 1208 emit(newMessage(QString("%1: Block %2 (%3): zero velocity!") 1208 .arg(_staID).arg(10 19,4).arg(eph._prn.toString().c_str()).toLatin1(), true));1209 .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).toLatin1(), true)); 1209 1210 #endif 1210 1211 return false;
Note:
See TracChangeset
for help on using the changeset viewer.