Calculates several characteristics of the features from a PolylineZ feature layer. The results are stored in fields in a new polyline feature layer
Parameters
| Expression | Explanation |
|---|---|
| Function Name | PolylineZCharacteristics |
| <input polylines> | A String - full path to the Input PolylineZ dataset. |
| <output polylines> | A String - the full path to the output PolylineZ dataset. |
| {linear precision} | An Integer representing the number of digits after the decimal point for linear measures. |
| {angular precision} | An Integer representing the number of digits after the decimal point for angular measures. |
| {NoData} | A Double - see explanations above. |
ETSPath used in the table below is the full path to ETSRun.exe (E.G. "C:\Program Files\ETSpatial Techniques\ETSurface\ETSRun.exe")
| Language | Syntax |
|---|---|
| Python | subprocess.call([ETSPath, "PolylineZCharacteristics", "input polylines", "output polylines", "linear precision", "angular precision", "NoData"]) |
| .NET using ETSRun.exe | StartInfo.FileName = ETSPath StartInfo.Arguments = "PolylineZCharacteristics" "input polylines" "output polylines" "linear precision" "angular precision" "NoData" |
| .NET using ETSOutX.dll | PolylineZCharacteristics(input polylines, output polylines, linear precision, angular precision, NoData) |
| ArcPy | arcpy.PolylineZCharacteristics("input polylines", "output polylines", "linear precision", "angular precision", "NoData") |
Notes: