ObservationsLand Use
Sentinel-2 Level-2A
Copernicus Sentinel-2 surface reflectance. 10 m multispectral imagery every 5 days.
Bottom-of-atmosphere reflectance in 13 bands with a scene classification layer, the basis for water indices, flood extent and irrigation mapping.
- Source
- Copernicus Programme (European Union), European Space Agency
- Resolution
- 10, 20 and 60 m
- Data type
- Raster
- Time span
- 2017–present
- Temporal
- 5-day revisit
- Access type
- Direct download (external) · Open COGs on AWS through STAC, no login
- Formats
- Cloud Optimized GeoTIFF, JPEG 2000
- Coverage
- Global land and coast (-180, -56, 180, 84)
- Licence
- Copernicus Sentinel data terms (free and open)
- Provider page
- dataspace.copernicus.eu/
Access
stacSTAC search on Earth Search (Element 84)
STAC API at https://earth-search.aws.element84.com/v1, collection sentinel-2-l2a.
curl "https://earth-search.aws.element84.com/v1/search?collections=sentinel-2-l2a&bbox=-75,-20,-50,5&limit=10" \
-H "Accept: application/geo+json"
from pystac_client import Client # pip install pystac-client
catalog = Client.open("https://earth-search.aws.element84.com/v1")
search = catalog.search(collections=["sentinel-2-l2a"],
bbox=[-75, -20, -50, 5], max_items=10)
for item in search.items():
print(item.id, list(item.assets))
const res = await fetch("https://earth-search.aws.element84.com/v1/search?collections=sentinel-2-l2a&bbox=-75,-20,-50,5&limit=10");
const { features } = await res.json();
features.forEach(f => console.log(f.id, Object.keys(f.assets)));
Also available as JSON: links · manifest · dataset record