Clean Points

Running programmatically

Removes the duplicate points from a point feature data set.

Inputs:

Outputs:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name CleanPoints
<input dataset> A String representing the input layer. Must be of Polygon type.
<output dataset> A String - the full name of the output layer.
{Duplicates Dataset} A String - the full name of the output dataset that identifies the points removed as duplicates. (A dataset with the same full name should not exist) .

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, "CleanPoints", "input dataset", "output dataset", "Duplicates Dataset"])
.NET using ETGWRun.exe StartInfo.FileName = ETGWPath
StartInfo.Arguments = "CleanPoints" "input dataset" "output dataset" "Duplicates Dataset"
.NET using ETGWOutX.dll CleanPoints(input dataset, output dataset, Duplicates Dataset)
ArcPy arcpy.CleanPoints(input dataset, "output dataset" , "Duplicates Dataset")

Notes:

(Go to TOP)