Lesson 3, Topic 1
In Progress

The Human Global Settlement Layer (GHSL) in Application

YouTube

By loading the video, you agree to YouTube’s privacy policy.
Learn more

Load video

YouTube

By loading the video, you agree to YouTube’s privacy policy.
Learn more

Load video

Show me the code!!

var dataset = ee.Image('JRC/GHSL/P2016/BUILT_LDSMT_GLOBE_V1');
var builtUpMultitemporal = dataset.select('built');
var visParams = {
  min: 1.0,
  max: 6.0,
  palette: ['0c1d60', '000000', '448564', '70daa4', '83ffbf', 'ffffff'],
};


var builtUp2000 = dataset.select('built').gt(3);
Map.addLayer(builtUp2000, {min: 0, max:1, palette:["white","red"]}, "recent build up")