Create TIN

Running programmatically

Builds a Triangulated Irregular Network from a feature layer

Inputs:

Outputs:

Notes :

Example:

Source Layer (polyline)

Result TIN

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name CreateTin
<input dataset> A String representing the input feature dataset.
<output tin> A String - the full name of the output TIN.
<elevation field> A String representing the name of the field to be used as a source for the elevations. Use "Shape" to use the feature Z values.
<triangulation type> A String - possible values are "Points" and "Hard breaklines".

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, "CreateTin", "input dataset", "output tin", "elevation field", "triangulation type"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "CreateTin" "input dataset" "output tin" "elevation field" "triangulation type"
.NET using ETSOutX.dll CreateTin(input dataset, output tin, elevation field, triangulation type)
ArcPy arcpy.CreateTin("input dataset", "output tin", "elevation field", "triangulation type")

Notes:

(Go to TOP)