水流长度 (空间分析)

许可等级:BasicStandardAdvanced

摘要

计算沿每个像元的流路径的上游(或下游)距离或加权距离。

用法

语法

FlowLength (in_flow_direction_raster, {direction_measurement}, {in_weight_raster})
参数说明数据类型
in_flow_direction_raster

根据每个像元来显示流向的输入栅格。

可以使用流向 工具创建流向栅格。

Raster Layer
direction_measurement
(可选)

沿流路径的度量方向。

  • DOWNSTREAM 计算沿流路径从每个像元到栅格边上的汇点或出水口的下坡距离。
  • UPSTREAM 计算沿流路径从每个像元到分水岭顶部的最长上坡距离。
String
in_weight_raster
(可选)

对每一像元应用权重的可选输入栅格。

如果未指定权重栅格,则将默认的权重值 1 应用于每个像元。对于输出栅格中的每个像元,结果为流入其中的像元数。

Raster Layer

返回值

名称说明数据类型
out_raster

显示每个像元的沿流路径的上游或下游距离的输出栅格。

Raster

代码实例

水流长度 (FlowLength) 示例 1(Python 窗口)

本例计算沿每个像元的流路径的下游距离。

import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outFlowLength = FlowLength("flowdir", "DOWNSTREAM", "")
outFlowLength.save("c:/sapyexamples/output/outflowlen01")
水流长度 (FlowLength) 示例 2(独立脚本)

本例计算沿每个像元的流路径的下游距离。

# Name: _Ex_02.py
# Description: 
# Requirements: Spatial Analyst Extension

# Import system modules
import arcpy
from arcpy import env
from arcpy.sa import *

# Set environment settings
env.workspace = "C:/sapyexamples/data"

# Set local variables
inFlowDirectionRaster = "flowdir"
inWeightRaster = ""
directionType = "DOWNSTREAM"

# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")

# Execute 
outFlowLength = FlowLength(inFlowDirectionRaster, directionType, inWeightRaster)

# Save the output 
outFlowLength.save("c:/sapyexamples/output/outflowlen02.tif")

环境

相关主题

许可信息

ArcGIS for Desktop Basic:需要 Spatial Analyst
ArcGIS for Desktop Standard:需要 Spatial Analyst
ArcGIS for Desktop Advanced:需要 Spatial Analyst
9/15/2013