Connector
Connector 在 Segment 之間創建物理連接。
Geometry Type | Point |
---|---|
Theme | transportation |
Type | connector |
Connector 通過定義兩個或多個 Segment 之間的物理連接點,幫助確定交通網絡的拓撲結構。
除了它們的點幾何和所有 Overture 特性所需的核心屬性外,Connector 沒有其他屬性。
架構
- Browsable
- YAML
Loading ....
---
"$schema": https://json-schema.org/draft/2020-12/schema
title: connector
description: >-
Connectors create physical connections between segments. Connectors
are compatible with GeoJSON Point features.
type: object
properties:
id:
"$ref": ../defs.yaml#/$defs/propertyDefinitions/id
geometry:
description: >-
Connector's geometry which MUST be a Point as defined by GeoJSON
schema.
unevaluatedProperties: false
allOf:
- "$ref": https://geojson.org/schema/Point.json
properties:
unevaluatedProperties: false
allOf:
- "$ref": ../defs.yaml#/$defs/propertyContainers/overtureFeaturePropertiesContainer
範例
{
"id": "overture:transportation:connector:example",
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0,
0
]
},
"properties": {
"theme": "transportation",
"type": "connector",
"version": 0
}
}