Evaluation of Climate Change Projections
of the Global Climate Models (GCM) CCCma-CanESM2, MOHC-HadGEM2-ES and MIROC-MIROC5, using Arcgis for Python and ArcGIS Maps SDK for JavaScript.
Each chapter is described below:
-
The first chapter, shows how to Geoprocess NetCDF files and convert them to CRF (Cloud Raster Format).
-
The second section, explain how to analyze trends/patterns in multidimensional data. Also, calculate results using the following tools: Generate Multidimensional Anomaly, Generate Trend Raster and Predict Using Trend Raster.
-
The third section, shows how to create animations and timelines of climate data using the
19 Bioclimate Projections of WorldClim
using ArcGIS Maps SDK for JavaScript. -
The fourth and final section shows how to convert and export multidimensional data to tables and shapefile formats.
import arcpy
import datetime as dt
import os
import arcgis
import NetCDF4
import csv
# Arcpy
from arcpy.ia import*
# arcgis
from arcgis.gis import GIS
from arcgis.raster import *
from arcgis.raster.functions import *
from arcgis.raster.analytics import *
<script>
require([
"esri/Map",
"esri/views/MapView",
"esri/layers/ImageryTileLayer",
"esri/layers/support/DimensionalDefinition",
"esri/layers/support/MultidimensionalSubset",
"esri/widgets/Slider",
"esri/widgets/TimeSlider",
"esri/widgets/Legend",
"esri/request",
"esri/Color",
"esri/widgets/LayerList",
"esri/widgets/Expand",
"esri/layers/TileLayer",
"esri/layers/BaseTileLayer",
"esri/Basemap",
],
(Map, MapView, ImageryTileLayer, DimensionalDefinition, MultidimensionalSubset,
Slider,TimeSlider, Legend, esriRequest, Color,LayerList, Expand, TileLayer, BaseTileLayer,Basemap) =>
<script>
The data used in this program come from the Coordinated Regional Downscaling Experiment (CORDEX) Website and the World Climate Research Program (WCRP), using the CCCma-CanESM2, MOHC-HadGEM2-ES and MIROC-MIROC5 models.
Item | Precipitation 2021-2030 SAM | Near Surface Air Temperature 2021-2030 SAM |
---|---|---|
Project | CORDEX | CORDEX |
Product | output | output |
Domain | SAM-20 | SAM-20 |
Institute | INPE | INPE |
Driving Model | CCCma-CanESM2 (1), MIROC-MIROC5 (1) and MOHC-HadGEM2-ES (1) | CCCma-CanESM2 (1), MIROC-MIROC5 (1) and MOHC-HadGEM2-ES (1) |
Experiment | rcp45 | rcp45 |
Experiment Family | RCP | RCP |
Ensemble | r1i1p1 | r1i1p1 |
RCM Model | Eta | Eta |
Downscaling Realisation | v1 | v1 |
Bias Adjustment | None | None |
Time Frequency | mon | mon |
Variable | pr | tas |
Variable Long Name | Precipitation | Near-Surface Air Temperature |
CF Satandard Name | precipitation flux | air temperature |
Datanode | esg-dn1.nsc.liu.se | esg-dn1.nsc.liu.se |
CCMa-CanESM2 Model The second generation Canadian Earth System Model (CanESM2) (CanESM2) is the fourth generation coupled global climate model developed by the Canadian Centre for Climate Modelling and Analysis (CCCma) of Environment and Climate Change Canada. CanESM2 represents the Canadian contribution to the IPCC Fifth Assessment Report (AR5).
Model CCCma-CanESM2 information
MOHC-HadGEM2-ES Model
The HadGEM2 family includes a coupled atmosphere-ocean configuration, with or without a vertical extension in the atmosphere to include a well-resolved stratosphere, and an Earth-System configuration which includes dynamic vegetation, ocean biology and atmospheric chemistry.
Model MOHC-HadGEM2-ES information
MIROC-MIROC5 Model
Model for Interdisciplinary Research On Climate
Model MIROC-MIROC5 information
Data of CCma-CanESM2 precipitation
Data of MOHC-HadGEM2-ES precipitation
Data of MIROC-MIROC5 precipitation
Data of CCma-CanESM2 temperature
Data of MOHC-HadGEM2-ES temperature
Data of MIROC-MIROC5 temperature
The Intergovernmental Panel on Climate Change World Climate Research Programme (WCRP) The Coordinated Regional Downscaling Experiment (CORDEX) The Earth System Grid Federation (ESGF)
The authors declare that there is no conflict of interest in the publication of this map and that all authors have approved it for publication.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.