Clip TIN with Polygons

Running programmatically

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

Inputs:

Output:

Examples:

Input TIN and clip polygons

images70/tinclip0.jpg

Result TIN

images70/tinclip1.jpg

Notes:

Running Programmatically

(Go to TOP)

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

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, "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:

(Go to TOP)