Erase TIN with Polygons

Running programmatically

Erases a TIN dataset with the polygons of the input polygon feature class.

Inputs:

Output:

Examples:

Input TIN and erase polygons

images70/tinerase0.jpg

Result TIN

images70/tinerase1.jpg

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name EraseTinWithPolygons
<input TIN> A String representing the input TIN dataset.
<output TIN> A String - the full name of the output TIN.
<erase dataset> Erase Polygon dataset

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

Language Syntax
Python subprocess.call([ETSPath, "EraseTinWithPolygons", "input tin", "output tin", "erase dataset"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "EraseTinWithPolygons" "input tin" "output tin" "erase dataset"
.NET using ETSOutX.dll EraseTinWithPolygons(input tin, output tin, erase dataset)
ArcPy arcpy.EraseTinWithPolygons("input tin", "output tin", "erase dataset")

Notes:

(Go to TOP)