wradlib.io.hdf.open_gamic_mfdataset#
- wradlib.io.hdf.open_gamic_mfdataset(filename_or_obj, group=None, **kwargs)[source]#
Open and decode an GAMIC radar sweep or volume from a file or file-like object.
This function uses
open_radar_mfdataset
andxarray.open_mfdataset
under the hood. Needsdask
package to be installed [1].- Parameters:
- Keyword Arguments:
keep_elevation (
bool
) – For PPI only. Keep original elevation data if True. Defaults to False, which fixes erroneous elevation data.keep_azimuth (
bool
) – For RHI only. Keep original azimuth data if True. Defaults to False, which fixes erroneous azimuth data.reindex_angle (
bool
orfloat
) – Defaults to None (reindex angle with tol=0.4deg). If given a floating point number, it is used as tolerance. If False, no reindexing is performed. Only invoked if decode_coord=True.**kwargs (optional) – Additional arguments passed on to
xarray.open_dataset
.
- Returns:
dataset (
xarray.Dataset
orwradlib.io.xarray.RadarVolume
) – The newly created radar dataset or radar volume.
See also
References