Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 782 Bytes

bufr.rst

File metadata and controls

31 lines (18 loc) · 782 Bytes

BUFR object

.. py:class:: Bufr

   Metview's Bufr object represents BUFR data. As this format is very complicated to work with,
   its only method is :py:meth:`write`.

   Some Bufr objects can also be plotted directly if they conform to certain standards.

   Bufr objects can also be passed to the :py:meth:`thermo_bufr` function in order to compute
   a thermodynamic diagram.

   To work directly with the values of BUFR data in Metview, you must filter it using one of Metview's filters.

Construction

A BUFR file can be read from disk using :ref:`read() <read_fn>`:

import metview as mv

bu = mv.read("obs.bufr")

Methods and functions