Leaf: Forest Cover and Management Dataset: 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