# Atlas notebooks

***

> This notebook reproduces and extends parts of the figures and products of the AR6-WGI Atlas. It is part of a notebook collection available at https://github.com/IPCC-WG1/Atlas for reproducibility and reusability purposes. This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0).
>
> ![Creative Commons License >](https://i.creativecommons.org/l/by/4.0/88x31.png)

Selecting reference regions used for every CORDEX domain#

12/07/2021

J. Diez-Sierra (Santander Meteorology Group, Instituto de FĂ­sica de Cantabria, CSIC-UC, Santander, Spain)

For the different CORDEX domains, aggregated results are calculated only in those reference regions (Iturbide et al. 2020) with overlap larger than 80%. Reference overlapped regions resulting for every CORDEX domain are calculated with the present script. Regular geographic grids for every CORDEX domain are obtained from Table 2 in the CORDEX specification archive: [Christensen et al.].

Load packages#

This script requires regionmask version 0.6.1 or later and xarray version 0.15.1 or later. Check the documentation of regionmask for details.

import regionmask
import xarray as xr
import numpy as np
import pandas as pd
import warnings
warnings.filterwarnings("ignore")

Loading the reference regions#

The regions are available at regionmask.defined_regions.ar6. The whole set of 58 regions is available under (ar6.all). In addition the land (ar6.land) and ocean (ar6.ocean) regions are given separately. The numbering is kept consistent between the categories. Note that some regions are in the land and in the ocean categories (e.g. the Mediterranean).

ar6_all = regionmask.defined_regions.ar6.all
ar6_all
Hide code cell output
Downloading file 'IPCC-WGI-reference-regions-v4.zip' from 'https://github.com/regionmask/regionmask/raw/main/data/IPCC-WGI-reference-regions-v4.zip' to '/home/antonio/.cache/regionmask'.
<regionmask.Regions 'AR6 reference regions'>
Source:   Iturbide et al., 2020 (Earth Syst. Sci. Data)
overlap:  False

Regions:
 0 GIC      Greenland/Iceland
 1 NWN      N.W.North-America
 2 NEN      N.E.North-America
 3 WNA        W.North-America
 4 CNA        C.North-America
..  ..                    ...
53 ARS            Arabian-Sea
54 BOB          Bay-of-Bengal
55 EIO Equatorial.Indic-Ocean
56 SIO          S.Indic-Ocean
57 SOO         Southern-Ocean

[58 regions]
ar6_all.plot()
<GeoAxesSubplot:>
../_images/31338b9ecc442f2cba2a41512ddb3cf1f87de9ccb1e082b6b791f504bcf10a8d.png

Loading reference grids (0.5 degree)#

Global longitude and latitude, at the same resoluction as aggregated results for CORDEX domain (0.5 degree), is obtained from the WFDE5 dataset in order to compare the total area covered for every reference region with those overlapped with each CORDEX domains.

Bellow we calculate the number of grid boxes that fall in every reference regions. We use cos(lat) as proxy of the grid area. This works well for the rectangular grid in our example. In general, it is better to the model’s own grid area.

ds = xr.open_dataset("../reference-grids/land_sea_mask_05degree.nc4")
XX_WORLD, YY_WORLD = np.meshgrid(ds.lon, ds.lat)
mask_2d_WORLD = ar6_all.mask(ds.lon, ds.lat)
weights_WORLD = np.cos(np.deg2rad(YY_WORLD))
ds.close()

Defining CORDEX domains#

Regular geographic grids for every CORDEX domain are obtained from Table 2 in the CORDEX specification archive [Christensen et al.]. Note that CORDEX corner definition can present some differences among simulations. Note also that native rotated-pole projections occupy a smaller area than regular grids.

regular_CORDEX_grids = pd.read_csv('auxiliary-material/regular-CORDEX-grids.csv', index_col = 1)
regular_CORDEX_grids
Hide code cell output
Area deg Nlon Nlat West East South North
Name
NAM-44i North America 0.500 300 129 -171.7500 -22.2500 12.2500 76.2500
CAM-44i Central America 0.500 207 111 -124.7500 -21.7500 -19.7500 35.2500
SAM-44i South America 0.500 181 155 -106.2500 -16.2500 -58.2500 18.7500
ARC-44i Arctic 0.500 720 83 -179.7500 179.7500 48.7500 89.7500
AFR-44i Africa 0.500 173 179 -25.2500 60.7500 -46.2500 42.7500
EUR-44i Europe 0.500 221 103 -44.7500 65.2500 21.7500 72.7500
MED-44i Mediterranean 0.500 144 65 -20.7500 51.7500 25.2500 57.2500
MNA-44i Middle East and North Africa 0.500 206 106 -26.7500 75.7500 -7.2500 45.2500
EAS-44i East Asia 0.500 227 157 62.7500 175.7500 -18.7500 59.2500
WAS-44i South Asia 0.500 195 124 19.2500 116.2500 -15.7500 45.7500
CAS-44i Central Asia 0.500 260 133 10.7500 140.2500 17.7500 69.7500
ANT-44i Antarctica 0.500 720 70 -179.7500 179.7500 -89.7500 -55.2500
AUS-44i Australasia 0.500 238 133 88.7500 207.2500 -53.2500 12.7500
MNA-22i Middle East and North Africa 0.250 410 209 -26.6250 75.6250 -6.8750 45.1250
SEA-22i South East Asia 0.250 233 172 89.1250 147.1250 -15.3750 27.3750
EUR-11i Europe high res. 0.125 881 408 -44.8125 65.1875 21.8125 72.6875

Selecting CORDEX domains

CORDEX_doms = ['NAM-44i','CAM-44i','SAM-44i','ARC-44i','AFR-44i','EUR-44i','MED-44i',
                  'MNA-44i','SEA-22i','EAS-44i','WAS-44i','CAS-44i','ANT-44i','AUS-44i'] 

Calculating overlaps#

Empty dataframe to add the results on the percentage of overlapping area:

Overlaps_CORDEX_ReferenceRegions = pd.DataFrame(index = CORDEX_doms, columns = np.arange(len(ar6_all)))

Overlap calculation comparing the number of cells that fall inside every reference region, using the coordinates lon and lat from the file land_sea_mask_05degree.nc4, with those that fall inside the regular grid for every CORDEX domain.

for dom in CORDEX_doms:
    lon = np.arange(regular_CORDEX_grids.loc[dom]['West'], regular_CORDEX_grids.loc[dom]['East']+0.5, 0.5)
    lat = np.arange(regular_CORDEX_grids.loc[dom]['South'], regular_CORDEX_grids.loc[dom]['North']+0.5, 0.5)
    XX, YY = np.meshgrid(lon, lat)
    mask_2d_domain = ar6_all.mask(lon, lat)
    weights_domain = np.cos(np.deg2rad(YY))
    for reg in np.unique(mask_2d_domain.values):
        if not np.isnan(reg):
            pos = np.where(mask_2d_domain.values == reg)
            pos_w = np.where(mask_2d_WORLD.values == reg)
            Overlaps_CORDEX_ReferenceRegions[reg].loc[dom] = np.round(100*np.sum(np.ones_like(pos[0])*weights_domain[pos])/np.sum(np.ones_like(pos_w[0])*weights_WORLD[pos_w]), 2)

Set the name for the reference regions, convert nan to 0 and transpose matrix

Overlaps_CORDEX_ReferenceRegions.columns = [ar6_all.regions[n].abbrev for n in Overlaps_CORDEX_ReferenceRegions.columns]
Overlaps_CORDEX_ReferenceRegions = Overlaps_CORDEX_ReferenceRegions.fillna(0).transpose()

Overlap results (as %)

Overlaps_CORDEX_ReferenceRegions
Hide code cell output
NAM-44i CAM-44i SAM-44i ARC-44i AFR-44i EUR-44i MED-44i MNA-44i SEA-22i EAS-44i WAS-44i CAS-44i ANT-44i AUS-44i
GIC 60.45 0.00 0.00 100.00 0.00 41.04 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
NWN 98.06 0.00 0.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
NEN 94.44 0.00 0.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
WNA 100.00 8.77 0.00 9.64 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
CNA 100.00 32.76 0.00 6.20 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
ENA 100.00 32.30 0.00 8.27 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
NCA 100.00 100.00 4.27 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
SCA 63.87 100.00 85.09 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
CAR 100.00 100.00 54.81 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
NWS 0.00 100.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
NSA 0.00 100.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
NES 0.00 100.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
SAM 0.00 100.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
SWS 0.00 17.32 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
SES 0.00 0.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
SSA 0.00 0.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6.38 0.00
NEU 0.00 0.00 0.00 99.92 0.00 100.00 24.67 0.00 0.00 0.00 0.00 41.41 0.00 0.00
WCE 0.00 0.00 0.00 60.87 0.00 100.00 95.42 5.76 0.00 0.00 4.82 74.33 0.00 0.00
EEU 0.00 0.00 0.00 78.99 0.00 100.00 41.05 3.08 0.00 0.00 6.14 100.00 0.00 0.00
MED 0.00 0.00 0.00 0.00 87.88 100.00 100.00 100.00 0.00 0.00 42.00 59.00 0.00 0.00
SAH 0.00 0.00 2.09 0.00 100.00 51.49 29.27 100.00 0.00 0.00 32.39 36.35 0.00 0.00
WAF 0.00 0.00 8.46 0.00 100.00 0.00 0.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00
CAF 0.00 0.00 0.00 0.00 100.00 0.00 0.00 88.61 0.00 0.00 47.16 0.00 0.00 0.00
NEAF 0.00 0.00 0.00 0.00 100.00 0.00 0.00 100.00 0.00 0.00 100.00 0.00 0.00 0.00
SEAF 0.00 0.00 0.00 0.00 100.00 0.00 0.00 80.15 0.00 0.00 100.00 0.00 0.00 0.00
WSAF 0.00 0.00 0.00 0.00 100.00 0.00 0.00 0.00 0.00 0.00 8.69 0.00 0.00 0.00
ESAF 0.00 0.00 0.00 0.00 100.00 0.00 0.00 0.00 0.00 0.00 34.82 0.00 0.00 0.00
MDG 0.00 0.00 0.00 0.00 100.00 0.00 0.00 0.00 0.00 0.00 26.20 0.00 0.00 0.00
RAR 1.89 0.00 0.00 100.00 0.00 12.27 0.00 0.00 0.00 0.00 0.00 32.36 0.00 0.00
WSB 0.00 0.00 0.00 78.99 0.00 18.33 0.00 1.64 0.00 71.11 6.14 100.00 0.00 0.00
ESB 0.00 0.00 0.00 78.99 0.00 0.00 0.00 0.00 0.00 77.57 4.07 100.00 0.00 0.00
RFE 0.00 0.00 0.00 86.21 0.00 0.00 0.00 0.00 0.00 69.09 0.00 28.74 0.00 0.00
WCA 0.00 0.00 0.00 0.00 56.46 75.00 32.55 100.00 0.00 32.90 100.00 100.00 0.00 0.00
ECA 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2.67 0.00 100.00 100.00 100.00 0.00 0.00
TIB 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3.06 1.75 100.00 100.00 100.00 0.00 0.00
EAS 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32.94 100.00 36.11 93.25 0.00 0.00
ARP 0.00 0.00 0.00 0.00 100.00 55.01 26.63 100.00 0.00 0.00 100.00 82.35 0.00 0.00
SAS 0.00 0.00 0.00 0.00 1.36 7.49 0.00 37.02 19.30 96.60 100.00 78.74 0.00 0.00
SEA 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 98.84 100.00 52.33 5.66 0.00 81.37
NAU 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 46.30 90.23 8.75 0.00 0.00 100.00
CAU 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100.00
EAU 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100.00
SAU 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100.00
NZ 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100.00
EAN 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100.00 0.00
WAN 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100.00 0.00
ARO 9.21 0.00 0.00 100.00 0.00 1.48 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
NPO 45.62 9.88 1.72 8.31 0.00 0.00 0.00 0.00 7.08 33.74 0.00 2.14 0.00 9.76
EPO 0.00 30.20 16.34 0.00 0.00 0.00 0.00 0.00 4.89 25.59 0.00 0.00 0.00 49.19
SPO 0.00 10.28 25.14 0.00 0.00 0.00 0.00 0.00 0.00 4.24 0.00 0.00 1.33 33.87
NAO 77.79 56.11 20.53 14.51 14.02 47.82 11.13 17.94 0.00 0.00 0.00 0.00 0.00 0.00
EAO 0.00 45.10 57.68 0.00 64.21 0.00 0.00 56.15 0.00 0.00 0.00 0.00 0.00 0.00
SAO 0.00 7.63 59.49 0.00 58.88 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.06 0.00
ARS 0.00 0.00 0.00 0.00 33.17 3.92 0.00 100.00 0.00 57.64 100.00 20.66 0.00 0.00
BOB 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 39.88 100.00 100.00 10.31 0.00 21.81
EIO 0.00 0.00 0.00 0.00 29.83 0.00 0.00 53.28 8.77 66.88 100.00 0.00 0.00 9.87
SIO 0.00 0.00 0.00 0.00 22.54 0.00 0.00 0.00 7.50 27.54 22.19 0.00 0.00 33.99
SOO 0.00 0.00 6.65 0.00 13.15 0.00 0.00 0.00 0.00 0.00 0.00 0.00 47.89 15.37

Selecting those reference regions that overlap larger than 80% for every CORDEX domain#

Select those regions that overlap larger than 80%

threshold = 80
for dom in CORDEX_doms:
    AR6_dom = Overlaps_CORDEX_ReferenceRegions.query(f'`{dom}`>80').index    
    print(dom + ": " + str(AR6_dom.tolist()))
Hide code cell output
NAM-44i: ['NWN', 'NEN', 'WNA', 'CNA', 'ENA', 'NCA', 'CAR']
CAM-44i: ['NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM']
SAM-44i: ['SCA', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA']
ARC-44i: ['GIC', 'NWN', 'NEN', 'NEU', 'RAR', 'RFE', 'ARO']
AFR-44i: ['MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'ARP']
EUR-44i: ['NEU', 'WCE', 'EEU', 'MED']
MED-44i: ['WCE', 'MED']
MNA-44i: ['MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WCA', 'ARP', 'ARS']
SEA-22i: ['SEA']
EAS-44i: ['ECA', 'TIB', 'EAS', 'SAS', 'SEA', 'NAU', 'BOB']
WAS-44i: ['NEAF', 'SEAF', 'WCA', 'ECA', 'TIB', 'ARP', 'SAS', 'ARS', 'BOB', 'EIO']
CAS-44i: ['EEU', 'WSB', 'ESB', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP']
ANT-44i: ['EAN', 'WAN']
AUS-44i: ['SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ']

Session info#

!conda list
Hide code cell output
# packages in environment at /DATA/miniconda3/envs/atlas-jupyterbook:
#
# Name                    Version                   Build  Channel
_libgcc_mutex             0.1                 conda_forge    conda-forge
_openmp_mutex             4.5                       2_gnu    conda-forge
_r-mutex                  1.0.1               anacondar_1    conda-forge
accessible-pygments       0.0.4              pyhd8ed1ab_0    conda-forge
affine                    2.4.0              pyhd8ed1ab_0    conda-forge
aiofiles                  22.1.0             pyhd8ed1ab_0    conda-forge
aiosqlite                 0.19.0             pyhd8ed1ab_0    conda-forge
alabaster                 0.7.13             pyhd8ed1ab_0    conda-forge
alembic                   1.13.1             pyhd8ed1ab_0    conda-forge
alsa-lib                  1.1.5             h516909a_1002    conda-forge
antlr-python-runtime      4.7.2           py37h89c1867_1003    conda-forge
anyio                     3.7.1              pyhd8ed1ab_0    conda-forge
argon2-cffi               23.1.0             pyhd8ed1ab_0    conda-forge
argon2-cffi-bindings      21.2.0           py37h540881e_2    conda-forge
arrow                     1.2.3              pyhd8ed1ab_0    conda-forge
async_generator           1.10                       py_0    conda-forge
attrs                     23.2.0             pyh71513ae_0    conda-forge
babel                     2.14.0             pyhd8ed1ab_0    conda-forge
backcall                  0.2.0              pyh9f0ad1d_0    conda-forge
backports                 1.0                pyhd8ed1ab_3    conda-forge
backports.functools_lru_cache 2.0.0              pyhd8ed1ab_0    conda-forge
beautifulsoup4            4.12.3             pyha770c72_0    conda-forge
binutils_impl_linux-64    2.39                 he00db2b_1    conda-forge
binutils_linux-64         2.39                h5fc0e48_13    conda-forge
bleach                    6.1.0              pyhd8ed1ab_0    conda-forge
blinker                   1.6.3              pyhd8ed1ab_0    conda-forge
branca                    0.7.1              pyhd8ed1ab_0    conda-forge
brotli                    1.1.0                hd590300_1    conda-forge
brotli-bin                1.1.0                hd590300_1    conda-forge
brotli-python             1.0.9            py37hd23a5d3_7    conda-forge
bwidget                   1.9.14               ha770c72_1    conda-forge
bzip2                     1.0.8                hd590300_5    conda-forge
c-ares                    1.28.1               hd590300_0    conda-forge
ca-certificates           2024.2.2             hbcca054_0    conda-forge
cached-property           1.5.2                hd8ed1ab_1    conda-forge
cached_property           1.5.2              pyha770c72_1    conda-forge
cairo                     1.16.0            h6cf1ce9_1008    conda-forge
cartopy                   0.19.0.post1     py37h0c48da3_1    conda-forge
cdo                       1.9.9               had776b3_14    conda-forge
certifi                   2024.2.2           pyhd8ed1ab_0    conda-forge
certipy                   0.1.3                      py_0    conda-forge
cf-units                  3.0.1            py37hb1e94ed_2    conda-forge
cffi                      1.15.1           py37h43b0acd_1    conda-forge
cfitsio                   3.470                hb418390_7    conda-forge
cftime                    1.6.2            py37hc105733_0    conda-forge
charset-normalizer        3.3.2              pyhd8ed1ab_0    conda-forge
click                     7.1.2              pyh9f0ad1d_0    conda-forge
click-plugins             1.1.1                      py_0    conda-forge
cligj                     0.7.2              pyhd8ed1ab_1    conda-forge
cloudpickle               2.2.1              pyhd8ed1ab_0    conda-forge
colorama                  0.4.6              pyhd8ed1ab_0    conda-forge
comm                      0.2.2              pyhd8ed1ab_0    conda-forge
configurable-http-proxy   4.5.4                h5556789_2    conda-forge
cryptography              38.0.2           py37h38fbfac_1    conda-forge
curl                      7.86.0               h7bff187_1    conda-forge
cycler                    0.11.0             pyhd8ed1ab_0    conda-forge
dask-core                 2022.2.0           pyhd8ed1ab_0    conda-forge
dataclasses               0.8                pyhc8e2a94_3    conda-forge
debugpy                   1.6.3            py37hd23a5d3_0    conda-forge
decorator                 5.1.1              pyhd8ed1ab_0    conda-forge
defusedxml                0.7.1              pyhd8ed1ab_0    conda-forge
docutils                  0.18.1           py37h89c1867_1    conda-forge
eccodes                   2.21.0               ha0e6eb6_0    conda-forge
entrypoints               0.4                pyhd8ed1ab_0    conda-forge
esmf                      8.1.0           nompi_hed08645_0    conda-forge
exceptiongroup            1.2.0              pyhd8ed1ab_2    conda-forge
expat                     2.6.2                h59595ed_0    conda-forge
fftw                      3.3.10          nompi_hc118613_108    conda-forge
fiona                     1.8.18           py37h17d6ad9_1    conda-forge
folium                    0.16.0             pyhd8ed1ab_0    conda-forge
font-ttf-dejavu-sans-mono 2.37                 hab24e00_0    conda-forge
font-ttf-inconsolata      3.000                h77eed37_0    conda-forge
font-ttf-source-code-pro  2.038                h77eed37_0    conda-forge
font-ttf-ubuntu           0.83                 h77eed37_1    conda-forge
fontconfig                2.14.2               h14ed4e7_0    conda-forge
fonts-conda-ecosystem     1                             0    conda-forge
fonts-conda-forge         1                             0    conda-forge
fonttools                 4.38.0           py37h540881e_0    conda-forge
fqdn                      1.5.1              pyhd8ed1ab_0    conda-forge
freetype                  2.12.1               h267a509_2    conda-forge
freexl                    1.0.6                h166bdaf_1    conda-forge
fribidi                   1.0.10               h36c2ea0_0    conda-forge
fsspec                    2023.1.0           pyhd8ed1ab_0    conda-forge
gcc_impl_linux-64         9.5.0               h99780fb_19    conda-forge
gcc_linux-64              9.5.0               h4258300_13    conda-forge
gdal                      3.2.1            py37hc5bc4e4_7    conda-forge
geopandas                 0.10.2             pyhd8ed1ab_1    conda-forge
geopandas-base            0.10.2             pyha770c72_1    conda-forge
geos                      3.9.1                h9c3ff4c_2    conda-forge
geotiff                   1.6.0                h2b14fbe_4    conda-forge
gettext                   0.22.5               h59595ed_2    conda-forge
gettext-tools             0.22.5               h59595ed_2    conda-forge
gfortran_impl_linux-64    9.5.0               hf1096a2_19    conda-forge
gfortran_linux-64         9.5.0               hdb51d14_13    conda-forge
giflib                    5.2.2                hd590300_0    conda-forge
gitdb                     4.0.11             pyhd8ed1ab_0    conda-forge
gitpython                 3.1.43             pyhd8ed1ab_0    conda-forge
graphite2                 1.3.13            h59595ed_1003    conda-forge
greenlet                  1.1.3            py37hd23a5d3_0    conda-forge
gsl                       2.6                  he838d99_2    conda-forge
gxx_impl_linux-64         9.5.0               h99780fb_19    conda-forge
gxx_linux-64              9.5.0               h43f449f_13    conda-forge
harfbuzz                  3.1.1                h83ec7ef_0    conda-forge
hdf4                      4.2.15               h9772cbc_5    conda-forge
hdf5                      1.10.6          nompi_h6a2412b_1114    conda-forge
icu                       68.2                 h9c3ff4c_0    conda-forge
idna                      3.7                pyhd8ed1ab_0    conda-forge
imagesize                 1.4.1              pyhd8ed1ab_0    conda-forge
importlib-metadata        4.11.4           py37h89c1867_0    conda-forge
importlib_metadata        4.11.4               hd8ed1ab_0    conda-forge
importlib_resources       6.0.0              pyhd8ed1ab_0    conda-forge
ipykernel                 6.16.2             pyh210e3f2_0    conda-forge
ipython                   7.33.0           py37h89c1867_0    conda-forge
ipython_genutils          0.2.0                      py_1    conda-forge
ipywidgets                8.1.2              pyhd8ed1ab_0    conda-forge
iris                      3.1.0              pyhd8ed1ab_3    conda-forge
isoduration               20.11.0            pyhd8ed1ab_0    conda-forge
jasper                    1.900.1           h07fcdf6_1006    conda-forge
jedi                      0.19.1             pyhd8ed1ab_0    conda-forge
jinja2                    3.1.3              pyhd8ed1ab_0    conda-forge
joblib                    1.3.2              pyhd8ed1ab_0    conda-forge
jpeg                      9e                   h0b41bf4_3    conda-forge
json-c                    0.15                 h98cffda_0    conda-forge
json5                     0.9.25             pyhd8ed1ab_0    conda-forge
jsonpointer               2.0                        py_0    conda-forge
jsonschema                4.17.3             pyhd8ed1ab_0    conda-forge
jsonschema-with-format-nongpl 4.17.3             pyhd8ed1ab_0    conda-forge
jupyter                   1.0.0             pyhd8ed1ab_10    conda-forge
jupyter-book              0.15.1             pyhd8ed1ab_0    conda-forge
jupyter-cache             0.5.0              pyhd8ed1ab_0    conda-forge
jupyter-resource-usage    0.7.1              pyhd8ed1ab_0    conda-forge
jupyter-server-mathjax    0.2.6              pyh5bfe37b_1    conda-forge
jupyter_client            7.4.9              pyhd8ed1ab_0    conda-forge
jupyter_console           6.5.1              pyhd8ed1ab_0    conda-forge
jupyter_contrib_core      0.4.0              pyhd8ed1ab_0    conda-forge
jupyter_core              4.11.1           py37h89c1867_0    conda-forge
jupyter_events            0.6.3              pyhd8ed1ab_1    conda-forge
jupyter_nbextensions_configurator 0.6.1              pyhd8ed1ab_0    conda-forge
jupyter_server            1.23.4             pyhd8ed1ab_0    conda-forge
jupyter_server_fileid     0.9.1              pyhd8ed1ab_0    conda-forge
jupyter_server_ydoc       0.8.0              pyhd8ed1ab_0    conda-forge
jupyter_telemetry         0.1.0              pyhd8ed1ab_1    conda-forge
jupyter_ydoc              0.2.4              pyhd8ed1ab_0    conda-forge
jupyterhub                4.1.5              pyh31011fe_0    conda-forge
jupyterhub-base           4.1.5              pyh31011fe_0    conda-forge
jupyterlab                3.6.7              pyhd8ed1ab_0    conda-forge
jupyterlab-git            0.44.0             pyhd8ed1ab_0    conda-forge
jupyterlab-github         3.0.1              pyhd8ed1ab_0    conda-forge
jupyterlab-system-monitor 0.8.0              pyhd8ed1ab_2    conda-forge
jupyterlab-topbar         0.6.1              pyhd8ed1ab_2    conda-forge
jupyterlab-topbar-text    0.6.2              pyhd8ed1ab_0    conda-forge
jupyterlab_pygments       0.3.0              pyhd8ed1ab_0    conda-forge
jupyterlab_server         2.24.0             pyhd8ed1ab_0    conda-forge
jupyterlab_widgets        3.0.10             pyhd8ed1ab_0    conda-forge
jupytext                  1.15.2             pyh5da7574_0    conda-forge
kealib                    1.4.14               hcc255d8_2    conda-forge
kernel-headers_linux-64   2.6.32              he073ed8_17    conda-forge
keyutils                  1.6.1                h166bdaf_0    conda-forge
kiwisolver                1.4.4            py37h7cecad7_0    conda-forge
krb5                      1.19.3               h3790be6_0    conda-forge
latexcodec                2.0.1              pyh9f0ad1d_0    conda-forge
lcms2                     2.12                 hddcbb42_0    conda-forge
ld_impl_linux-64          2.39                 hcc3a1bd_1    conda-forge
libaec                    1.1.3                h59595ed_0    conda-forge
libasprintf               0.22.5               h661eb56_2    conda-forge
libasprintf-devel         0.22.5               h661eb56_2    conda-forge
libblas                   3.9.0           20_linux64_openblas    conda-forge
libboost-headers          1.84.0               ha770c72_2    conda-forge
libbrotlicommon           1.1.0                hd590300_1    conda-forge
libbrotlidec              1.1.0                hd590300_1    conda-forge
libbrotlienc              1.1.0                hd590300_1    conda-forge
libcblas                  3.9.0           20_linux64_openblas    conda-forge
libcurl                   7.86.0               h7bff187_1    conda-forge
libdap4                   3.20.6               hd7c4107_2    conda-forge
libedit                   3.1.20191231         he28a2e2_2    conda-forge
libev                     4.33                 hd590300_2    conda-forge
libexpat                  2.6.2                h59595ed_0    conda-forge
libffi                    3.4.2                h7f98852_5    conda-forge
libgcc-devel_linux-64     9.5.0               h0a57e50_19    conda-forge
libgcc-ng                 13.2.0               h807b86a_5    conda-forge
libgdal                   3.2.1                h38ff51b_7    conda-forge
libgettextpo              0.22.5               h59595ed_2    conda-forge
libgettextpo-devel        0.22.5               h59595ed_2    conda-forge
libgfortran-ng            13.2.0               h69a702a_5    conda-forge
libgfortran5              13.2.0               ha4646dd_5    conda-forge
libgit2                   1.1.1                hee63804_1    conda-forge
libglib                   2.74.1               h7a41b64_0    conda-forge
libgomp                   13.2.0               h807b86a_5    conda-forge
libiconv                  1.17                 hd590300_2    conda-forge
libkml                    1.3.0             h01aab08_1018    conda-forge
liblapack                 3.9.0           20_linux64_openblas    conda-forge
libnetcdf                 4.7.4           nompi_h56d31a8_107    conda-forge
libnghttp2                1.51.0               hdcd2b5c_0    conda-forge
libnsl                    2.0.1                hd590300_0    conda-forge
libopenblas               0.3.25          pthreads_h413a1c8_0    conda-forge
libpng                    1.6.43               h2797004_0    conda-forge
libpq                     13.5                 hd57d9b9_1    conda-forge
librttopo                 1.1.0                h1185371_6    conda-forge
libsanitizer              9.5.0               h2f262e1_19    conda-forge
libsodium                 1.0.18               h36c2ea0_1    conda-forge
libspatialindex           1.9.3                h9c3ff4c_4    conda-forge
libspatialite             5.0.1                he52d314_3    conda-forge
libsqlite                 3.45.2               h2797004_0    conda-forge
libssh2                   1.10.0               haa6b8db_3    conda-forge
libstdcxx-devel_linux-64  9.5.0               h0a57e50_19    conda-forge
libstdcxx-ng              13.2.0               h7e041cc_5    conda-forge
libtiff                   4.2.0                hbd63e13_2    conda-forge
libudunits2               2.2.28               h40f5838_3    conda-forge
libuuid                   2.38.1               h0b41bf4_0    conda-forge
libuv                     1.44.2               hd590300_1    conda-forge
libwebp-base              1.4.0                hd590300_0    conda-forge
libxcb                    1.16                 hd590300_0    conda-forge
libxml2                   2.9.12               h72842e0_0    conda-forge
libzlib                   1.2.13               hd590300_5    conda-forge
linkify-it-py             2.0.3              pyhd8ed1ab_0    conda-forge
locket                    1.0.0              pyhd8ed1ab_0    conda-forge
lz4-c                     1.9.3                h9c3ff4c_1    conda-forge
make                      4.3                  hd18ef5c_1    conda-forge
mako                      1.3.3              pyhd8ed1ab_0    conda-forge
mapclassify               2.5.0              pyhd8ed1ab_1    conda-forge
markdown-it-py            2.2.0              pyhd8ed1ab_0    conda-forge
markupsafe                2.1.1            py37h540881e_1    conda-forge
matplotlib-base           3.5.3            py37hf395dca_2    conda-forge
matplotlib-inline         0.1.7              pyhd8ed1ab_0    conda-forge
mdit-py-plugins           0.3.5              pyhd8ed1ab_0    conda-forge
mdurl                     0.1.2              pyhd8ed1ab_0    conda-forge
mistune                   3.0.2              pyhd8ed1ab_0    conda-forge
munch                     2.5.0                      py_0    conda-forge
munkres                   1.1.4              pyh9f0ad1d_0    conda-forge
myst-nb                   0.17.2             pyhd8ed1ab_0    conda-forge
myst-parser               0.18.1             pyhd8ed1ab_0    conda-forge
nbclassic                 1.0.0              pyhb4ecaf3_1    conda-forge
nbclient                  0.5.13             pyhd8ed1ab_0    conda-forge
nbconvert                 7.6.0              pyhd8ed1ab_0    conda-forge
nbconvert-core            7.6.0              pyhd8ed1ab_0    conda-forge
nbconvert-pandoc          7.6.0              pyhd8ed1ab_0    conda-forge
nbdime                    3.2.1              pyhd8ed1ab_0    conda-forge
nbformat                  5.8.0              pyhd8ed1ab_0    conda-forge
nbgitpuller               1.2.1              pyhd8ed1ab_0    conda-forge
nco                       4.9.9                h1e74faa_0    conda-forge
ncurses                   6.4.20240210         h59595ed_0    conda-forge
nest-asyncio              1.6.0              pyhd8ed1ab_0    conda-forge
netcdf-fortran            4.5.3           nompi_h996563d_103    conda-forge
netcdf4                   1.5.6           nompi_py37hf7b6e46_102    conda-forge
networkx                  2.7                pyhd8ed1ab_0    conda-forge
nodejs                    14.20.1              hb42c98f_1    conda-forge
notebook                  6.5.6              pyha770c72_0    conda-forge
notebook-shim             0.2.4              pyhd8ed1ab_0    conda-forge
numpy                     1.21.6           py37h976b520_0    conda-forge
oauthlib                  3.2.2              pyhd8ed1ab_0    conda-forge
olefile                   0.47               pyhd8ed1ab_0    conda-forge
openjdk                   11.0.1            h600c080_1018    conda-forge
openjpeg                  2.4.0                hb52868f_1    conda-forge
openssl                   1.1.1w               hd590300_0    conda-forge
ossuuid                   1.6.2             hf484d3e_1000    conda-forge
packaging                 23.2               pyhd8ed1ab_0    conda-forge
pamela                    1.1.0              pyh1a96a4e_0    conda-forge
pandas                    1.3.5            py37he8f5f7f_0    conda-forge
pandoc                    3.1.13               ha770c72_0    conda-forge
pandocfilters             1.5.0              pyhd8ed1ab_0    conda-forge
pango                     1.48.10              h54213e6_2    conda-forge
parso                     0.8.4              pyhd8ed1ab_0    conda-forge
partd                     1.4.1              pyhd8ed1ab_0    conda-forge
pcre                      8.45                 h9c3ff4c_0    conda-forge
pcre2                     10.37                hc3806b6_1    conda-forge
pexpect                   4.9.0              pyhd8ed1ab_0    conda-forge
pickleshare               0.7.5                   py_1003    conda-forge
pillow                    8.2.0            py37h4600e1f_1    conda-forge
pip                       24.0               pyhd8ed1ab_0    conda-forge
pixman                    0.43.2               h59595ed_0    conda-forge
pkgutil-resolve-name      1.3.10             pyhd8ed1ab_1    conda-forge
platformdirs              4.0.0              pyhd8ed1ab_0    conda-forge
pooch                     1.8.1              pyhd8ed1ab_0    conda-forge
poppler                   0.89.0               h2de54a5_5    conda-forge
poppler-data              0.4.12               hd8ed1ab_0    conda-forge
postgresql                13.5                 h2510834_1    conda-forge
proj                      7.2.0                h277dcde_2    conda-forge
prometheus_client         0.17.1             pyhd8ed1ab_0    conda-forge
prompt-toolkit            3.0.42             pyha770c72_0    conda-forge
prompt_toolkit            3.0.42               hd8ed1ab_0    conda-forge
psutil                    5.9.3            py37h540881e_0    conda-forge
pthread-stubs             0.4               h36c2ea0_1001    conda-forge
ptyprocess                0.7.0              pyhd3deb0d_0    conda-forge
pybtex                    0.24.0             pyhd8ed1ab_2    conda-forge
pybtex-docutils           1.0.2            py37h89c1867_1    conda-forge
pycparser                 2.21               pyhd8ed1ab_0    conda-forge
pycurl                    7.45.1           py37haaec8a5_2    conda-forge
pydata-sphinx-theme       0.13.3             pyhd8ed1ab_0    conda-forge
pygments                  2.17.2             pyhd8ed1ab_0    conda-forge
pyjwt                     2.8.0              pyhd8ed1ab_1    conda-forge
pyopenssl                 23.2.0             pyhd8ed1ab_1    conda-forge
pyparsing                 3.1.2              pyhd8ed1ab_0    conda-forge
pyproj                    3.1.0            py37h20b8899_3    conda-forge
pyrsistent                0.18.1           py37h540881e_1    conda-forge
pyshp                     2.3.1              pyhd8ed1ab_0    conda-forge
pysocks                   1.7.1            py37h89c1867_5    conda-forge
python                    3.7.12          hb7a2778_100_cpython    conda-forge
python-dateutil           2.9.0              pyhd8ed1ab_0    conda-forge
python-fastjsonschema     2.19.1             pyhd8ed1ab_0    conda-forge
python-json-logger        2.0.7              pyhd8ed1ab_0    conda-forge
python-xxhash             3.0.0            py37h540881e_1    conda-forge
python_abi                3.7                     4_cp37m    conda-forge
pytz                      2024.1             pyhd8ed1ab_0    conda-forge
pyyaml                    6.0              py37h540881e_4    conda-forge
pyzmq                     24.0.1           py37h0c0c2a8_0    conda-forge
qtconsole-base            5.4.4              pyha770c72_0    conda-forge
qtpy                      2.4.1              pyhd8ed1ab_0    conda-forge
r-abind                   1.4_5           r36h6115d3f_1003    conda-forge
r-akima                   0.6_2.1           r36h5861495_1    conda-forge
r-askpass                 1.1               r36hcfec24a_2    conda-forge
r-assertthat              0.2.1             r36h6115d3f_2    conda-forge
r-backports               1.2.1             r36hcfec24a_0    conda-forge
r-base                    3.6.3                hbcea092_8    conda-forge
r-base64enc               0.1_3           r36hcfec24a_1004    conda-forge
r-bitops                  1.0_7             r36hcfec24a_0    conda-forge
r-boot                    1.3_28            r36hc72bb7e_0    conda-forge
r-brew                    1.0_6           r36h6115d3f_1003    conda-forge
r-brio                    1.1.2             r36hcfec24a_0    conda-forge
r-cachem                  1.0.5             r36hcfec24a_0    conda-forge
r-callr                   3.7.0             r36hc72bb7e_0    conda-forge
r-circstats               0.2_6                  r36_1002    conda-forge
r-class                   7.3_19            r36hcfec24a_0    conda-forge
r-cli                     2.5.0             r36hc72bb7e_0    conda-forge
r-climate4r.climdex       0.2.2             r36ha770c72_3    conda-forge
r-climate4r.datasets      0.0.1             r36ha770c72_3    conda-forge
r-climate4r.indices       0.2.0             r36ha770c72_3    conda-forge
r-climate4r.udg           0.2.3             r36ha770c72_1    conda-forge
r-climate4r.value         0.0.2             r36ha770c72_1    conda-forge
r-climdex.pcic            1.1_11            r36h03ef668_0    conda-forge
r-clipr                   0.7.1             r36h142f84f_0    conda-forge
r-codetools               0.2_18            r36hc72bb7e_0    conda-forge
r-colorspace              2.0_1             r36hcfec24a_0    conda-forge
r-commonmark              1.7             r36hcfec24a_1002    conda-forge
r-config                  0.3.1             r36hc72bb7e_0    conda-forge
r-convertr                0.2.0             r36ha770c72_0    conda-forge
r-covr                    3.5.1             r36h03ef668_0    conda-forge
r-crayon                  1.4.1             r36hc72bb7e_0    conda-forge
r-credentials             1.3.0             r36h6115d3f_0    conda-forge
r-crosstalk               1.1.1             r36hc72bb7e_0    conda-forge
r-curl                    4.3.1             r36hcfec24a_0    conda-forge
r-data.table              1.14.0            r36hcfec24a_0    conda-forge
r-deepnet                 0.2.1             r36hc72bb7e_3    conda-forge
r-deldir                  0.2_10            r36h859d828_0    conda-forge
r-desc                    1.3.0             r36hc72bb7e_0    conda-forge
r-devtools                2.4.1             r36hc72bb7e_0    conda-forge
r-diffobj                 0.3.4             r36hcfec24a_0    conda-forge
r-digest                  0.6.27            r36h03ef668_0    conda-forge
r-dismo                   1.3_3             r36h36c2ea0_0    conda-forge
r-dotcall64               1.0_1             r36h859d828_0    conda-forge
r-downscaler              3.3.3             r36ha770c72_0    conda-forge
r-downscaler.keras        1.0.0             r36ha770c72_1    conda-forge
r-dplyr                   1.0.6             r36h03ef668_1    conda-forge
r-drought4r               0.2.0             r36ha770c72_0    conda-forge
r-dt                      0.18              r36hc72bb7e_0    conda-forge
r-dtw                     1.22_3            r36h516909a_0    conda-forge
r-e1071                   1.7_7             r36h03ef668_0    conda-forge
r-earth                   5.3.0             r36h580db52_1    conda-forge
r-easyverification        0.4.5             r36ha503ecb_0    conda-forge
r-ellipsis                0.3.2             r36hcfec24a_0    conda-forge
r-evaluate                0.14              r36h6115d3f_2    conda-forge
r-evd                     2.3_3           r36hcdcec82_1003    conda-forge
r-fansi                   0.4.2             r36hcfec24a_0    conda-forge
r-farver                  2.1.0             r36h03ef668_0    conda-forge
r-fastmap                 1.1.0             r36h03ef668_0    conda-forge
r-fields                  12.3              r36h859d828_0    conda-forge
r-firedanger              1.1.0             r36ha770c72_3    conda-forge
r-foreach                 1.5.1             r36h142f84f_0    conda-forge
r-formula                 1.2_4             r36h142f84f_0    conda-forge
r-fs                      1.5.0             r36h0357c0b_0    conda-forge
r-gdalutils               2.0.3.2           r36h6115d3f_1    conda-forge
r-generics                0.1.0             r36hc72bb7e_0    conda-forge
r-geoprocessor            0.2.0             r36ha770c72_0    conda-forge
r-gert                    1.3.0             r36hbd84cd2_0    conda-forge
r-ggplot2                 3.3.3             r36hc72bb7e_0    conda-forge
r-gh                      1.3.0             r36hc72bb7e_0    conda-forge
r-git2r                   0.28.0            r36hf628c3e_0    conda-forge
r-gitcreds                0.1.1             r36hc72bb7e_0    conda-forge
r-glmnet                  4.1_1             r36h859d828_0    conda-forge
r-glue                    1.4.2             r36hcfec24a_0    conda-forge
r-goftest                 1.2_2             r36hcdcec82_1    conda-forge
r-gridextra               2.3             r36h6115d3f_1003    conda-forge
r-gtable                  0.3.0             r36h6115d3f_3    conda-forge
r-gtools                  3.8.2             r36hcdcec82_1    conda-forge
r-here                    1.0.1             r36hc72bb7e_0    conda-forge
r-highr                   0.9               r36hc72bb7e_0    conda-forge
r-htmltools               0.5.1.1           r36h03ef668_0    conda-forge
r-htmlwidgets             1.5.3             r36hc72bb7e_0    conda-forge
r-httr                    1.4.2             r36h6115d3f_0    conda-forge
r-ini                     0.3.1           r36h6115d3f_1003    conda-forge
r-irdisplay               1.0               r36hd8ed1ab_0    conda-forge
r-irkernel                1.2               r36hc72bb7e_0    conda-forge
r-isoband                 0.2.4             r36h03ef668_0    conda-forge
r-iterators               1.0.13            r36h142f84f_0    conda-forge
r-jpeg                    0.1_8.1           r36hcdcec82_1    conda-forge
r-jsonlite                1.7.2             r36hcfec24a_0    conda-forge
r-keras                   2.4.0             r36hc72bb7e_0    conda-forge
r-knitr                   1.33              r36hc72bb7e_0    conda-forge
r-kohonen                 3.0.10            r36he1b5a44_1    conda-forge
r-labeling                0.4.2             r36h142f84f_0    conda-forge
r-later                   1.2.0             r36h03ef668_0    conda-forge
r-lattice                 0.20_44           r36hcfec24a_0    conda-forge
r-latticeextra            0.6_29            r36h6115d3f_1    conda-forge
r-lazyeval                0.2.2             r36hcfec24a_2    conda-forge
r-lifecycle               1.0.0             r36hc72bb7e_0    conda-forge
r-lmomco                  2.3.6             r36hc72bb7e_0    conda-forge
r-lmoments                1.3_1             r36hc8faad4_3    conda-forge
r-loader                  1.7.1             r36ha770c72_3    conda-forge
r-loader.2nc              0.1.2             r36ha770c72_3    conda-forge
r-loader.ecoms            1.4.6             r36ha770c72_0    conda-forge
r-loader.java             1.1.1             r36ha770c72_0    conda-forge
r-lpsolve                 5.6.15            r36hcdcec82_1    conda-forge
r-lubridate               1.7.10            r36h03ef668_0    conda-forge
r-magrittr                2.0.1             r36hcfec24a_1    conda-forge
r-mapplots                1.5.1           r36h6115d3f_1002    conda-forge
r-maps                    3.3.0           r36hcdcec82_1004    conda-forge
r-markdown                1.1               r36hcfec24a_1    conda-forge
r-mass                    7.3_54            r36hcfec24a_0    conda-forge
r-matrix                  1.3_3             r36he454529_0    conda-forge
r-memoise                 2.0.0             r36hc72bb7e_0    conda-forge
r-mgcv                    1.8_35            r36he454529_0    conda-forge
r-mime                    0.10              r36hcfec24a_0    conda-forge
r-mopa                    1.0.0             r36ha770c72_0    conda-forge
r-munsell                 0.5.0           r36h6115d3f_1003    conda-forge
r-ncdf4                   1.17              r36h4fa2c38_4    conda-forge
r-nlme                    3.1_152           r36h859d828_0    conda-forge
r-openssl                 1.4.4             r36he36bf35_0    conda-forge
r-padr                    0.5.3             r36h0357c0b_0    conda-forge
r-pbapply                 1.4_3             r36h6115d3f_0    conda-forge
r-pbdzmq                  0.3_5             r36h42bf92c_1    conda-forge
r-pcict                   0.5_4.1           r36hcdcec82_0    conda-forge
r-pillar                  1.6.1             r36hc72bb7e_0    conda-forge
r-pkgbuild                1.2.0             r36hc72bb7e_0    conda-forge
r-pkgconfig               2.0.3             r36h6115d3f_1    conda-forge
r-pkgload                 1.2.1             r36h03ef668_0    conda-forge
r-plotmo                  3.6.0             r36h6115d3f_0    conda-forge
r-plotrix                 3.8_1             r36hc72bb7e_0    conda-forge
r-png                     0.1_7           r36hcfec24a_1004    conda-forge
r-polyclip                1.10_0            r36h0357c0b_2    conda-forge
r-praise                  1.0.0           r36h6115d3f_1004    conda-forge
r-presenceabsence         1.1.9             r36hc72bb7e_0    conda-forge
r-prettyunits             1.1.1             r36h6115d3f_1    conda-forge
r-processx                3.5.2             r36hcfec24a_0    conda-forge
r-promises                1.2.0.1           r36h03ef668_0    conda-forge
r-proxy                   0.4_25            r36hcfec24a_0    conda-forge
r-ps                      1.6.0             r36hcfec24a_0    conda-forge
r-purrr                   0.3.4             r36hcfec24a_1    conda-forge
r-r.methodss3             1.8.1             r36h6115d3f_0    conda-forge
r-r.oo                    1.24.0            r36h6115d3f_0    conda-forge
r-r.utils                 2.10.1            r36h6115d3f_0    conda-forge
r-r6                      2.5.0             r36hc72bb7e_0    conda-forge
r-randomforest            4.6_14          r36h580db52_1004    conda-forge
r-ranger                  0.12.1            r36h0357c0b_1    conda-forge
r-rappdirs                0.3.3             r36hcfec24a_0    conda-forge
r-raster                  3.4_10            r36h03ef668_0    conda-forge
r-rcmdcheck               1.3.3             r36h6115d3f_3    conda-forge
r-rcolorbrewer            1.1_2           r36h6115d3f_1003    conda-forge
r-rcpp                    1.0.6             r36h03ef668_0    conda-forge
r-rcpparmadillo           0.10.4.0.0        r36h306847c_0    conda-forge
r-rcppeigen               0.3.3.9.1         r36h306847c_0    conda-forge
r-rcpptoml                0.1.7             r36h03ef668_0    conda-forge
r-rcurl                   1.98_1.3          r36hcfec24a_0    conda-forge
r-rematch2                2.1.2             r36h6115d3f_1    conda-forge
r-remotes                 2.3.0             r36hc72bb7e_0    conda-forge
r-repr                    1.1.3             r36h785f33e_0    conda-forge
r-reticulate              1.28              r36h38f115c_0    conda-forge
r-rex                     1.2.0             r36h6115d3f_1    conda-forge
r-rgdal                   1.5_16            r36hb42392b_3    conda-forge
r-rjava                   1.0_4             r36hcfec24a_0    conda-forge
r-rlang                   0.4.11            r36hcfec24a_0    conda-forge
r-roxygen2                7.1.1             r36h0357c0b_0    conda-forge
r-rpart                   4.1_15            r36hcfec24a_2    conda-forge
r-rprojroot               2.0.2             r36hc72bb7e_0    conda-forge
r-rstudioapi              0.13              r36hc72bb7e_0    conda-forge
r-rversions               2.0.2             r36h6115d3f_0    conda-forge
r-sampling                2.9               r36h7f98852_0    conda-forge
r-scales                  1.1.1             r36h6115d3f_0    conda-forge
r-sessioninfo             1.1.1           r36h6115d3f_1002    conda-forge
r-shape                   1.4.6             r36ha770c72_0    conda-forge
r-signal                  0.7_6           r36h86c2bf4_1006    conda-forge
r-sm                      2.2_5.6         r36h580db52_1004    conda-forge
r-sp                      1.4_5             r36hcfec24a_0    conda-forge
r-spam                    2.6_0             r36h52d45c5_0    conda-forge
r-spatstat                1.64_1            r36h0357c0b_0    conda-forge
r-spatstat.data           2.1_0             r36hc72bb7e_0    conda-forge
r-spatstat.utils          2.1_0             r36h7f98852_0    conda-forge
r-specsverification       0.5_3             r36ha503ecb_3    conda-forge
r-spei                    1.7               r36hc72bb7e_0    conda-forge
r-splancs                 2.01_42           r36h859d828_0    conda-forge
r-sticky                  0.5.6.1           r36hc72bb7e_0    conda-forge
r-stringi                 1.6.2             r36hcabe038_0    conda-forge
r-stringr                 1.4.0             r36h6115d3f_2    conda-forge
r-survival                3.2_11            r36hcfec24a_0    conda-forge
r-sys                     3.4               r36hcfec24a_0    conda-forge
r-teachingdemos           2.12              r36h6115d3f_1    conda-forge
r-tensor                  1.5             r36h6115d3f_1003    conda-forge
r-tensorflow              2.6.0             r36hc72bb7e_1    conda-forge
r-testthat                3.0.2             r36h03ef668_0    conda-forge
r-tfautograph             0.3.2             r36hc72bb7e_3    conda-forge
r-tfruns                  1.5.0             r36hc72bb7e_0    conda-forge
r-tibble                  3.1.2             r36hcfec24a_0    conda-forge
r-tidyselect              1.1.1             r36hc72bb7e_0    conda-forge
r-transformer             2.1.3             r36ha770c72_0    conda-forge
r-tree                    1.0_40            r36hcdcec82_1    conda-forge
r-udunits2                0.13            r36hcdcec82_1004    conda-forge
r-usethis                 2.0.1             r36hc72bb7e_0    conda-forge
r-utf8                    1.2.1             r36hcfec24a_0    conda-forge
r-uuid                    0.1_4             r36hcdcec82_1    conda-forge
r-value                   2.2.2             r36ha770c72_3    conda-forge
r-vctrs                   0.3.8             r36hcfec24a_1    conda-forge
r-verification            1.42            r36h6115d3f_1002    conda-forge
r-vioplot                 0.3.6             r36hc72bb7e_0    conda-forge
r-viridis                 0.6.1             r36hc72bb7e_0    conda-forge
r-viridislite             0.4.0             r36hc72bb7e_0    conda-forge
r-visualizer              1.6.1             r36ha770c72_1    conda-forge
r-waldo                   0.2.5             r36hc72bb7e_0    conda-forge
r-whisker                 0.4               r36h6115d3f_1    conda-forge
r-withr                   2.4.2             r36hc72bb7e_0    conda-forge
r-xfun                    0.23              r36hcfec24a_0    conda-forge
r-xml2                    1.3.2             r36h0357c0b_1    conda-forge
r-xopen                   1.0.0           r36h6115d3f_1003    conda-forge
r-xtable                  1.8_4             r36h6115d3f_3    conda-forge
r-yaml                    2.2.1             r36hcfec24a_1    conda-forge
r-zeallot                 0.1.0           r36h6115d3f_1002    conda-forge
r-zip                     2.1.1             r36hcfec24a_0    conda-forge
r-zoo                     1.8_9             r36hcfec24a_0    conda-forge
rasterio                  1.2.6            py37hd5c4cce_0    conda-forge
readline                  8.2                  h8228510_1    conda-forge
regionmask                0.10.0             pyhd8ed1ab_0    conda-forge
requests                  2.31.0             pyhd8ed1ab_0    conda-forge
rfc3339-validator         0.1.4              pyhd8ed1ab_0    conda-forge
rfc3986-validator         0.1.1              pyh9f0ad1d_0    conda-forge
rtree                     1.0.1            py37h0b55af0_0    conda-forge
ruamel.yaml               0.17.21          py37h540881e_1    conda-forge
ruamel.yaml.clib          0.2.6            py37h540881e_1    conda-forge
scikit-learn              1.0.2            py37hf9e9bfc_0    conda-forge
scipy                     1.7.3            py37hf2a6cf1_0    conda-forge
sed                       4.8                  he412f7d_0    conda-forge
send2trash                1.8.3              pyh0d859eb_0    conda-forge
setuptools                59.8.0           py37h89c1867_1    conda-forge
shapely                   1.8.0            py37h48c49eb_0    conda-forge
six                       1.16.0             pyh6c4a22f_0    conda-forge
smmap                     5.0.0              pyhd8ed1ab_0    conda-forge
sniffio                   1.3.1              pyhd8ed1ab_0    conda-forge
snowballstemmer           2.2.0              pyhd8ed1ab_0    conda-forge
snuggs                    1.4.7                      py_0    conda-forge
soupsieve                 2.3.2.post1        pyhd8ed1ab_0    conda-forge
sphinx                    5.0.2              pyh6c4a22f_0    conda-forge
sphinx-book-theme         1.0.1              pyhd8ed1ab_0    conda-forge
sphinx-comments           0.0.3              pyh9f0ad1d_0    conda-forge
sphinx-copybutton         0.5.2              pyhd8ed1ab_0    conda-forge
sphinx-design             0.3.0              pyhd8ed1ab_0    conda-forge
sphinx-external-toc       0.3.1              pyhd8ed1ab_1    conda-forge
sphinx-jupyterbook-latex  0.5.2              pyhd8ed1ab_0    conda-forge
sphinx-multitoc-numbering 0.1.3              pyhd8ed1ab_0    conda-forge
sphinx-thebe              0.2.1              pyhd8ed1ab_0    conda-forge
sphinx-togglebutton       0.3.2              pyhd8ed1ab_0    conda-forge
sphinxcontrib-applehelp   1.0.4              pyhd8ed1ab_0    conda-forge
sphinxcontrib-bibtex      2.5.0              pyhd8ed1ab_0    conda-forge
sphinxcontrib-devhelp     1.0.2                      py_0    conda-forge
sphinxcontrib-htmlhelp    2.0.1              pyhd8ed1ab_0    conda-forge
sphinxcontrib-jsmath      1.0.1              pyhd8ed1ab_0    conda-forge
sphinxcontrib-qthelp      1.0.3                      py_0    conda-forge
sphinxcontrib-serializinghtml 1.1.5              pyhd8ed1ab_2    conda-forge
sqlalchemy                1.4.42           py37h540881e_0    conda-forge
sqlite                    3.45.2               h2c6b66d_0    conda-forge
sysroot_linux-64          2.12                he073ed8_17    conda-forge
tabulate                  0.9.0              pyhd8ed1ab_1    conda-forge
tempest-remap             2.0.5                h1b20e2d_0    conda-forge
terminado                 0.17.1             pyh41d4057_0    conda-forge
threadpoolctl             3.1.0              pyh8a188c0_0    conda-forge
tiledb                    2.2.9                h91fcb0e_0    conda-forge
tinycss2                  1.2.1              pyhd8ed1ab_0    conda-forge
tk                        8.6.13          noxft_h4845f30_101    conda-forge
tktable                   2.10                 h0c5db8f_5    conda-forge
toml                      0.10.2             pyhd8ed1ab_0    conda-forge
tomli                     2.0.1              pyhd8ed1ab_0    conda-forge
toolz                     0.12.1             pyhd8ed1ab_0    conda-forge
tornado                   6.2              py37h540881e_0    conda-forge
traitlets                 5.9.0              pyhd8ed1ab_0    conda-forge
typing-extensions         4.7.1                hd8ed1ab_0    conda-forge
typing_extensions         4.7.1              pyha770c72_0    conda-forge
tzcode                    2024a                h3f72095_0    conda-forge
tzdata                    2024a                h0c530f3_0    conda-forge
uc-micro-py               1.0.3              pyhd8ed1ab_0    conda-forge
udunits2                  2.2.28               h40f5838_3    conda-forge
unicodedata2              14.0.0           py37h540881e_1    conda-forge
uri-template              1.3.0              pyhd8ed1ab_0    conda-forge
uriparser                 0.9.7                h59595ed_1    conda-forge
urllib3                   2.2.1              pyhd8ed1ab_0    conda-forge
wcwidth                   0.2.10             pyhd8ed1ab_0    conda-forge
webcolors                 1.13               pyhd8ed1ab_0    conda-forge
webencodings              0.5.1              pyhd8ed1ab_2    conda-forge
websocket-client          1.6.1              pyhd8ed1ab_0    conda-forge
wheel                     0.42.0             pyhd8ed1ab_0    conda-forge
widgetsnbextension        4.0.10             pyhd8ed1ab_0    conda-forge
xarray                    0.20.2             pyhd8ed1ab_0    conda-forge
xerces-c                  3.2.3                h9d8b166_3    conda-forge
xorg-fixesproto           5.0               h7f98852_1002    conda-forge
xorg-inputproto           2.3.2             h7f98852_1002    conda-forge
xorg-kbproto              1.0.7             h7f98852_1002    conda-forge
xorg-libice               1.1.1                hd590300_0    conda-forge
xorg-libsm                1.2.4                h7391055_0    conda-forge
xorg-libx11               1.7.2                h7f98852_0    conda-forge
xorg-libxau               1.0.11               hd590300_0    conda-forge
xorg-libxdmcp             1.1.3                h7f98852_0    conda-forge
xorg-libxext              1.3.4                h0b41bf4_2    conda-forge
xorg-libxfixes            5.0.3             h7f98852_1004    conda-forge
xorg-libxi                1.7.10               h7f98852_0    conda-forge
xorg-libxrender           0.9.10            h7f98852_1003    conda-forge
xorg-libxtst              1.2.3             h7f98852_1002    conda-forge
xorg-recordproto          1.14.2            h7f98852_1002    conda-forge
xorg-renderproto          0.11.1            h7f98852_1002    conda-forge
xorg-xextproto            7.3.0             h0b41bf4_1003    conda-forge
xorg-xproto               7.0.31            h7f98852_1007    conda-forge
xxhash                    0.8.0                h7f98852_3    conda-forge
xyzservices               2023.5.0           pyhd8ed1ab_0    conda-forge
xz                        5.2.6                h166bdaf_0    conda-forge
y-py                      0.5.4            py37hbd0741f_0    conda-forge
yaml                      0.2.5                h7f98852_2    conda-forge
ypy-websocket             0.8.2              pyhd8ed1ab_0    conda-forge
zeromq                    4.3.5                h59595ed_1    conda-forge
zipp                      3.15.0             pyhd8ed1ab_0    conda-forge
zlib                      1.2.13               hd590300_5    conda-forge
zstd                      1.4.9                ha95c52a_0    conda-forge

References#

CGNL(1,2)

O.B. Christensen, W.J. Gutowski, G. Nikulin, and S. Legutke. CORDEX Archive Design.