minmax function

Get or compute the minimum and maximum cell values

Get or compute the minimum and maximum cell values

The minimum and maximum value of a SpatRaster are returned or computed (from a file on disk if necessary) and stored in the object.

## S4 method for signature 'SpatRaster' minmax(x, compute=FALSE) ## S4 method for signature 'SpatRaster' hasMinMax(x) ## S4 method for signature 'SpatRaster' setMinMax(x, force=FALSE)

Arguments

  • x: SpatRaster
  • compute: logical. If TRUE min and max values are computed if they are not available
  • force: logical. If TRUE min and max values are recomputed even if already available

Returns

minmax: numeric matrix of minimum and maximum cell values by layer

hasMinMax: logical indicating whether the min and max values are available.

setMinMax: nothing. Used for the side-effect of computing the minimum and maximum values of a SpatRaster

Examples

r <- rast(system.file("ex/elev.tif", package="terra")) minmax(r)
  • Maintainer: Robert J. Hijmans
  • License: GPL (>= 3)
  • Last published: 2025-02-26