CCNL: Consistent and Corrected Nighttime Light Dataset from DMSP-OLS (1992-2013) v1

BNU/FGS/CCNL/v1
Dataset Availability
1992-01-01T00:00:00Z–2014-01-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("BNU/FGS/CCNL/v1")

Description

The Consistent and Corrected Nighttime Lights (CCNL) dataset is a reprocessed version of the Defense Meteorological Program (DMSP) Operational Line-Scan System (OLS) Version 4. A series of methods was used to mitigate the impact of inter-annual inconsistency, saturation, and blooming effects and to improve data quality.

CCNL Version 1 spans the globe from 75N to 65S and has 1 km pixel size.

Bands

Pixel Size
1000 meters

Bands

Name Description
b1

Corrected nighttime light intensity.

Terms of Use

Terms of Use

CC-BY-4.0

Citations

Citations:
  • Zhao,Chenchen, Cao,Xin, Chen,Xuehong, & Cui,Xihong. (2020). A Consistent and Corrected Nighttime Light dataset (CCNL 1992-2013) from DMSP-OLS data (Version 1.0) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.6644980

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('BNU/FGS/CCNL/v1')
                  .filter(ee.Filter.date('2010-01-01', '2010-12-31'));
var nighttimeLights = dataset.select('b1');
var nighttimeLightsVis = {
  min: 3.0,
  max: 60.0,
};
Map.setCenter(31.4, 30, 6);
Map.addLayer(nighttimeLights, nighttimeLightsVis, 'Nighttime Lights');
Open in Code Editor