ecmwf / pdbufr

High-level BUFR interface for ecCodes
Apache License 2.0
23 stars 8 forks source link

Allow to use range operators in filter conditions #10

Closed sandorkertesz closed 3 years ago

sandorkertesz commented 3 years ago

With this we could extract e.g. the airTemperature values in the rage of [250, 270]

alexamici commented 3 years ago

This is now available with filters={"airTemperature": slice(250, 270)} note that the start of the range is included and the end of the range is not.