Switzerland(unmarked)
Switzerland()所属R语言包:unmarked
Swiss landscape data
瑞士景观数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Spatially-referenced data on elevation, forest cover, and water at a 1km-sq resolution.
空间参考的数据海拔高度,森林覆盖和水在一公里平方的分辨率。
用法----------Usage----------
data(Switzerland)
格式----------Format----------
A data frame with 42275 observations on the following 5 variables.
42275以下5个变量的观察数据框。
x Easting (m)
x东向(M)
y Northing (m)
y纵坐标(米)
elevation a numeric vector (m)
elevation一个数值向量(M)
forest a numeric vector (percent cover)
forest一个数值向量(%盖)
water a numeric vector (percent cover)
water一个数值向量(%盖)
Details
详细信息----------Details----------
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 metres) was computed using a median aggregation of the digital elevation model of the Swiss Federal Statistical Office.
瑞士联邦统计局(http://www.bfs.admin.ch)1992-1997年土地覆盖数据集的森林和水覆盖率(%的面积)计算。使用中聚集的瑞士联邦统计局的数字高程模型计算中位数海拔高度(米)。
x and y are the coordinates of the center of each 1km2 pixel.
x和y是的坐标中心每个1平方公里像素。
The coordinate reference system is CH1903/LV03 (EPSG number: 21781).
坐标参考系是CH1903/LV03(EPSG号:21781)。
These data can only be used for non-profit projects. Otherwise, written permission must be obtained from the Swiss Federal Statistical Office
这些数据只能用于非经营性项目。否则,必须获得瑞士联邦统计局的书面许可,
源----------Source----------
Swiss Federal Statistical Office (http://www.bfs.admin.ch)
瑞士联邦统计局(http://www.bfs.admin.ch)
实例----------Examples----------
data(Switzerland)
str(Switzerland)
levelplot(elevation ~ x + y, Switzerland, aspect="iso",
col.regions=terrain.colors(100))
## Not run: [#不运行:]
library(raster)
el.r <- rasterFromXYZ(Switzerland[,c("x","y","elevation")],
crs="+proj=somerc +lat_0=46.95240555555556 +lon_0=7.439583333333333 +k_0=1 +x_0=600000 +y_0=200000 +ellps=bessel +towgs84=674.374,15.056,405.346,0,0,0,0 +units=m +no_defs")
plot(el.r)
spplot(el.r)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|