Tin Difference

Running programmatically

Creates a new TIN by subtracting the reference TIN from the input TIN

Inputs:

Outputs:

Notes :

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name TinDifference
<input tin> A String representing the input TIN.
<reference tin> A String representing the reference TIN.
<output tin> A String - the full name of the output TIN.

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, "TinDifference", "input tin", "reference tin", "output tin"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "TinDifference" "input tin" "reference tin" "output tin"
.NET using ETSOutX.dll TinDifference(input tin, reference tin, output tin)
ArcPy arcpy.TinDifference("input tin", "reference tin", "output tin")

Notes:

(Go to TOP)