wradlib.io.radolan.open_radolan_mfdataset

wradlib.io.radolan.open_radolan_mfdataset#

wradlib.io.radolan.open_radolan_mfdataset(paths, **kwargs)[source]#

Open multiple RADOLAN files as a single dataset.

Needs dask-package to be installed.

Parameters:

paths (str or 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, tuple of str) – 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 to xarray.open_mfdataset.

Returns:

dataset (xarray.Dataset)