Exports the Nodes of a TIN to a new point feature class.
Parameters
| Expression | Explanation |
|---|---|
| Function Name | ExtractTinNodes |
| <input tin> | A String representing the input TIN dataset. |
| <output dataset> | A String - the full name of the output point dataset. |
| {3D features} | A Boolean indicating whether the result will be Point or PointZ. "True" will create PointZ features. The default is "False", which will create Point features. |
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, "ExtractTinNodes", "input tin", "output dataset", "3D features"]) |
| .NET using ETSRun.exe | StartInfo.FileName = ETSPath StartInfo.Arguments = "ExtractTinNodes" "input tin" "output dataset" "3D features" |
| .NET using ETSOutX.dll | ExtractTinNodes(input tin, output dataset, 3D features) |
| ArcPy | arcpy.ExtractTinNodes("input tin", "output dataset", "3D features") |
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.