Create Cluster Polygons C

Running programmatically

Delineates cluster polygon for the input points based on user specified cluster distance.

Inputs:

Outputs:

Notes:

Examples:

Convex Clusters

Concave Conservative Clusters

Concave Aggresive Clusters

Examples ClusterPolygonsC vs. ClusterPolygonsS:

Cluster C 1

Cluster S 1

Cluster C 2

Cluster S 2

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name PointsToClusterPolygonsC
<input dataset> A String representing the input layer. Must be of Point type.
<output dataset> A String - the full name of the output layer.
<Cluster Tolearance> A Double representing the Cluster Tolearance( in the units of the spatial reference of the input dataset).
<Polygon Type> A String indicating the type of cluster polygons to be created. Valid options - "Convex","ConcaveC" - conservative, "ConcaveA" - aggressive.

Running the function

ETGWPath used in the table below is the  full path to ETGWRun.exe (E.G. "C:\Program Files\ETSpatial Techniques\ETGeo Wizards\ETGWRun.exe")

Language Syntax
Python subprocess.call([ETGWPath, "PointsToClusterPolygonsC", "input dataset", "output dataset", "Cluster Tolearance", "Polygon Type"])
.NET using ETGWRun.exe StartInfo.FileName = ETGWPath
StartInfo.Arguments = "PointsToClusterPolygonsC" "input dataset" "output dataset" "Cluster Tolearance" "Polygon Type"
.NET using ETGWOutX.dll PointsToClusterPolygonsC(input dataset, output dataset, Cluster Tolearance, Polygon Type)
ArcPy arcpy.PointsToClusterPolygonsC(input dataset, output dataset, "Cluster Tolearance", "Polygon Type")

Notes:

(Go to TOP)