1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
\name{setMinMax}
\alias{setMinMax,RasterLayer-method}
\alias{setMinMax,RasterStack-method}
\alias{setMinMax,RasterBrick-method}
\alias{setMinMax}
\title{Compute min and max values}
\description{
The minimum and maximum value of a RasterLayer are computed (from a file on disk if necessary) and stored in the returned Raster* object.
}
\usage{
setMinMax(x, ...)
}
\arguments{
\item{x}{Raster object }
\item{\dots}{additional arguments, none implemented}
}
\value{
Raster object
}
\seealso{ \code{\link[raster]{getValues}} }
\examples{
r <- raster(system.file("external/test.grd", package="raster"))
r
r <- setMinMax(r)
r
}
\keyword{ spatial }
\keyword{ methods }
|