Skip to main content

Segment

Segments are paths which can be traveled by people or objects.

Geometry TypeLineString
Themetransportation
Typesegment

Segment geometry represents the center-line of a path that a person or object may travel. Segment properties describe both the physical attributes (e.g. road surface and width) and non-physical attributes (e.g. access restriction rules) of that path.

Two segments are physically connected if a common connector is referenced from the connector property of both segments. Where this occurs, both segment geometries must contain the common connector's coordinates. A physical connection between segments indicates that it may be possible to travel from one segment to the next at the connected location provided the segment properties do not indicate a restriction, such as a turn restriction, which would prevent the transition. Conversely, two segments are not physically connected -— even if their geometries intersect —- if they do not share a common connector.

Subtypes

A segment may have one of three possible subtypes.

subtyperoad

A road segment represents a section of any kind of road, street or path, including a dedicated path for walking or cycling, but excluding a railway.

Schema

Loading ....

Examples

{
"id": "overture:transportation:example:simple-road",
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-123.13538016118466,
49.28584368472093
],
[
-123.13430200328841,
49.28656927229528
],
[
-123.13325122717998,
49.28727252390803
]
]
},
"properties": {
"theme": "transportation",
"type": "segment",
"version": 5,
"subtype": "road",
"class": "residential",
"connector_ids": [
"overture:transportation:example:via-turn-restriction-connector1",
"overture:transportation:example:via-turn-restriction-connector2"
],
"connectors": [
{
"connector_id": "overture:transportation:example:via-turn-restriction-connector1",
"at": 0
},
{
"connector_id": "overture:transportation:example:via-turn-restriction-connector2",
"at": 1
}
],
"names": {
"primary": "Nicola Street"
},
"lanes": [
{
"value": [
{
"direction": "backward"
},
{
"direction": "forward"
}
]
}
],
"road_surface": [
{
"value": "paved"
}
]
}
}