BerneseOberland | R Documentation |
Spatially-referenced data on elevation, forest cover, and water cover at a 1km-sq resolution for a 50km x 50km region in Switzerland, the Bernese Oberland. This is a small subset of the Switzerland
data in the unmarked package. See the Examples for a plot of the location.
data(BerneseOberland)
A data frame with 2500 observations on the following 5 variables.
Easting (m)
Northing (m)
a numeric vector (m)
a numeric vector (percent cover)
a numeric vector (percent cover)
Forest and water coverage (in percent area) was computed using the 1992-97 landcover dataset of the Swiss Federal Statistical Office (http://www.bfs.admin.ch). Median elevation (in meters) was computed using a median aggregation of the digital elevation model of the Swiss Federal Statistical Office.
x and y are the coordinates of the center of each 1km2 pixel.
The coordinate reference system is intentionally not specified.
These data can only be used for non-profit projects. Otherwise, written permission must be obtained from the Swiss Federal Statistical Office.
Swiss Federal Statistical Office (http://www.bfs.admin.ch)
data(BerneseOberland)
str(BerneseOberland)
library(raster)
data(Switzerland, package="unmarked")
r1 <- with(Switzerland, rasterFromXYZ(data.frame(x = x, y = y, z = elevation)))
mapPalette1 <- colorRampPalette(c("grey", "yellow", "orange", "red"))
plot(r1, col = mapPalette1(100), axes = FALSE, box = FALSE, zlim = c(0, 4500),
main = "Location of Bernese Oberland data set")
with(BerneseOberland, rect(min(x), min(y), max(x), max(y), lwd=2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.