Dump the content of a BUFR file in different formats.
bufr_dump [options] file file ...
JSON mode (JavaScript Object Notation). Options: s->structure, f->flat (only data), a->all attributes Default mode is structure.
Octet mode. WMO documentation style dump.
Print all data values.
Print only some values.
Print type information.
Force. Force the execution not to fail on error.
Print octet content in hexadecimal format.
Dump aliases.
Where clause. Messages are processed only if they match all the key/value constraints. A valid constraint is of type key=value or key!=value. For each key a string (key:s), a double (key:d) or an integer (key:i) type can be specified. Default type is string.
Key/values to set. For each key a string (key:s), a double (key:d) or an integer (key:i) type can be defined. By default the native type is set.
Does not fail when the message has wrong length
Version.
To dump BUFR messages into a flat JSON format.
> bufr_dump -jf ../data/bufr/aaen_55.bufr |
To dump BUFR messages into a structured JSON format.
> bufr_dump -js ../data/bufr/aaen_55.bufr |
To dump in a WMO documentation style with hexadecimal octet values (-H).
> bufr_dump -OH ../data/bufr/syno_1.bufr |
To add key type information (-t).
> bufr_dump -OtH ../data/bufr/syno_1.bufr |