Delineates cluster polygon for the input points based on user specified cluster distance.
Convex Clusters
Concave Conservative Clusters
Concave Aggresive Clusters
Cluster C 1
Cluster S 1
Cluster C 2
Cluster S 2
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. |
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:
<> - required parameter
{} - optional parameter
The argument separator for StartInfo.Arguments is space. If a string might contain a space, you need to double quote it.