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
|
\name{contour}
\docType{methods}
\alias{contour}
\alias{contour,RasterLayer-method}
\title{Contour plot}
\description{
Contour plot of a RasterLayer.
}
\usage{
\S4method{contour}{RasterLayer}(x, maxpixels=100000, ...)
}
\arguments{
\item{x}{Raster* object}
\item{maxpixels}{maximum number of pixels used to create the contours}
\item{...}{any argument that can be passed to \code{\link[graphics]{contour}} (graphics package)}
}
\seealso{
\code{\link{persp}}, \code{\link{filledContour}}, \code{\link{rasterToContour} }
}
\examples{
r <- raster(system.file("external/test.grd", package="raster"))
plot(r)
contour(r, add=TRUE)
}
\keyword{methods}
\keyword{spatial}
|