Leaf: Energy Infrastructure Dataset: OpenStreetMap — power=*

OSM contains global energy-network features: plants, substations, transmission towers, and power lines.

osmnx access

import osmnx as ox
ox.settings.cache_folder = ".cache/"
 
power_features = ox.features_from_place(
    "Denmark",
    tags={"power": True},
)

Key OSM tags

TagMeaning
power=lineTransmission/distribution overhead line
power=cableUnderground/submarine cable
power=substationSubstation polygon or point
power=plantPower plant area
power=generatorSingle generator (wind turbine, solar, etc.)
generator:source=*Source type (wind, solar, gas, hydro, etc.)