...
Where clause. Only BUFR messages matching the key/value constraints are copied to the output_bufr_file. For each key a string (key:s), a double (key:d) or an integer (key:i) type can be defined. Default type is string.
...
Order by. The output will be ordered according to the order by directive. Order by example: "step:i asc, centre desc" (step numeric ascending and centre descending) Note: only one -w clause is allowed.
...
Version.
...
Minimum width of each column in output. Default is 10.
...
To copy only the SYNOP messages from a file
Code Block > bufr_copy -w dataCategory=0 in.bufr out.bufr
To copy only the non-SYNOP messages from a file
Code Block > bufr_copy -w dataCategory!=0 in.bufr out.bufr
Use the square brackets to insert the value of a key in the name of the output file.
Code Block > bufr_copy in.bufr 'out_[dataCategory].bufr'