data: SpatRaster object, spatial data set to be processed.
quantile: Numeric value, quantile value below which raster values are clipped.
replace: Numeric value, replacement value, default is NA.
normalise: Logical value, optionally normalise values above threshold quantile between 0 and 1. Default is TRUE.
Returns
SpatRaster object, data set with clipped values.
Examples
## load example data setdata(volcano)## convert matrix to raster objectvolcano <- terra::rast(volcano)## clip values to those > quantile 0.5volcano_clip <- spatial_clip(data = volcano, quantile =0.5)## plot clipped data setterra::plot(volcano_clip)