...
| Excerpt | ||
|---|---|---|
| ||
In a BUFR message it is possible to have an optional section 2 to be used as local section for information that is relevant for the processing and archiving systems used by a processing centre. Adding or removing a local section from a BUFR message is very easy with ecCodes by setting the key "section2Present". The following bufr_set example will add a local section |
In a BUFR message it is possible to have an optional section 2 to be used as local section for information that is relevant for the processing and archiving systems used by a processing centre. Adding or removing a local section from a BUFR message is very easy with ecCodes by setting the key "section2Present". The following bufr_set example will add a local section:
| Code Block | ||
|---|---|---|
| ||
% bufr_set -s section2Present=1 in.bufr out.bufr |
...
The following example will remove a local section:
| Code Block | ||
|---|---|---|
| ||
% bufr_set -s section2Present=0 in.bufr out.bufr |
...