Functions | |
| void | bufr_encoding_sample (radar_data_t *src_data, bufr_t *bufr_msg) |
| Sample for encoding a BUFR message. | |
| void | bufr_decoding_sample (bufr_t *msg, radar_data_t *data) |
| Sample for decoding a BUFR message. | |
| void bufr_encoding_sample | ( | radar_data_t * | src_data, | |
| bufr_t * | bufr_msg | |||
| ) |
This function encodes sample data to a BUFR message and saves the results to a file apisample.bfr, also returns the encoded message.
| [in] | src_data | Our source data. |
| [out] | bufr_msg | Our encoded BUFR message. |
Definition at line 95 of file apisample.c.
| void bufr_decoding_sample | ( | bufr_t * | msg, | |
| radar_data_t * | data | |||
| ) |
This function decodes a BUFR message and stores the values in our sample radar data structure. Also saves the result to a file.
| [in] | msg | Our encoded BUFR message. |
| [out] | data | Our source data. |
Definition at line 177 of file apisample.c.
1.5.4