Versions Compared

Key

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


Warning

Note: The high-level Python interface was always experimental and has been removed (from version 1.4.0).
Please use metview, cfgrib and/or pdbufr instead.

Deprecated Python classes

The following Python classes have been removed:In addition to the low-level C-like interface, there are now Python classes that can be used to represent the objects of interest whilst processing GRIB and BUFR messages.

GribFile and BufrFile: Classes that implement access to a GRIB/BUFR file that closes itself and its messages when it is no longer needed.

GribMessage and BufrMessage: Classes that implement access to a GRIB/BUFR message.

GribIndex: A class that implements a GRIB index that allows access to the message's key-value pairs in a dictionary-like manner and closes the message when it is no longer needed, coordinating this with its host file.

 

GribFiles and BufrFiles can be treated mostly as regular files and used as context managers, as can GribMessages/BufrMessages. Each of these classes destructs itself and any child instances appropriately.

 

Details

 

...

directionhorizontal
Tabs Page
titleGribFile
Code Block
languagepy
linenumberstrue
class GribFile
# A GRIB file handle meant for use in a context manager.
# Individual messages can be accessed using the ``next`` method. Of course,
# it is also possible to iterate over each message in the file::

>>> with GribFile(filename) as grib:
...     # Print number of messages in file
...     len(grib)
...     # Open all messages in file
...     for msg in grib:
...         print(msg[key_name])
...     len(grib.open_messages)
>>> # When the file is closed, any open messages are closed
>>> len(grib.open_messages)
Tabs Page
titleGribMessage

 

Tabs Page
titleBufrFile

 

indexing functionality.


These were in the directory "eccodes/high_level".

...

titleBufrMessage

...