Flow Accumulation D8

Running programmatically

Generates a Flow Accumulation raster using the Deterministic 8 (D8) flow direction model.

Inputs:

Outputs:

Example:

An example of Flow Accumulation D8 result.

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name FlowAccumulationD8
<input raster> A String representing the input DEM raster dataset.
<output raster> A String - the full name of the output raster.

Running the function

ETSPath used in the table below is the full path to ETSRun.exe (E.G. "C:\Program Files\ETSpatial Techniques\ETSurface\ETSRun.exe")

UnitsDegrees
Language Syntax
Python subprocess.call([ETSPath, "FlowAccumulationD8", "input raster", "output raster"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "FlowAccumulationD8" "input raster" "output raster"
.NET using ETSOutX.dll FlowAccumulationD8(input raster, output raster)
ArcPy arcpy.FlowAccumulationD8("input raster", "output raster")

Notes:

(Go to TOP)