wradlib.io.gdal.write_raster_dataset¶
-
wradlib.io.gdal.
write_raster_dataset
(fpath, dataset, rformat, options=None, remove=False)¶ Write raster dataset to file format
- Parameters
fpath (string) – A file path - should have file extension corresponding to format.
dataset (gdal.Dataset) – gdal raster dataset
rformat (string) – gdal raster format string
options (list) – List of option strings for the corresponding format.
remove (bool) – if True, existing gdal.Dataset will be removed before creation
Note
For format and options refer to formats_list.
Examples