Modify TIN

Running programmatically

Modifies a TIN by adding additional data points or breaklines from a feature layer.

Inputs:

Outputs:

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name ModifyTin
<input tin> A String representing the input TIN dataset.
<modify dataset> A String representing the modify 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",  "Hard breaklines" and "Soft 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, "ModifyTin", "input tin", "modify dataset", "output tin", "elevation field", "triangulation type"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "ModifyTin" "input tin" "modify dataset" "output tin" "elevation field" "triangulation type"
.NET using ETSOutX.dll ModifyTin(input tin, modify dataset, output tin, elevation field, triangulation type)
ArcPy arcpy.ModifyTin("input tin", "modify dataset", "output tin", "elevation field", "triangulation type")

Notes:

(Go to TOP)