Analyzes the nodes of a polyline layer and exports them as a point feature class. Creates links between the nodes and corresponding polylines
Parameters
Expression | Explanation |
---|---|
Function Name | RenodePolylines |
<input dataset> | A String representing the input layer. |
<Output Node Dataset> | A String - the full name of the output Nodes layer. |
<Output Polyline Dataset> | A String representing the output polyline layer. |
ETGWPath used in the table below is the full path to ETGWRun.exe (E.G. "C:\Program Files\ETSpatial Techniques\ETGeo Wizards\ETGWRun.exe")
Language | Syntax |
---|---|
Python | subprocess.call([ETGWPath, "RenodePolylines", "input dataset", "Output Node Dataset", "Output Polyline Dataset"]) |
.NET using ETGWRun.exe | StartInfo.FileName = ETGWPath StartInfo.Arguments = "RenodePolylines" "input dataset" "Output Node Dataset" "Output Polyline Dataset" |
.NET using ETGWOutX.dll | RenodePolylines(input dataset, Output Node Dataset,Output Polyline Dataset) |
ArcPy | arcpy.RenodePolylines(input dataset, Output Node Dataset,Output Polyline Dataset) |
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.