Calculates the aspect (compass direction of the slope) for each TIN Triangle. Groups the triangles based on their Aspect category and creates a polygon dataset with Aspect categories.
Output - default breaks:

Parameters
| Expression | Explanation |
|---|---|
| Function Name | TinAspect |
| <input tin> | A String representing the input TIN dataset. |
| <output dataset> | A String - the full name of the output polygon dataset. |
| {breaks file} | A String - the full path to the class breaks file. |
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, "TinAspect", "input tin", "output dataset", "breaks file"]) |
| .NET using ETSRun.exe | StartInfo.FileName = ETSPath StartInfo.Arguments = "TinAspect" "input tin" "output dataset" "breaks file" |
| .NET using ETSOutX.dll | TinAspect(input tin, output dataset, breaks file) |
| ArcPy | arcpy.TinAspect("input tin", "output dataset", "breaks file") |
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.