Cognised existence: Energy infrastructure is the spatial network of generation assets, substations, and transmission/distribution lines.

Question: Which energy infrastructures are present here, and what operational constraints apply?

OSM wiki: https://wiki.openstreetmap.org/wiki/Key:power


Realisations

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.)

Geometry Representations

Rep IDSource DatasetGeometry TypeNative CRSSuitable ForNot Suitable For
energy_osm_linesOSMLineStringEPSG:4326Corridor mapping, crossing analysis, length summariesGrid flow simulation
energy_osm_points_polygonsOSMPoint/PolygonEPSG:4326Asset inventory maps, proximity to settlementsCapacity and operational dispatch modelling

Limitations

  • Voltage and capacity attributes are incomplete.
  • Power network topology may be partially mapped.
  • For regulatory planning, validate against national grid operator datasets.