odc.geo.xr.rio_reproject
- odc.geo.xr.rio_reproject(src, dst, s_gbox, d_gbox, resampling, src_nodata=None, dst_nodata=None, ydim=None, **kwargs)[source]
Perform reproject from ndarray->ndarray using rasterio as backend library.
- Parameters
src – image as ndarray
dst – image as ndarray
s_gbox – GeoBox of source image
d_gbox – GeoBox of destination image
resampling (
Union
[str
,int
,Resampling
]) – str|rasterio.warp.Resampling resampling strategysrc_nodata (
Union
[int
,float
,None
]) – Value representing “no data” in the source imagedst_nodata (
Union
[int
,float
,None
]) – Value to represent “no data” in the destination imageydim – Which dimension is y-axis, next one must be x
kwargs – any other args to pass to
rasterio.warp.reproject
- Return type
- Returns
dst