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

Result TIN

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 |
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:
<> - 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.