cruz(unmarked)
cruz()所属R语言包:unmarked
Landscape data for Santa Cruz Island
圣克鲁斯岛的景观数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Spatially-referenced elevation, forest cover, and vegetation data for Santa Cruz Island.
空间参考圣克鲁斯岛的海拔,森林覆盖率和植被数据。
用法----------Usage----------
data(cruz)
格式----------Format----------
A data frame with 2787 observations on the following 5 variables.
2787以下5个变量的观察数据框。
x Easting (meters)
x的东向(米)
y Northing (meters)
y纵坐标(米)
elevation a numeric vector, meters
elevation一个数值向量,米
forest a numeric vector, proportion cover
forest一个数值向量,比例封面
chaparral a numeric vector, proportion cover
chaparral一个数值向量,比例封面
Details
详细信息----------Details----------
The resolution is 300x300 meters.
分辨率为300x300米。
The Coordinate system is EPSG number 26911
坐标系统是EPSG数26911
NAD_1983_UTM_Zone_11N Projection: Transverse_Mercator False_Easting: 500000.000000 False_Northing: 0.000000 Central_Meridian: -117.000000 Scale_Factor: 0.999600 Latitude_Of_Origin: 0.000000 Linear Unit: Meter GCS_North_American_1983 Datum: D_North_American_1983
NAD_1983_UTM_Zone_11N的投影:Transverse_Mercator False_Easting:500000.000000 False_Northing:的0.000000 Central_Meridian -117.000000 Scale_Factor:0.999600 Latitude_Of_Origin:0.000000线性单位:米GCS_North_American_1983基准:D_North_American_1983
源----------Source----------
Brian Cohen of the Nature Conservancy helped prepare the data
布赖恩·科恩,美国大自然保护协会的数据做好了准备
参考文献----------References----------
Morrison, S.A. In Press. Hierarchical distance sampling models to estimate population size and habitat-specific abundance of an island endemic. Ecological Applications
实例----------Examples----------
data(cruz)
str(cruz)
levelplot(elevation ~ x + y, cruz, aspect="iso",
col.regions=terrain.colors(100))
if(require(raster)) {
elev <- rasterFromXYZ(cruz[,1:3],
crs="+proj=utm +zone=11 +ellps=GRS80 +datum=NAD83 +units=m +no_defs")
elev
plot(elev)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|