Land use
Features in the land use theme come primarily from OpenStreetMap features containing the landuse tag.
| Geometry Type | 
 | 
|---|---|
| Theme | base | 
| Type | land_use | 
Schema
- Browsable
- YAML
Loading ....
---
"$schema": https://json-schema.org/draft/2020-12/schema
title: land_use
description: Land use features from OpenStreetMap
type: object
properties:
  id:
    "$ref": ../defs.yaml#/$defs/propertyDefinitions/id
  geometry:
    description: Classifications of the human use of a section of land. Translates `landuse` from OpenStreetMap tag from OpenStreetMap.
    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: Broad type of land
        type: string
        enum:
          - agriculture
          - aquaculture
          - campground
          - cemetery
          - construction
          - developed
          - education
          - entertainment
          - golf
          - grass
          - horticulture
          - landfill
          - managed
          - medical
          - military
          - park
          - pedestrian
          - protected
          - recreation
          - religious
          - residential
          - resource_extraction
          - transportation
          - winter_sports
      class:
        description: Further classification of the land use
        type: string
        enum:
          - aboriginal_land
          - airfield
          - allotments
          - animal_keeping
          - aquaculture
          - barracks
          - base
          - beach_resort
          - brownfield
          - bunker
          - camp_site
          - cemetery
          - clinic
          - college
          - commercial
          - construction
          - danger_area
          - doctors
          - dog_park
          - driving_range
          - education
          - environmental
          - fairway
          - farmland
          - farmyard
          - flowerbed
          - forest
          - garages
          - garden
          - golf_course
          - grass
          - grave_yard
          - green
          - greenfield
          - greenhouse_horticulture
          - highway
          - hospital
          - industrial
          - institutional
          - landfill
          - lateral_water_hazard
          - logging
          - marina
          - meadow
          - military
          - national_park
          - natural_monument
          - nature_reserve
          - naval_base
          - nuclear_explosion_site
          - obstacle_course
          - orchard
          - park
          - peat_cutting
          - pedestrian
          - pitch
          - plant_nursery
          - playground
          - plaza
          - protected
          - protected_landscape_seascape
          - quarry
          - range
          - recreation_ground
          - religious
          - residential
          - retail
          - rough
          - salt_pond
          - school
          - schoolyard
          - species_management_area
          - stadium
          - state_park
          - static_caravan
          - strict_nature_reserve
          - tee
          - theme_park
          - track
          - traffic_island
          - training_area
          - trench
          - university
          - village_green
          - vineyard
          - water_hazard
          - water_park
          - wilderness_area
          - winter_sports
          - works
          - zoo
      elevation: { "$ref": ./defs.yaml#/$defs/propertyDefinitions/elevation }
      surface: { "$ref": ./defs.yaml#/$defs/propertyDefinitions/surface }
Example
- Example 1
{
  "id": "overture:land_use:example:1",
  "type": "Feature",
  "geometry": {
    "type": "Polygon",
    "coordinates": [
      [
        [
          -83.8710175,
          10.3469578
        ],
        [
          -83.8700924,
          10.3470179
        ],
        [
          -83.870043,
          10.3462819
        ],
        [
          -83.8709681,
          10.3462218
        ],
        [
          -83.8710175,
          10.3469578
        ]
      ]
    ]
  },
  "properties": {
    "theme": "base",
    "type": "land_use",
    "subtype": "recreation",
    "class": "pitch",
    "surface": "recreation_grass",
    "source_tags": {
      "leisure": "pitch",
      "sport": "soccer"
    },
    "names": {
      "primary": "Plaza Deportes Finca Tres"
    },
    "sources": [
      {
        "record_id": "w509487233@1",
        "property": "",
        "dataset": "OpenStreetMap"
      }
    ],
    "version": 0
  }
}