Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.63 KB

IntersectingEdge.md

File metadata and controls

36 lines (27 loc) · 1.63 KB

IntersectingEdge

Properties

Name Type Description Notes
begin_heading int The direction at the beginning of an edge. The units are degrees clockwise from north. [optional]
from_edge_name_consistency bool True if this intersecting edge at the end node has consistent names with the path from the other edge. [optional]
to_edge_name_consistency bool True if this intersecting edge at the end node has consistent names with the path to the other edge. [optional]
driveability Traversability [optional]
cyclability Traversability [optional]
walkability Traversability [optional]
use EdgeUse [optional]
road_class RoadClass [optional]

Example

from stadiamaps.models.intersecting_edge import IntersectingEdge

# TODO update the JSON string below
json = "{}"
# create an instance of IntersectingEdge from a JSON string
intersecting_edge_instance = IntersectingEdge.from_json(json)
# print the JSON string representation of the object
print(IntersectingEdge.to_json())

# convert the object into a dict
intersecting_edge_dict = intersecting_edge_instance.to_dict()
# create an instance of IntersectingEdge from a dict
intersecting_edge_from_dict = IntersectingEdge.from_dict(intersecting_edge_dict)

[Back to Model list] [Back to API list] [Back to README]