wradlib.io.iris.read_iris¶
- wradlib.io.iris.read_iris(filename, loaddata=True, rawdata=False, debug=False, keep_old_sweep_data=None, **kwargs)¶
Read Iris file and return dictionary.
- Parameters:
filename (
stror file-like) – Filename of data file or file-like object.loaddata (
boolordict) – If true, retrieves whole data section from file. If false, retrievs only ingest_data_headers, but no data. If dict, retrieves according to given dict:loaddata = {'moment': ['DB_DBZ', 'DB_VEL'], 'sweep': [1, 3, 9]}
rawdata (
bool) – If true, returns raw unconverted/undecoded data.debug (
bool) – If true, print debug messages.keep_old_sweep_data (
bool) – If true, keeps oldsweep_datastructure. Defaults to False. This will change to True in a future version.
- Returns:
data (
dict) – Ordered Dictionary with data and metadata retrieved from file.