-
Notifications
You must be signed in to change notification settings - Fork 97
Closed
Labels
proposalIdea for a new feature.Idea for a new feature.
Description
https://rasterio.readthedocs.io/en/latest/api/rasterio.warp.html#rasterio.warp.reproject
There are additional arguments that could be passed in such as:
gcps (sequence of GroundControlPoint, optional) – Ground control points for the source. An error will be raised if this parameter is defined together with src_transform or rpcs.
rpcs (RPC or dict, optional) – Rational polynomial coefficients for the source. An error will be raised if this parameter is defined together with src_transform or gcps.
src_alpha (int, optional) – Index of a band to use as the alpha band when warping.
dst_alpha (int, optional) – Index of a band to use as the alpha band when warping.
num_threads (int, optional) – The number of warp worker threads. Default: 1.
init_dest_nodata (bool) – Flag to specify initialization of nodata in destination; prevents overwrite of previous warps. Defaults to True.
warp_mem_limit (int, optional) – The warp operation memory limit in MB. Larger values allow the warp operation to be carried out in fewer chunks. The amount of memory required to warp a 3-band uint8 2000 row x 2000 col raster to a destination of the same size is approximately 56 MB. The default (0) means 64 MB with GDAL 2.2.
kwargs (dict, optional) – Additional arguments passed to transformation function.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
proposalIdea for a new feature.Idea for a new feature.