Cognised existence: Forests are contiguous areas of tree cover that function as ecological systems, carbon stores, and managed resources. Their spatial extent and type are the primary inputs for biodiversity, climate, and land management analysis.

Question: Where are forests and woodland areas and what type are they?

OSM wiki: https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dforest | https://wiki.openstreetmap.org/wiki/Tag:natural%3Dwood


Realisations

OpenStreetMap — landuse=forest, natural=wood

OSM distinguishes between managed forest (landuse=forest) and natural woodland (natural=wood). In practice both are used for forested areas and coverage is globally extensive.

osmnx access

import osmnx as ox
ox.settings.cache_folder = ".cache/"
 
# Managed forest
forest = ox.features_from_place(
    "Denmark",
    tags={"landuse": "forest"}
)
 
# Natural woodland
woodland = ox.features_from_place(
    "Denmark",
    tags={"natural": "wood"}
)

Geofabrik layers

LayerRelevant fclass values
gis_osm_landuse_a_free_1.shpforest
gis_osm_natural_a_free_1.shpwood

Key OSM tags

TagMeaning
landuse=forestManaged / commercial forest
natural=woodNatural or semi-natural woodland
leaf_type=broadleavedBroadleaf / deciduous
leaf_type=needleleavedConiferous
leaf_type=mixedMixed
managed=yes/noWhether actively managed
name=*Forest name

Geometry Representations

Rep IDSource DatasetGeometry TypeNative CRSSuitable ForNot Suitable For
forest_osm_polygonOSM via GeofabrikPolygonEPSG:4326Area calculation, fragmentation analysis, map displaySub-stand classification, age structure, canopy height

Limitations

  • landuse=forest vs natural=wood distinction is applied inconsistently.
  • Species composition and management intensity are not reliably tagged.
  • For canopy cover and forest type, consider Global Forest Watch, Copernicus Land Cover, or CORINE Land Cover.