Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Copies the content of BUFR files printing values of some keys. If the name of the output_bufr_file contains a key enclosed in square brackets, its value will be used.

USAGE

bufr_copy [options] bufr_file bufr_file ... output_bufr_file

OPTIONS

...

Force. Force the execution not to fail on error.

...

Declaration of keys to print. For each key a string (key:s) or , a double (key:d) or a long an integer (key:li) type can be requested. Default type is string.

...

Key/values to set. For each key a string (key:s) or , a double (key:d) or a long an integer (key:li) type can be defined. By default the native type is set.

...

Where clause. Only BUFR messages matching the key/value constraints are copied to the output_bufr_file. For each key a string (key:s) or , a double (key:d) or a long an integer (key:li) 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 asc, centre desc" (step ascending and centre descending) Note: only one -w clause is allowed.

...

Version.

...

Minimum width of each column in output. Default is 10.

...

Does not fail when the message has wrong length

...

Input file offset in bytes. Processing of the input file will start from "offset".

...

Verbose.

bufr_copy examples

  1. To copy only the SYNOP messages from a file

    Code Block
    >  bufr_copy -w dataCategory=0 in.bufr out.bufr
    


  2. To copy only the non-SYNOP messages from a file

    Code Block
    >  bufr_copy -w dataCategory!=0 in.bufr out.bufr
    


  3. 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'