put.data(SDMTools)
put.data()所属R语言包:SDMTools
Spatial Join of Points with Raster Grids - replace data
空间连接点与光栅网格 - 替换数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
put.data replaces data in raster object of class 'asc' (this and adehabitat package) at specified locations.<br> <br> Note: there is no interpolation done here. The values given replace the values of the raster cell the point falls into.
put.data取代了数据的光栅对象的类“ASC”(这和adehabitat包),在指定的地点。<br> <br>注意:有没有插在这里完成。给定的值替换点落入的栅格单元的值。
用法----------Usage----------
put.data(pts,x)
参数----------Arguments----------
参数:pts
a three-column data frame or matrix with the x and y coordinates of the locations of interest and the third column being the z values to put in the ascii grid file.
一个三列的数据框或矩阵的x和y坐标的感兴趣的位置,第三列的z值,以投入的ASCII网格文件。
参数:x
a raster matrix of class 'asc' (this and the adehabitat package)
一个光栅矩阵类的递增(这和adehabitat包)
Details
详细信息----------Details----------
Implements a faster version of 'join.asc' from the adehabitat package. <br> <br> NOTE: this assumes all locations are within the extent of the raster map. Values outside the extent will be given a value of NA.
实现更快的版本“join.asc”从adehabitat包。 <BR> <BR>注意:这是假设所有的位置都在栅格图的程度。范围之外的值将被NA值。
值----------Value----------
Returns a raster matrix of class 'asc' equal in size to input 'x'.
返回输入X类ASC等于一个光栅矩阵的大小。
(作者)----------Author(s)----------
Jeremy VanDerWal <a href="mailto:jjvanderwal@gmail.com">jjvanderwal@gmail.com</a>
实例----------Examples----------
#create a simple object of class 'asc'[创建一个简单的对象类的ASC“]
tasc = as.asc(matrix(1:50,nr=50,nc=50)); print(tasc)
## Not run: image(tasc)[#不运行:(TASC)]
#define some point locations[定义一些点的位置]
points = data.frame(x=runif(25,1,50),y=runif(25,1,50),z=50)
#put the new data[把新的数据]
tasc = put.data(points,tasc)
#show the data[显示数据]
## Not run: image(tasc)[#不运行:(TASC)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|