Converts a PolygonZ TIN feature class to TIN.
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. |
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:
<> - required parameter
{} - optional parameter
The argument separator for StartInfo.Arguments is space. If a string might contain a space, you need to double quote it.