Infrastructure
Features in the infrastructure type come from OpenStreetMap features with tags like aeroway, communication, bridge, man_made, or tower. These features include bridges, aerialways, and airports.
| Geometry Type | 
 | 
|---|---|
| Theme | base | 
| Type | infrastructure | 
Schema
- Browsable
- YAML
Loading ....
---
"$schema": https://json-schema.org/draft/2020-12/schema
title: Infrastructure Schema
description: Various features from OpenStreetMap such as bridges, airport runways, aerialways, or communication towers and lines.
type: object
properties:
  id:
    "$ref": ../defs.yaml#/$defs/propertyDefinitions/id
  geometry:
    unevaluatedProperties: false
    oneOf:
      - "$ref": https://geojson.org/schema/Point.json
      - "$ref": https://geojson.org/schema/LineString.json
      - "$ref": https://geojson.org/schema/Polygon.json
      - "$ref": https://geojson.org/schema/MultiPolygon.json
  properties:
    unevaluatedProperties: false
    allOf:
      - "$ref": ../defs.yaml#/$defs/propertyContainers/overtureFeaturePropertiesContainer
      - "$ref": ../defs.yaml#/$defs/propertyContainers/namesContainer
      - "$ref": ../defs.yaml#/$defs/propertyContainers/levelContainer
      - "$ref": ./defs.yaml#/$defs/propertyContainers/osmPropertiesContainer
    required:
      - subtype
      - class
    properties:
      subtype:
        description: Further description of the type of infrastructure.
        type: string
        enum:
          - aerialway
          - airport
          - barrier
          - bridge
          - communication
          - manhole
          - pedestrian
          - pier
          - power
          - recreation
          - tower
          - transit
          - utility
          - waste_management
          - water
      class:
        description: Further classification of the infrastructure type
        type: string
        enum:
          - aerialway_station
          - airport
          - airport_gate
          - airstrip
          - aqueduct
          - atm
          - barrier
          - bell_tower
          - bench
          - bicycle_parking
          - block
          - boardwalk
          - bollard
          - border_control
          - bridge
          - bridge_support
          - bump_gate
          - bus_route
          - bus_station
          - bus_stop
          - bus_trap
          - cable
          - cable_barrier
          - cable_car
          - cable_distribution
          - camp_site
          - cantilever
          - catenary_mast
          - cattle_grid
          - chain
          - chair_lift
          - city_wall
          - communication_line
          - communication_pole
          - communication_tower
          - connection
          - cooling
          - covered
          - cutline
          - cycle_barrier
          - dam
          - defensive
          - ditch
          - diving
          - drag_lift
          - drain
          - drinking_water
          - entrance
          - fence
          - ferry_terminal
          - full-height_turnstile
          - gate
          - generator
          - gondola
          - guard_rail
          - hampshire_gate
          - handrail
          - hedge
          - height_restrictor
          - heliostat
          - helipad
          - heliport
          - hose
          - information
          - insulator
          - international_airport
          - jersey_barrier
          - kerb
          - kissing_gate
          - lift_gate
          - lighting
          - lightning_protection
          - manhole
          - military_airport
          - minaret
          - minor_line
          - mixed_lift
          - mobile_phone_tower
          - monitoring
          - movable
          - municipal_airport
          - observation
          - parking
          - parking_space
          - pedestrian_crossing
          - picnic_table
          - pier
          - pipeline
          - plant
          - planter
          - platform
          - portal
          - post_box
          - power_line
          - power_pole
          - power_tower
          - private_airport
          - pylon
          - radar
          - railway_halt
          - railway_station
          - recycling
          - regional_airport
          - retaining_wall
          - runway
          - sally_port
          - seaplane_airport
          - sewer
          - silo
          - siren
          - stile
          - stop_position
          - storage_tank
          - sub_station
          - substation
          - swing_gate
          - switch
          - t-bar
          - taxiway
          - terminal
          - toilets
          - toll_booth
          - transformer
          - trestle
          - utility_pole
          - vending_machine
          - viaduct
          - viewpoint
          - wall
          - waste_basket
          - waste_disposal
          - watchtower
          - water_tower
          - weir
      surface: { "$ref": ./defs.yaml#/$defs/propertyDefinitions/surface }
Examples
- Infrastructure Example
{
  "id": "08b2748cc1383fff0001b38438099b73",
  "type": "Feature",
  "geometry": {
    "type": "Polygon",
    "coordinates": [
      [
        [
          -85.6743541,
          42.9676009
        ],
        [
          -85.6743623,
          42.9674649
        ],
        [
          -85.6744114,
          42.9674803
        ],
        [
          -85.6744559,
          42.9674919
        ],
        [
          -85.6745302,
          42.9675058
        ],
        [
          -85.6746036,
          42.9675151
        ],
        [
          -85.6746959,
          42.9675171
        ],
        [
          -85.675835,
          42.9674967
        ],
        [
          -85.6758985,
          42.9674915
        ],
        [
          -85.6759656,
          42.967483
        ],
        [
          -85.6760399,
          42.9674711
        ],
        [
          -85.676099,
          42.9674566
        ],
        [
          -85.6761817,
          42.9674324
        ],
        [
          -85.676227,
          42.9674184
        ],
        [
          -85.6762149,
          42.9675911
        ],
        [
          -85.6761726,
          42.9675857
        ],
        [
          -85.676106,
          42.9675781
        ],
        [
          -85.6760499,
          42.9675741
        ],
        [
          -85.6759947,
          42.9675723
        ],
        [
          -85.6743541,
          42.9676009
        ]
      ]
    ]
  },
  "properties": {
    "theme": "base",
    "type": "infrastructure",
    "subtype": "bridge",
    "class": "bridge",
    "names": {
      "primary": "Gillett Bridge",
      "rules": [
        {
          "variant": "alternate",
          "value": "Interurban Bridge"
        }
      ]
    },
    "sources": [
      {
        "property": "",
        "record_id": "w556368546@3",
        "dataset": "OpenStreetMap"
      }
    ],
    "version": 0
  }
}