NEX-DCP30: NASA Earth Exchange Downscaled Climate Projections

NASA/NEX-DCP30
Dataset Availability
1950-01-01T00:00:00Z–2099-12-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("NASA/NEX-DCP30")
Tags
cag climate cmip5 geophysical nasa nex precipitation temperature

Description

The NASA NEX-DCP30 dataset is comprised of downscaled climate scenarios for the conterminous United States that are derived from the General Circulation Model (GCM) runs conducted under the Coupled Model Intercomparison Project Phase 5 (CMIP5, see Taylor et al. 2012) and across the four greenhouse gas emissions scenarios known as Representative Concentration Pathways (RCPs, see Meinshausen et al. 2011) developed for the Fifth Assessment Report of the Intergovernmental Panel on Climate Change (IPCC AR5). The purpose of these datasets is to provide a set of high resolution, bias-corrected climate change projections that can be used to evaluate climate change impacts on processes that are sensitive to finer-scale climate gradients and the effects of local topography on climate conditions.

The dataset contains monthly projections covering the periods from 1950 through 2005 (Retrospective Run) and from 2006 to 2099 (Prospective Run). It includes downscaled projections from 33 models. Not every scenario contains projections from every model.

NEX-DCP30 was prepared by the Climate Analytics Group and NASA Ames Research Center using the NASA Earth Exchange, and distributed by the NASA Center for Climate Simulation (NCCS).

Bands

Resolution
927.67 meters

Bands

Name Units Min Max Description
pr kg/m^2/s 0* 0.0016*

Monthly mean of the daily precipitation rate at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective)

tasmin K 235.91* 308.97*

Monthly mean of the daily-minimum near-surface air temperature

tasmax K 246.4* 325.53*

Monthly mean of the daily-maximum near-surface air temperature

* estimated min or max value

Image Properties

Image Properties

Name Type Description
scenario STRING

Name of the CMIP5 scenario. It is one of: 'historical', 'rcp26', 'rcp45', 'rcp60', 'rcp85', where 'historical' designates retrospective model runs (pre-2006).

model STRING

Name of the CMIP5 model. It is one of 'ACCESS1-0', 'bcc-csm1-1', 'bcc-csm1-1-m', 'BNU-ESM', 'CanESM2', 'CCSM4', 'CESM1-BGC', 'CESM1-CAM5', 'CMCC-CM', 'CNRM-CM5', 'CSIRO-Mk3-6-0', 'FGOALS-g2', 'FIO-ESM', 'GFDL-CM3', 'GFDL-ESM2G', 'GFDL-ESM2M', 'GISS-E2-H-CC', 'GISS-E2-R', 'GISS-E2-R-CC', 'HadGEM2-AO', 'HadGEM2-CC', 'HadGEM2-ES', 'inmcm4', 'IPSL-CM5A-LR', 'IPSL-CM5A-MR', 'IPSL-CM5B-LR', 'MIROC5', 'MIROC-ESM', 'MIROC-ESM-CHEM', 'MPI-ESM-LR', 'MPI-ESM-MR', 'MRI-CGCM3', 'NorESM1-M'.

metric DOUBLE

Calendar month

Terms of Use

Terms of Use

This dataset is in the public domain and is available without restriction on use and distribution. See NASA's Earth Science Data & Information Policy for additional information.

Citations

Citations:
  • Thrasher, B., J. Xiong, W. Wang, F. Melton, A. Michaelis and R. Nemani (2013), Downscaled Climate Projections Suitable for Resource Management, Eos Trans. AGU, 94(37), 321. doi:10.1002/2013EO370002

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('NASA/NEX-DCP30')
                  .filter(ee.Filter.date('2018-07-01', '2018-07-30'));
var minimumAirTemperature = dataset.select('tasmin');
var minimumAirTemperatureVis = {
  min: 265.0,
  max: 285.0,
  palette: ['blue', 'purple', 'cyan', 'green', 'yellow', 'red'],
};
Map.setCenter(-115.356, 38.686, 5);
Map.addLayer(
    minimumAirTemperature, minimumAirTemperatureVis, 'Minimum Air Temperature');
Open in Code Editor