
- Dataset Availability
- 1992-01-01T00:00:00Z–2014-01-01T00:00:00
- Dataset Provider
- Beijng Normal University
- Earth Engine Snippet
-
ee.ImageCollection("BNU/FGS/CCNL/v1")
Sign up for Earth Engine
Earth Engine is free to use for research, education, and nonprofit use.
To access this dataset in Earth Engine, please sign up for Earth Engine then return to this page.
- Tags
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 1km pixel size.
Bands
Resolution
1000 meters
Bands
Name | Description |
---|---|
b1 |
Corrected nighttime light intensity. |
Terms of Use
Terms of Use
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 in Earth Engine
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');