Skip to main content

ESRI-2020-LC

This layer displays a global map of land use/land cover (LULC) derived from ESA Sentinel-2 imagery at 10m resolution. Each year is generated with Impact Observatory’s deep learning AI land classification model, trained using billions of human-labeled image pixels from the National Geographic Society. The global maps are produced by applying this model to the Sentinel-2 Level-2A image collection on Microsoft’s Planetary Computer, processing over 400,000 Earth observations per year.

About

Variable mapped: Land use/land cover for several years

Data Projection: Universal Transverse Mercator (UTM)

Extent: Global

Source imagery: Sentinel-2

Cell Size: 10m (0.00008983152098239751 degrees)

Type: Thematic

Source: Esri Inc.

Multiple versions

Citation

Karra, Kontgis, et al. “Global land use/land cover with Sentinel-2 and deep learning.” IGARSS 2021-2021 IEEE International Geoscience and Remote Sensing Symposium. IEEE, 2021.

This dataset is based on the dataset produced for the Dynamic World Project by National Geographic Society in partnership with Google and the World Resources Institute.

Download data

Version 003

Use the navigator/downloader for the required version. This provides access to individual 10-meter resolution GeoTIFF scenes for terrestrial regions, for each year from 2017-2021.

It allows downloading all scenes for each year as a zip file (approx 60 GB each).

source ~/proyectos/CES/cesdata/env/project-env.sh

## download all year for selection of tiles:


SRV=https://lulctimeseries.blob.core.windows.net
VRS=lulctimeseriespublic
VRS=lulctimeseriesv003
mkdir -p $GISDATA/landcover/global/ESRI-2020-LC/$VRS
cd $GISDATA/landcover/global/ESRI-2020-LC/$VRS

for year in $(seq 2017 2022)
do
for tile in 19P 18P 19N 18N 20N 21N
do
wget --continue $SRV/$VRS/lc${year}/${tile}_${year}0101-$((year+1))0101.tif
done
done


source ~/proyectos/CES/cesdata/env/project-env.sh

## download zipped composite
mkdir -p $GISDATA/landcover/global/ESRI-2020-LC/composite
cd $GISDATA/landcover/global/ESRI-2020-LC/composite

wget -b --continue https://ai4edataeuwest.blob.core.windows.net/io-lulc/io-lulc-model-001-v01-composite-v03-supercell-v02-clip-v01.zip

## or download all tiles

mkdir -p $GISDATA/landcover/global/ESRI-2020-LC/raw
cd $GISDATA/landcover/global/ESRI-2020-LC/raw

## example ## wget --continue https://ai4edataeuwest.blob.core.windows.net/io-lulc/io-lulc-model-001-v01-composite-v03-supercell-v02-clip-v01/42F_20200101-20210101.tif

for p in A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
do
for k in $(seq 1 60)
do
export v=$(printf %02d $k)
wget --continue https://ai4edataeuwest.blob.core.windows.net/io-lulc/io-lulc-model-001-v01-composite-v03-supercell-v02-clip-v01/${v}${p}_20200101-20210101.tif
done
done

## download different years for each tile

Virtual Raster Tileset will not work due to different projections. Even with -allow_projection_difference option it will not produce useful resutls. So we will first reproject each tile to Eckert IV projection and then use VRT.

source ~/proyectos/CES/cesdata/env/project-env.sh
cd $WORKDIR
qsub $SCRIPTDIR/inc/pbs/reproject-ESRI-2020-LC.pbs

cd $GISDATA/landcover/global/ESRI-2020-LC/
module add python/intel-3.6.8 perl/5.28.0 gdal/3.2.1 geos/3.8.1

