GHSL: Global building height 2018 (P2023A)

JRC/GHSL/P2023A/GHS_BUILT_H
Dataset Availability
2018-01-01T00:00:00Z–2018-12-31T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("JRC/GHSL/P2023A/GHS_BUILT_H")
Tags
alos building built built-environment builtup copernicus dem ghsl height jrc sdg sentinel2-derived srtm urban

Description

This spatial raster dataset depicts the global distribution of building heights at a resolution of 100 m, referred to the year 2018. The input data used to predict building heights are the ALOS Global Digital Surface Model (30 m), the NASA Shuttle Radar Topographic Mission data (30 m), and a global Sentinel-2 image composite from L1C data for the period 2017-2018.

More information about the GHSL data products can be found in the GHSL Data Package 2023 report, where the building height layer is referred to as the Average Net Building Height (ANBH).

The Global Human Settlement Layer (GHSL) project is supported by the European Commission, Joint Research Centre, and Directorate-General for Regional and Urban Policy.

Bands

Resolution
100 meters

Bands

Name Units Description
built_height m

Average building height per grid cell

Terms of Use

Terms of Use

The GHSL has been produced by the European Commission Joint Research Centre as open and free data. Reuse is authorised, provided the source is acknowledged. For more information, please read the use conditions (European Commission Reuse and Copyright Notice).

Citations

Citations:

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var image = ee.Image("JRC/GHSL/P2023A/GHS_BUILT_H/2018");
var built = image.select('built_height');
var visParams = {
  min: 0.0,
  max: 12.0,
  palette: ['000000', '0d0887', '7e03a8', 'cc4778', 'f89540', 'f0f921'],
};

Map.setCenter(2.349014, 48.864716, 10);
Map.addLayer(built, visParams, 'Average building height [m], 2018');
Open in Code Editor