Project TIN

Running programmatically

Project the input TIN to the projection of the reference dataset

Inputs:

Outputs:

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name ProjectTIN
<input tin> A String representing the input TIN dataset.
<output tin> A String - the full name of the output TIN.
<reference dataset> A String representing the reference dataset - feature dataset, raster or 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, "ProjectTIN", "input tin", "output tin", "reference dataset"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "ProjectTIN" "input tin" "output tin" "reference dataset"
.NET using ETSOutX.dll ProjectTIN(input tin, output tin, reference dataset)
ArcPy arcpy.ProjectTIN("input tin", "output tin", "reference dataset")

Notes:

(Go to TOP)