Cognised existence: Habitat extent describes where ecological units are physically present as mapped spatial entities.

Question: Which habitat and nature-type areas are mapped at this location?

OSM wiki: https://wiki.openstreetmap.org/wiki/Map_features


Realisations

OpenStreetMap — natural and habitat proxy tags

OSM does not have a single canonical habitat schema, but many habitat-like extents can be derived from tags such as wetland, heath, scrub, grassland, and woodland.

osmnx access

import osmnx as ox
ox.settings.cache_folder = ".cache/"
 
habitats = ox.features_from_place(
    "Denmark",
    tags={
        "natural": ["wetland", "heath", "scrub", "grassland", "wood"],
        "landuse": ["forest", "meadow"],
    },
)

Geofabrik layers

LayerContent
gis_osm_natural_a_free_1.shpNatural polygons
gis_osm_landuse_a_free_1.shpLand-use polygons including meadow/forest

Geometry Representations

Rep IDSource DatasetGeometry TypeNative CRSSuitable ForNot Suitable For
habitat_osm_polygonsOSM via GeofabrikPolygonEPSG:4326Broad habitat screening, ecological context mapsLegal habitat designation compliance, Annex-level reporting

Limitations

  • Habitat semantics are proxy-based and non-standardized across countries.
  • OSM cannot replace official ecological habitat surveys.
  • Use as exploratory/open baseline, then validate with authoritative habitat products.