LandScan High Definition Data for Ukraine, January 2022

DOE/ORNL/LandScan_HD/Ukraine_202201
Dataset Availability
2022-01-01T00:00:00Z–2022-02-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.Image("DOE/ORNL/LandScan_HD/Ukraine_202201")
Tags
landscan population
ukraine

Description

LandScan High Definition (HD) provides gridded population estimates at 3 arc-second (~100m) resolution. Values for each LandScan HD cell represent an ambient (i.e. 24 hour average) population count estimate. In this way, the data capture the full potential activity space of people throughout the course of the day and night rather than just a residential location. The LandScan HD model incorporates current land use and infrastructure data from a variety of sources, applies facility occupancy estimates from ORNL's Population Density Tables (PDT) project, and leverages novel image processing algorithms developed at ORNL to rapidly map building structures and neighborhood areas using high-performance computing environments.

The source for subnational population counts used in the development of this data comes from State Statistics Service of Ukraine.

These subnational estimates were adjusted to the country total population provided by the CIA World Factbook.

Bands

Resolution
100 meters

Bands

Name Min Max Description
population 0* 1020*

24 hour average population count estimate

* estimated min or max value

Terms of Use

Terms of Use

This dataset is licensed under CC-BY 4.0.'

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.Image('DOE/ORNL/LandScan_HD/Ukraine_202201');
var vis = {
  min: 0.0,
  max: 10.0,
  palette: ['lemonchiffon', 'khaki', 'orange', 'orangered', 'red', 'maroon'],
};
Map.centerObject(dataset);
Map.addLayer(dataset, vis, 'Population Count');
Open in Code Editor