PolygonZ TIN to TIN

Running programmatically

Converts a PolygonZ TIN feature class to TIN.

Inputs:

Outputs:

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name PolygonZTinToTin
<input dataset> A String representing the input PoligonZ feature dataset.
<output tin> A String - the full name of the output TIN.

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

Notes:

(Go to TOP)