wradlib.io.radolan.open_radolan_mfdataset¶
- wradlib.io.radolan.open_radolan_mfdataset(paths, **kwargs)¶
Open multiple RADOLAN files as a single dataset.
Needs
daskpackage to be installed [1].- Parameters:
paths (
stror sequence) – Either a string glob in the form"path/to/my/files/*"or an explicit list of files to open. Paths can be given as strings or as pathlib Paths.- Keyword Arguments:
fillmissing (
bool) – Fill truncated data, defaults to False.copy (
bool) – Create copies instead of views into the data, defaults to False.ancillary (
bool,tupleofstr) – If True, resturns ancillary masks (“secondary”, “nodatamask”, “cluttermask”) as additional data variables. Can be specified as tuple of strings. Defaults to False.**kwargs (
dict, optional) – Additional arguments passed on toxarray.open_mfdataset.
- Returns:
dataset (
xarray.Dataset)
References