aGETXprofile(RPMG)
aGETXprofile()所属R语言包:RPMG
Cross sectional profile through a digital elevation map
通过数字高程图,截面轮廓
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Example of how to use RPMG button functions. This example shows how to plot a DEM and interactively change the plot and find projected cross-sections through a surface.
示例如何使用RPMG的按钮功能。此示例显示了如何绘制数字高程模型和交互方式改变的图,并预计通过表面的横截面。
用法----------Usage----------
aGETXprofile(jx, jy, jz, LAB = "A", myloc = NULL, PLOT = FALSE, asp=1)
参数----------Arguments----------
参数:jx, jy
locations of grid lines at which the values in 'jz' are measured.
网格线的位置在JZ的值进行测定。
参数:jz
a matrix containing the values to be plotted
一个矩阵包含的值是绘制
参数:LAB
Alphanumeric (A-Z) for labeling a cross section
字母数字(A-Z)标记的横截面
参数:myloc
Out put of Locator function
出的定位功能
参数:PLOT
logical. Plot is created if TRUE
逻辑。图创建TRUE
参数:asp
aspect ration, see par
高宽比,请参阅参数
Details
详细信息----------Details----------
The program uses a similar input format as image or contour, with structure from the locator() function of x and y coordinates that determine where the cross section is to be extracted.
该程序使用了一个类似的输入格式为图像或轮廓,从定位器()函数中的x和y坐标,确定其中要被提取的横截面是与结构。
值----------Value----------
Returns a list of x,z values representing the projected values along the cross section.
返回的x,z值表示沿横截面的投影值的列表。
参数:RX
distance along cross section
沿横截面的距离
参数:RZ
values extracted from the elevation map
从高程图中提取的值
注意----------Note----------
The program is an auxiliary program provided to illustrate the RPMG interactive R analysis.
该计划是一个辅助程序,提供说明的RPMG的互动R分析。
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees@unc.edu>
参见----------See Also----------
locator, image
定位器,图像
实例----------Examples----------
####### get data [######获取数据]
data(volcano)
#### extract dimensions of image[###提取的图像尺寸]
nx = dim(volcano)[1]
ny = dim(volcano)[2]
### establish units of image[##建立单位的图像]
jx = 10*seq(from=0, to=nx-1)
jy = 10*seq(from=0, to=ny-1)
#### set a letter for the cross section[###横截面的一封信]
LAB = LETTERS[1]
### coordinates of cross section on image[##坐标的图像的横截面]
### this is normally set by using the locator() function[##这是通常使用定位器()函数]
x1 = 76.47351
y1 = 231.89055
x2 = 739.99746
y2 = 464.08185
## extract and plot cross section[#提取和绘制的横截面]
aGETXprofile(jx, jy, volcano, myloc=list(x=c(x1, x2), y=c(y1, y2)), LAB=LAB, PLOT=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|