Summary
Arranges the network diagram features in the active diagram along parallel straight lines.
Usage
This layout arranges the network diagram features in the active diagram along parallel straight lines, with all the connected edges having the same attribute value. It also places the branches from those lines, preserving their directions regarding the straight lines and the distances proportional to the initial distance and relative to each other.
This algorithm expects attributes with specific values on lines to type the lines and branches and prioritize or exclude certain lines, but it can also be applied to any data referencing lines that are parallel, even those originally designed for rail tracks.
Root flags can be set to specify the starting points of the junctions where the straight lines will start. If no root is set, the algorithm first searches junction candidates to be the root junctions—that is, junctions that are connected to a single edge that can be considered as the starting point for a straight line. Among those candidate junctions, the root junction will be the one that begins the longest straight line.
Syntax
ApplyRelativeMainlineLayout_un (in_network_diagram_layer, line_attribute, {mainline_direction}, {offset_between_branches}, {breakpoint_angle}, {type_attribute}, {mainline_values}, {branch_values}, {excluded_values}, {is_compressing}, {compression_ratio}, {minimal_distance}, {alignment_attribute}, {initial_distances}, {length_attribute})
Parameter | Explanation | Data Type |
in_network_diagram_layer | The network diagram where the layout will be applied. | Diagram Layer |
line_attribute | The name of the network attribute that will be used to identify the lines that comprise the straight lines. This network attribute must exist in the utility network line classes. Its values should be the same for all the edges that comprise a straight line, for example, Line 1, Line 2, and so on | String |
mainline_direction (Optional) | The direction of the main line
| String |
offset_between_branches (Optional) | The spacing between two adjacent branches along the axis perpendicular to the direction of the lines. | Linear Unit |
breakpoint_angle (Optional) | The angle that will be used to position the break point on the branches. It is a value between 30 and 90 degrees that is combined with the offset_between_branches parameter value to compute this position. When the break point angle value is 90 degrees, each branch displays orthogonally. | Double |
type_attribute (Optional) | The name of the network attribute that will be used to qualify the lines. This network attribute may exist in the utility network line classes. Note:The type_attribute and line_attribute network attributes can be the same. | String |
mainline_values [mainline_values,...] (Optional) | The type_attribute values that identify the main lines. When such values exist, they must be the same for any edge that comprises the main lines, regardless of their related utility network feature classes. | Value Table |
branch_values [branch_values,...] (Optional) | The type_attribute values that identify the branches. | Value Table |
excluded_values [excluded_values,...] (Optional) | The type_attribute values that identify the edges that must be excluded from the straight lines (crossovers or ladders). | Value Table |
is_compressing (Optional) | Specifies whether the graph will be compressed.
| Boolean |
compression_ratio (Optional) | A value between 0 and 100 that is applied to the length of any edge after subtracting the minimal distance of its length. When compression_ratio is 100, the distance between each detected junction group is equal to the minimal distance. | Double |
minimal_distance (Optional) | The minimal distance between two adjacent groups of neighbor junctions. This minimal distance is also used to group neighbor junctions regarding their projection along the direction axis. Two junctions projected on this axis will belong to the same group when the distance between the two projected points is less than this distance. | Linear Unit |
alignment_attribute (Optional) | The name of the network attribute that will be used to align lines that are split. The algorithm aligns the line with the same attribute value. | String |
initial_distances (Optional) | Specifies how the length of the diagram edges will be assessed. This length determines the positions of the junctions along the direction. The distances between the connected junctions along the direction are not equidistant; they are relative to each other and depend on the current edge length and the length of the shortest edge.
| String |
length_attribute (Optional) |
The network attribute from which the distances will be computed when initial_distances is FROM_ATTRIBUTE_EDGE. | String |
Derived Output
Name | Explanation | Data Type |
out_network_diagram_layer | The updated network diagram. | Diagram Layer |
Code sample
Apply the Relative Mainline Layout to Temporary diagram.
import arcpy
arcpy.ApplyRelativeMainlineLayout('Temporary diagram', 'LineTrack',
'FROM_LEFT_RIGHT’, 2, 45)
Environments
Licensing information
- Basic: No
- Standard: Yes
- Advanced: Yes