iris.fileformats.nimrod

Provides NIMROD file format capabilities.

In this module:

iris.fileformats.nimrod.load_cubes(filenames, callback=None)[source]

Loads cubes from a list of NIMROD filenames.

Args:

  • filenames - list of NIMROD filenames to load

Kwargs:

Note

The resultant cubes may not be in the same order as in the files.

↑ top ↑

A data field from a NIMROD file.

Capable of converting itself into a Cube

References:

Met Office (2003): Met Office Rain Radar Data from the NIMROD System. NCAS British Atmospheric Data Centre, date of citation. http://catalogue.ceda.ac.uk/uuid/82adec1f896af6169112d09cc1174499

class iris.fileformats.nimrod.NimrodField(from_file=None)[source]

Create a NimrodField object and optionally read from an open file.

Example:

with open("nimrod_file", "rb") as infile:
    field = NimrodField(infile)
read(infile)[source]

Read the next field from the given file object.