Find NoFlow Areas

Running programmatically

Finds cells in DEM rasters with undefined flow based on the D8 flow direction algorithm. These cells are either sinks (lower than all neighboring cells) or in the interior of a flat area. The flat area cells are marked with value of 1 and the sink cells with the value 2.

Inputs:

Outputs:

Example:

An example of the NoFlow Areas output - Flat areas with light blue and Sinks with dark blue.

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name FindNoFlowAreas
<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, "FindNoFlowAreas", "input raster", "output raster"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "FindNoFlowAreas" "input raster" "output raster"
.NET using ETSOutX.dll FindNoFlowAreas(input raster, output raster)
ArcPy arcpy.FindNoFlowAreas("input raster", "output raster")

Notes:

(Go to TOP)