Land Use
ESA CCI and C3S Land Cover
Climate Change Initiative Land Cover, continued by Copernicus C3S. 300 m annual land cover since 1992.
Twenty-two classes in the UN Land Cover Classification System, consistent from 1992 onward. The longest annual global land-cover record, suited to land-use change scenarios in long hydrological simulations.
- Source
- Copernicus Programme (European Union), European Space Agency
- Resolution
- 300 m
- Data type
- Raster
- Time span
- 1992–2022
- Temporal
- Annual
- Access type
- API (external) · Copernicus Climate Data Store account
- Formats
- NetCDF
- Coverage
- Global (-180, -90, 180, 90)
- Licence
- ESA CCI and Copernicus licences (free, attribution required)
- Provider page
- cds.climate.copernicus.eu/datasets/satellite-land-cover
Access
linksatellite-land-cover in the Climate Data Store
https://cds.climate.copernicus.eu/datasets/satellite-land-cover
curl "https://hydrological.org/api/v1/datasets/esa-cci-landcover/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import cdsapi # pip install cdsapi, key in ~/.cdsapirc
c = cdsapi.Client()
c.retrieve("satellite-land-cover", {
"variable": "all",
"year": ["2020"],
"version": ["v2_1_1"],
"area": [5, -75, -20, -50],
}, "land_cover_2020.zip")
const res = await fetch("https://hydrological.org/api/v1/datasets/esa-cci-landcover/links?bbox=-75,-20,-50,5");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));
Also available as JSON: links · manifest · dataset record