World Settlement Footprint 2015

DLR/WSF/WSF2015/v1
Dataset Availability
2015-01-01T00:00:00Z–2016-01-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.Image("DLR/WSF/WSF2015/v1")
Tags
landcover landsat-derived sentinel1-derived settlement urban

Description

The World Settlement Footprint (WSF) 2015 is a 10m resolution binary mask outlining the extent of human settlements globally derived by means of 2014-2015 multitemporal Landsat-8 and Sentinel-1 imagery (of which ~217,000 and ~107,000 scenes have been processed, respectively).

The temporal dynamics of human settlements over time are sensibly different than those of all other non-settlement information classes. Hence, given all the multitemporal images available over a region of interest in the selected time interval, key temporal statistics (i.e., temporal mean, minimum, maximum, etc.) are extracted for:

  • the original backscattering value in the case of radar data; and
  • different spectral indices (e.g., vegetation index, built-up index, etc.) derived after performing cloud masking in the case of optical imagery.

Next, different classification schemes based on Support Vector Machines (SVMs) are separately applied to the optical and radar temporal features, respectively, and, finally, the two outputs are properly combined together.

To quantitatively assess the high accuracy and reliability of the layer, an extensive validation exercise has been carried out in collaboration with Google based on a huge amount of ground-truth samples (i.e., 900,000) labeled by crow-sourcing photo-interpretation. A statistically robust and transparent protocol has been defined following the state-of-the-art practices currently recommended in the literature.

For all technical details, please refer to the publication

Bands

Bands

Name Min Max Pixel Size Description
settlement 255 255 10 meters

A human settlement area

Terms of Use

Terms of Use

CC0-1.0

Citations

Citations:
  • Marconcini, M., Metz-Marconcini, A., Üreyen, S., Palacios-Lopez, D., Hanke, W., Bachofer, F., Zeidler, J., Esch, T., Gorelick, N., Kakarla, A., Paganini, M., Strano, E. (2020). Outlining where humans live, the World Settlement Footprint 2015. Scientific Data, 7(1), 1-14. doi:10.1038/s41597-020-00580-5

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.Image('DLR/WSF/WSF2015/v1');

var opacity = 0.75;
var blackBackground = ee.Image(0);
Map.addLayer(blackBackground, null, 'Black background', true, opacity);

var visualization = {
  min: 0,
  max: 255,
};
Map.addLayer(dataset, visualization, 'Human settlement areas');

Map.setCenter(90.45, 23.7, 7);
Open in Code Editor