Versions Compared

Key

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

...

Specifies the number of custom conditions for message/subset filtering. The default value is 0, which means no custom condition is defined. In custom condition any BUFR key can be used. The example below illustrates how it works:

...

titleCustom condition example

Let us suppose we have radiosonde data and we want to filter the messages/subsets which have any temperature value greater 300 K (these messages contain multiple temperature values). The custom condition to implement it looks like this:

CUSTOM_CONDITION_COUNT: 1

CUSTOM_KEY: airTemperature

CUSTOM_RANK: ANY

...

:

...

CUSTOM_VALUE: 300

If we would like to find the messages/subsets where the first temperature value is above 300 K the rank should be set accordingly:

CUSTOM_CONDITION_COUNT: 1

CUSTOM_KEY: airTemperature

CUSTOM_RANK: 1

CUSTOM_OPERATOR: >

...

CUSTOM_KEY_N

Specify the BUFR key used in the given custom condition.

...