Full catalog/cop-dem-glo-90-dged-cog
cop-dem-glo-90-dged-cog·dataset

Global elevation map including buildings, 90m (Copernicus)

CopDEM COG (90 m)
land ESA ESA Copernicus
In plain English

What it measures. A height model of the Earth's surface at 90-metre detail, including the tops of buildings, infrastructure, and vegetation rather than just bare land.

How it's made. Created from Copernicus satellite radar observations and distributed worldwide as cloud-optimised image files at 90-metre resolution.

How & where you'd use it. A lighter, broad-scale option for terrain mapping, large-area flood and watershed studies, and global modelling where fine detail is not essential.

What's measured

CopernicusESASatelliteGlobalDEMEUEC

Coverage & cadence

  • Time span2010-12-12 → 2015-01-16
  • Spatial extent-180, -90, 180, 90

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

This Collection provides Copernicus DEM COG products, which represent the surface of the Earth including buildings, infrastructure and vegetation, in resolution of 90 meters.

Get the data

copernicus_access.py
# ESA Copernicus Data Space — open STAC API (free account)
from pystac_client import Client

cat = Client.open("https://stac.dataspace.copernicus.eu/v1")
search = cat.search(
    collections=["cop-dem-glo-90-dged-cog"],   # add _cog or _nc for a format variant
    bbox=(-10, 35, 30, 60),             # your area (W,S,E,N)
    datetime="2024-01-01/2024-12-31",
)
items = list(search.items())            # then read assets with rioxarray / xarray
Browsing the Copernicus STAC is open; downloading bytes needs a free Copernicus Data Space account.