Land Use
Copernicus Global Land Cover 100 m
CGLS-LC100 Collection 3. 100 m land cover with cover fractions, 2015 to 2019.
A discrete map plus continuous cover fractions (tree, shrub, grass, crop, built-up, bare, water, snow) per pixel, useful when a model wants fractional land cover.
- Source
- Copernicus Programme (European Union)
- Resolution
- 100 m
- Data type
- Raster
- Time span
- 2015–2019
- Temporal
- Annual
- Access type
- Direct download (external)
- Formats
- GeoTIFF
- Coverage
- Global land (-180, -60, 180, 80)
- Licence
- CC BY 4.0
- DOI
- 10.5281/zenodo.3939050
- Provider page
- land.copernicus.eu/en/products/global-dynamic-land-cover
Cite as. Buchhorn, M., et al. (2020). Copernicus Global Land Service: Land Cover 100m: collection 3: epoch 2019: Globe. Zenodo. https://doi.org/10.5281/zenodo.3939050
Access
link2019 epoch on Zenodo
curl "https://hydrological.org/api/v1/datasets/copernicus-glc100/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/copernicus-glc100/links",
params={"bbox": "-75,-20,-50,5"})
for group in r.json()["groups"]:
for link in group["links"]:
print(link["url"])
const res = await fetch("https://hydrological.org/api/v1/datasets/copernicus-glc100/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