export VRS="20200101-20210101"
gdalbuildvrt index_${VRS}.vrt $GISDATA/landcover/global/ESRI-2020-LC/eck4/*_${VRS}.tif

Examples

These are for older version of this product, need update

R

source("~/proyectos/CES/cesdata/env/project-env.R")
data.dir <- sprintf("%s/landcover/global/ESRI-2020-LC/",gis.data)
dir(data.dir)
require(raster)
r0 <- raster(sprintf("%s/58U_20200101-20210101.tif",data.dir))
e1 <- extent(241421.961084288, 389113.288517916, 6214178.44918707, 6295936.14830211)

plot(r0)
plot(e1,add=T,col=2,lwd=3)

r1 <- crop(r0,e1)
plot(r1)
v1 <- values(r1)
table(v1)

r0_snow <- r0 == 9
r0_snow_1km_max <- raster::aggregate(r0_snow,100,fun=max)
r0_snow_1km_mean <- raster::aggregate(r0_snow,100,fun=mean)
r0_snow_1km_sum <- raster::aggregate(r0_snow,100,fun=sum)

plot(r0_snow_1km_mean)
plot(r0_snow)
plot(r0_snow_1km_sum)
writeRaster(r0_snow_1km_mean,filename='test_mean.tif',datatype='FLT4S',options=c("COMPRESS=DEFLATE"),overwrite=T)
writeRaster(r0_snow_1km_sum,filename='test_sum.tif',datatype='INT2S',options=c("COMPRESS=DEFLATE"),overwrite=T)

Gdal

cd $WORKDIR
gdal_calc.py -A $GISDATA/landcover/global/ESRI-2020-LC/58U_20200101-20210101.tif --calc="A == 2" --outfile equals2.tif --creation-option="COMPRESS=DEFLATE" --type=UInt16 --NoDataValue=65535 --overwrite
gdalinfo equals2.tif -stats

gdalwarp -tr 1000 1000 -r sum equals2.tif equals2-averaged_1km.tif -co "COMPRESS=DEFLATE"
gdalinfo equals2-averaged_1km.tif -stats

Example code in python


from osgeo import gdal
import numpy as np
import sys ,os

# from osgeo.gdalconst import *
data_dir='/srv/scratch/cesdata/gisdata/landcover/global/ESRI-2020-LC'
gtf = os.path.join(data_dir,"58U_20200101-20210101.tif")
raster = gdal.Open(gtf)
columns = raster.RasterXSize
lines = raster.RasterYSize
band = raster.GetRasterBand(1).ReadAsArray(0,0,columns,lines)
band.shape

driver=gdal.GetDriverByName('GTIff')
driver.Register()


paths = []
paths.append(gtf)
raster_px = []
rasters_px = []
bands = []

Earth Engine Snippet

var esri_lulc2020= ee.ImageCollection("projects/sat-io/open-datasets/landcover/ESRI_Global-LULC_10m")

Sample Code: https://code.earthengine.google.com/514a294747ee5e7a136372b7e947d7bc

Class definitions

Class definitions are different for the different versions:

  • 1 Water: Areas where water was predominantly present throughout the year; may not cover areas with sporadic or ephemeral water; contains little to no sparse vegetation, no rock outcrop nor built up features like docks; examples: rivers, ponds, lakes, oceans, flooded salt plains.
  • 2 Trees: Any significant clustering of tall (~15-m or higher) dense vegetation, typically with a closed or dense canopy; examples: wooded vegetation, clusters of dense tall vegetation within savannas, plantations, swamp or mangroves (dense/tall vegetation with ephemeral water or canopy too thick to detect water underneath).
  • 3 Grass: Open areas covered in homogenous grasses with little to no taller vegetation; wild cereals and grasses with no obvious human plotting (i.e., not a plotted field); examples: natural meadows and fields with sparse to no tree cover, open savanna with few to no trees, parks/golf courses/lawns, pastures. MISSING FROM V003*
  • 4 Flooded vegetation: Areas of any type of vegetation with obvious intermixing of water throughout a majority of the year; seasonally flooded area that is a mix of grass/shrub/trees/bare ground; examples: flooded mangroves, emergent vegetation, rice paddies and other heavily irrigated and inundated agriculture.
  • 5 Crops: Human planted/plotted cereals, grasses, and crops not at tree height; examples: corn, wheat, soy, fallow plots of structured land.
  • 6 Scrub/shrub: Mix of small clusters of plants or single plants dispersed on a landscape that shows exposed soil or rock; scrub-filled clearings within dense forests that are clearly not taller than trees; examples: moderate to sparse cover of bushes, shrubs and tufts of grass, savannas with very sparse grasses, trees or other plants MISSING FROM V003*
  • 7 Built Area: Human made structures; major road and rail networks; large homogenous impervious surfaces including parking structures, office buildings and residential housing; examples: houses, dense villages / towns / cities, paved roads, asphalt.
  • 8 Bare: ground Areas of rock or soil with very sparse to no vegetation for the entire year; large areas of sand and deserts with no to little vegetation; examples: exposed rock or soil, desert and sand dunes, dry salt flats/pans, dried lake beds, mines.
  • 9 Snow/Ice: Large homogenous areas of permanent snow or ice, typically only in mountain areas or highest latitudes; examples: glaciers, permanent snowpack, snow fields.
  • 10 Clouds: No land cover information due to persistent cloud cover.
  • 11 Rangeland: Open areas covered in homogenous grasses with little to no taller vegetation; wild cereals and grasses with no obvious human plotting (i.e., not a plotted field); examples: natural meadows and fields with sparse to no tree cover, open savanna with few to no trees, parks/golf courses/lawns, pastures. Mix of small clusters of plants or single plants dispersed on a landscape that shows exposed soil or rock; scrub-filled clearings within dense forests that are clearly not taller than trees; examples: moderate to sparse cover of bushes, shrubs and tufts of grass, savannas with very sparse grasses, trees or other plants MISSING from previous versions

This dataset is used for...

IUCN RLE assessment of tropical glaciers