add.Data.to.Grid(sperich)
add.Data.to.Grid()所属R语言包:sperich
Add Data to Grid
将数据添加到网格
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function adds the species occurence data to the grid.
该函数将数据到网格的物种发生“。
用法----------Usage----------
add.Data.to.Grid(dataset.one.species, dimension, shift, resolution=1)
参数----------Arguments----------
参数:dataset.one.species
A dataset containing one species with its ID (named: speciesID) and the longitude (named: long) and latitude (named: lat) of the occurence locations of that species.
数据集包含一个物种,其ID(名为:speciesID)和经度(命名为:长)和纬度(名为:纬度)的发生位置的物种。
参数:dimension
The dimension of the processed grid.
处理后的网格尺寸。
参数:shift
The geographic coordinates of the origin of the grid.
GEO坐标的网格原点。
参数:resolution
The resolution of the grid in (geographical) degree.
决议中的网格(区域)学位。
Details
详细信息----------Details----------
This routine adds the species occurence data to the grid through adding their location as a point into it.
此例程将数据到网格的物种发生“,把它作为一个点,通过添加自己的位置。
值----------Value----------
This function returns a grid which contains the species occurence information.
这个函数返回一个网格,其中包含的物种发生“信息。
(作者)----------Author(s)----------
Maximilian Lange, Sven Lautenbach
参考文献----------References----------
Reassessing Neotropical angiosperm distribution patterns based on monographic data: a geometric interpolation approach. Biodivers Conserv, 19, 1523-1546.
实例----------Examples----------
##load data[#加载数据]
data(dataset.all.species)
##create grid parameters[#创建网格参数。]
dimension <- getDimension(dataset.all.species, resolution=1)
shift <- getShift(dataset.all.species)
#extract datasets of one species out of database[一个物种的数据库提取数据集]
dataset.one.species <- extract.species(dataset.all.species, 3)
##add species occurence information to grid[#增加物种发生“信息网格]
grid <- add.Data.to.Grid(dataset.one.species, dimension, shift, resolution=1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|