- 5
- 0
- 约 86页
- 2017-09-02 发布于湖北
- 举报
Horn 算法 The actual algorithm that is used to calculate slope is: rise_run = SQRT(SQR(dz/dx)+SQR(dz/dy)) degree_slope = ATAN(rise_run) * 57.29578 degree_aspect = ATAN((dz/dy)/(dz/dx)) * 57.29578 where the deltas are calculated using a 3x3 roving window. a through i represent the z_values in the window: (dz/dx) = ((a + 2d + g) - (c + 2f + i)) / (8 * x_mesh_spacing) (dz/dy) = ((a + 2b + c) - (g + 2h + i)) / (8 * y_mesh_spacing) 根据相邻网格点上的坡度和坡向之间的逻辑关系,可以判断坡形的凹凸变化情况,确定沟谷线、山脊和鞍部的位置,划分流域范围。 三、地面形态的计算 由于实际地形无一定数学规律可循,因此,影响DEM精度的主要因素是原始数据的获取,其中主要包括: 数据采集的密度; 数据采集位置(选点)。 注意:任何一种内插方法均不能弥补由于取样不当所造
原创力文档

文档评论(0)