Zonal Min/Max Points

Running programmatically

Locates in the input raster the cells with minimum and maximum values within each of the input polygons and extracts them in a new points dataset.

Inputs:

Outputs:

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name ZonalMinMaxPoints
<input polygons> A String - full path to the Input Polygon dataset.
<output points> A String - the full path to the output Point dataset.
<input raster> A String - full path to the input raster dataset.
{option} A String indicating the points to be extracted. See description above.

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")

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

Notes:

(Go to TOP)