Redefines the TIN data area by removing the triangles with edges longer than user specified tolerance.
Input TIN.
Output TIN.
Parameters
| Expression | Explanation |
|---|---|
| Function Name | DelineateTin |
| <input tin> | A String representing the input TIN dataset. |
| <output tin> | A String - the full name of the output tin. |
| <Max Length> | A Double representing the maximum valid edge length. |
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, "DelineateTin", "input tin", "output tin", "Max Length"]) |
| .NET using ETSRun.exe | StartInfo.FileName = ETSPath StartInfo.Arguments = "DelineateTin" "input tin" "output tin" "Max Length" |
| .NET using ETSOutX.dll | DelineateTin(input tin, output tin, Max Length) |
| ArcPy | arcpy.DelineateTin("input tin", "output tin", "Max Length") |
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.