Changeset 10534 in ntrip for trunk/BNC/src/RTCM3/RTCM3Decoder.h
- Timestamp:
- Sep 17, 2024, 4:56:38 PM (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.h
r9287 r10534 32 32 #include "GPSDecoder.h" 33 33 #include "RTCM3coDecoder.h" 34 #include "crs.h" 34 35 #include "bncrawfile.h" 35 36 #include "ephemeris.h" … … 167 168 */ 168 169 bool DecodeAntennaPosition(unsigned char* buffer, int bufLen); 169 170 /** 171 * Extract service CRS from 1300 RTCM3 messages 172 * @param buffer the buffer containing CRS name and epoch RTCM block 173 * @param bufLen the length of the buffer (the message length including header+crc) 174 * @return <code>true</code> when data block was decodable 175 */ 176 bool DecodeServiceCRS(unsigned char* buffer, int bufLen); 177 /** 178 * Extract Helmert transformation parameters from 1301 RTCM3 messages 179 * @param buffer the buffer containing Helmert transformation parameters RTCM block 180 * @param bufLen the length of the buffer (the message length including header+crc) 181 * @return <code>true</code> when data block was decodable 182 */ 183 bool DecodeHelmertTrafoParameters(unsigned char* buffer, int bufLen); 184 /** 185 * Extract RTCM CRS data from 1302 RTCM3 messages 186 * @param buffer the buffer containing a database link RTCM block 187 * @param bufLen the length of the buffer (the message length including header+crc) 188 * @return <code>true</code> when data block was decodable 189 */ 190 bool DecodeRTCMCRS(unsigned char* buffer, int bufLen); 170 191 /** Current station description, dynamic in case of raw input file handling */ 171 192 QString _staID; … … 197 218 */ 198 219 QList<t_satObs> _CurrentObsList; 220 199 221 }; 200 222
Note:
See TracChangeset
for help on using the changeset viewer.