Clips a TIN dataset with the polygons of the input polygon feature class.
Input TIN and clip polygons

Result TIN

Parameters
| Expression | Explanation |
|---|---|
| Function Name | ClipTinWithPolygons |
| <input TIN> | A String representing the input TIN dataset. |
| <output TIN> | A String - the full name of the output TIN. |
| <clip dataset> | Clip 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, "ClipTinWithPolygons", "input tin", "output tin", "clip dataset"]) |
| .NET using ETSRun.exe | StartInfo.FileName = ETSPath StartInfo.Arguments = "ClipTinWithPolygons" "input tin" "output tin" "clip dataset" |
| .NET using ETSOutX.dll | ClipTinWithPolygons(input tin, output tin, clip dataset) |
| ArcPy | arcpy.ClipTinWithPolygons("input tin", "output tin", "clip 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.