Removes the duplicate points from a point feature data set.
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) . |
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:
<> - 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.