跳至主要内容

Segment

Segment 是人或物體可以行走的路徑。

Geometry TypeLineString
Themetransportation
Typesegment

Segment 的幾何形狀代表人或物體可能行走的路徑中心線。 Segment 屬性描述了該路徑的物理屬性(例如路面和寬度)以及非物理屬性(例如通行限制規則)。

如果兩個 Segment 的 connector 屬性都引用了共同的 Connector ,則它們在物理上是連接的。在這種情況下,兩個 Segment 的幾何形狀都必須包含該共同 Connector 的坐標。 Segment 之間的物理連接表示在沒有屬性限制(如轉彎限制)的情況下,可能可以從一個 Segment 通行到另一個連接點。反之,即使兩個 Segment 的幾何形狀相交,但如果它們沒有共享共同的 Connector ,則它們不被視為物理上連接的。

子類型

Segment 可以有以下三種可能的子類型。

subtyperoad

road Segment 代表任何類型的道路、街道或小徑的一部分,包括專用的步行或騎行道,但不包括鐵路。

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"
}
]
}
}