File: rasterToContour.Rd

package info (click to toggle)
r-cran-raster 3.6-31-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,300 kB
  • sloc: cpp: 2,367; ansic: 1,572; sh: 13; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (2)
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
41
\name{rasterToContour}

\alias{rasterToContour}

\title{ Raster to contour lines conversion}

\description{
RasterLayer to contour lines. This is a wrapper around \code{\link[grDevices]{contourLines}}
}

\usage{
rasterToContour(x, maxpixels=100000, ...)
}

\arguments{
 \item{x}{ a RasterLayer object }
 \item{maxpixels}{ Maximum number of raster cells to use; this function fails when too many cells are used}
 \item{...}{Any argument that can be passed to \code{\link[grDevices]{contourLines}} }  
}

\details{
Most of the code was taken from maptools::ContourLines2SLDF, by Roger Bivand & Edzer Pebesma 
}

\value{
SpatialLinesDataFrame 
}




\examples{
f <- system.file("external/test.grd", package="raster")
r <- raster(f)
x <- rasterToContour(r)
class(x)
plot(r)
plot(x, add=TRUE)
}

\keyword{ spatial }