grid.to.xyz(RSAGA)
grid.to.xyz()所属R语言包:RSAGA
Convert Grid Matrix to (x,y,z) data.frame
转换网格矩阵(X,Y,Z)的数据框
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convert a grid matrix to a (x,y,z) data.frame.
将一个网格基质转换到(的x,y,z)的数据框。
用法----------Usage----------
grid.to.xyz(data, header, varname = "z", colnames = c("x", "y", varname))
参数----------Arguments----------
参数:data
grid data: either a grid data matrix, or a list with components data (a matrix with the grid data) and header (the grid header information); see read.ascii.grid for details
网格数据:无论是网格数据矩阵,或组件的列表data(矩阵网格数据)和header(格头信息),请参阅read.ascii.grid
参数:header
optional list giving grid header information; see read.ascii.grid for details
可选列表网格标头信息,请参阅read.ascii.grid的详细信息,
参数:varname
character: name to
字符的名字
参数:colnames
names to be given to the columns corresponding to the x and y coordinates and the grid variable in the output data.frame
名称被给对应的列的x和y坐标和电网的输出变量的数据框
值----------Value----------
a data.frame with three columns (names are specified in the colnames argument) giving the x and y coordinates and the attribute
三列(colnames参数中指定的名称)给x和y坐标和属性数据框与
(作者)----------Author(s)----------
Alexander Brenning
参见----------See Also----------
read.ascii.grid, pick.from.ascii.grid
read.ascii.grid,pick.from.ascii.grid
实例----------Examples----------
## Not run: [#不运行:]
d = read.ascii.grid("dem")
xyz = grid.to.xyz(d,varname="elevation")
str(xyz)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|