topidx(topmodel)
topidx()所属R语言包:topmodel
Calculation of the topographic index from a DEM raster
从DEM栅格地形指数计算
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculation of the topographic index from a DEM raster
从DEM栅格地形指数计算
用法----------Usage----------
topidx(DEM, resolution, river = NULL)
参数----------Arguments----------
参数:DEM
A matrix representing a digital elevation model with equally sized pixels and equal NS and EW resolution
与同样大小的像素和平等的NS和EW分辨率的数字高程模型的矩阵表示
参数:resolution
Resolution of the digital elevation model (m)
分辨率的数字高程模型(M)
参数:river
A matrix representing a river map (optional). All cells with values higher than 0 will be treated as river cells and are not included in the calculations.
一个矩阵代表了河图(可选)。将被视为高于0的值的所有单元与作为河流单元和不包括在计算中。
Details
详细信息----------Details----------
The river map should not contain negative values
河图不应该包含负值
值----------Value----------
The function returns a list, containing 2 rasters. Atb are the topographic index values of each grid cell. Area contains the contributing area
该函数返回一个列表,包含2光栅。 ATB每个网格单元的地形指数值。区包含的区域
(作者)----------Author(s)----------
Wouter Buytaert, Imperial College London, based on routines developed by the hydrology group of Lancaster University
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
data(huagrahuma.dem)
topidx <- topidx(huagrahuma.dem, resolution= 25)$atb
image(topidx)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|