-
I am trying to extract the newly defined IPCC-Ar6 regions from model native grid data using the #recipe_extract_IPCC_AR6_regions.yml
---
documentation:
description: |
Extracting IPCC regions
title: Extract IPCC-AR6 regions
authors:
- swaminathan_ranjini
projects:
- ukesm
preprocessors:
preproc_extract_region:
extract_shape:
shapefile : IPCC-AR6-shapefiles/IPCC-WGI-reference-regions-v4.shp
decomposed : False
method : contains
crop: True
ids:
- 'Mediterranean (MED / 19)'
mask_landsea:
mask_out : sea
datasets:
- {dataset: UKESM1-0-LL, exp: piControl, start_year: 1960, end_year: 3059, grid: gn, ensemble: r1i1p1f2 }
- {dataset: IPSL-CM6A-LR, exp: piControl, start_year: 1850, end_year: 3049, grid: gr, ensemble: r1i1p1f1 }
diagnostics:
ext_reg:
description: extract IPCC AR6 regions
variables:
tas:
preprocessor: preproc_extract_region
project: CMIP6
mip: Amon
scripts: null
I am using the
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
@bouweandela, it seems you wrote the |
Beta Was this translation helpful? Give feedback.
-
It seems the solution is to put in
|
Beta Was this translation helpful? Give feedback.
It seems the solution is to put in
Mediterranean
as the id and not any of what I had tried. Currently ESMValCore only recognizes theName
property-type and not theAcronym
. Here is what the dictionary entry read from the shape file looks like :OrderedDict([('Continent', 'EUROPE-AFRICA'), ('Type', 'Land-Ocean'), ('Name', 'Mediterranean'), ('Acronym', 'MED')])