pyart.io.read_grid#
- pyart.io.read_grid(filename, exclude_fields=None, include_fields=None, **kwargs)[source]#
Read a netCDF grid file produced by Py-ART.
- Parameters:
filename (str) – Filename of netCDF grid file to read. This file must have been produced by
write_grid()
or have identical layout.- Other Parameters:
exclude_fields (list or None, optional) – List of fields to exclude from the radar object. This is applied after the file_field_names and field_names parameters. Set to None to include all fields specified by include_fields.
include_fields (list or None, optional) – List of fields to include from the radar object. This is applied after the file_field_names and field_names parameters. Set to None to include all fields not specified by exclude_fields.
- Returns:
grid (Grid) – Grid object containing gridded data.