Delineate Tin

Running programmatically

Redefines the TIN data area by removing the triangles with edges longer than user specified tolerance.

Inputs:

Outputs:

Example:

Input TIN.

Output TIN.

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name DelineateTin
<input tin> A String representing the input TIN dataset.
<output tin> A String - the full name of the output tin.
<Max Length> A Double representing the maximum valid edge length.

Running the function

ETGWPath used in the table below is the full path to ETGWRun.exe (E.G. "C:\Program Files\ETSpatial Techniques\ETSurface\ETSRun.exe")

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

Notes:

(Go to TOP)