Connector
Connectors create physical connections between segments.
| Geometry Type | Point | 
|---|---|
| Theme | transportation | 
| Type | connector | 
Connectors help define the topology of the transportation network by defining points of physical connection between two or more segments.
Apart from their point geometry and the core properties required for all Overture features, connectors do not have any other properties.
Schema
- 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
Example
{
  "id": "overture:transportation:connector:example",
  "type": "Feature",
  "geometry": {
    "type": "Point",
    "coordinates": [
      0,
      0
    ]
  },
  "properties": {
    "theme": "transportation",
    "type": "connector",
    "version": 0
  }
}