Hi, I am trying to open radolan data using wradlib using xarray backend.
I’ve tried as follows:
ds = xr.open_mfdataset(rw_filename, engine=“radolan”) and
ds = wrl.io.open_radolan_dataset(rw_filename)
But both didn’t work and I kept getting the following errors:
…
→ 120 raise ValueError(
121 f"unrecognized engine {engine} must be one of: {list(engines)}"
122 )
ValueError: unrecognized engine radolan must be one of: [‘netcdf4’, ‘h5netcdf’, ‘scipy’, ‘rasterio’, ‘store’]
Any suggestion will be appreciated. Many thanks!