crop is not specified then it will default to true, meaning it will make the resulting raster shrink to the geometry’s extent and if noDataValue is not specified then the resulting raster will have the minimum possible value for the band pixel data type.
The allTouched parameter (Since v1.7.1) determines how pixels are selected:
- When true, any pixel touched by the geometry will be included.
- When false (default), only pixels whose centroid intersects with the geometry will be included.
- Since
v1.5.1, if the coordinate reference system (CRS) of the inputgeomgeometry differs from that of theraster, thengeomwill be transformed to match the CRS of theraster. If therasterorgeomdoesn’t have a CRS then it will default to4326/WGS84. - Since
v1.7.0,RS_Clipfunction will returnnullif therasterandgeometrygeometry do not intersect. If you want to throw an exception in this case, you can set thelenientparameter tofalse.
Signatures
Parameters
Raster
required
The input raster.
Integer
required
The band index.
Geometry
required
The input geometry.
Boolean
The all touched value.
Double
The NoData value to use for pixels outside the raster extent.
Boolean
The crop value.
Boolean
The lenient value.
Return type
The resulting raster.

