Skip to content

Instantly share code, notes, and snippets.

@jbusecke
Created October 27, 2023 02:20
Show Gist options
  • Save jbusecke/2dcb373e9ff29e540fa9f5ea38c4960d to your computer and use it in GitHub Desktop.
Save jbusecke/2dcb373e9ff29e540fa9f5ea38c4960d to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "4d8d1392-6e93-4bb5-8094-164d8a2ad366",
"metadata": {},
"source": [
"# Discussion repsonse\n",
"https://github.com/leap-stc/leap-stc.github.io/discussions/94"
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "d47b2f9c-44a4-42e0-82b4-68e10f38a442",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"# We need to install the latest version until a new release is issued: https://github.com/intake/intake-esm/issues/637\n",
"# ! pip install git+https://github.com/intake/intake-esm.git "
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "7d8a58ea-0e61-4949-8bb3-0c589408df16",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"from xmip.utils import google_cmip_col\n",
"from xmip.preprocessing import combined_preprocessing\n",
"\n",
"col = google_cmip_col()\n",
"cat = col.search(table_id=['3hr', '6hrLev']) # search for particular table_id's \n",
"\n",
"cat2 = cat.search(\n",
" variable_id = ['pr', 'ps', 'ta', 'hus'],\n",
" experiment_id = 'historical', \n",
" require_all_on = ['source_id', 'member_id'] # filter models/members which have all 4 variables in the above subset\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 22,
"id": "fa2ee6bd-78e7-41ce-8049-24d288f14b95",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
"<p><strong>pangeo-cmip6 catalog with 15 dataset(s) from 34 asset(s)</strong>:</p> <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>unique</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>activity_id</th>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>institution_id</th>\n",
" <td>6</td>\n",
" </tr>\n",
" <tr>\n",
" <th>source_id</th>\n",
" <td>7</td>\n",
" </tr>\n",
" <tr>\n",
" <th>experiment_id</th>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>member_id</th>\n",
" <td>2</td>\n",
" </tr>\n",
" <tr>\n",
" <th>table_id</th>\n",
" <td>2</td>\n",
" </tr>\n",
" <tr>\n",
" <th>variable_id</th>\n",
" <td>4</td>\n",
" </tr>\n",
" <tr>\n",
" <th>grid_label</th>\n",
" <td>4</td>\n",
" </tr>\n",
" <tr>\n",
" <th>zstore</th>\n",
" <td>34</td>\n",
" </tr>\n",
" <tr>\n",
" <th>dcpp_init_year</th>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>version</th>\n",
" <td>11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>derived_variable_id</th>\n",
" <td>0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"cat2"
]
},
{
"cell_type": "code",
"execution_count": 23,
"id": "adca3a97-ad8c-4956-9fc4-df5981c5892f",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"--> The keys in the returned dictionary of datasets are constructed as follows:\n",
"\t'activity_id.institution_id.source_id.experiment_id.member_id.table_id.variable_id.grid_label.zstore.dcpp_init_year.version'\n"
]
},
{
"data": {
"text/html": [
"\n",
"<style>\n",
" /* Turns off some styling */\n",
" progress {\n",
" /* gets rid of default border in Firefox and Opera. */\n",
" border: none;\n",
" /* Needs to be in here for Safari polyfill so background images work as expected. */\n",
" background-size: auto;\n",
" }\n",
" progress:not([value]), progress:not([value])::-webkit-progress-bar {\n",
" background: repeating-linear-gradient(45deg, #7e7e7e, #7e7e7e 10px, #5c5c5c 10px, #5c5c5c 20px);\n",
" }\n",
" .progress-bar-interrupted, .progress-bar-interrupted::-webkit-progress-bar {\n",
" background: #F44336;\n",
" }\n",
"</style>\n"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"\n",
" <div>\n",
" <progress value='34' class='' max='34' style='width:300px; height:20px; vertical-align: middle;'></progress>\n",
" 100.00% [34/34 00:09&lt;00:00]\n",
" </div>\n",
" "
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.NOAA-GFDL.GFDL-CM4.historical.r1i1p1f1.6hrLev.gr2.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.MRI.MRI-ESM2-0.historical.r1i1p1f1.6hrLev.gn.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.NOAA-GFDL.GFDL-CM4.historical.r1i1p1f1.6hrLev.gr2.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.NASA-GISS.GISS-E2-1-G.historical.r1i1p1f1.6hrLev.gn.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f1.6hrLev.gn.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.CNRM-CERFACS.CNRM-ESM2-1.historical.r1i1p1f2.6hrLev.gr.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.MRI.MRI-ESM2-0.historical.r1i1p1f1.6hrLev.gn.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.NASA-GISS.GISS-E2-1-G.historical.r1i1p1f1.6hrLev.gn.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.CNRM-CERFACS.CNRM-CM6-1.historical.r1i1p1f2.6hrLev.gr.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.CNRM-CERFACS.CNRM-ESM2-1.historical.r1i1p1f2.6hrLev.gr.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.CNRM-CERFACS.CNRM-CM6-1.historical.r1i1p1f2.6hrLev.gr.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f1.6hrLev.gn.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n"
]
}
],
"source": [
"# we can convert this to t dictionary of datasets\n",
"ddict = cat2.to_dataset_dict(preprocess=combined_preprocessing, aggregate=False)"
]
},
{
"cell_type": "code",
"execution_count": 24,
"id": "9a815b36-0c85-4be6-8aa8-2c4b1bc3a534",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.Dataset&gt;\n",
"Dimensions: (member_id: 1, dcpp_init_year: 1, time: 481800, y: 90,\n",
" x: 144, bnds: 2, vertex: 4)\n",
"Coordinates:\n",
" * y (y) float64 -89.0 -87.0 -85.0 -83.0 ... 83.0 85.0 87.0 89.0\n",
" * x (x) float64 1.25 3.75 6.25 8.75 ... 351.2 353.8 356.2 358.8\n",
" * time (time) object 1850-01-01 03:00:00 ... 2015-01-01 00:00:00\n",
" lon_bounds (x, bnds, y) float64 dask.array&lt;chunksize=(144, 2, 90), meta=np.ndarray&gt;\n",
" lat_bounds (y, bnds, x) float64 dask.array&lt;chunksize=(90, 2, 144), meta=np.ndarray&gt;\n",
" lon (x, y) float64 1.25 1.25 1.25 1.25 ... 358.8 358.8 358.8\n",
" lat (x, y) float64 -89.0 -87.0 -85.0 -83.0 ... 85.0 87.0 89.0\n",
" lon_verticies (vertex, x, y) float64 dask.array&lt;chunksize=(1, 144, 90), meta=np.ndarray&gt;\n",
" lat_verticies (vertex, x, y) float64 dask.array&lt;chunksize=(1, 144, 90), meta=np.ndarray&gt;\n",
" * member_id (member_id) object &#x27;r1i1p1f1&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds, vertex\n",
"Data variables:\n",
" ps (member_id, dcpp_init_year, time, y, x) float32 dask.array&lt;chunksize=(1, 1, 964, 90, 144), meta=np.ndarray&gt;\n",
"Attributes: (12/64)\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" activity_id: CMIP\n",
" branch_method: standard\n",
" branch_time_in_child: 0.0\n",
" branch_time_in_parent: 0.0\n",
" cmor_version: 3.3.2\n",
" ... ...\n",
" intake_esm_attrs:variable_id: ps\n",
" intake_esm_attrs:grid_label: gn\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/NASA-GISS/GISS-E2...\n",
" intake_esm_attrs:version: 20181015\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CMIP.NASA-GISS.GISS-E2-1-G.historical.r...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>xarray.Dataset</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-01d76c58-2cb5-4293-9406-da04f5f8fa94' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-01d76c58-2cb5-4293-9406-da04f5f8fa94' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span class='xr-has-index'>time</span>: 481800</li><li><span class='xr-has-index'>y</span>: 90</li><li><span class='xr-has-index'>x</span>: 144</li><li><span>bnds</span>: 2</li><li><span>vertex</span>: 4</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-0ab3f06d-351e-44c3-8f9a-9e996525cb80' class='xr-section-summary-in' type='checkbox' checked><label for='section-0ab3f06d-351e-44c3-8f9a-9e996525cb80' class='xr-section-summary' >Coordinates: <span>(11)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-89.0 -87.0 -85.0 ... 87.0 89.0</div><input id='attrs-91c1937d-ec90-4a00-9cc8-6bfa7ca2c0f6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-91c1937d-ec90-4a00-9cc8-6bfa7ca2c0f6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-af9ab98f-8d58-4aa8-bcd0-b7a97b666658' class='xr-var-data-in' type='checkbox'><label for='data-af9ab98f-8d58-4aa8-bcd0-b7a97b666658' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>bounds :</span></dt><dd>lat_bnds</dd><dt><span>long_name :</span></dt><dd>latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_N</dd></dl></div><div class='xr-var-data'><pre>array([-89., -87., -85., -83., -81., -79., -77., -75., -73., -71., -69., -67.,\n",
" -65., -63., -61., -59., -57., -55., -53., -51., -49., -47., -45., -43.,\n",
" -41., -39., -37., -35., -33., -31., -29., -27., -25., -23., -21., -19.,\n",
" -17., -15., -13., -11., -9., -7., -5., -3., -1., 1., 3., 5.,\n",
" 7., 9., 11., 13., 15., 17., 19., 21., 23., 25., 27., 29.,\n",
" 31., 33., 35., 37., 39., 41., 43., 45., 47., 49., 51., 53.,\n",
" 55., 57., 59., 61., 63., 65., 67., 69., 71., 73., 75., 77.,\n",
" 79., 81., 83., 85., 87., 89.])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>1.25 3.75 6.25 ... 356.2 358.8</div><input id='attrs-89cd684b-bdec-4ad4-a1e7-fd8c8039236b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-89cd684b-bdec-4ad4-a1e7-fd8c8039236b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-108b7014-4d6c-48ca-a3ae-98c881734c77' class='xr-var-data-in' type='checkbox'><label for='data-108b7014-4d6c-48ca-a3ae-98c881734c77' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>bounds :</span></dt><dd>lon_bnds</dd><dt><span>long_name :</span></dt><dd>longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_E</dd></dl></div><div class='xr-var-data'><pre>array([ 1.25, 3.75, 6.25, 8.75, 11.25, 13.75, 16.25, 18.75, 21.25,\n",
" 23.75, 26.25, 28.75, 31.25, 33.75, 36.25, 38.75, 41.25, 43.75,\n",
" 46.25, 48.75, 51.25, 53.75, 56.25, 58.75, 61.25, 63.75, 66.25,\n",
" 68.75, 71.25, 73.75, 76.25, 78.75, 81.25, 83.75, 86.25, 88.75,\n",
" 91.25, 93.75, 96.25, 98.75, 101.25, 103.75, 106.25, 108.75, 111.25,\n",
" 113.75, 116.25, 118.75, 121.25, 123.75, 126.25, 128.75, 131.25, 133.75,\n",
" 136.25, 138.75, 141.25, 143.75, 146.25, 148.75, 151.25, 153.75, 156.25,\n",
" 158.75, 161.25, 163.75, 166.25, 168.75, 171.25, 173.75, 176.25, 178.75,\n",
" 181.25, 183.75, 186.25, 188.75, 191.25, 193.75, 196.25, 198.75, 201.25,\n",
" 203.75, 206.25, 208.75, 211.25, 213.75, 216.25, 218.75, 221.25, 223.75,\n",
" 226.25, 228.75, 231.25, 233.75, 236.25, 238.75, 241.25, 243.75, 246.25,\n",
" 248.75, 251.25, 253.75, 256.25, 258.75, 261.25, 263.75, 266.25, 268.75,\n",
" 271.25, 273.75, 276.25, 278.75, 281.25, 283.75, 286.25, 288.75, 291.25,\n",
" 293.75, 296.25, 298.75, 301.25, 303.75, 306.25, 308.75, 311.25, 313.75,\n",
" 316.25, 318.75, 321.25, 323.75, 326.25, 328.75, 331.25, 333.75, 336.25,\n",
" 338.75, 341.25, 343.75, 346.25, 348.75, 351.25, 353.75, 356.25, 358.75])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>1850-01-01 03:00:00 ... 2015-01-...</div><input id='attrs-69c16e6a-b3da-4204-9954-45b352c63ada' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-69c16e6a-b3da-4204-9954-45b352c63ada' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-582f5ae3-6c0b-4085-83c4-66789d2e239e' class='xr-var-data-in' type='checkbox'><label for='data-582f5ae3-6c0b-4085-83c4-66789d2e239e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>long_name :</span></dt><dd>time</dd><dt><span>standard_name :</span></dt><dd>time</dd></dl></div><div class='xr-var-data'><pre>array([cftime.DatetimeNoLeap(1850, 1, 1, 3, 0, 0, 0, has_year_zero=True),\n",
" cftime.DatetimeNoLeap(1850, 1, 1, 6, 0, 0, 0, has_year_zero=True),\n",
" cftime.DatetimeNoLeap(1850, 1, 1, 9, 0, 0, 0, has_year_zero=True), ...,\n",
" cftime.DatetimeNoLeap(2014, 12, 31, 18, 0, 0, 0, has_year_zero=True),\n",
" cftime.DatetimeNoLeap(2014, 12, 31, 21, 0, 0, 0, has_year_zero=True),\n",
" cftime.DatetimeNoLeap(2015, 1, 1, 0, 0, 0, 0, has_year_zero=True)],\n",
" dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon_bounds</span></div><div class='xr-var-dims'>(x, bnds, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(144, 2, 90), meta=np.ndarray&gt;</div><input id='attrs-c5c61c14-cdc4-4534-b6aa-f184677bf39c' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c5c61c14-cdc4-4534-b6aa-f184677bf39c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6f771a90-02cb-4aa0-8f00-93e002e24760' class='xr-var-data-in' type='checkbox'><label for='data-6f771a90-02cb-4aa0-8f00-93e002e24760' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 202.50 kiB </td>\n",
" <td> 202.50 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (144, 2, 90) </td>\n",
" <td> (144, 2, 90) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 9 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"205\" height=\"147\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"27\" x2=\"80\" y2=\"97\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"27\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"97\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,97.64227125728706 10.0,27.054035963169408\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"85\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"155\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"85\" y1=\"0\" x2=\"155\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 85.0,0.0 155.58823529411765,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"155\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"97\" x2=\"155\" y2=\"97\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"97\" style=\"stroke-width:2\" />\n",
" <line x1=\"155\" y1=\"70\" x2=\"155\" y2=\"97\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 155.58823529411765,70.58823529411765 155.58823529411765,97.64227125728706 80.58823529411765,97.64227125728706\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"118.088235\" y=\"117.642271\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >90</text>\n",
" <text x=\"175.588235\" y=\"84.115253\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,175.588235,84.115253)\">2</text>\n",
" <text x=\"35.294118\" y=\"82.348154\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,82.348154)\">144</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat_bounds</span></div><div class='xr-var-dims'>(y, bnds, x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(90, 2, 144), meta=np.ndarray&gt;</div><input id='attrs-5ac3d1c9-ffac-4272-b6d7-74d8a600fc4d' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-5ac3d1c9-ffac-4272-b6d7-74d8a600fc4d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ff20635a-9813-4326-8d30-395da5213ed2' class='xr-var-data-in' type='checkbox'><label for='data-ff20635a-9813-4326-8d30-395da5213ed2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 202.50 kiB </td>\n",
" <td> 202.50 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (90, 2, 144) </td>\n",
" <td> (90, 2, 144) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 6 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"224\" height=\"121\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"54\" y2=\"44\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"27\" x2=\"54\" y2=\"71\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"27\" style=\"stroke-width:2\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"71\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 54.11764705882353,44.11764705882353 54.11764705882353,71.17168302199293 10.0,27.054035963169408\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"174\" y2=\"44\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"54\" y2=\"44\" style=\"stroke-width:2\" />\n",
" <line x1=\"130\" y1=\"0\" x2=\"174\" y2=\"44\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 130.0,0.0 174.11764705882354,44.11764705882353 54.11764705882353,44.11764705882353\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"54\" y1=\"44\" x2=\"174\" y2=\"44\" style=\"stroke-width:2\" />\n",
" <line x1=\"54\" y1=\"71\" x2=\"174\" y2=\"71\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"71\" style=\"stroke-width:2\" />\n",
" <line x1=\"174\" y1=\"44\" x2=\"174\" y2=\"71\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"54.11764705882353,44.11764705882353 174.11764705882354,44.11764705882353 174.11764705882354,71.17168302199293 54.11764705882353,71.17168302199293\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"114.117647\" y=\"91.171683\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >144</text>\n",
" <text x=\"194.117647\" y=\"57.644665\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,194.117647,57.644665)\">2</text>\n",
" <text x=\"22.058824\" y=\"69.112859\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,22.058824,69.112859)\">90</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>1.25 1.25 1.25 ... 358.8 358.8</div><input id='attrs-0d2bb108-0619-4b34-9fdf-c29455f8fc62' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-0d2bb108-0619-4b34-9fdf-c29455f8fc62' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ec4579df-f1b9-40f4-a15a-0a3d257a01db' class='xr-var-data-in' type='checkbox'><label for='data-ec4579df-f1b9-40f4-a15a-0a3d257a01db' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[ 1.25, 1.25, 1.25, ..., 1.25, 1.25, 1.25],\n",
" [ 3.75, 3.75, 3.75, ..., 3.75, 3.75, 3.75],\n",
" [ 6.25, 6.25, 6.25, ..., 6.25, 6.25, 6.25],\n",
" ...,\n",
" [353.75, 353.75, 353.75, ..., 353.75, 353.75, 353.75],\n",
" [356.25, 356.25, 356.25, ..., 356.25, 356.25, 356.25],\n",
" [358.75, 358.75, 358.75, ..., 358.75, 358.75, 358.75]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-89.0 -87.0 -85.0 ... 87.0 89.0</div><input id='attrs-32e1fcc2-f790-4611-abc9-808ca76bef75' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-32e1fcc2-f790-4611-abc9-808ca76bef75' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e095e663-996e-45c0-aafb-ba935423ae8b' class='xr-var-data-in' type='checkbox'><label for='data-e095e663-996e-45c0-aafb-ba935423ae8b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-89., -87., -85., ..., 85., 87., 89.],\n",
" [-89., -87., -85., ..., 85., 87., 89.],\n",
" [-89., -87., -85., ..., 85., 87., 89.],\n",
" ...,\n",
" [-89., -87., -85., ..., 85., 87., 89.],\n",
" [-89., -87., -85., ..., 85., 87., 89.],\n",
" [-89., -87., -85., ..., 85., 87., 89.]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon_verticies</span></div><div class='xr-var-dims'>(vertex, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 144, 90), meta=np.ndarray&gt;</div><input id='attrs-744ac5bf-2325-428b-8d94-3f63909f3fbf' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-744ac5bf-2325-428b-8d94-3f63909f3fbf' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-49ad2451-f4be-4a9d-9e45-339a928fb9e6' class='xr-var-data-in' type='checkbox'><label for='data-49ad2451-f4be-4a9d-9e45-339a928fb9e6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 405.00 kiB </td>\n",
" <td> 101.25 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (4, 144, 90) </td>\n",
" <td> (1, 144, 90) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 17 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"153\" height=\"188\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"28\" y2=\"18\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"120\" x2=\"28\" y2=\"138\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"124\" />\n",
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"129\" />\n",
" <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"133\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"138\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 28.195189762461798,18.195189762461798 28.195189762461798,138.1951897624618 10.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"85\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"14\" y1=\"4\" x2=\"89\" y2=\"4\" />\n",
" <line x1=\"19\" y1=\"9\" x2=\"94\" y2=\"9\" />\n",
" <line x1=\"23\" y1=\"13\" x2=\"98\" y2=\"13\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"103\" y2=\"18\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"28\" y2=\"18\" style=\"stroke-width:2\" />\n",
" <line x1=\"85\" y1=\"0\" x2=\"103\" y2=\"18\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 85.0,0.0 103.1951897624618,18.195189762461798 28.195189762461798,18.195189762461798\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"28\" y1=\"18\" x2=\"103\" y2=\"18\" style=\"stroke-width:2\" />\n",
" <line x1=\"28\" y1=\"138\" x2=\"103\" y2=\"138\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"138\" style=\"stroke-width:2\" />\n",
" <line x1=\"103\" y1=\"18\" x2=\"103\" y2=\"138\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"28.195189762461798,18.195189762461798 103.1951897624618,18.195189762461798 103.1951897624618,138.1951897624618 28.195189762461798,138.1951897624618\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"65.695190\" y=\"158.195190\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >90</text>\n",
" <text x=\"123.195190\" y=\"78.195190\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,123.195190,78.195190)\">144</text>\n",
" <text x=\"9.097595\" y=\"149.097595\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,9.097595,149.097595)\">4</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat_verticies</span></div><div class='xr-var-dims'>(vertex, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 144, 90), meta=np.ndarray&gt;</div><input id='attrs-f160b912-cd74-461f-91ab-3052b772cc54' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-f160b912-cd74-461f-91ab-3052b772cc54' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d80555e7-d322-4ffc-9c8e-d19356ad2626' class='xr-var-data-in' type='checkbox'><label for='data-d80555e7-d322-4ffc-9c8e-d19356ad2626' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 405.00 kiB </td>\n",
" <td> 101.25 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (4, 144, 90) </td>\n",
" <td> (1, 144, 90) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 14 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"153\" height=\"188\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"28\" y2=\"18\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"120\" x2=\"28\" y2=\"138\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"124\" />\n",
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"129\" />\n",
" <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"133\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"138\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 28.195189762461798,18.195189762461798 28.195189762461798,138.1951897624618 10.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"85\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"14\" y1=\"4\" x2=\"89\" y2=\"4\" />\n",
" <line x1=\"19\" y1=\"9\" x2=\"94\" y2=\"9\" />\n",
" <line x1=\"23\" y1=\"13\" x2=\"98\" y2=\"13\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"103\" y2=\"18\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"28\" y2=\"18\" style=\"stroke-width:2\" />\n",
" <line x1=\"85\" y1=\"0\" x2=\"103\" y2=\"18\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 85.0,0.0 103.1951897624618,18.195189762461798 28.195189762461798,18.195189762461798\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"28\" y1=\"18\" x2=\"103\" y2=\"18\" style=\"stroke-width:2\" />\n",
" <line x1=\"28\" y1=\"138\" x2=\"103\" y2=\"138\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"138\" style=\"stroke-width:2\" />\n",
" <line x1=\"103\" y1=\"18\" x2=\"103\" y2=\"138\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"28.195189762461798,18.195189762461798 103.1951897624618,18.195189762461798 103.1951897624618,138.1951897624618 28.195189762461798,138.1951897624618\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"65.695190\" y=\"158.195190\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >90</text>\n",
" <text x=\"123.195190\" y=\"78.195190\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,123.195190,78.195190)\">144</text>\n",
" <text x=\"9.097595\" y=\"149.097595\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,9.097595,149.097595)\">4</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f1&#x27;</div><input id='attrs-913b43ca-ed67-4691-8dd0-66f55b5b44a5' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-913b43ca-ed67-4691-8dd0-66f55b5b44a5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c247b49e-ec61-438a-8a7c-469bd13abad9' class='xr-var-data-in' type='checkbox'><label for='data-c247b49e-ec61-438a-8a7c-469bd13abad9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f1&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-3a93d8b2-c92e-4460-8ca5-d1d404d14fea' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-3a93d8b2-c92e-4460-8ca5-d1d404d14fea' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-87769eb0-8727-41ae-9c3f-36cbde078387' class='xr-var-data-in' type='checkbox'><label for='data-87769eb0-8727-41ae-9c3f-36cbde078387' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-41d75015-61df-4d1e-a37c-a4514eaf22d6' class='xr-section-summary-in' type='checkbox' checked><label for='section-41d75015-61df-4d1e-a37c-a4514eaf22d6' class='xr-section-summary' >Data variables: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>ps</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 964, 90, 144), meta=np.ndarray&gt;</div><input id='attrs-302426e3-bfd7-4d88-bddf-fc1240ed1e2e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-302426e3-bfd7-4d88-bddf-fc1240ed1e2e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d5505fe7-d68f-4627-9b89-c43256658fa6' class='xr-var-data-in' type='checkbox'><label for='data-d5505fe7-d68f-4627-9b89-c43256658fa6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>comment :</span></dt><dd>surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates</dd><dt><span>history :</span></dt><dd>2019-10-10T12:30:48Z altered by CMOR: replaced missing value flag (-1e+30) with standard missing value (1e+20).</dd><dt><span>long_name :</span></dt><dd>Surface Air Pressure</dd><dt><span>standard_name :</span></dt><dd>surface_air_pressure</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 23.26 GiB </td>\n",
" <td> 47.66 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (1, 1, 481800, 90, 144) </td>\n",
" <td> (1, 1, 964, 90, 144) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 500 chunks in 3 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"336\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"45.412617\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1</text>\n",
" <text x=\"45.412617\" y=\"12.706308\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,45.412617,12.706308)\">1</text>\n",
"\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"95\" y1=\"25\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"95\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"97\" y1=\"2\" x2=\"97\" y2=\"27\" />\n",
" <line x1=\"99\" y1=\"4\" x2=\"99\" y2=\"29\" />\n",
" <line x1=\"101\" y1=\"6\" x2=\"101\" y2=\"31\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"103\" y2=\"34\" />\n",
" <line x1=\"106\" y1=\"11\" x2=\"106\" y2=\"36\" />\n",
" <line x1=\"108\" y1=\"13\" x2=\"108\" y2=\"38\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"110\" y2=\"40\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"112\" y2=\"43\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"114\" y2=\"45\" />\n",
" <line x1=\"117\" y1=\"22\" x2=\"117\" y2=\"47\" />\n",
" <line x1=\"119\" y1=\"24\" x2=\"119\" y2=\"49\" />\n",
" <line x1=\"121\" y1=\"26\" x2=\"121\" y2=\"51\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"123\" y2=\"54\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"125\" y2=\"56\" />\n",
" <line x1=\"128\" y1=\"33\" x2=\"128\" y2=\"58\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"130\" y2=\"60\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"132\" y2=\"62\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"134\" y2=\"65\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"136\" y2=\"67\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"139\" y2=\"69\" />\n",
" <line x1=\"141\" y1=\"46\" x2=\"141\" y2=\"71\" />\n",
" <line x1=\"143\" y1=\"48\" x2=\"143\" y2=\"73\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"145\" y2=\"76\" />\n",
" <line x1=\"147\" y1=\"52\" x2=\"147\" y2=\"78\" />\n",
" <line x1=\"150\" y1=\"55\" x2=\"150\" y2=\"80\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"152\" y2=\"82\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"154\" y2=\"84\" />\n",
" <line x1=\"156\" y1=\"61\" x2=\"156\" y2=\"87\" />\n",
" <line x1=\"158\" y1=\"63\" x2=\"158\" y2=\"89\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"161\" y2=\"91\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"163\" y2=\"93\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 165.58823529411765,70.58823529411765 165.58823529411765,96.00085180870013 95.0,25.41261651458249\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"97\" y1=\"2\" x2=\"122\" y2=\"2\" />\n",
" <line x1=\"99\" y1=\"4\" x2=\"124\" y2=\"4\" />\n",
" <line x1=\"101\" y1=\"6\" x2=\"126\" y2=\"6\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"129\" y2=\"8\" />\n",
" <line x1=\"106\" y1=\"11\" x2=\"131\" y2=\"11\" />\n",
" <line x1=\"108\" y1=\"13\" x2=\"133\" y2=\"13\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"135\" y2=\"15\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"138\" y2=\"17\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"140\" y2=\"19\" />\n",
" <line x1=\"117\" y1=\"22\" x2=\"142\" y2=\"22\" />\n",
" <line x1=\"119\" y1=\"24\" x2=\"144\" y2=\"24\" />\n",
" <line x1=\"121\" y1=\"26\" x2=\"146\" y2=\"26\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"149\" y2=\"28\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"151\" y2=\"30\" />\n",
" <line x1=\"128\" y1=\"33\" x2=\"153\" y2=\"33\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"155\" y2=\"35\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"157\" y2=\"37\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"160\" y2=\"39\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"162\" y2=\"41\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"164\" y2=\"44\" />\n",
" <line x1=\"141\" y1=\"46\" x2=\"166\" y2=\"46\" />\n",
" <line x1=\"143\" y1=\"48\" x2=\"168\" y2=\"48\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"171\" y2=\"50\" />\n",
" <line x1=\"147\" y1=\"52\" x2=\"173\" y2=\"52\" />\n",
" <line x1=\"150\" y1=\"55\" x2=\"175\" y2=\"55\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"177\" y2=\"57\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"179\" y2=\"59\" />\n",
" <line x1=\"156\" y1=\"61\" x2=\"182\" y2=\"61\" />\n",
" <line x1=\"158\" y1=\"63\" x2=\"184\" y2=\"63\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"186\" y2=\"66\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"188\" y2=\"68\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 120.41261651458248,0.0 191.00085180870013,70.58823529411765 165.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"165\" y1=\"96\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"191\" y1=\"70\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"165.58823529411765,70.58823529411765 191.00085180870013,70.58823529411765 191.00085180870013,96.00085180870013 165.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"178.294544\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >144</text>\n",
" <text x=\"211.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,211.000852,83.294544)\">90</text>\n",
" <text x=\"120.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,120.294118,80.706734)\">481800</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-68acdeb6-326e-45c8-8dbf-8e5fa8caf4fa' class='xr-section-summary-in' type='checkbox' ><label for='section-68acdeb6-326e-45c8-8dbf-8e5fa8caf4fa' class='xr-section-summary' >Indexes: <span>(5)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-index-name'><div>y</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-dbc33d81-4340-430d-8a9c-dea68df4bf5f' class='xr-index-data-in' type='checkbox'/><label for='index-dbc33d81-4340-430d-8a9c-dea68df4bf5f' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([-89.0, -87.0, -85.0, -83.0, -81.0, -79.0, -77.0, -75.0, -73.0, -71.0,\n",
" -69.0, -67.0, -65.0, -63.0, -61.0, -59.0, -57.0, -55.0, -53.0, -51.0,\n",
" -49.0, -47.0, -45.0, -43.0, -41.0, -39.0, -37.0, -35.0, -33.0, -31.0,\n",
" -29.0, -27.0, -25.0, -23.0, -21.0, -19.0, -17.0, -15.0, -13.0, -11.0,\n",
" -9.0, -7.0, -5.0, -3.0, -1.0, 1.0, 3.0, 5.0, 7.0, 9.0,\n",
" 11.0, 13.0, 15.0, 17.0, 19.0, 21.0, 23.0, 25.0, 27.0, 29.0,\n",
" 31.0, 33.0, 35.0, 37.0, 39.0, 41.0, 43.0, 45.0, 47.0, 49.0,\n",
" 51.0, 53.0, 55.0, 57.0, 59.0, 61.0, 63.0, 65.0, 67.0, 69.0,\n",
" 71.0, 73.0, 75.0, 77.0, 79.0, 81.0, 83.0, 85.0, 87.0, 89.0],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;y&#x27;))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>x</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-2be23deb-9269-4dd0-bb3a-e7c153700021' class='xr-index-data-in' type='checkbox'/><label for='index-2be23deb-9269-4dd0-bb3a-e7c153700021' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([ 1.25, 3.75, 6.25, 8.75, 11.25, 13.75, 16.25, 18.75, 21.25,\n",
" 23.75,\n",
" ...\n",
" 336.25, 338.75, 341.25, 343.75, 346.25, 348.75, 351.25, 353.75, 356.25,\n",
" 358.75],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;x&#x27;, length=144))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>time</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-4b98a252-81b7-4f26-b651-ef4e59c36a9e' class='xr-index-data-in' type='checkbox'/><label for='index-4b98a252-81b7-4f26-b651-ef4e59c36a9e' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(CFTimeIndex([1850-01-01 03:00:00, 1850-01-01 06:00:00, 1850-01-01 09:00:00,\n",
" 1850-01-01 12:00:00, 1850-01-01 15:00:00, 1850-01-01 18:00:00,\n",
" 1850-01-01 21:00:00, 1850-01-02 00:00:00, 1850-01-02 03:00:00,\n",
" 1850-01-02 06:00:00,\n",
" ...\n",
" 2014-12-30 21:00:00, 2014-12-31 00:00:00, 2014-12-31 03:00:00,\n",
" 2014-12-31 06:00:00, 2014-12-31 09:00:00, 2014-12-31 12:00:00,\n",
" 2014-12-31 15:00:00, 2014-12-31 18:00:00, 2014-12-31 21:00:00,\n",
" 2015-01-01 00:00:00],\n",
" dtype=&#x27;object&#x27;, length=481800, calendar=&#x27;noleap&#x27;, freq=&#x27;3H&#x27;))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>member_id</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-fdcf2d58-88ff-4705-b1cd-2833f509a440' class='xr-index-data-in' type='checkbox'/><label for='index-fdcf2d58-88ff-4705-b1cd-2833f509a440' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([&#x27;r1i1p1f1&#x27;], dtype=&#x27;object&#x27;, name=&#x27;member_id&#x27;))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>dcpp_init_year</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-91aad99c-6c55-434d-8736-a5c93f8a5aa7' class='xr-index-data-in' type='checkbox'/><label for='index-91aad99c-6c55-434d-8736-a5c93f8a5aa7' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([nan], dtype=&#x27;float64&#x27;, name=&#x27;dcpp_init_year&#x27;))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-f85afe5a-6682-4a4c-8663-2134940acff3' class='xr-section-summary-in' type='checkbox' ><label for='section-f85afe5a-6682-4a4c-8663-2134940acff3' class='xr-section-summary' >Attributes: <span>(64)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>activity_id :</span></dt><dd>CMIP</dd><dt><span>branch_method :</span></dt><dd>standard</dd><dt><span>branch_time_in_child :</span></dt><dd>0.0</dd><dt><span>branch_time_in_parent :</span></dt><dd>0.0</dd><dt><span>cmor_version :</span></dt><dd>3.3.2</dd><dt><span>contact :</span></dt><dd>Kenneth Lo (cdkkl@giss.nasa.gov)</dd><dt><span>creation_date :</span></dt><dd>2019-10-10T12:30:48Z</dd><dt><span>data_specs_version :</span></dt><dd>01.00.23</dd><dt><span>experiment :</span></dt><dd>all-forcing simulation of the recent past</dd><dt><span>experiment_id :</span></dt><dd>historical</dd><dt><span>external_variables :</span></dt><dd>areacella</dd><dt><span>forcing_index :</span></dt><dd>1</dd><dt><span>frequency :</span></dt><dd>3hrPt</dd><dt><span>further_info_url :</span></dt><dd>https://furtherinfo.es-doc.org/CMIP6.NASA-GISS.GISS-E2-1-G.historical.none.r1i1p1f1</dd><dt><span>grid :</span></dt><dd>atmospheric grid: 144x90, ocean grid: 288x180</dd><dt><span>grid_label :</span></dt><dd>gn</dd><dt><span>history :</span></dt><dd>2019-10-10T12:30:48Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>Goddard Institute for Space Studies, New York, NY 10025, USA</dd><dt><span>institution_id :</span></dt><dd>NASA-GISS</dd><dt><span>license :</span></dt><dd>CMIP6 model data produced by NASA Goddard Institute for Space Studies is licensed under a Creative Commons Attribution ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at https:///pcmdi.llnl.gov/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.</dd><dt><span>mip_era :</span></dt><dd>CMIP6</dd><dt><span>model_id :</span></dt><dd>E200f10aF40oQ40</dd><dt><span>nominal_resolution :</span></dt><dd>250 km</dd><dt><span>parent_activity_id :</span></dt><dd>CMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>piControl</dd><dt><span>parent_experiment_rip :</span></dt><dd>r1i1p1</dd><dt><span>parent_mip_era :</span></dt><dd>CMIP6</dd><dt><span>parent_source_id :</span></dt><dd>GISS-E2-1-G</dd><dt><span>parent_time_units :</span></dt><dd>days since 4150-1-1</dd><dt><span>parent_variant_label :</span></dt><dd>r1i1p1f1</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>atmos</dd><dt><span>references :</span></dt><dd>https://data.giss.nasa.gov/modelE/cmip6</dd><dt><span>source :</span></dt><dd>GISS-E2.1G (2016): \n",
"aerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\n",
"atmos: GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)\n",
"atmosChem: Varies with physics-version (p==1 Non-interactive, p&gt;1 GPUCCINI)\n",
"land: GISS LSM\n",
"landIce: none\n",
"ocean: GISS Ocean (1.25x1 degree; 288 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)\n",
"ocnBgchem: none\n",
"seaIce: GISS SI</dd><dt><span>source_id :</span></dt><dd>GISS-E2-1-G</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>status :</span></dt><dd>2021-01-04;created; by gcs.cmip6.ldeo@gmail.com</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>table_id :</span></dt><dd>3hr</dd><dt><span>table_info :</span></dt><dd>Creation Date:(21 March 2018) MD5:f396f2dd5f6f49b68f473b06afe94f30</dd><dt><span>title :</span></dt><dd>GISS-E2-1-G output prepared for CMIP6</dd><dt><span>tracking_id :</span></dt><dd>hdl:21.14100/21bd2541-55b6-43de-b0e7-eb373929575c\n",
"hdl:21.14100/22474409-f471-4d5b-ba25-2bf1aa5bd473\n",
"hdl:21.14100/3aacbf23-0e50-4dca-a7c2-e387b5a038b0\n",
"hdl:21.14100/44816ca0-cac3-4cb8-b3ff-4a561782b219\n",
"hdl:21.14100/bac1a40e-eeea-48f8-bddd-1e938e3ddc01\n",
"hdl:21.14100/36dd3689-2b82-4528-a921-9f831a1eb3a1\n",
"hdl:21.14100/c5db1da7-7b3b-412c-83f8-7991ff44bc12\n",
"hdl:21.14100/84c647e2-a926-4aa1-9549-3d95dbe362ac\n",
"hdl:21.14100/e2d97d59-7495-4039-8e8a-99537b08daa6\n",
"hdl:21.14100/4a337b50-e035-44a6-b604-35f985cb8717\n",
"hdl:21.14100/fa75dcce-4a62-4583-857f-afee40723a5f\n",
"hdl:21.14100/7e2ed5bc-7d26-4403-9f4e-3947bcb29886\n",
"hdl:21.14100/780d3503-69c1-463e-8222-06b408152a07\n",
"hdl:21.14100/2081457b-8c66-4e4b-ae95-0d8373e91315\n",
"hdl:21.14100/b1e5d1ee-b58a-4349-aad3-0c2aa3dff3f5\n",
"hdl:21.14100/e5b00e72-0bc5-48b0-b4f7-b984b99e831b\n",
"hdl:21.14100/b8fceaba-0d0a-4918-9e19-b430deced4a9</dd><dt><span>variable_id :</span></dt><dd>ps</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f1</dd><dt><span>netcdf_tracking_ids :</span></dt><dd>hdl:21.14100/21bd2541-55b6-43de-b0e7-eb373929575c\n",
"hdl:21.14100/22474409-f471-4d5b-ba25-2bf1aa5bd473\n",
"hdl:21.14100/3aacbf23-0e50-4dca-a7c2-e387b5a038b0\n",
"hdl:21.14100/44816ca0-cac3-4cb8-b3ff-4a561782b219\n",
"hdl:21.14100/bac1a40e-eeea-48f8-bddd-1e938e3ddc01\n",
"hdl:21.14100/36dd3689-2b82-4528-a921-9f831a1eb3a1\n",
"hdl:21.14100/c5db1da7-7b3b-412c-83f8-7991ff44bc12\n",
"hdl:21.14100/84c647e2-a926-4aa1-9549-3d95dbe362ac\n",
"hdl:21.14100/e2d97d59-7495-4039-8e8a-99537b08daa6\n",
"hdl:21.14100/4a337b50-e035-44a6-b604-35f985cb8717\n",
"hdl:21.14100/fa75dcce-4a62-4583-857f-afee40723a5f\n",
"hdl:21.14100/7e2ed5bc-7d26-4403-9f4e-3947bcb29886\n",
"hdl:21.14100/780d3503-69c1-463e-8222-06b408152a07\n",
"hdl:21.14100/2081457b-8c66-4e4b-ae95-0d8373e91315\n",
"hdl:21.14100/b1e5d1ee-b58a-4349-aad3-0c2aa3dff3f5\n",
"hdl:21.14100/e5b00e72-0bc5-48b0-b4f7-b984b99e831b\n",
"hdl:21.14100/b8fceaba-0d0a-4918-9e19-b430deced4a9</dd><dt><span>version_id :</span></dt><dd>v20181015</dd><dt><span>intake_esm_vars :</span></dt><dd>[&#x27;ps&#x27;]</dd><dt><span>intake_esm_attrs:activity_id :</span></dt><dd>CMIP</dd><dt><span>intake_esm_attrs:institution_id :</span></dt><dd>NASA-GISS</dd><dt><span>intake_esm_attrs:source_id :</span></dt><dd>GISS-E2-1-G</dd><dt><span>intake_esm_attrs:experiment_id :</span></dt><dd>historical</dd><dt><span>intake_esm_attrs:member_id :</span></dt><dd>r1i1p1f1</dd><dt><span>intake_esm_attrs:table_id :</span></dt><dd>3hr</dd><dt><span>intake_esm_attrs:variable_id :</span></dt><dd>ps</dd><dt><span>intake_esm_attrs:grid_label :</span></dt><dd>gn</dd><dt><span>intake_esm_attrs:zstore :</span></dt><dd>gs://cmip6/CMIP6/CMIP/NASA-GISS/GISS-E2-1-G/historical/r1i1p1f1/3hr/ps/gn/v20181015/</dd><dt><span>intake_esm_attrs:version :</span></dt><dd>20181015</dd><dt><span>intake_esm_attrs:_data_format_ :</span></dt><dd>zarr</dd><dt><span>intake_esm_dataset_key :</span></dt><dd>CMIP.NASA-GISS.GISS-E2-1-G.historical.r1i1p1f1.3hr.ps.gn.gs://cmip6/CMIP6/CMIP/NASA-GISS/GISS-E2-1-G/historical/r1i1p1f1/3hr/ps/gn/v20181015/.20181015</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (member_id: 1, dcpp_init_year: 1, time: 481800, y: 90,\n",
" x: 144, bnds: 2, vertex: 4)\n",
"Coordinates:\n",
" * y (y) float64 -89.0 -87.0 -85.0 -83.0 ... 83.0 85.0 87.0 89.0\n",
" * x (x) float64 1.25 3.75 6.25 8.75 ... 351.2 353.8 356.2 358.8\n",
" * time (time) object 1850-01-01 03:00:00 ... 2015-01-01 00:00:00\n",
" lon_bounds (x, bnds, y) float64 dask.array<chunksize=(144, 2, 90), meta=np.ndarray>\n",
" lat_bounds (y, bnds, x) float64 dask.array<chunksize=(90, 2, 144), meta=np.ndarray>\n",
" lon (x, y) float64 1.25 1.25 1.25 1.25 ... 358.8 358.8 358.8\n",
" lat (x, y) float64 -89.0 -87.0 -85.0 -83.0 ... 85.0 87.0 89.0\n",
" lon_verticies (vertex, x, y) float64 dask.array<chunksize=(1, 144, 90), meta=np.ndarray>\n",
" lat_verticies (vertex, x, y) float64 dask.array<chunksize=(1, 144, 90), meta=np.ndarray>\n",
" * member_id (member_id) object 'r1i1p1f1'\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds, vertex\n",
"Data variables:\n",
" ps (member_id, dcpp_init_year, time, y, x) float32 dask.array<chunksize=(1, 1, 964, 90, 144), meta=np.ndarray>\n",
"Attributes: (12/64)\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" activity_id: CMIP\n",
" branch_method: standard\n",
" branch_time_in_child: 0.0\n",
" branch_time_in_parent: 0.0\n",
" cmor_version: 3.3.2\n",
" ... ...\n",
" intake_esm_attrs:variable_id: ps\n",
" intake_esm_attrs:grid_label: gn\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/NASA-GISS/GISS-E2...\n",
" intake_esm_attrs:version: 20181015\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CMIP.NASA-GISS.GISS-E2-1-G.historical.r..."
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.Dataset&gt;\n",
"Dimensions: (member_id: 1, dcpp_init_year: 1, time: 94900, y: 160,\n",
" x: 320, bnds: 2, vertex: 4)\n",
"Coordinates:\n",
" * y (y) float64 -89.14 -88.03 -86.91 ... 86.91 88.03 89.14\n",
" * x (x) float64 0.0 1.125 2.25 3.375 ... 355.5 356.6 357.8 358.9\n",
" * time (time) object 1950-01-01 00:00:00 ... 2014-12-31 18:00:00\n",
" lon_bounds (x, bnds, y) float64 dask.array&lt;chunksize=(320, 2, 160), meta=np.ndarray&gt;\n",
" lat_bounds (y, bnds, x) float64 dask.array&lt;chunksize=(160, 2, 320), meta=np.ndarray&gt;\n",
" time_bounds (time, bnds) object dask.array&lt;chunksize=(47450, 1), meta=np.ndarray&gt;\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.9 358.9 358.9\n",
" lat (x, y) float64 -89.14 -88.03 -86.91 ... 86.91 88.03 89.14\n",
" lon_verticies (vertex, x, y) float64 dask.array&lt;chunksize=(1, 320, 160), meta=np.ndarray&gt;\n",
" lat_verticies (vertex, x, y) float64 dask.array&lt;chunksize=(1, 320, 160), meta=np.ndarray&gt;\n",
" * member_id (member_id) object &#x27;r1i1p1f1&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds, vertex\n",
"Data variables:\n",
" ps (member_id, dcpp_init_year, time, y, x) float32 dask.array&lt;chunksize=(1, 1, 600, 160, 320), meta=np.ndarray&gt;\n",
"Attributes: (12/65)\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" activity_id: CMIP\n",
" branch_method: Standard\n",
" branch_time_in_child: 0.0\n",
" branch_time_in_parent: 2289.0\n",
" cmor_version: 3.3.2\n",
" ... ...\n",
" intake_esm_attrs:variable_id: ps\n",
" intake_esm_attrs:grid_label: gn\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/BCC/BCC-CSM2-MR/h...\n",
" intake_esm_attrs:version: 20181127\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>xarray.Dataset</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-6314d2f1-76eb-4974-92f7-bc8ef3e9057a' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-6314d2f1-76eb-4974-92f7-bc8ef3e9057a' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span class='xr-has-index'>time</span>: 94900</li><li><span class='xr-has-index'>y</span>: 160</li><li><span class='xr-has-index'>x</span>: 320</li><li><span>bnds</span>: 2</li><li><span>vertex</span>: 4</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-46a31fba-9b80-4a1d-939a-f2ba05faf6ad' class='xr-section-summary-in' type='checkbox' checked><label for='section-46a31fba-9b80-4a1d-939a-f2ba05faf6ad' class='xr-section-summary' >Coordinates: <span>(12)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-89.14 -88.03 ... 88.03 89.14</div><input id='attrs-c6e5b937-880b-4776-a94a-f572d145a920' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c6e5b937-880b-4776-a94a-f572d145a920' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bdfd2aeb-7efb-4bb7-a14b-37dca72d89c9' class='xr-var-data-in' type='checkbox'><label for='data-bdfd2aeb-7efb-4bb7-a14b-37dca72d89c9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>bounds :</span></dt><dd>lat_bnds</dd><dt><span>long_name :</span></dt><dd>latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_N</dd></dl></div><div class='xr-var-data'><pre>array([-89.141519, -88.029429, -86.910771, -85.790629, -84.669924, -83.548947,\n",
" -82.427818, -81.306595, -80.18531 , -79.063982, -77.942624, -76.821243,\n",
" -75.699844, -74.578432, -73.457008, -72.335576, -71.214136, -70.09269 ,\n",
" -68.97124 , -67.849784, -66.728326, -65.606864, -64.485399, -63.363932,\n",
" -62.242462, -61.120991, -59.999518, -58.878044, -57.756569, -56.635092,\n",
" -55.513614, -54.392135, -53.270655, -52.149175, -51.027694, -49.906212,\n",
" -48.784729, -47.663246, -46.541763, -45.420279, -44.298794, -43.177309,\n",
" -42.055824, -40.934338, -39.812852, -38.691366, -37.56988 , -36.448393,\n",
" -35.326906, -34.205418, -33.083931, -31.962443, -30.840955, -29.719467,\n",
" -28.597979, -27.476491, -26.355002, -25.233514, -24.112025, -22.990536,\n",
" -21.869047, -20.747558, -19.626069, -18.50458 , -17.383091, -16.261601,\n",
" -15.140112, -14.018622, -12.897133, -11.775643, -10.654153, -9.532664,\n",
" -8.411174, -7.289684, -6.168194, -5.046704, -3.925215, -2.803725,\n",
" -1.682235, -0.560745, 0.560745, 1.682235, 2.803725, 3.925215,\n",
" 5.046704, 6.168194, 7.289684, 8.411174, 9.532664, 10.654153,\n",
" 11.775643, 12.897133, 14.018622, 15.140112, 16.261601, 17.383091,\n",
" 18.50458 , 19.626069, 20.747558, 21.869047, 22.990536, 24.112025,\n",
" 25.233514, 26.355002, 27.476491, 28.597979, 29.719467, 30.840955,\n",
" 31.962443, 33.083931, 34.205418, 35.326906, 36.448393, 37.56988 ,\n",
" 38.691366, 39.812852, 40.934338, 42.055824, 43.177309, 44.298794,\n",
" 45.420279, 46.541763, 47.663246, 48.784729, 49.906212, 51.027694,\n",
" 52.149175, 53.270655, 54.392135, 55.513614, 56.635092, 57.756569,\n",
" 58.878044, 59.999518, 61.120991, 62.242462, 63.363932, 64.485399,\n",
" 65.606864, 66.728326, 67.849784, 68.97124 , 70.09269 , 71.214136,\n",
" 72.335576, 73.457008, 74.578432, 75.699844, 76.821243, 77.942624,\n",
" 79.063982, 80.18531 , 81.306595, 82.427818, 83.548947, 84.669924,\n",
" 85.790629, 86.910771, 88.029429, 89.141519])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 1.125 2.25 ... 357.8 358.9</div><input id='attrs-0cf6b392-7cf7-4b44-ba3b-5e416dea0ed3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0cf6b392-7cf7-4b44-ba3b-5e416dea0ed3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-06720242-5130-41f1-b560-0b17c5d4f44e' class='xr-var-data-in' type='checkbox'><label for='data-06720242-5130-41f1-b560-0b17c5d4f44e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>bounds :</span></dt><dd>lon_bnds</dd><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_E</dd></dl></div><div class='xr-var-data'><pre>array([ 0. , 1.125, 2.25 , ..., 356.625, 357.75 , 358.875])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>1950-01-01 00:00:00 ... 2014-12-...</div><input id='attrs-36d4faae-eb9a-41fb-8d58-13b2d7889e4f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-36d4faae-eb9a-41fb-8d58-13b2d7889e4f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2185fa53-938c-4dc1-8624-d72e9280ecec' class='xr-var-data-in' type='checkbox'><label for='data-2185fa53-938c-4dc1-8624-d72e9280ecec' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bnds</dd><dt><span>long_name :</span></dt><dd>time</dd><dt><span>standard_name :</span></dt><dd>time</dd></dl></div><div class='xr-var-data'><pre>array([cftime.DatetimeNoLeap(1950, 1, 1, 0, 0, 0, 0, has_year_zero=True),\n",
" cftime.DatetimeNoLeap(1950, 1, 1, 6, 0, 0, 0, has_year_zero=True),\n",
" cftime.DatetimeNoLeap(1950, 1, 1, 12, 0, 0, 0, has_year_zero=True), ...,\n",
" cftime.DatetimeNoLeap(2014, 12, 31, 6, 0, 0, 0, has_year_zero=True),\n",
" cftime.DatetimeNoLeap(2014, 12, 31, 12, 0, 0, 0, has_year_zero=True),\n",
" cftime.DatetimeNoLeap(2014, 12, 31, 18, 0, 0, 0, has_year_zero=True)],\n",
" dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon_bounds</span></div><div class='xr-var-dims'>(x, bnds, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(320, 2, 160), meta=np.ndarray&gt;</div><input id='attrs-9080cfea-22c8-44c1-9bfb-a38756e80e17' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-9080cfea-22c8-44c1-9bfb-a38756e80e17' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-79d5f3ce-0cfe-442d-9770-eaa24c0297e8' class='xr-var-data-in' type='checkbox'><label for='data-79d5f3ce-0cfe-442d-9770-eaa24c0297e8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 800.00 kiB </td>\n",
" <td> 800.00 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (320, 2, 160) </td>\n",
" <td> (320, 2, 160) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 9 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"190\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,96.00085180870013 10.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"70\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"140\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"70\" y1=\"0\" x2=\"140\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 70.0,0.0 140.58823529411765,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"140\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"96\" x2=\"140\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"140\" y1=\"70\" x2=\"140\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 140.58823529411765,70.58823529411765 140.58823529411765,96.00085180870013 80.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"110.588235\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >160</text>\n",
" <text x=\"160.588235\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,160.588235,83.294544)\">2</text>\n",
" <text x=\"35.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,80.706734)\">320</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat_bounds</span></div><div class='xr-var-dims'>(y, bnds, x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(160, 2, 320), meta=np.ndarray&gt;</div><input id='attrs-308fa1b5-f7b4-41d4-b5e0-25425bc2b1ce' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-308fa1b5-f7b4-41d4-b5e0-25425bc2b1ce' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ab37b587-9b1a-462c-aff4-51dac876c0e9' class='xr-var-data-in' type='checkbox'><label for='data-ab37b587-9b1a-462c-aff4-51dac876c0e9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 800.00 kiB </td>\n",
" <td> 800.00 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (160, 2, 320) </td>\n",
" <td> (160, 2, 320) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 6 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"215\" height=\"110\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"45\" y2=\"35\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"45\" y2=\"60\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"45\" y1=\"35\" x2=\"45\" y2=\"60\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 45.294117647058826,35.294117647058826 45.294117647058826,60.70673416164131 10.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"45\" y1=\"35\" x2=\"165\" y2=\"35\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"45\" y2=\"35\" style=\"stroke-width:2\" />\n",
" <line x1=\"130\" y1=\"0\" x2=\"165\" y2=\"35\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 130.0,0.0 165.29411764705884,35.294117647058826 45.294117647058826,35.294117647058826\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"45\" y1=\"35\" x2=\"165\" y2=\"35\" style=\"stroke-width:2\" />\n",
" <line x1=\"45\" y1=\"60\" x2=\"165\" y2=\"60\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"45\" y1=\"35\" x2=\"45\" y2=\"60\" style=\"stroke-width:2\" />\n",
" <line x1=\"165\" y1=\"35\" x2=\"165\" y2=\"60\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"45.294117647058826,35.294117647058826 165.29411764705884,35.294117647058826 165.29411764705884,60.70673416164131 45.294117647058826,60.70673416164131\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"105.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >320</text>\n",
" <text x=\"185.294118\" y=\"48.000426\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,185.294118,48.000426)\">2</text>\n",
" <text x=\"17.647059\" y=\"63.059675\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,17.647059,63.059675)\">160</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_bounds</span></div><div class='xr-var-dims'>(time, bnds)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(47450, 1), meta=np.ndarray&gt;</div><input id='attrs-6a3e30ab-635c-40bf-9b78-dbcf5080683d' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-6a3e30ab-635c-40bf-9b78-dbcf5080683d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7a3bae04-3c97-429e-b52b-664478a2badf' class='xr-var-data-in' type='checkbox'><label for='data-7a3bae04-3c97-429e-b52b-664478a2badf' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.45 MiB </td>\n",
" <td> 370.70 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94900, 2) </td>\n",
" <td> (47450, 1) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> object numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"75\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"60\" x2=\"25\" y2=\"60\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"12\" y2=\"120\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"45.412617\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,45.412617,60.000000)\">94900</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>360.0 360.0 360.0 ... 358.9 358.9</div><input id='attrs-81d9f3db-48a1-4d82-9118-bebdafe446eb' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-81d9f3db-48a1-4d82-9118-bebdafe446eb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-022a2d68-f111-44c2-901a-ddfd7e80f568' class='xr-var-data-in' type='checkbox'><label for='data-022a2d68-f111-44c2-901a-ddfd7e80f568' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[360. , 360. , 360. , ..., 360. , 360. , 360. ],\n",
" [ 1.125, 1.125, 1.125, ..., 1.125, 1.125, 1.125],\n",
" [ 2.25 , 2.25 , 2.25 , ..., 2.25 , 2.25 , 2.25 ],\n",
" ...,\n",
" [356.625, 356.625, 356.625, ..., 356.625, 356.625, 356.625],\n",
" [357.75 , 357.75 , 357.75 , ..., 357.75 , 357.75 , 357.75 ],\n",
" [358.875, 358.875, 358.875, ..., 358.875, 358.875, 358.875]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-89.14 -88.03 ... 88.03 89.14</div><input id='attrs-d4de20a8-af5e-4c8b-ba55-a247ff9fa470' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-d4de20a8-af5e-4c8b-ba55-a247ff9fa470' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3b36577c-02ca-492c-9c46-95c2205b5ffb' class='xr-var-data-in' type='checkbox'><label for='data-3b36577c-02ca-492c-9c46-95c2205b5ffb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-89.14151943, -88.02942887, -86.91077081, ..., 86.91077081,\n",
" 88.02942887, 89.14151943],\n",
" [-89.14151943, -88.02942887, -86.91077081, ..., 86.91077081,\n",
" 88.02942887, 89.14151943],\n",
" [-89.14151943, -88.02942887, -86.91077081, ..., 86.91077081,\n",
" 88.02942887, 89.14151943],\n",
" ...,\n",
" [-89.14151943, -88.02942887, -86.91077081, ..., 86.91077081,\n",
" 88.02942887, 89.14151943],\n",
" [-89.14151943, -88.02942887, -86.91077081, ..., 86.91077081,\n",
" 88.02942887, 89.14151943],\n",
" [-89.14151943, -88.02942887, -86.91077081, ..., 86.91077081,\n",
" 88.02942887, 89.14151943]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon_verticies</span></div><div class='xr-var-dims'>(vertex, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 320, 160), meta=np.ndarray&gt;</div><input id='attrs-68fc0cea-67e0-4210-b6ef-f9f4ab495381' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-68fc0cea-67e0-4210-b6ef-f9f4ab495381' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-31200a02-3d31-4b87-9e4c-e9e1883b04ee' class='xr-var-data-in' type='checkbox'><label for='data-31200a02-3d31-4b87-9e4c-e9e1883b04ee' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.56 MiB </td>\n",
" <td> 400.00 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (4, 320, 160) </td>\n",
" <td> (1, 320, 160) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 17 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"135\" height=\"185\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"25\" y2=\"15\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"120\" x2=\"25\" y2=\"135\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"123\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"127\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"131\" />\n",
" <line x1=\"25\" y1=\"15\" x2=\"25\" y2=\"135\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 25.595725799811454,15.595725799811456 25.595725799811454,135.59572579981145 10.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"70\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"73\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"77\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"81\" y2=\"11\" />\n",
" <line x1=\"25\" y1=\"15\" x2=\"85\" y2=\"15\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"25\" y2=\"15\" style=\"stroke-width:2\" />\n",
" <line x1=\"70\" y1=\"0\" x2=\"85\" y2=\"15\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 70.0,0.0 85.59572579981146,15.595725799811456 25.595725799811454,15.595725799811456\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"25\" y1=\"15\" x2=\"85\" y2=\"15\" style=\"stroke-width:2\" />\n",
" <line x1=\"25\" y1=\"135\" x2=\"85\" y2=\"135\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"25\" y1=\"15\" x2=\"25\" y2=\"135\" style=\"stroke-width:2\" />\n",
" <line x1=\"85\" y1=\"15\" x2=\"85\" y2=\"135\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"25.595725799811454,15.595725799811456 85.59572579981145,15.595725799811456 85.59572579981145,135.59572579981145 25.595725799811454,135.59572579981145\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"55.595726\" y=\"155.595726\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >160</text>\n",
" <text x=\"105.595726\" y=\"75.595726\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,105.595726,75.595726)\">320</text>\n",
" <text x=\"7.797863\" y=\"147.797863\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.797863,147.797863)\">4</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat_verticies</span></div><div class='xr-var-dims'>(vertex, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 320, 160), meta=np.ndarray&gt;</div><input id='attrs-3a66ae3b-fd70-48fc-9973-99c440a3fcff' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-3a66ae3b-fd70-48fc-9973-99c440a3fcff' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b2b9bc50-7cbb-4170-b8ac-ba81b480097a' class='xr-var-data-in' type='checkbox'><label for='data-b2b9bc50-7cbb-4170-b8ac-ba81b480097a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.56 MiB </td>\n",
" <td> 400.00 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (4, 320, 160) </td>\n",
" <td> (1, 320, 160) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 14 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"135\" height=\"185\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"25\" y2=\"15\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"120\" x2=\"25\" y2=\"135\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"123\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"127\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"131\" />\n",
" <line x1=\"25\" y1=\"15\" x2=\"25\" y2=\"135\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 25.595725799811454,15.595725799811456 25.595725799811454,135.59572579981145 10.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"70\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"73\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"77\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"81\" y2=\"11\" />\n",
" <line x1=\"25\" y1=\"15\" x2=\"85\" y2=\"15\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"25\" y2=\"15\" style=\"stroke-width:2\" />\n",
" <line x1=\"70\" y1=\"0\" x2=\"85\" y2=\"15\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 70.0,0.0 85.59572579981146,15.595725799811456 25.595725799811454,15.595725799811456\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"25\" y1=\"15\" x2=\"85\" y2=\"15\" style=\"stroke-width:2\" />\n",
" <line x1=\"25\" y1=\"135\" x2=\"85\" y2=\"135\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"25\" y1=\"15\" x2=\"25\" y2=\"135\" style=\"stroke-width:2\" />\n",
" <line x1=\"85\" y1=\"15\" x2=\"85\" y2=\"135\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"25.595725799811454,15.595725799811456 85.59572579981145,15.595725799811456 85.59572579981145,135.59572579981145 25.595725799811454,135.59572579981145\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"55.595726\" y=\"155.595726\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >160</text>\n",
" <text x=\"105.595726\" y=\"75.595726\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,105.595726,75.595726)\">320</text>\n",
" <text x=\"7.797863\" y=\"147.797863\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.797863,147.797863)\">4</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f1&#x27;</div><input id='attrs-35343f30-6f6d-4f9d-92d5-08292a45d835' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-35343f30-6f6d-4f9d-92d5-08292a45d835' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bac0604b-bf7b-45e6-8403-a21b7a06823a' class='xr-var-data-in' type='checkbox'><label for='data-bac0604b-bf7b-45e6-8403-a21b7a06823a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f1&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-dc60112a-5b5a-4fd5-bf20-b7bebc8e294b' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-dc60112a-5b5a-4fd5-bf20-b7bebc8e294b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2e1e6a77-01a7-45f6-8a5c-176d25d5c1b1' class='xr-var-data-in' type='checkbox'><label for='data-2e1e6a77-01a7-45f6-8a5c-176d25d5c1b1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-1072f442-f400-4d89-961c-7268289eca98' class='xr-section-summary-in' type='checkbox' checked><label for='section-1072f442-f400-4d89-961c-7268289eca98' class='xr-section-summary' >Data variables: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>ps</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 600, 160, 320), meta=np.ndarray&gt;</div><input id='attrs-7ee1a3b5-54e6-493a-9d22-6211b6a2b715' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7ee1a3b5-54e6-493a-9d22-6211b6a2b715' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e4268319-709d-44a1-aa0e-904a0ad06f3a' class='xr-var-data-in' type='checkbox'><label for='data-e4268319-709d-44a1-aa0e-904a0ad06f3a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point (interval: 5 minutes)</dd><dt><span>comment :</span></dt><dd>surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates</dd><dt><span>long_name :</span></dt><dd>Surface Air Pressure</dd><dt><span>original_name :</span></dt><dd>PS</dd><dt><span>standard_name :</span></dt><dd>surface_air_pressure</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 18.10 GiB </td>\n",
" <td> 117.19 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (1, 1, 94900, 160, 320) </td>\n",
" <td> (1, 1, 600, 160, 320) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 159 chunks in 3 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"336\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"45.412617\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1</text>\n",
" <text x=\"45.412617\" y=\"12.706308\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,45.412617,12.706308)\">1</text>\n",
"\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"95\" y1=\"25\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"95\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"96\" y1=\"1\" x2=\"96\" y2=\"27\" />\n",
" <line x1=\"99\" y1=\"4\" x2=\"99\" y2=\"29\" />\n",
" <line x1=\"101\" y1=\"6\" x2=\"101\" y2=\"31\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"103\" y2=\"33\" />\n",
" <line x1=\"105\" y1=\"10\" x2=\"105\" y2=\"36\" />\n",
" <line x1=\"107\" y1=\"12\" x2=\"107\" y2=\"38\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"110\" y2=\"40\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"112\" y2=\"42\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"114\" y2=\"45\" />\n",
" <line x1=\"116\" y1=\"21\" x2=\"116\" y2=\"47\" />\n",
" <line x1=\"119\" y1=\"24\" x2=\"119\" y2=\"49\" />\n",
" <line x1=\"121\" y1=\"26\" x2=\"121\" y2=\"51\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"123\" y2=\"53\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"125\" y2=\"56\" />\n",
" <line x1=\"128\" y1=\"33\" x2=\"128\" y2=\"58\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"130\" y2=\"60\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"132\" y2=\"62\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"134\" y2=\"65\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"136\" y2=\"67\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"139\" y2=\"69\" />\n",
" <line x1=\"141\" y1=\"46\" x2=\"141\" y2=\"71\" />\n",
" <line x1=\"143\" y1=\"48\" x2=\"143\" y2=\"74\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"145\" y2=\"76\" />\n",
" <line x1=\"148\" y1=\"53\" x2=\"148\" y2=\"78\" />\n",
" <line x1=\"150\" y1=\"55\" x2=\"150\" y2=\"80\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"152\" y2=\"82\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"154\" y2=\"85\" />\n",
" <line x1=\"157\" y1=\"62\" x2=\"157\" y2=\"87\" />\n",
" <line x1=\"159\" y1=\"64\" x2=\"159\" y2=\"89\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"161\" y2=\"91\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"163\" y2=\"94\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 165.58823529411765,70.58823529411765 165.58823529411765,96.00085180870013 95.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"96\" y1=\"1\" x2=\"122\" y2=\"1\" />\n",
" <line x1=\"99\" y1=\"4\" x2=\"124\" y2=\"4\" />\n",
" <line x1=\"101\" y1=\"6\" x2=\"126\" y2=\"6\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"128\" y2=\"8\" />\n",
" <line x1=\"105\" y1=\"10\" x2=\"131\" y2=\"10\" />\n",
" <line x1=\"107\" y1=\"12\" x2=\"133\" y2=\"12\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"135\" y2=\"15\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"137\" y2=\"17\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"140\" y2=\"19\" />\n",
" <line x1=\"116\" y1=\"21\" x2=\"142\" y2=\"21\" />\n",
" <line x1=\"119\" y1=\"24\" x2=\"144\" y2=\"24\" />\n",
" <line x1=\"121\" y1=\"26\" x2=\"146\" y2=\"26\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"148\" y2=\"28\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"151\" y2=\"30\" />\n",
" <line x1=\"128\" y1=\"33\" x2=\"153\" y2=\"33\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"155\" y2=\"35\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"157\" y2=\"37\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"160\" y2=\"39\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"162\" y2=\"41\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"164\" y2=\"44\" />\n",
" <line x1=\"141\" y1=\"46\" x2=\"166\" y2=\"46\" />\n",
" <line x1=\"143\" y1=\"48\" x2=\"169\" y2=\"48\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"171\" y2=\"50\" />\n",
" <line x1=\"148\" y1=\"53\" x2=\"173\" y2=\"53\" />\n",
" <line x1=\"150\" y1=\"55\" x2=\"175\" y2=\"55\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"177\" y2=\"57\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"180\" y2=\"59\" />\n",
" <line x1=\"157\" y1=\"62\" x2=\"182\" y2=\"62\" />\n",
" <line x1=\"159\" y1=\"64\" x2=\"184\" y2=\"64\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"186\" y2=\"66\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"189\" y2=\"68\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 120.41261651458248,0.0 191.00085180870013,70.58823529411765 165.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"165\" y1=\"96\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"191\" y1=\"70\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"165.58823529411765,70.58823529411765 191.00085180870013,70.58823529411765 191.00085180870013,96.00085180870013 165.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"178.294544\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >320</text>\n",
" <text x=\"211.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,211.000852,83.294544)\">160</text>\n",
" <text x=\"120.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,120.294118,80.706734)\">94900</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-6e0afd99-e73e-4931-9b47-f9f04cfd517a' class='xr-section-summary-in' type='checkbox' ><label for='section-6e0afd99-e73e-4931-9b47-f9f04cfd517a' class='xr-section-summary' >Indexes: <span>(5)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-index-name'><div>y</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-e7369845-a5e4-444c-85a4-e14ace62dda3' class='xr-index-data-in' type='checkbox'/><label for='index-e7369845-a5e4-444c-85a4-e14ace62dda3' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([-89.14151942646112, -88.02942886795154, -86.91077081412396,\n",
" -85.7906288836365, -84.66992408444658, -83.54894691254214,\n",
" -82.42781752400776, -81.30659452266895, -80.18530987247722,\n",
" -79.06398248140857,\n",
" ...\n",
" 79.06398248140857, 80.18530987247722, 81.30659452266895,\n",
" 82.42781752400776, 83.54894691254214, 84.66992408444658,\n",
" 85.7906288836365, 86.91077081412396, 88.02942886795154,\n",
" 89.14151942646112],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;y&#x27;, length=160))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>x</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-99659b48-d4aa-4697-a645-c0f9d41e20c8' class='xr-index-data-in' type='checkbox'/><label for='index-99659b48-d4aa-4697-a645-c0f9d41e20c8' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([ 0.0, 1.125, 2.25, 3.375, 4.5, 5.625, 6.75, 7.875,\n",
" 9.0, 10.125,\n",
" ...\n",
" 348.75, 349.875, 351.0, 352.125, 353.25, 354.375, 355.5, 356.625,\n",
" 357.75, 358.875],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;x&#x27;, length=320))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>time</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-892f4341-c23a-404a-8302-82ecaf9f25ca' class='xr-index-data-in' type='checkbox'/><label for='index-892f4341-c23a-404a-8302-82ecaf9f25ca' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(CFTimeIndex([1950-01-01 00:00:00, 1950-01-01 06:00:00, 1950-01-01 12:00:00,\n",
" 1950-01-01 18:00:00, 1950-01-02 00:00:00, 1950-01-02 06:00:00,\n",
" 1950-01-02 12:00:00, 1950-01-02 18:00:00, 1950-01-03 00:00:00,\n",
" 1950-01-03 06:00:00,\n",
" ...\n",
" 2014-12-29 12:00:00, 2014-12-29 18:00:00, 2014-12-30 00:00:00,\n",
" 2014-12-30 06:00:00, 2014-12-30 12:00:00, 2014-12-30 18:00:00,\n",
" 2014-12-31 00:00:00, 2014-12-31 06:00:00, 2014-12-31 12:00:00,\n",
" 2014-12-31 18:00:00],\n",
" dtype=&#x27;object&#x27;, length=94900, calendar=&#x27;noleap&#x27;, freq=&#x27;6H&#x27;))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>member_id</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-f1a02f5a-e676-4562-952c-bb8195853cd2' class='xr-index-data-in' type='checkbox'/><label for='index-f1a02f5a-e676-4562-952c-bb8195853cd2' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([&#x27;r1i1p1f1&#x27;], dtype=&#x27;object&#x27;, name=&#x27;member_id&#x27;))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>dcpp_init_year</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-018ffbb4-35b4-4fba-aeb0-9d0f0d7fd545' class='xr-index-data-in' type='checkbox'/><label for='index-018ffbb4-35b4-4fba-aeb0-9d0f0d7fd545' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([nan], dtype=&#x27;float64&#x27;, name=&#x27;dcpp_init_year&#x27;))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-b9077506-b73f-4224-ade1-7f9db5eded17' class='xr-section-summary-in' type='checkbox' ><label for='section-b9077506-b73f-4224-ade1-7f9db5eded17' class='xr-section-summary' >Attributes: <span>(65)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>activity_id :</span></dt><dd>CMIP</dd><dt><span>branch_method :</span></dt><dd>Standard</dd><dt><span>branch_time_in_child :</span></dt><dd>0.0</dd><dt><span>branch_time_in_parent :</span></dt><dd>2289.0</dd><dt><span>cmor_version :</span></dt><dd>3.3.2</dd><dt><span>comment :</span></dt><dd>The model integration starts from the piControl experiment equilibrium state (1st Jan. of the year 2289)</dd><dt><span>contact :</span></dt><dd>Dr. Tongwen Wu(twwu@cma.gov.cn)</dd><dt><span>creation_date :</span></dt><dd>2018-11-27T03:46:31Z</dd><dt><span>data_specs_version :</span></dt><dd>01.00.27</dd><dt><span>description :</span></dt><dd>DECK: historical</dd><dt><span>experiment :</span></dt><dd>all-forcing simulation of the recent past</dd><dt><span>experiment_id :</span></dt><dd>historical</dd><dt><span>external_variables :</span></dt><dd>areacella</dd><dt><span>forcing_index :</span></dt><dd>1</dd><dt><span>frequency :</span></dt><dd>6hrPt</dd><dt><span>further_info_url :</span></dt><dd>https://furtherinfo.es-doc.org/CMIP6.BCC.BCC-CSM2-MR.historical.none.r1i1p1f1</dd><dt><span>grid :</span></dt><dd>T106</dd><dt><span>grid_label :</span></dt><dd>gn</dd><dt><span>history :</span></dt><dd>2018-11-27T03:46:28Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.;\n",
"N/A</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>Beijing Climate Center, Beijing 100081, China</dd><dt><span>institution_id :</span></dt><dd>BCC</dd><dt><span>license :</span></dt><dd>CMIP6 model data produced by BCC is licensed under a Creative Commons Attribution ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at https:///pcmdi.llnl.gov/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.</dd><dt><span>mip_era :</span></dt><dd>CMIP6</dd><dt><span>nominal_resolution :</span></dt><dd>100 km</dd><dt><span>parent_activity_id :</span></dt><dd>CMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>piControl</dd><dt><span>parent_mip_era :</span></dt><dd>CMIP6</dd><dt><span>parent_source_id :</span></dt><dd>BCC-CSM2-MR</dd><dt><span>parent_time_units :</span></dt><dd>days since 1850-01-01</dd><dt><span>parent_variant_label :</span></dt><dd>r1i1p1f1</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>atmos</dd><dt><span>references :</span></dt><dd>Model described by Tongwen Wu et al. (JGR 2013; JMR 2014; submmitted to GMD,2018). Also see http://forecast.bcccsm.ncc-cma.net/htm</dd><dt><span>run_variant :</span></dt><dd>forcing: greenhouse gases,solar constant,aerosol,volcano mass,land use,ozone</dd><dt><span>source :</span></dt><dd>BCC-CSM 2 MR (2017): aerosol: none atmos: BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa) atmosChem: none land: BCC_AVIM2 landIce: none ocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m) ocnBgchem: none seaIce: SIS2</dd><dt><span>source_id :</span></dt><dd>BCC-CSM2-MR</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>table_id :</span></dt><dd>6hrLev</dd><dt><span>table_info :</span></dt><dd>Creation Date:(30 July 2018) MD5:e53ff52009d0b97d9d867dc12b6096c7</dd><dt><span>title :</span></dt><dd>BCC-CSM2-MR output prepared for CMIP6</dd><dt><span>tracking_id :</span></dt><dd>hdl:21.14100/9f9682b7-829e-429b-a4be-758bcb445bb4\n",
"hdl:21.14100/d0746a00-ab2e-40bd-9ebb-035e93b51c7b\n",
"hdl:21.14100/83c67b95-359d-46a5-beb3-f11a75d49222\n",
"hdl:21.14100/cbd342fa-f2c0-453e-af2a-6f58a77e2a96\n",
"hdl:21.14100/c3ca49bc-3f17-4d2a-a67d-581d90006048\n",
"hdl:21.14100/1cb5f690-2a24-4ae7-9f7c-996dc6a7b433\n",
"hdl:21.14100/d3c23039-1ad8-4b4c-827a-8135c913f891\n",
"hdl:21.14100/6ca234a2-10fc-40b4-8477-cd0a2d4c43ff\n",
"hdl:21.14100/30edcd0b-7ad3-4f74-9c9a-19c4b0e63ab1\n",
"hdl:21.14100/f5a11295-6fb6-4453-a074-ea9780bb13b3\n",
"hdl:21.14100/5c015f18-abd7-44bd-b399-daba9385ad06\n",
"hdl:21.14100/9ab1bc10-d392-4e70-aa39-bff53b80b59f\n",
"hdl:21.14100/6529df1c-d093-4714-8a15-fc7c99053903</dd><dt><span>variable_id :</span></dt><dd>ps</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f1</dd><dt><span>status :</span></dt><dd>2019-10-25;created;by nhn2@columbia.edu</dd><dt><span>netcdf_tracking_ids :</span></dt><dd>hdl:21.14100/9f9682b7-829e-429b-a4be-758bcb445bb4\n",
"hdl:21.14100/d0746a00-ab2e-40bd-9ebb-035e93b51c7b\n",
"hdl:21.14100/83c67b95-359d-46a5-beb3-f11a75d49222\n",
"hdl:21.14100/cbd342fa-f2c0-453e-af2a-6f58a77e2a96\n",
"hdl:21.14100/c3ca49bc-3f17-4d2a-a67d-581d90006048\n",
"hdl:21.14100/1cb5f690-2a24-4ae7-9f7c-996dc6a7b433\n",
"hdl:21.14100/d3c23039-1ad8-4b4c-827a-8135c913f891\n",
"hdl:21.14100/6ca234a2-10fc-40b4-8477-cd0a2d4c43ff\n",
"hdl:21.14100/30edcd0b-7ad3-4f74-9c9a-19c4b0e63ab1\n",
"hdl:21.14100/f5a11295-6fb6-4453-a074-ea9780bb13b3\n",
"hdl:21.14100/5c015f18-abd7-44bd-b399-daba9385ad06\n",
"hdl:21.14100/9ab1bc10-d392-4e70-aa39-bff53b80b59f\n",
"hdl:21.14100/6529df1c-d093-4714-8a15-fc7c99053903</dd><dt><span>version_id :</span></dt><dd>v20181127</dd><dt><span>intake_esm_vars :</span></dt><dd>[&#x27;ps&#x27;]</dd><dt><span>intake_esm_attrs:activity_id :</span></dt><dd>CMIP</dd><dt><span>intake_esm_attrs:institution_id :</span></dt><dd>BCC</dd><dt><span>intake_esm_attrs:source_id :</span></dt><dd>BCC-CSM2-MR</dd><dt><span>intake_esm_attrs:experiment_id :</span></dt><dd>historical</dd><dt><span>intake_esm_attrs:member_id :</span></dt><dd>r1i1p1f1</dd><dt><span>intake_esm_attrs:table_id :</span></dt><dd>6hrLev</dd><dt><span>intake_esm_attrs:variable_id :</span></dt><dd>ps</dd><dt><span>intake_esm_attrs:grid_label :</span></dt><dd>gn</dd><dt><span>intake_esm_attrs:zstore :</span></dt><dd>gs://cmip6/CMIP6/CMIP/BCC/BCC-CSM2-MR/historical/r1i1p1f1/6hrLev/ps/gn/v20181127/</dd><dt><span>intake_esm_attrs:version :</span></dt><dd>20181127</dd><dt><span>intake_esm_attrs:_data_format_ :</span></dt><dd>zarr</dd><dt><span>intake_esm_dataset_key :</span></dt><dd>CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f1.6hrLev.ps.gn.gs://cmip6/CMIP6/CMIP/BCC/BCC-CSM2-MR/historical/r1i1p1f1/6hrLev/ps/gn/v20181127/.20181127</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (member_id: 1, dcpp_init_year: 1, time: 94900, y: 160,\n",
" x: 320, bnds: 2, vertex: 4)\n",
"Coordinates:\n",
" * y (y) float64 -89.14 -88.03 -86.91 ... 86.91 88.03 89.14\n",
" * x (x) float64 0.0 1.125 2.25 3.375 ... 355.5 356.6 357.8 358.9\n",
" * time (time) object 1950-01-01 00:00:00 ... 2014-12-31 18:00:00\n",
" lon_bounds (x, bnds, y) float64 dask.array<chunksize=(320, 2, 160), meta=np.ndarray>\n",
" lat_bounds (y, bnds, x) float64 dask.array<chunksize=(160, 2, 320), meta=np.ndarray>\n",
" time_bounds (time, bnds) object dask.array<chunksize=(47450, 1), meta=np.ndarray>\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.9 358.9 358.9\n",
" lat (x, y) float64 -89.14 -88.03 -86.91 ... 86.91 88.03 89.14\n",
" lon_verticies (vertex, x, y) float64 dask.array<chunksize=(1, 320, 160), meta=np.ndarray>\n",
" lat_verticies (vertex, x, y) float64 dask.array<chunksize=(1, 320, 160), meta=np.ndarray>\n",
" * member_id (member_id) object 'r1i1p1f1'\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds, vertex\n",
"Data variables:\n",
" ps (member_id, dcpp_init_year, time, y, x) float32 dask.array<chunksize=(1, 1, 600, 160, 320), meta=np.ndarray>\n",
"Attributes: (12/65)\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" activity_id: CMIP\n",
" branch_method: Standard\n",
" branch_time_in_child: 0.0\n",
" branch_time_in_parent: 2289.0\n",
" cmor_version: 3.3.2\n",
" ... ...\n",
" intake_esm_attrs:variable_id: ps\n",
" intake_esm_attrs:grid_label: gn\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/BCC/BCC-CSM2-MR/h...\n",
" intake_esm_attrs:version: 20181127\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f..."
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# So why can we not just combine these into a big dataset with a 'model' dimension?\n",
"\n",
"# Note the different size of x/y!\n",
"display(ddict['CMIP.NASA-GISS.GISS-E2-1-G.historical.r1i1p1f1.3hr.ps.gn.gs://cmip6/CMIP6/CMIP/NASA-GISS/GISS-E2-1-G/historical/r1i1p1f1/3hr/ps/gn/v20181015/.20181015'])\n",
"display(ddict['CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f1.6hrLev.ps.gn.gs://cmip6/CMIP6/CMIP/BCC/BCC-CSM2-MR/historical/r1i1p1f1/6hrLev/ps/gn/v20181127/.20181127'])"
]
},
{
"cell_type": "code",
"execution_count": 25,
"id": "7cd2dac5-206c-48b6-9d22-f3180c942ccc",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"--> The keys in the returned dictionary of datasets are constructed as follows:\n",
"\t'source_id/member_id/variable_id/table_id/grid_label'\n"
]
},
{
"data": {
"text/html": [
"\n",
"<style>\n",
" /* Turns off some styling */\n",
" progress {\n",
" /* gets rid of default border in Firefox and Opera. */\n",
" border: none;\n",
" /* Needs to be in here for Safari polyfill so background images work as expected. */\n",
" background-size: auto;\n",
" }\n",
" progress:not([value]), progress:not([value])::-webkit-progress-bar {\n",
" background: repeating-linear-gradient(45deg, #7e7e7e, #7e7e7e 10px, #5c5c5c 10px, #5c5c5c 20px);\n",
" }\n",
" .progress-bar-interrupted, .progress-bar-interrupted::-webkit-progress-bar {\n",
" background: #F44336;\n",
" }\n",
"</style>\n"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"\n",
" <div>\n",
" <progress value='34' class='' max='34' style='width:300px; height:20px; vertical-align: middle;'></progress>\n",
" 100.00% [34/34 00:09&lt;00:00]\n",
" </div>\n",
" "
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.NASA-GISS.GISS-E2-1-G.historical.r1i1p1f1.6hrLev.gn.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.NASA-GISS.GISS-E2-1-G.historical.r1i1p1f1.6hrLev.gn.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.NOAA-GFDL.GFDL-CM4.historical.r1i1p1f1.6hrLev.gr2.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.CNRM-CERFACS.CNRM-ESM2-1.historical.r1i1p1f2.6hrLev.gr.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.NOAA-GFDL.GFDL-CM4.historical.r1i1p1f1.6hrLev.gr2.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f1.6hrLev.gn.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.CNRM-CERFACS.CNRM-ESM2-1.historical.r1i1p1f2.6hrLev.gr.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.CNRM-CERFACS.CNRM-CM6-1.historical.r1i1p1f2.6hrLev.gr.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.MRI.MRI-ESM2-0.historical.r1i1p1f1.6hrLev.gn.none.hus: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.MRI.MRI-ESM2-0.historical.r1i1p1f1.6hrLev.gn.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f1.6hrLev.gn.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n",
"/srv/conda/envs/notebook/lib/python3.10/site-packages/xmip/preprocessing.py:229: UserWarning: CMIP.CNRM-CERFACS.CNRM-CM6-1.historical.r1i1p1f2.6hrLev.gr.none.ta: Unit correction failed with: Cannot convert variables:\n",
" incompatible units for variable 'lev': Cannot convert from 'dimensionless' (dimensionless) to 'meter' ([length])\n",
" warnings.warn(\n"
]
}
],
"source": [
"# xarray-datatree to the rescue!!!\n",
"dt = cat2.to_datatree(\n",
" preprocess=combined_preprocessing,\n",
" levels=['source_id', 'member_id', 'variable_id', 'table_id', 'grid_label']\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "d44baacf-6197-48ab-8c40-1fe9092d80c4",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>datatree.DataTree</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-c0444906-2023-4558-b505-c5259e77996e' class='xr-section-summary-in' type='checkbox' ><label for='section-c0444906-2023-4558-b505-c5259e77996e' class='xr-section-summary' >Groups: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>CNRM-CM6-1</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-a18de371-e0e8-41d7-b69f-65971b53560f' class='xr-section-summary-in' type='checkbox' ><label for='section-a18de371-e0e8-41d7-b69f-65971b53560f' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>r1i1p1f2</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-50f7325c-ca36-4c51-a811-e181c417ce61' class='xr-section-summary-in' type='checkbox' ><label for='section-50f7325c-ca36-4c51-a811-e181c417ce61' class='xr-section-summary' >Groups: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>ps</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-9c208dc9-e34b-4532-8741-95f46025e305' class='xr-section-summary-in' type='checkbox' ><label for='section-9c208dc9-e34b-4532-8741-95f46025e305' class='xr-section-summary' >Groups: <span>(2)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>3hr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-fcfbfca4-5270-434d-9388-053898a4fcf6' class='xr-section-summary-in' type='checkbox' ><label for='section-fcfbfca4-5270-434d-9388-053898a4fcf6' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (member_id: 1, dcpp_init_year: 1, time: 482120, y: 128,\n",
" x: 256, bnds: 2)\n",
"Coordinates:\n",
" * y (y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * x (x) float64 0.0 1.406 2.812 4.219 ... 355.8 357.2 358.6\n",
" * time (time) datetime64[ns] 1850-01-01T03:00:00 ... 2015-01-01\n",
" time_bounds (time, bnds) datetime64[ns] dask.array&lt;chunksize=(60265, 1), meta=np.ndarray&gt;\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.6 358.6 358.6\n",
" lat (x, y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * member_id (member_id) object &#x27;r1i1p1f2&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds\n",
"Data variables:\n",
" ps (member_id, dcpp_init_year, time, y, x) float32 dask.array&lt;chunksize=(1, 1, 644, 128, 256), meta=np.ndarray&gt;\n",
"Attributes: (12/70)\n",
" CMIP6_CV_version: cv=6.2.3.0-7-g2019642\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" EXPID: CNRM-CM6-1_historical_r1i1p1f2\n",
" NCO: &quot;4.5.5&quot;\n",
" activity_id: CMIP\n",
" arpege_minor_version: 6.3.2\n",
" ... ...\n",
" intake_esm_attrs:variable_id: ps\n",
" intake_esm_attrs:grid_label: gr\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM...\n",
" intake_esm_attrs:version: 20180917\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CNRM-CM6-1/r1i1p1f2/ps/3hr/gr</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>gr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-67b4310a-cf29-4e39-82f3-4eac142a646a' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-67b4310a-cf29-4e39-82f3-4eac142a646a' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-7fa6b2da-43d2-4bf8-b3fa-2bc2f27d76c4' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-7fa6b2da-43d2-4bf8-b3fa-2bc2f27d76c4' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span class='xr-has-index'>time</span>: 482120</li><li><span class='xr-has-index'>y</span>: 128</li><li><span class='xr-has-index'>x</span>: 256</li><li><span>bnds</span>: 2</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-deba280b-29c4-4829-b284-23c885d250a2' class='xr-section-summary-in' type='checkbox' checked><label for='section-deba280b-29c4-4829-b284-23c885d250a2' class='xr-section-summary' >Coordinates: <span>(8)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-3c5c1d53-8afe-4629-84b2-51ed1e3aeb61' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3c5c1d53-8afe-4629-84b2-51ed1e3aeb61' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7eca88e8-d949-4680-bc53-6ffe5b231f3e' class='xr-var-data-in' type='checkbox'><label for='data-7eca88e8-d949-4680-bc53-6ffe5b231f3e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_N</dd></dl></div><div class='xr-var-data'><pre>array([-88.927735, -87.538705, -86.141472, -84.742386, -83.342596, -81.942466,\n",
" -80.542146, -79.14171 , -77.741196, -76.340629, -74.940023, -73.539389,\n",
" -72.138732, -70.738059, -69.337372, -67.936673, -66.535966, -65.135251,\n",
" -63.73453 , -62.333803, -60.933072, -59.532337, -58.131598, -56.730857,\n",
" -55.330112, -53.929366, -52.528617, -51.127867, -49.727115, -48.326361,\n",
" -46.925606, -45.52485 , -44.124093, -42.723335, -41.322576, -39.921816,\n",
" -38.521056, -37.120294, -35.719532, -34.31877 , -32.918007, -31.517244,\n",
" -30.11648 , -28.715716, -27.314951, -25.914186, -24.513421, -23.112655,\n",
" -21.71189 , -20.311124, -18.910357, -17.509591, -16.108824, -14.708057,\n",
" -13.30729 , -11.906523, -10.505756, -9.104989, -7.704221, -6.303454,\n",
" -4.902687, -3.501919, -2.101151, -0.700384, 0.700384, 2.101151,\n",
" 3.501919, 4.902687, 6.303454, 7.704221, 9.104989, 10.505756,\n",
" 11.906523, 13.30729 , 14.708057, 16.108824, 17.509591, 18.910357,\n",
" 20.311124, 21.71189 , 23.112655, 24.513421, 25.914186, 27.314951,\n",
" 28.715716, 30.11648 , 31.517244, 32.918007, 34.31877 , 35.719532,\n",
" 37.120294, 38.521056, 39.921816, 41.322576, 42.723335, 44.124093,\n",
" 45.52485 , 46.925606, 48.326361, 49.727115, 51.127867, 52.528617,\n",
" 53.929366, 55.330112, 56.730857, 58.131598, 59.532337, 60.933072,\n",
" 62.333803, 63.73453 , 65.135251, 66.535966, 67.936673, 69.337372,\n",
" 70.738059, 72.138732, 73.539389, 74.940023, 76.340629, 77.741196,\n",
" 79.14171 , 80.542146, 81.942466, 83.342596, 84.742386, 86.141472,\n",
" 87.538705, 88.927735])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 1.406 2.812 ... 357.2 358.6</div><input id='attrs-53c0eae5-09fc-42e0-a34f-25f98717cb18' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-53c0eae5-09fc-42e0-a34f-25f98717cb18' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-89399084-fe82-4cb2-9861-afee51de6922' class='xr-var-data-in' type='checkbox'><label for='data-89399084-fe82-4cb2-9861-afee51de6922' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_E</dd></dl></div><div class='xr-var-data'><pre>array([ 0. , 1.40625, 2.8125 , ..., 355.78125, 357.1875 , 358.59375])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>1850-01-01T03:00:00 ... 2015-01-01</div><input id='attrs-17edde38-666d-43c7-b37a-aa3f397507cc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-17edde38-666d-43c7-b37a-aa3f397507cc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6d9532c0-95cb-4876-a770-c4b00887123f' class='xr-var-data-in' type='checkbox'><label for='data-6d9532c0-95cb-4876-a770-c4b00887123f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bounds</dd><dt><span>long_name :</span></dt><dd>Time axis</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>time_origin :</span></dt><dd>1850-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1850-01-01T03:00:00.000000000&#x27;, &#x27;1850-01-01T06:00:00.000000000&#x27;,\n",
" &#x27;1850-01-01T09:00:00.000000000&#x27;, ..., &#x27;2014-12-31T18:00:00.000000000&#x27;,\n",
" &#x27;2014-12-31T21:00:00.000000000&#x27;, &#x27;2015-01-01T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_bounds</span></div><div class='xr-var-dims'>(time, bnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(60265, 1), meta=np.ndarray&gt;</div><input id='attrs-87393f8c-c9ab-4f64-ac24-f588e5d240b9' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-87393f8c-c9ab-4f64-ac24-f588e5d240b9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c77139d0-2c1e-4162-9a09-080c42f1182f' class='xr-var-data-in' type='checkbox'><label for='data-c77139d0-2c1e-4162-9a09-080c42f1182f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 7.36 MiB </td>\n",
" <td> 470.82 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (482120, 2) </td>\n",
" <td> (60265, 1) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 16 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> datetime64[ns] numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"75\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"15\" x2=\"25\" y2=\"15\" />\n",
" <line x1=\"0\" y1=\"30\" x2=\"25\" y2=\"30\" />\n",
" <line x1=\"0\" y1=\"45\" x2=\"25\" y2=\"45\" />\n",
" <line x1=\"0\" y1=\"60\" x2=\"25\" y2=\"60\" />\n",
" <line x1=\"0\" y1=\"75\" x2=\"25\" y2=\"75\" />\n",
" <line x1=\"0\" y1=\"90\" x2=\"25\" y2=\"90\" />\n",
" <line x1=\"0\" y1=\"105\" x2=\"25\" y2=\"105\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"12\" y2=\"120\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"45.412617\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,45.412617,60.000000)\">482120</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>360.0 360.0 360.0 ... 358.6 358.6</div><input id='attrs-010e95f6-96e3-4393-aa9f-858519500cf2' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-010e95f6-96e3-4393-aa9f-858519500cf2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e3f5b76d-c4ae-468e-b9fe-f6a469fab382' class='xr-var-data-in' type='checkbox'><label for='data-e3f5b76d-c4ae-468e-b9fe-f6a469fab382' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[360. , 360. , 360. , ..., 360. , 360. ,\n",
" 360. ],\n",
" [ 1.40625, 1.40625, 1.40625, ..., 1.40625, 1.40625,\n",
" 1.40625],\n",
" [ 2.8125 , 2.8125 , 2.8125 , ..., 2.8125 , 2.8125 ,\n",
" 2.8125 ],\n",
" ...,\n",
" [355.78125, 355.78125, 355.78125, ..., 355.78125, 355.78125,\n",
" 355.78125],\n",
" [357.1875 , 357.1875 , 357.1875 , ..., 357.1875 , 357.1875 ,\n",
" 357.1875 ],\n",
" [358.59375, 358.59375, 358.59375, ..., 358.59375, 358.59375,\n",
" 358.59375]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-c6755420-f4a4-4c5b-825e-5686a53ebacd' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c6755420-f4a4-4c5b-825e-5686a53ebacd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-09fa5170-dabf-4478-b33f-8f86dbf9b085' class='xr-var-data-in' type='checkbox'><label for='data-09fa5170-dabf-4478-b33f-8f86dbf9b085' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" ...,\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f2&#x27;</div><input id='attrs-8a7bcc55-fd25-4809-8f74-bc9d078cbb09' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8a7bcc55-fd25-4809-8f74-bc9d078cbb09' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5679a829-0dfe-41ce-bf00-89763c1bc19e' class='xr-var-data-in' type='checkbox'><label for='data-5679a829-0dfe-41ce-bf00-89763c1bc19e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f2&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-6593c69c-8adc-4eb5-9e13-b61f5b3f4a73' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-6593c69c-8adc-4eb5-9e13-b61f5b3f4a73' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-170c329f-d39b-44ce-a192-f595d9d18c0f' class='xr-var-data-in' type='checkbox'><label for='data-170c329f-d39b-44ce-a192-f595d9d18c0f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-754ee966-29e3-430e-ac8e-69f0e273f216' class='xr-section-summary-in' type='checkbox' checked><label for='section-754ee966-29e3-430e-ac8e-69f0e273f216' class='xr-section-summary' >Data variables: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>ps</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 644, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-040efacd-dbc9-4270-9b64-785fda446792' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-040efacd-dbc9-4270-9b64-785fda446792' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6cac5b5d-7d11-42c3-86b1-bb75f67dec2e' class='xr-var-data-in' type='checkbox'><label for='data-6cac5b5d-7d11-42c3-86b1-bb75f67dec2e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>sampled synoptically to diagnose atmospheric tides, this is better than mean sea level pressure.</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>3 h</dd><dt><span>long_name :</span></dt><dd>Surface Air Pressure</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>surface_air_pressure</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 58.85 GiB </td>\n",
" <td> 80.50 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (1, 1, 482120, 128, 256) </td>\n",
" <td> (1, 1, 644, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 749 chunks in 3 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"336\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"45.412617\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1</text>\n",
" <text x=\"45.412617\" y=\"12.706308\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,45.412617,12.706308)\">1</text>\n",
"\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"95\" y1=\"25\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"95\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"97\" y1=\"2\" x2=\"97\" y2=\"27\" />\n",
" <line x1=\"99\" y1=\"4\" x2=\"99\" y2=\"29\" />\n",
" <line x1=\"101\" y1=\"6\" x2=\"101\" y2=\"32\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"103\" y2=\"34\" />\n",
" <line x1=\"106\" y1=\"11\" x2=\"106\" y2=\"36\" />\n",
" <line x1=\"108\" y1=\"13\" x2=\"108\" y2=\"38\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"110\" y2=\"40\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"112\" y2=\"43\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"114\" y2=\"45\" />\n",
" <line x1=\"117\" y1=\"22\" x2=\"117\" y2=\"47\" />\n",
" <line x1=\"119\" y1=\"24\" x2=\"119\" y2=\"49\" />\n",
" <line x1=\"121\" y1=\"26\" x2=\"121\" y2=\"51\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"123\" y2=\"54\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"125\" y2=\"56\" />\n",
" <line x1=\"128\" y1=\"33\" x2=\"128\" y2=\"58\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"130\" y2=\"60\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"132\" y2=\"62\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"134\" y2=\"65\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"136\" y2=\"67\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"139\" y2=\"69\" />\n",
" <line x1=\"141\" y1=\"46\" x2=\"141\" y2=\"71\" />\n",
" <line x1=\"143\" y1=\"48\" x2=\"143\" y2=\"73\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"145\" y2=\"76\" />\n",
" <line x1=\"147\" y1=\"52\" x2=\"147\" y2=\"78\" />\n",
" <line x1=\"150\" y1=\"55\" x2=\"150\" y2=\"80\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"152\" y2=\"82\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"154\" y2=\"84\" />\n",
" <line x1=\"156\" y1=\"61\" x2=\"156\" y2=\"87\" />\n",
" <line x1=\"158\" y1=\"63\" x2=\"158\" y2=\"89\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"161\" y2=\"91\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"163\" y2=\"93\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 165.58823529411765,70.58823529411765 165.58823529411765,96.00085180870013 95.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"97\" y1=\"2\" x2=\"122\" y2=\"2\" />\n",
" <line x1=\"99\" y1=\"4\" x2=\"124\" y2=\"4\" />\n",
" <line x1=\"101\" y1=\"6\" x2=\"127\" y2=\"6\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"129\" y2=\"8\" />\n",
" <line x1=\"106\" y1=\"11\" x2=\"131\" y2=\"11\" />\n",
" <line x1=\"108\" y1=\"13\" x2=\"133\" y2=\"13\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"135\" y2=\"15\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"138\" y2=\"17\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"140\" y2=\"19\" />\n",
" <line x1=\"117\" y1=\"22\" x2=\"142\" y2=\"22\" />\n",
" <line x1=\"119\" y1=\"24\" x2=\"144\" y2=\"24\" />\n",
" <line x1=\"121\" y1=\"26\" x2=\"146\" y2=\"26\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"149\" y2=\"28\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"151\" y2=\"30\" />\n",
" <line x1=\"128\" y1=\"33\" x2=\"153\" y2=\"33\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"155\" y2=\"35\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"157\" y2=\"37\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"160\" y2=\"39\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"162\" y2=\"41\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"164\" y2=\"44\" />\n",
" <line x1=\"141\" y1=\"46\" x2=\"166\" y2=\"46\" />\n",
" <line x1=\"143\" y1=\"48\" x2=\"168\" y2=\"48\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"171\" y2=\"50\" />\n",
" <line x1=\"147\" y1=\"52\" x2=\"173\" y2=\"52\" />\n",
" <line x1=\"150\" y1=\"55\" x2=\"175\" y2=\"55\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"177\" y2=\"57\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"179\" y2=\"59\" />\n",
" <line x1=\"156\" y1=\"61\" x2=\"182\" y2=\"61\" />\n",
" <line x1=\"158\" y1=\"63\" x2=\"184\" y2=\"63\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"186\" y2=\"66\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"188\" y2=\"68\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 120.41261651458248,0.0 191.00085180870013,70.58823529411765 165.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"165\" y1=\"96\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"191\" y1=\"70\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"165.58823529411765,70.58823529411765 191.00085180870013,70.58823529411765 191.00085180870013,96.00085180870013 165.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"178.294544\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"211.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,211.000852,83.294544)\">128</text>\n",
" <text x=\"120.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,120.294118,80.706734)\">482120</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-ca8daf82-9454-4bfc-943b-a9388033771a' class='xr-section-summary-in' type='checkbox' ><label for='section-ca8daf82-9454-4bfc-943b-a9388033771a' class='xr-section-summary' >Attributes: <span>(70)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>CMIP6_CV_version :</span></dt><dd>cv=6.2.3.0-7-g2019642</dd><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>EXPID :</span></dt><dd>CNRM-CM6-1_historical_r1i1p1f2</dd><dt><span>NCO :</span></dt><dd>&quot;4.5.5&quot;</dd><dt><span>activity_id :</span></dt><dd>CMIP</dd><dt><span>arpege_minor_version :</span></dt><dd>6.3.2</dd><dt><span>branch_method :</span></dt><dd>standard</dd><dt><span>branch_time_in_child :</span></dt><dd>0.0</dd><dt><span>branch_time_in_parent :</span></dt><dd>0.0</dd><dt><span>contact :</span></dt><dd>contact.cmip@meteo.fr</dd><dt><span>creation_date :</span></dt><dd>2018-06-20T08:18:31Z</dd><dt><span>data_specs_version :</span></dt><dd>01.00.21</dd><dt><span>description :</span></dt><dd>CMIP6 historical</dd><dt><span>dr2xml_md5sum :</span></dt><dd>d6225e658d7de0912fca2a4293dbe2a7</dd><dt><span>dr2xml_version :</span></dt><dd>1.10</dd><dt><span>experiment :</span></dt><dd>all-forcing simulation of the recent past</dd><dt><span>experiment_id :</span></dt><dd>historical</dd><dt><span>external_variables :</span></dt><dd>areacella</dd><dt><span>forcing_index :</span></dt><dd>2</dd><dt><span>frequency :</span></dt><dd>3hrPt</dd><dt><span>further_info_url :</span></dt><dd>https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-CM6-1.historical.none.r1i1p1f2</dd><dt><span>grid :</span></dt><dd>data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid</dd><dt><span>grid_label :</span></dt><dd>gr</dd><dt><span>history :</span></dt><dd>Mon Jul 30 09:24:18 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/adb96b17-cda8-4d12-8901-ad02330a15aa /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/ps_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_185001010300-187501010000.nc\n",
"none</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)</dd><dt><span>institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>license :</span></dt><dd>CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at http://www.umr-cnrm.fr/cmip6/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.</dd><dt><span>mip_era :</span></dt><dd>CMIP6</dd><dt><span>name :</span></dt><dd>/scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/18500101/ps_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_%start_date%-%end_date%</dd><dt><span>nemo_gelato_commit :</span></dt><dd>49095b3accd5d4c_6524fe19b00467a</dd><dt><span>nominal_resolution :</span></dt><dd>250 km</dd><dt><span>parent_activity_id :</span></dt><dd>CMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>piControl</dd><dt><span>parent_mip_era :</span></dt><dd>CMIP6</dd><dt><span>parent_source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>parent_time_units :</span></dt><dd>days since 1850-01-01 00:00:00</dd><dt><span>parent_variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>atmos</dd><dt><span>references :</span></dt><dd>http://www.umr-cnrm.fr/cmip6/references</dd><dt><span>source :</span></dt><dd>CNRM-CM6-1 (2017): aerosol: prescribed monthly fields computed by TACTIC_v2 scheme atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) atmosChem: OZL_v2 land: Surfex 8.0c ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) seaIce: Gelato 6.1</dd><dt><span>source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>status :</span></dt><dd>2021-01-04;created; by gcs.cmip6.ldeo@gmail.com</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>table_id :</span></dt><dd>3hr</dd><dt><span>title :</span></dt><dd>CNRM-CM6-1 model output prepared for CMIP6 / CMIP historical</dd><dt><span>tracking_id :</span></dt><dd>hdl:21.14100/adb96b17-cda8-4d12-8901-ad02330a15aa\n",
"hdl:21.14100/98a837f3-204d-43ea-8e0c-f6f7eca6bde4\n",
"hdl:21.14100/5212f291-4fa1-4672-8fd2-71d80cd3ce71\n",
"hdl:21.14100/9b974408-d266-4583-bf04-4cadac27d30b\n",
"hdl:21.14100/88eeb83f-e32e-4ab4-aebb-8aa6cc7e2bfd\n",
"hdl:21.14100/7f69188e-c11b-46a3-9243-2427e4289316\n",
"hdl:21.14100/92a3b8b9-e9e4-421d-a9a2-6aed63b7fcea</dd><dt><span>variable_id :</span></dt><dd>ps</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>xios_commit :</span></dt><dd>1442-shuffle</dd><dt><span>netcdf_tracking_ids :</span></dt><dd>hdl:21.14100/adb96b17-cda8-4d12-8901-ad02330a15aa\n",
"hdl:21.14100/98a837f3-204d-43ea-8e0c-f6f7eca6bde4\n",
"hdl:21.14100/5212f291-4fa1-4672-8fd2-71d80cd3ce71\n",
"hdl:21.14100/9b974408-d266-4583-bf04-4cadac27d30b\n",
"hdl:21.14100/88eeb83f-e32e-4ab4-aebb-8aa6cc7e2bfd\n",
"hdl:21.14100/7f69188e-c11b-46a3-9243-2427e4289316\n",
"hdl:21.14100/92a3b8b9-e9e4-421d-a9a2-6aed63b7fcea</dd><dt><span>version_id :</span></dt><dd>v20180917</dd><dt><span>intake_esm_vars :</span></dt><dd>[&#x27;ps&#x27;]</dd><dt><span>intake_esm_attrs:activity_id :</span></dt><dd>CMIP</dd><dt><span>intake_esm_attrs:institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>intake_esm_attrs:source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>intake_esm_attrs:experiment_id :</span></dt><dd>historical</dd><dt><span>intake_esm_attrs:member_id :</span></dt><dd>r1i1p1f2</dd><dt><span>intake_esm_attrs:table_id :</span></dt><dd>3hr</dd><dt><span>intake_esm_attrs:variable_id :</span></dt><dd>ps</dd><dt><span>intake_esm_attrs:grid_label :</span></dt><dd>gr</dd><dt><span>intake_esm_attrs:zstore :</span></dt><dd>gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM-CM6-1/historical/r1i1p1f2/3hr/ps/gr/v20180917/</dd><dt><span>intake_esm_attrs:version :</span></dt><dd>20180917</dd><dt><span>intake_esm_attrs:_data_format_ :</span></dt><dd>zarr</dd><dt><span>intake_esm_dataset_key :</span></dt><dd>CNRM-CM6-1/r1i1p1f2/ps/3hr/gr</dd></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-189004c8-582d-481c-8e5f-7ce6a73b521b' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-189004c8-582d-481c-8e5f-7ce6a73b521b' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-b20f3604-bda2-4ae7-8e2a-1b84493bec3d' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b20f3604-bda2-4ae7-8e2a-1b84493bec3d' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-b34e73b0-4f4c-46d5-9ce1-520cc861e324' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b34e73b0-4f4c-46d5-9ce1-520cc861e324' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-bfe0c39b-d8dc-4035-9cc1-1d2ce76d5e9f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-bfe0c39b-d8dc-4035-9cc1-1d2ce76d5e9f' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>6hrLev</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-99912a97-08e8-441e-b5bc-82fc6b094e89' class='xr-section-summary-in' type='checkbox' ><label for='section-99912a97-08e8-441e-b5bc-82fc6b094e89' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (member_id: 1, dcpp_init_year: 1, time: 94964, y: 128,\n",
" x: 256, bnds: 2)\n",
"Coordinates:\n",
" * y (y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * x (x) float64 0.0 1.406 2.812 4.219 ... 355.8 357.2 358.6\n",
" * time (time) datetime64[ns] 1950-01-01T06:00:00 ... 2015-01-01\n",
" time_bounds (time, bnds) datetime64[ns] dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.6 358.6 358.6\n",
" lat (x, y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * member_id (member_id) object &#x27;r1i1p1f2&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds\n",
"Data variables:\n",
" ps (member_id, dcpp_init_year, time, y, x) float32 dask.array&lt;chunksize=(1, 1, 1289, 128, 256), meta=np.ndarray&gt;\n",
"Attributes: (12/70)\n",
" CMIP6_CV_version: cv=6.2.3.0-7-g2019642\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" EXPID: CNRM-CM6-1_historical_r1i1p1f2\n",
" NCO: &quot;4.5.5&quot;\n",
" activity_id: CMIP\n",
" arpege_minor_version: 6.3.2\n",
" ... ...\n",
" intake_esm_attrs:variable_id: ps\n",
" intake_esm_attrs:grid_label: gr\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM...\n",
" intake_esm_attrs:version: 20180917\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CNRM-CM6-1/r1i1p1f2/ps/6hrLev/gr</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>gr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-7cd4301c-1b1c-4981-83c3-275e360c66f0' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-7cd4301c-1b1c-4981-83c3-275e360c66f0' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-34d511cf-6c1d-430e-be77-882fa8def316' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-34d511cf-6c1d-430e-be77-882fa8def316' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span class='xr-has-index'>time</span>: 94964</li><li><span class='xr-has-index'>y</span>: 128</li><li><span class='xr-has-index'>x</span>: 256</li><li><span>bnds</span>: 2</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-fcc809d3-85ea-4603-bd49-bc1b3b8eb9ee' class='xr-section-summary-in' type='checkbox' checked><label for='section-fcc809d3-85ea-4603-bd49-bc1b3b8eb9ee' class='xr-section-summary' >Coordinates: <span>(8)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-d8ce396a-6eeb-4c92-8f33-03911a46ecc8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d8ce396a-6eeb-4c92-8f33-03911a46ecc8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-89276e6c-c00b-4590-85ce-e4e9362761d6' class='xr-var-data-in' type='checkbox'><label for='data-89276e6c-c00b-4590-85ce-e4e9362761d6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_N</dd></dl></div><div class='xr-var-data'><pre>array([-88.927735, -87.538705, -86.141472, -84.742386, -83.342596, -81.942466,\n",
" -80.542146, -79.14171 , -77.741196, -76.340629, -74.940023, -73.539389,\n",
" -72.138732, -70.738059, -69.337372, -67.936673, -66.535966, -65.135251,\n",
" -63.73453 , -62.333803, -60.933072, -59.532337, -58.131598, -56.730857,\n",
" -55.330112, -53.929366, -52.528617, -51.127867, -49.727115, -48.326361,\n",
" -46.925606, -45.52485 , -44.124093, -42.723335, -41.322576, -39.921816,\n",
" -38.521056, -37.120294, -35.719532, -34.31877 , -32.918007, -31.517244,\n",
" -30.11648 , -28.715716, -27.314951, -25.914186, -24.513421, -23.112655,\n",
" -21.71189 , -20.311124, -18.910357, -17.509591, -16.108824, -14.708057,\n",
" -13.30729 , -11.906523, -10.505756, -9.104989, -7.704221, -6.303454,\n",
" -4.902687, -3.501919, -2.101151, -0.700384, 0.700384, 2.101151,\n",
" 3.501919, 4.902687, 6.303454, 7.704221, 9.104989, 10.505756,\n",
" 11.906523, 13.30729 , 14.708057, 16.108824, 17.509591, 18.910357,\n",
" 20.311124, 21.71189 , 23.112655, 24.513421, 25.914186, 27.314951,\n",
" 28.715716, 30.11648 , 31.517244, 32.918007, 34.31877 , 35.719532,\n",
" 37.120294, 38.521056, 39.921816, 41.322576, 42.723335, 44.124093,\n",
" 45.52485 , 46.925606, 48.326361, 49.727115, 51.127867, 52.528617,\n",
" 53.929366, 55.330112, 56.730857, 58.131598, 59.532337, 60.933072,\n",
" 62.333803, 63.73453 , 65.135251, 66.535966, 67.936673, 69.337372,\n",
" 70.738059, 72.138732, 73.539389, 74.940023, 76.340629, 77.741196,\n",
" 79.14171 , 80.542146, 81.942466, 83.342596, 84.742386, 86.141472,\n",
" 87.538705, 88.927735])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 1.406 2.812 ... 357.2 358.6</div><input id='attrs-760f7550-34dc-474e-9e33-47aee748bd83' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-760f7550-34dc-474e-9e33-47aee748bd83' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-38b614fc-88d4-4c3f-9fc5-c498fa9a5f76' class='xr-var-data-in' type='checkbox'><label for='data-38b614fc-88d4-4c3f-9fc5-c498fa9a5f76' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_E</dd></dl></div><div class='xr-var-data'><pre>array([ 0. , 1.40625, 2.8125 , ..., 355.78125, 357.1875 , 358.59375])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>1950-01-01T06:00:00 ... 2015-01-01</div><input id='attrs-354774b0-e15b-4f4a-9086-84e06115e0f6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-354774b0-e15b-4f4a-9086-84e06115e0f6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1527f46e-467c-4cb5-b19b-9bf98327eafe' class='xr-var-data-in' type='checkbox'><label for='data-1527f46e-467c-4cb5-b19b-9bf98327eafe' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bounds</dd><dt><span>long_name :</span></dt><dd>Time axis</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>time_origin :</span></dt><dd>1850-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1950-01-01T06:00:00.000000000&#x27;, &#x27;1950-01-01T12:00:00.000000000&#x27;,\n",
" &#x27;1950-01-01T18:00:00.000000000&#x27;, ..., &#x27;2014-12-31T12:00:00.000000000&#x27;,\n",
" &#x27;2014-12-31T18:00:00.000000000&#x27;, &#x27;2015-01-01T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_bounds</span></div><div class='xr-var-dims'>(time, bnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;</div><input id='attrs-5a98f6e1-d3a3-469d-b70a-e06c0752ac8c' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-5a98f6e1-d3a3-469d-b70a-e06c0752ac8c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d4f2963c-20cb-415a-9797-32b5c9ed5c6f' class='xr-var-data-in' type='checkbox'><label for='data-d4f2963c-20cb-415a-9797-32b5c9ed5c6f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.45 MiB </td>\n",
" <td> 370.95 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94964, 2) </td>\n",
" <td> (47482, 1) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> datetime64[ns] numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"75\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"60\" x2=\"25\" y2=\"60\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"12\" y2=\"120\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"45.412617\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,45.412617,60.000000)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>360.0 360.0 360.0 ... 358.6 358.6</div><input id='attrs-266d6676-d472-4cca-9d78-16297d2aaeed' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-266d6676-d472-4cca-9d78-16297d2aaeed' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1885b1bc-1c38-49ff-9a38-cdcb0c851853' class='xr-var-data-in' type='checkbox'><label for='data-1885b1bc-1c38-49ff-9a38-cdcb0c851853' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[360. , 360. , 360. , ..., 360. , 360. ,\n",
" 360. ],\n",
" [ 1.40625, 1.40625, 1.40625, ..., 1.40625, 1.40625,\n",
" 1.40625],\n",
" [ 2.8125 , 2.8125 , 2.8125 , ..., 2.8125 , 2.8125 ,\n",
" 2.8125 ],\n",
" ...,\n",
" [355.78125, 355.78125, 355.78125, ..., 355.78125, 355.78125,\n",
" 355.78125],\n",
" [357.1875 , 357.1875 , 357.1875 , ..., 357.1875 , 357.1875 ,\n",
" 357.1875 ],\n",
" [358.59375, 358.59375, 358.59375, ..., 358.59375, 358.59375,\n",
" 358.59375]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-4d1f26f3-b6a4-471a-9acc-5a158321dc25' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-4d1f26f3-b6a4-471a-9acc-5a158321dc25' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c61d762c-5f90-4053-9695-b1dfafd4fdbc' class='xr-var-data-in' type='checkbox'><label for='data-c61d762c-5f90-4053-9695-b1dfafd4fdbc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" ...,\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f2&#x27;</div><input id='attrs-903f65de-ef95-476a-9243-ebf5a4a24ce5' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-903f65de-ef95-476a-9243-ebf5a4a24ce5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-285dfb45-5a02-4e92-a85e-c6ec5f07ef2e' class='xr-var-data-in' type='checkbox'><label for='data-285dfb45-5a02-4e92-a85e-c6ec5f07ef2e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f2&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-4e272a3b-5264-4572-9d85-9c62fe00dafe' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-4e272a3b-5264-4572-9d85-9c62fe00dafe' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cf0f0e92-130c-427b-b16c-0c75be6a72cc' class='xr-var-data-in' type='checkbox'><label for='data-cf0f0e92-130c-427b-b16c-0c75be6a72cc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-8cca1119-6580-4db6-9e74-4639ee4308e4' class='xr-section-summary-in' type='checkbox' checked><label for='section-8cca1119-6580-4db6-9e74-4639ee4308e4' class='xr-section-summary' >Data variables: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>ps</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 1289, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-f8a335c2-2a93-4c47-957a-62cff60137ae' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f8a335c2-2a93-4c47-957a-62cff60137ae' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7d42a3c5-5bc8-4d82-a6a8-cd123ffcd50e' class='xr-var-data-in' type='checkbox'><label for='data-7d42a3c5-5bc8-4d82-a6a8-cd123ffcd50e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>surface pressure, not mean sea level pressure</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>6 h</dd><dt><span>long_name :</span></dt><dd>Surface Air Pressure</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>surface_air_pressure</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 11.59 GiB </td>\n",
" <td> 161.12 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (1, 1, 94964, 128, 256) </td>\n",
" <td> (1, 1, 1289, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 74 chunks in 3 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"336\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"45.412617\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1</text>\n",
" <text x=\"45.412617\" y=\"12.706308\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,45.412617,12.706308)\">1</text>\n",
"\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"95\" y1=\"25\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"95\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"96\" y1=\"1\" x2=\"96\" y2=\"27\" />\n",
" <line x1=\"98\" y1=\"3\" x2=\"98\" y2=\"29\" />\n",
" <line x1=\"100\" y1=\"5\" x2=\"100\" y2=\"31\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"103\" y2=\"34\" />\n",
" <line x1=\"105\" y1=\"10\" x2=\"105\" y2=\"35\" />\n",
" <line x1=\"107\" y1=\"12\" x2=\"107\" y2=\"37\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"110\" y2=\"40\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"112\" y2=\"42\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"114\" y2=\"44\" />\n",
" <line x1=\"117\" y1=\"22\" x2=\"117\" y2=\"47\" />\n",
" <line x1=\"118\" y1=\"23\" x2=\"118\" y2=\"49\" />\n",
" <line x1=\"120\" y1=\"25\" x2=\"120\" y2=\"51\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"123\" y2=\"54\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"125\" y2=\"56\" />\n",
" <line x1=\"127\" y1=\"32\" x2=\"127\" y2=\"57\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"130\" y2=\"60\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"132\" y2=\"62\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"134\" y2=\"64\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"136\" y2=\"66\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"139\" y2=\"69\" />\n",
" <line x1=\"140\" y1=\"45\" x2=\"140\" y2=\"71\" />\n",
" <line x1=\"142\" y1=\"47\" x2=\"142\" y2=\"73\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"145\" y2=\"76\" />\n",
" <line x1=\"147\" y1=\"52\" x2=\"147\" y2=\"78\" />\n",
" <line x1=\"149\" y1=\"54\" x2=\"149\" y2=\"80\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"152\" y2=\"82\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"154\" y2=\"84\" />\n",
" <line x1=\"156\" y1=\"61\" x2=\"156\" y2=\"86\" />\n",
" <line x1=\"159\" y1=\"64\" x2=\"159\" y2=\"89\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"161\" y2=\"91\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"163\" y2=\"93\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 165.58823529411765,70.58823529411765 165.58823529411765,96.00085180870013 95.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"96\" y1=\"1\" x2=\"122\" y2=\"1\" />\n",
" <line x1=\"98\" y1=\"3\" x2=\"124\" y2=\"3\" />\n",
" <line x1=\"100\" y1=\"5\" x2=\"126\" y2=\"5\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"129\" y2=\"8\" />\n",
" <line x1=\"105\" y1=\"10\" x2=\"130\" y2=\"10\" />\n",
" <line x1=\"107\" y1=\"12\" x2=\"132\" y2=\"12\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"135\" y2=\"15\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"137\" y2=\"17\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"139\" y2=\"19\" />\n",
" <line x1=\"117\" y1=\"22\" x2=\"142\" y2=\"22\" />\n",
" <line x1=\"118\" y1=\"23\" x2=\"144\" y2=\"23\" />\n",
" <line x1=\"120\" y1=\"25\" x2=\"146\" y2=\"25\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"149\" y2=\"28\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"151\" y2=\"30\" />\n",
" <line x1=\"127\" y1=\"32\" x2=\"152\" y2=\"32\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"155\" y2=\"35\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"157\" y2=\"37\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"159\" y2=\"39\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"161\" y2=\"41\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"164\" y2=\"44\" />\n",
" <line x1=\"140\" y1=\"45\" x2=\"166\" y2=\"45\" />\n",
" <line x1=\"142\" y1=\"47\" x2=\"168\" y2=\"47\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"171\" y2=\"50\" />\n",
" <line x1=\"147\" y1=\"52\" x2=\"173\" y2=\"52\" />\n",
" <line x1=\"149\" y1=\"54\" x2=\"175\" y2=\"54\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"177\" y2=\"57\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"179\" y2=\"59\" />\n",
" <line x1=\"156\" y1=\"61\" x2=\"181\" y2=\"61\" />\n",
" <line x1=\"159\" y1=\"64\" x2=\"184\" y2=\"64\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"186\" y2=\"66\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"188\" y2=\"68\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 120.41261651458248,0.0 191.00085180870013,70.58823529411765 165.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"165\" y1=\"96\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"191\" y1=\"70\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"165.58823529411765,70.58823529411765 191.00085180870013,70.58823529411765 191.00085180870013,96.00085180870013 165.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"178.294544\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"211.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,211.000852,83.294544)\">128</text>\n",
" <text x=\"120.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,120.294118,80.706734)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-2c8591d8-a7b6-4c05-905e-60674e02d356' class='xr-section-summary-in' type='checkbox' ><label for='section-2c8591d8-a7b6-4c05-905e-60674e02d356' class='xr-section-summary' >Attributes: <span>(70)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>CMIP6_CV_version :</span></dt><dd>cv=6.2.3.0-7-g2019642</dd><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>EXPID :</span></dt><dd>CNRM-CM6-1_historical_r1i1p1f2</dd><dt><span>NCO :</span></dt><dd>&quot;4.5.5&quot;</dd><dt><span>activity_id :</span></dt><dd>CMIP</dd><dt><span>arpege_minor_version :</span></dt><dd>6.3.2</dd><dt><span>branch_method :</span></dt><dd>standard</dd><dt><span>branch_time_in_child :</span></dt><dd>0.0</dd><dt><span>branch_time_in_parent :</span></dt><dd>0.0</dd><dt><span>contact :</span></dt><dd>contact.cmip@meteo.fr</dd><dt><span>creation_date :</span></dt><dd>2018-07-13T22:27:37Z</dd><dt><span>data_specs_version :</span></dt><dd>01.00.21</dd><dt><span>description :</span></dt><dd>CMIP6 historical</dd><dt><span>dr2xml_md5sum :</span></dt><dd>d6225e658d7de0912fca2a4293dbe2a7</dd><dt><span>dr2xml_version :</span></dt><dd>1.10</dd><dt><span>experiment :</span></dt><dd>all-forcing simulation of the recent past</dd><dt><span>experiment_id :</span></dt><dd>historical</dd><dt><span>external_variables :</span></dt><dd>areacella</dd><dt><span>forcing_index :</span></dt><dd>2</dd><dt><span>frequency :</span></dt><dd>6hrPt</dd><dt><span>further_info_url :</span></dt><dd>https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-CM6-1.historical.none.r1i1p1f2</dd><dt><span>grid :</span></dt><dd>data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid</dd><dt><span>grid_label :</span></dt><dd>gr</dd><dt><span>history :</span></dt><dd>Mon Jul 30 09:24:43 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/672241eb-10d7-4724-b6d8-73e263f7c5b1 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/ps_6hrLev_CNRM-CM6-1_historical_r1i1p1f2_gr_195001010600-200001010000.nc\n",
"none</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)</dd><dt><span>institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>license :</span></dt><dd>CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at http://www.umr-cnrm.fr/cmip6/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.</dd><dt><span>mip_era :</span></dt><dd>CMIP6</dd><dt><span>name :</span></dt><dd>/scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/19500101/ps_6hrLev_CNRM-CM6-1_historical_r1i1p1f2_gr_%start_date%-%end_date%</dd><dt><span>nemo_gelato_commit :</span></dt><dd>49095b3accd5d4c_6524fe19b00467a</dd><dt><span>nominal_resolution :</span></dt><dd>250 km</dd><dt><span>parent_activity_id :</span></dt><dd>CMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>piControl</dd><dt><span>parent_mip_era :</span></dt><dd>CMIP6</dd><dt><span>parent_source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>parent_time_units :</span></dt><dd>days since 1850-01-01 00:00:00</dd><dt><span>parent_variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>atmos</dd><dt><span>references :</span></dt><dd>http://www.umr-cnrm.fr/cmip6/references</dd><dt><span>source :</span></dt><dd>CNRM-CM6-1 (2017): aerosol: prescribed monthly fields computed by TACTIC_v2 scheme atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) atmosChem: OZL_v2 land: Surfex 8.0c ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) seaIce: Gelato 6.1</dd><dt><span>source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>table_id :</span></dt><dd>6hrLev</dd><dt><span>title :</span></dt><dd>CNRM-CM6-1 model output prepared for CMIP6 / CMIP historical</dd><dt><span>tracking_id :</span></dt><dd>hdl:21.14100/672241eb-10d7-4724-b6d8-73e263f7c5b1\n",
"hdl:21.14100/f8b2b257-59ec-4036-bdff-397afbe2adc0</dd><dt><span>variable_id :</span></dt><dd>ps</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>xios_commit :</span></dt><dd>1442-shuffle</dd><dt><span>status :</span></dt><dd>2019-10-25;created;by nhn2@columbia.edu</dd><dt><span>netcdf_tracking_ids :</span></dt><dd>hdl:21.14100/672241eb-10d7-4724-b6d8-73e263f7c5b1\n",
"hdl:21.14100/f8b2b257-59ec-4036-bdff-397afbe2adc0</dd><dt><span>version_id :</span></dt><dd>v20180917</dd><dt><span>intake_esm_vars :</span></dt><dd>[&#x27;ps&#x27;]</dd><dt><span>intake_esm_attrs:activity_id :</span></dt><dd>CMIP</dd><dt><span>intake_esm_attrs:institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>intake_esm_attrs:source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>intake_esm_attrs:experiment_id :</span></dt><dd>historical</dd><dt><span>intake_esm_attrs:member_id :</span></dt><dd>r1i1p1f2</dd><dt><span>intake_esm_attrs:table_id :</span></dt><dd>6hrLev</dd><dt><span>intake_esm_attrs:variable_id :</span></dt><dd>ps</dd><dt><span>intake_esm_attrs:grid_label :</span></dt><dd>gr</dd><dt><span>intake_esm_attrs:zstore :</span></dt><dd>gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM-CM6-1/historical/r1i1p1f2/6hrLev/ps/gr/v20180917/</dd><dt><span>intake_esm_attrs:version :</span></dt><dd>20180917</dd><dt><span>intake_esm_attrs:_data_format_ :</span></dt><dd>zarr</dd><dt><span>intake_esm_dataset_key :</span></dt><dd>CNRM-CM6-1/r1i1p1f2/ps/6hrLev/gr</dd></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-19c6f386-4a6d-47e2-b909-2d0032b6f894' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-19c6f386-4a6d-47e2-b909-2d0032b6f894' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-3fe1aa3c-e8c2-4452-a836-5994172b164f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-3fe1aa3c-e8c2-4452-a836-5994172b164f' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-bf8cac3f-4fd7-45eb-9e19-2bf0fd89d5a0' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-bf8cac3f-4fd7-45eb-9e19-2bf0fd89d5a0' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-b565920f-c00b-49dc-878b-2fad48b6e304' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b565920f-c00b-49dc-878b-2fad48b6e304' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-3871017b-638c-4369-8c8b-bd53c7e6392c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-3871017b-638c-4369-8c8b-bd53c7e6392c' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-bdc1b30a-7644-4edb-88f5-88b0cbddcd57' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-bdc1b30a-7644-4edb-88f5-88b0cbddcd57' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-657d181e-b136-45fe-ae9d-587ece577828' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-657d181e-b136-45fe-ae9d-587ece577828' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-056b42b4-3ca0-4213-ad15-2e0e00b27512' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-056b42b4-3ca0-4213-ad15-2e0e00b27512' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>pr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-477d6973-6a19-47c5-a4c3-c34083f1baf9' class='xr-section-summary-in' type='checkbox' ><label for='section-477d6973-6a19-47c5-a4c3-c34083f1baf9' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>3hr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-5db83330-496c-4fa6-a323-8647a46c0cd4' class='xr-section-summary-in' type='checkbox' ><label for='section-5db83330-496c-4fa6-a323-8647a46c0cd4' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (member_id: 1, dcpp_init_year: 1, time: 482120, y: 128,\n",
" x: 256, bnds: 2)\n",
"Coordinates:\n",
" * y (y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * x (x) float64 0.0 1.406 2.812 4.219 ... 355.8 357.2 358.6\n",
" * time (time) datetime64[ns] 1850-01-01T01:30:00 ... 2014-12-31T...\n",
" time_bounds (time, bnds) datetime64[ns] dask.array&lt;chunksize=(60265, 1), meta=np.ndarray&gt;\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.6 358.6 358.6\n",
" lat (x, y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * member_id (member_id) object &#x27;r1i1p1f2&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds\n",
"Data variables:\n",
" pr (member_id, dcpp_init_year, time, y, x) float32 dask.array&lt;chunksize=(1, 1, 600, 128, 256), meta=np.ndarray&gt;\n",
"Attributes: (12/70)\n",
" CMIP6_CV_version: cv=6.2.3.0-7-g2019642\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" EXPID: CNRM-CM6-1_historical_r1i1p1f2\n",
" NCO: &quot;4.5.5&quot;\n",
" activity_id: CMIP\n",
" arpege_minor_version: 6.3.2\n",
" ... ...\n",
" intake_esm_attrs:variable_id: pr\n",
" intake_esm_attrs:grid_label: gr\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM...\n",
" intake_esm_attrs:version: 20180917\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CNRM-CM6-1/r1i1p1f2/pr/3hr/gr</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>gr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-907d9df0-3cfc-4a84-ac2f-cdf2f72f9e74' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-907d9df0-3cfc-4a84-ac2f-cdf2f72f9e74' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-e3f2747d-9a87-4140-8dcb-ae97239c8aa9' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-e3f2747d-9a87-4140-8dcb-ae97239c8aa9' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span class='xr-has-index'>time</span>: 482120</li><li><span class='xr-has-index'>y</span>: 128</li><li><span class='xr-has-index'>x</span>: 256</li><li><span>bnds</span>: 2</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-a6d80e8b-4835-46e6-b3a7-e912632d63b0' class='xr-section-summary-in' type='checkbox' checked><label for='section-a6d80e8b-4835-46e6-b3a7-e912632d63b0' class='xr-section-summary' >Coordinates: <span>(8)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-fedbbb62-e74b-4f1f-ae24-f6d86bf268c9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fedbbb62-e74b-4f1f-ae24-f6d86bf268c9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f4624570-20ed-4f34-80af-d4de406c0f30' class='xr-var-data-in' type='checkbox'><label for='data-f4624570-20ed-4f34-80af-d4de406c0f30' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_N</dd></dl></div><div class='xr-var-data'><pre>array([-88.927735, -87.538705, -86.141472, -84.742386, -83.342596, -81.942466,\n",
" -80.542146, -79.14171 , -77.741196, -76.340629, -74.940023, -73.539389,\n",
" -72.138732, -70.738059, -69.337372, -67.936673, -66.535966, -65.135251,\n",
" -63.73453 , -62.333803, -60.933072, -59.532337, -58.131598, -56.730857,\n",
" -55.330112, -53.929366, -52.528617, -51.127867, -49.727115, -48.326361,\n",
" -46.925606, -45.52485 , -44.124093, -42.723335, -41.322576, -39.921816,\n",
" -38.521056, -37.120294, -35.719532, -34.31877 , -32.918007, -31.517244,\n",
" -30.11648 , -28.715716, -27.314951, -25.914186, -24.513421, -23.112655,\n",
" -21.71189 , -20.311124, -18.910357, -17.509591, -16.108824, -14.708057,\n",
" -13.30729 , -11.906523, -10.505756, -9.104989, -7.704221, -6.303454,\n",
" -4.902687, -3.501919, -2.101151, -0.700384, 0.700384, 2.101151,\n",
" 3.501919, 4.902687, 6.303454, 7.704221, 9.104989, 10.505756,\n",
" 11.906523, 13.30729 , 14.708057, 16.108824, 17.509591, 18.910357,\n",
" 20.311124, 21.71189 , 23.112655, 24.513421, 25.914186, 27.314951,\n",
" 28.715716, 30.11648 , 31.517244, 32.918007, 34.31877 , 35.719532,\n",
" 37.120294, 38.521056, 39.921816, 41.322576, 42.723335, 44.124093,\n",
" 45.52485 , 46.925606, 48.326361, 49.727115, 51.127867, 52.528617,\n",
" 53.929366, 55.330112, 56.730857, 58.131598, 59.532337, 60.933072,\n",
" 62.333803, 63.73453 , 65.135251, 66.535966, 67.936673, 69.337372,\n",
" 70.738059, 72.138732, 73.539389, 74.940023, 76.340629, 77.741196,\n",
" 79.14171 , 80.542146, 81.942466, 83.342596, 84.742386, 86.141472,\n",
" 87.538705, 88.927735])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 1.406 2.812 ... 357.2 358.6</div><input id='attrs-21a1a488-ed99-407e-9347-2caebaa1659b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-21a1a488-ed99-407e-9347-2caebaa1659b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b5fed07a-60f4-4b76-a53f-a58ef2173cc3' class='xr-var-data-in' type='checkbox'><label for='data-b5fed07a-60f4-4b76-a53f-a58ef2173cc3' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_E</dd></dl></div><div class='xr-var-data'><pre>array([ 0. , 1.40625, 2.8125 , ..., 355.78125, 357.1875 , 358.59375])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>1850-01-01T01:30:00 ... 2014-12-...</div><input id='attrs-eebdc54d-6004-42fb-a9c2-dc1d9d72e277' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-eebdc54d-6004-42fb-a9c2-dc1d9d72e277' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a2e9013f-e822-45da-aa7d-0a6b5771f665' class='xr-var-data-in' type='checkbox'><label for='data-a2e9013f-e822-45da-aa7d-0a6b5771f665' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bounds</dd><dt><span>long_name :</span></dt><dd>Time axis</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>time_origin :</span></dt><dd>1850-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1850-01-01T01:30:00.000000000&#x27;, &#x27;1850-01-01T04:30:00.000000000&#x27;,\n",
" &#x27;1850-01-01T07:30:00.000000000&#x27;, ..., &#x27;2014-12-31T16:30:00.000000000&#x27;,\n",
" &#x27;2014-12-31T19:30:00.000000000&#x27;, &#x27;2014-12-31T22:30:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_bounds</span></div><div class='xr-var-dims'>(time, bnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(60265, 1), meta=np.ndarray&gt;</div><input id='attrs-b26f22b1-4c37-490f-87e8-ace54773bada' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-b26f22b1-4c37-490f-87e8-ace54773bada' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0b54f6a5-1636-42af-9b1b-01e556c52bb1' class='xr-var-data-in' type='checkbox'><label for='data-0b54f6a5-1636-42af-9b1b-01e556c52bb1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 7.36 MiB </td>\n",
" <td> 470.82 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (482120, 2) </td>\n",
" <td> (60265, 1) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 16 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> datetime64[ns] numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"75\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"15\" x2=\"25\" y2=\"15\" />\n",
" <line x1=\"0\" y1=\"30\" x2=\"25\" y2=\"30\" />\n",
" <line x1=\"0\" y1=\"45\" x2=\"25\" y2=\"45\" />\n",
" <line x1=\"0\" y1=\"60\" x2=\"25\" y2=\"60\" />\n",
" <line x1=\"0\" y1=\"75\" x2=\"25\" y2=\"75\" />\n",
" <line x1=\"0\" y1=\"90\" x2=\"25\" y2=\"90\" />\n",
" <line x1=\"0\" y1=\"105\" x2=\"25\" y2=\"105\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"12\" y2=\"120\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"45.412617\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,45.412617,60.000000)\">482120</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>360.0 360.0 360.0 ... 358.6 358.6</div><input id='attrs-10898989-4f81-4f9f-98a4-09cad0458e9d' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-10898989-4f81-4f9f-98a4-09cad0458e9d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-459f5c5d-c231-4eff-a4ef-e1617009f4e4' class='xr-var-data-in' type='checkbox'><label for='data-459f5c5d-c231-4eff-a4ef-e1617009f4e4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[360. , 360. , 360. , ..., 360. , 360. ,\n",
" 360. ],\n",
" [ 1.40625, 1.40625, 1.40625, ..., 1.40625, 1.40625,\n",
" 1.40625],\n",
" [ 2.8125 , 2.8125 , 2.8125 , ..., 2.8125 , 2.8125 ,\n",
" 2.8125 ],\n",
" ...,\n",
" [355.78125, 355.78125, 355.78125, ..., 355.78125, 355.78125,\n",
" 355.78125],\n",
" [357.1875 , 357.1875 , 357.1875 , ..., 357.1875 , 357.1875 ,\n",
" 357.1875 ],\n",
" [358.59375, 358.59375, 358.59375, ..., 358.59375, 358.59375,\n",
" 358.59375]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-89f87526-139b-4d0b-936e-f9375d4fb947' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-89f87526-139b-4d0b-936e-f9375d4fb947' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-621baaa9-9d06-42e4-ab36-44b5b6ceeb7b' class='xr-var-data-in' type='checkbox'><label for='data-621baaa9-9d06-42e4-ab36-44b5b6ceeb7b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" ...,\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f2&#x27;</div><input id='attrs-149bc604-e19a-4932-95d8-e1fcd5836caa' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-149bc604-e19a-4932-95d8-e1fcd5836caa' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d7f0a17d-a957-4594-af73-acfc5fe3de0c' class='xr-var-data-in' type='checkbox'><label for='data-d7f0a17d-a957-4594-af73-acfc5fe3de0c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f2&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-235395c3-eb2a-40cb-af6c-82a7fd3395b5' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-235395c3-eb2a-40cb-af6c-82a7fd3395b5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-176fc036-59bb-496e-9bbd-774b9ca6b80d' class='xr-var-data-in' type='checkbox'><label for='data-176fc036-59bb-496e-9bbd-774b9ca6b80d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-25d3b4ed-78ec-42ba-ad15-ee753e4b013d' class='xr-section-summary-in' type='checkbox' checked><label for='section-25d3b4ed-78ec-42ba-ad15-ee753e4b013d' class='xr-section-summary' >Data variables: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>pr</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 600, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-044a2822-ab52-41eb-949b-ef2035e78122' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-044a2822-ab52-41eb-949b-ef2035e78122' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-88fa8aad-6b88-4be7-b1cc-f8a276ee00d0' class='xr-var-data-in' type='checkbox'><label for='data-88fa8aad-6b88-4be7-b1cc-f8a276ee00d0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: time: mean</dd><dt><span>description :</span></dt><dd>at surface; includes both liquid and solid phases. This is the 3-hour mean precipitation flux.</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>3 h</dd><dt><span>long_name :</span></dt><dd>Precipitation</dd><dt><span>online_operation :</span></dt><dd>average</dd><dt><span>standard_name :</span></dt><dd>precipitation_flux</dd><dt><span>units :</span></dt><dd>kg/m²/s</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 58.85 GiB </td>\n",
" <td> 75.00 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (1, 1, 482120, 128, 256) </td>\n",
" <td> (1, 1, 600, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 804 chunks in 3 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"336\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"45.412617\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1</text>\n",
" <text x=\"45.412617\" y=\"12.706308\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,45.412617,12.706308)\">1</text>\n",
"\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"95\" y1=\"25\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"95\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"97\" y1=\"2\" x2=\"97\" y2=\"27\" />\n",
" <line x1=\"99\" y1=\"4\" x2=\"99\" y2=\"29\" />\n",
" <line x1=\"101\" y1=\"6\" x2=\"101\" y2=\"32\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"103\" y2=\"34\" />\n",
" <line x1=\"105\" y1=\"10\" x2=\"105\" y2=\"36\" />\n",
" <line x1=\"108\" y1=\"13\" x2=\"108\" y2=\"38\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"110\" y2=\"40\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"112\" y2=\"43\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"114\" y2=\"45\" />\n",
" <line x1=\"117\" y1=\"22\" x2=\"117\" y2=\"47\" />\n",
" <line x1=\"119\" y1=\"24\" x2=\"119\" y2=\"49\" />\n",
" <line x1=\"121\" y1=\"26\" x2=\"121\" y2=\"51\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"123\" y2=\"54\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"125\" y2=\"56\" />\n",
" <line x1=\"128\" y1=\"33\" x2=\"128\" y2=\"58\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"130\" y2=\"60\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"132\" y2=\"62\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"134\" y2=\"65\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"136\" y2=\"67\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"139\" y2=\"69\" />\n",
" <line x1=\"141\" y1=\"46\" x2=\"141\" y2=\"71\" />\n",
" <line x1=\"143\" y1=\"48\" x2=\"143\" y2=\"73\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"145\" y2=\"76\" />\n",
" <line x1=\"147\" y1=\"52\" x2=\"147\" y2=\"78\" />\n",
" <line x1=\"150\" y1=\"55\" x2=\"150\" y2=\"80\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"152\" y2=\"82\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"154\" y2=\"84\" />\n",
" <line x1=\"156\" y1=\"61\" x2=\"156\" y2=\"87\" />\n",
" <line x1=\"158\" y1=\"63\" x2=\"158\" y2=\"89\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"161\" y2=\"91\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"163\" y2=\"93\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 165.58823529411765,70.58823529411765 165.58823529411765,96.00085180870013 95.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"97\" y1=\"2\" x2=\"122\" y2=\"2\" />\n",
" <line x1=\"99\" y1=\"4\" x2=\"124\" y2=\"4\" />\n",
" <line x1=\"101\" y1=\"6\" x2=\"127\" y2=\"6\" />\n",
" <line x1=\"103\" y1=\"8\" x2=\"129\" y2=\"8\" />\n",
" <line x1=\"105\" y1=\"10\" x2=\"131\" y2=\"10\" />\n",
" <line x1=\"108\" y1=\"13\" x2=\"133\" y2=\"13\" />\n",
" <line x1=\"110\" y1=\"15\" x2=\"135\" y2=\"15\" />\n",
" <line x1=\"112\" y1=\"17\" x2=\"138\" y2=\"17\" />\n",
" <line x1=\"114\" y1=\"19\" x2=\"140\" y2=\"19\" />\n",
" <line x1=\"117\" y1=\"22\" x2=\"142\" y2=\"22\" />\n",
" <line x1=\"119\" y1=\"24\" x2=\"144\" y2=\"24\" />\n",
" <line x1=\"121\" y1=\"26\" x2=\"146\" y2=\"26\" />\n",
" <line x1=\"123\" y1=\"28\" x2=\"149\" y2=\"28\" />\n",
" <line x1=\"125\" y1=\"30\" x2=\"151\" y2=\"30\" />\n",
" <line x1=\"128\" y1=\"33\" x2=\"153\" y2=\"33\" />\n",
" <line x1=\"130\" y1=\"35\" x2=\"155\" y2=\"35\" />\n",
" <line x1=\"132\" y1=\"37\" x2=\"157\" y2=\"37\" />\n",
" <line x1=\"134\" y1=\"39\" x2=\"160\" y2=\"39\" />\n",
" <line x1=\"136\" y1=\"41\" x2=\"162\" y2=\"41\" />\n",
" <line x1=\"139\" y1=\"44\" x2=\"164\" y2=\"44\" />\n",
" <line x1=\"141\" y1=\"46\" x2=\"166\" y2=\"46\" />\n",
" <line x1=\"143\" y1=\"48\" x2=\"168\" y2=\"48\" />\n",
" <line x1=\"145\" y1=\"50\" x2=\"171\" y2=\"50\" />\n",
" <line x1=\"147\" y1=\"52\" x2=\"173\" y2=\"52\" />\n",
" <line x1=\"150\" y1=\"55\" x2=\"175\" y2=\"55\" />\n",
" <line x1=\"152\" y1=\"57\" x2=\"177\" y2=\"57\" />\n",
" <line x1=\"154\" y1=\"59\" x2=\"179\" y2=\"59\" />\n",
" <line x1=\"156\" y1=\"61\" x2=\"182\" y2=\"61\" />\n",
" <line x1=\"158\" y1=\"63\" x2=\"184\" y2=\"63\" />\n",
" <line x1=\"161\" y1=\"66\" x2=\"186\" y2=\"66\" />\n",
" <line x1=\"163\" y1=\"68\" x2=\"188\" y2=\"68\" />\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"95\" y1=\"0\" x2=\"165\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"95.0,0.0 120.41261651458248,0.0 191.00085180870013,70.58823529411765 165.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"191\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"165\" y1=\"96\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"165\" y1=\"70\" x2=\"165\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"191\" y1=\"70\" x2=\"191\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"165.58823529411765,70.58823529411765 191.00085180870013,70.58823529411765 191.00085180870013,96.00085180870013 165.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"178.294544\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"211.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,211.000852,83.294544)\">128</text>\n",
" <text x=\"120.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,120.294118,80.706734)\">482120</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-469669cc-8453-4d20-88ce-3bcff04e0211' class='xr-section-summary-in' type='checkbox' ><label for='section-469669cc-8453-4d20-88ce-3bcff04e0211' class='xr-section-summary' >Attributes: <span>(70)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>CMIP6_CV_version :</span></dt><dd>cv=6.2.3.0-7-g2019642</dd><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>EXPID :</span></dt><dd>CNRM-CM6-1_historical_r1i1p1f2</dd><dt><span>NCO :</span></dt><dd>&quot;4.5.5&quot;</dd><dt><span>activity_id :</span></dt><dd>CMIP</dd><dt><span>arpege_minor_version :</span></dt><dd>6.3.2</dd><dt><span>branch_method :</span></dt><dd>standard</dd><dt><span>branch_time_in_child :</span></dt><dd>0.0</dd><dt><span>branch_time_in_parent :</span></dt><dd>0.0</dd><dt><span>contact :</span></dt><dd>contact.cmip@meteo.fr</dd><dt><span>creation_date :</span></dt><dd>2018-06-20T08:18:32Z</dd><dt><span>data_specs_version :</span></dt><dd>01.00.21</dd><dt><span>description :</span></dt><dd>CMIP6 historical</dd><dt><span>dr2xml_md5sum :</span></dt><dd>d6225e658d7de0912fca2a4293dbe2a7</dd><dt><span>dr2xml_version :</span></dt><dd>1.10</dd><dt><span>experiment :</span></dt><dd>all-forcing simulation of the recent past</dd><dt><span>experiment_id :</span></dt><dd>historical</dd><dt><span>external_variables :</span></dt><dd>areacella</dd><dt><span>forcing_index :</span></dt><dd>2</dd><dt><span>frequency :</span></dt><dd>3hr</dd><dt><span>further_info_url :</span></dt><dd>https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-CM6-1.historical.none.r1i1p1f2</dd><dt><span>grid :</span></dt><dd>data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid</dd><dt><span>grid_label :</span></dt><dd>gr</dd><dt><span>history :</span></dt><dd>Mon Jul 30 09:04:08 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/b9a171b4-af36-425a-9cc9-118e0aec726b /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_185001010130-185912312230.nc\n",
"none\n",
"Mon Jul 30 09:08:49 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/fdcdd73b-e03f-4fcf-bc20-98f565f4c2f2 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_186001010130-186912312230.nc\n",
"none\n",
"Mon Jul 30 09:13:17 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/bf2d2dd8-8832-4075-b7cd-ed577dab56a0 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_187001010130-187912312230.nc\n",
"none\n",
"Mon Jul 30 09:17:43 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/c21107f5-1a08-419e-994f-1bb4cb3ab739 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_188001010130-188912312230.nc\n",
"none\n",
"Mon Jul 30 09:22:37 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/bb030acd-883f-4e04-bd2b-4d0b50288859 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_189001010130-189912312230.nc\n",
"none\n",
"Mon Jul 30 09:27:22 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/63792318-75a8-4107-9f9c-8f8eaac2d4a5 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_190001010130-190912312230.nc\n",
"none\n",
"Mon Jul 30 09:31:59 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/c8e737fe-d87c-452f-903b-909dff706c0b /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_191001010130-191912312230.nc\n",
"none\n",
"Mon Jul 30 09:36:36 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/309e6f10-9e21-44e1-9969-324705b6b26f /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_192001010130-192912312230.nc\n",
"none\n",
"Mon Jul 30 09:41:21 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/eae9494f-7232-4525-8b0c-b37ab3a92040 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_193001010130-193912312230.nc\n",
"none\n",
"Mon Jul 30 09:45:54 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/ed1d16bb-a512-4d01-b845-4554690e1af9 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_194001010130-194912312230.nc\n",
"none\n",
"Mon Jul 30 09:50:17 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/a1255c63-0e6e-4809-b822-010a1b2a789d /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_195001010130-195912312230.nc\n",
"none\n",
"Mon Jul 30 09:54:42 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/04654830-601b-4816-aa51-5155bef6f588 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_196001010130-196912312230.nc\n",
"none\n",
"Mon Jul 30 09:58:59 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/e95653aa-d1b2-46ee-ad67-9ec3f77962cc /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_197001010130-197912312230.nc\n",
"none\n",
"Mon Jul 30 10:03:35 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/bbe0cddf-deb4-44e5-8283-f019799baf49 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_198001010130-198912312230.nc\n",
"none\n",
"Mon Jul 30 10:08:05 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/9d7127ab-bea7-436a-8c9e-478f9723df65 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_199001010130-199912312230.nc\n",
"none\n",
"Mon Jul 30 10:12:44 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/862d5a1a-3194-4f72-a5ba-183d3b3cee83 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_200001010130-200912312230.nc\n",
"none\n",
"Mon Jul 30 10:15:07 2018: ncatted -O -a tracking_id,global,m,c,hdl:21.14100/2626f6f8-c68e-43fb-b474-016302fedef6 /scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/assembled/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_201001010130-201412312230.nc\n",
"none</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)</dd><dt><span>institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>license :</span></dt><dd>CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at http://www.umr-cnrm.fr/cmip6/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.</dd><dt><span>mip_era :</span></dt><dd>CMIP6</dd><dt><span>name :</span></dt><dd>/scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/18500101/pr_3hr_CNRM-CM6-1_historical_r1i1p1f2_gr_%start_date%-%end_date%</dd><dt><span>nemo_gelato_commit :</span></dt><dd>49095b3accd5d4c_6524fe19b00467a</dd><dt><span>nominal_resolution :</span></dt><dd>250 km</dd><dt><span>parent_activity_id :</span></dt><dd>CMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>piControl</dd><dt><span>parent_mip_era :</span></dt><dd>CMIP6</dd><dt><span>parent_source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>parent_time_units :</span></dt><dd>days since 1850-01-01 00:00:00</dd><dt><span>parent_variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>atmos</dd><dt><span>references :</span></dt><dd>http://www.umr-cnrm.fr/cmip6/references</dd><dt><span>source :</span></dt><dd>CNRM-CM6-1 (2017): aerosol: prescribed monthly fields computed by TACTIC_v2 scheme atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) atmosChem: OZL_v2 land: Surfex 8.0c ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) seaIce: Gelato 6.1</dd><dt><span>source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>table_id :</span></dt><dd>3hr</dd><dt><span>title :</span></dt><dd>CNRM-CM6-1 model output prepared for CMIP6 / CMIP historical</dd><dt><span>tracking_id :</span></dt><dd>hdl:21.14100/b9a171b4-af36-425a-9cc9-118e0aec726b\n",
"hdl:21.14100/fdcdd73b-e03f-4fcf-bc20-98f565f4c2f2\n",
"hdl:21.14100/bf2d2dd8-8832-4075-b7cd-ed577dab56a0\n",
"hdl:21.14100/c21107f5-1a08-419e-994f-1bb4cb3ab739\n",
"hdl:21.14100/bb030acd-883f-4e04-bd2b-4d0b50288859\n",
"hdl:21.14100/63792318-75a8-4107-9f9c-8f8eaac2d4a5\n",
"hdl:21.14100/c8e737fe-d87c-452f-903b-909dff706c0b\n",
"hdl:21.14100/309e6f10-9e21-44e1-9969-324705b6b26f\n",
"hdl:21.14100/eae9494f-7232-4525-8b0c-b37ab3a92040\n",
"hdl:21.14100/ed1d16bb-a512-4d01-b845-4554690e1af9\n",
"hdl:21.14100/a1255c63-0e6e-4809-b822-010a1b2a789d\n",
"hdl:21.14100/04654830-601b-4816-aa51-5155bef6f588\n",
"hdl:21.14100/e95653aa-d1b2-46ee-ad67-9ec3f77962cc\n",
"hdl:21.14100/bbe0cddf-deb4-44e5-8283-f019799baf49\n",
"hdl:21.14100/9d7127ab-bea7-436a-8c9e-478f9723df65\n",
"hdl:21.14100/862d5a1a-3194-4f72-a5ba-183d3b3cee83\n",
"hdl:21.14100/2626f6f8-c68e-43fb-b474-016302fedef6</dd><dt><span>variable_id :</span></dt><dd>pr</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>xios_commit :</span></dt><dd>1442-shuffle</dd><dt><span>status :</span></dt><dd>2019-10-25;created;by nhn2@columbia.edu</dd><dt><span>netcdf_tracking_ids :</span></dt><dd>hdl:21.14100/b9a171b4-af36-425a-9cc9-118e0aec726b\n",
"hdl:21.14100/fdcdd73b-e03f-4fcf-bc20-98f565f4c2f2\n",
"hdl:21.14100/bf2d2dd8-8832-4075-b7cd-ed577dab56a0\n",
"hdl:21.14100/c21107f5-1a08-419e-994f-1bb4cb3ab739\n",
"hdl:21.14100/bb030acd-883f-4e04-bd2b-4d0b50288859\n",
"hdl:21.14100/63792318-75a8-4107-9f9c-8f8eaac2d4a5\n",
"hdl:21.14100/c8e737fe-d87c-452f-903b-909dff706c0b\n",
"hdl:21.14100/309e6f10-9e21-44e1-9969-324705b6b26f\n",
"hdl:21.14100/eae9494f-7232-4525-8b0c-b37ab3a92040\n",
"hdl:21.14100/ed1d16bb-a512-4d01-b845-4554690e1af9\n",
"hdl:21.14100/a1255c63-0e6e-4809-b822-010a1b2a789d\n",
"hdl:21.14100/04654830-601b-4816-aa51-5155bef6f588\n",
"hdl:21.14100/e95653aa-d1b2-46ee-ad67-9ec3f77962cc\n",
"hdl:21.14100/bbe0cddf-deb4-44e5-8283-f019799baf49\n",
"hdl:21.14100/9d7127ab-bea7-436a-8c9e-478f9723df65\n",
"hdl:21.14100/862d5a1a-3194-4f72-a5ba-183d3b3cee83\n",
"hdl:21.14100/2626f6f8-c68e-43fb-b474-016302fedef6</dd><dt><span>version_id :</span></dt><dd>v20180917</dd><dt><span>intake_esm_vars :</span></dt><dd>[&#x27;pr&#x27;]</dd><dt><span>intake_esm_attrs:activity_id :</span></dt><dd>CMIP</dd><dt><span>intake_esm_attrs:institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>intake_esm_attrs:source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>intake_esm_attrs:experiment_id :</span></dt><dd>historical</dd><dt><span>intake_esm_attrs:member_id :</span></dt><dd>r1i1p1f2</dd><dt><span>intake_esm_attrs:table_id :</span></dt><dd>3hr</dd><dt><span>intake_esm_attrs:variable_id :</span></dt><dd>pr</dd><dt><span>intake_esm_attrs:grid_label :</span></dt><dd>gr</dd><dt><span>intake_esm_attrs:zstore :</span></dt><dd>gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM-CM6-1/historical/r1i1p1f2/3hr/pr/gr/v20180917/</dd><dt><span>intake_esm_attrs:version :</span></dt><dd>20180917</dd><dt><span>intake_esm_attrs:_data_format_ :</span></dt><dd>zarr</dd><dt><span>intake_esm_dataset_key :</span></dt><dd>CNRM-CM6-1/r1i1p1f2/pr/3hr/gr</dd></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-acdb1490-926f-40a3-aa10-737adaefa55f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-acdb1490-926f-40a3-aa10-737adaefa55f' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-64587c8e-a67b-4a8d-9086-e608dcf8764f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-64587c8e-a67b-4a8d-9086-e608dcf8764f' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-412c1211-a7d2-411c-8c2a-e32b1e6e8974' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-412c1211-a7d2-411c-8c2a-e32b1e6e8974' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-cc7a9379-8fe2-4e56-9aa1-594eefb17b1c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-cc7a9379-8fe2-4e56-9aa1-594eefb17b1c' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-cbb80949-6d0d-4f60-9b67-3e98186e5941' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-cbb80949-6d0d-4f60-9b67-3e98186e5941' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-055fc27f-0c2f-4c99-829c-5b08d94db912' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-055fc27f-0c2f-4c99-829c-5b08d94db912' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-94de9acf-8e71-441b-abd2-22a3c38a9921' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-94de9acf-8e71-441b-abd2-22a3c38a9921' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-9fec6228-f8ea-435a-8bae-54e67bb60f48' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-9fec6228-f8ea-435a-8bae-54e67bb60f48' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>hus</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-31203688-aeaf-488e-9e88-15d61287807f' class='xr-section-summary-in' type='checkbox' ><label for='section-31203688-aeaf-488e-9e88-15d61287807f' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>6hrLev</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-bebeb869-416c-4408-9dae-9bc966e89225' class='xr-section-summary-in' type='checkbox' ><label for='section-bebeb869-416c-4408-9dae-9bc966e89225' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (lev: 91, y: 128, x: 256, time: 94964, member_id: 1,\n",
" dcpp_init_year: 1, bnds: 2)\n",
"Coordinates:\n",
" * lev (lev) float64 0.9988 0.9959 0.992 ... 2.951e-05 9.869e-06\n",
" * y (y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * x (x) float64 0.0 1.406 2.812 4.219 ... 355.8 357.2 358.6\n",
" * time (time) datetime64[ns] 1950-01-01T06:00:00 ... 2015-01-01\n",
" time_bounds (time, bnds) datetime64[ns] dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;\n",
" ap_bnds (bnds, lev) float64 dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;\n",
" b_bnds (bnds, lev) float64 dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;\n",
" lev_bounds (lev, bnds) float64 dask.array&lt;chunksize=(91, 2), meta=np.ndarray&gt;\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.6 358.6 358.6\n",
" lat (x, y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * member_id (member_id) object &#x27;r1i1p1f2&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds\n",
"Data variables:\n",
" ap (lev) float64 dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;\n",
" b (lev) float64 dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;\n",
" hus (member_id, dcpp_init_year, time, lev, y, x) float32 dask.array&lt;chunksize=(1, 1, 12, 91, 128, 256), meta=np.ndarray&gt;\n",
" ps (time, y, x) float32 dask.array&lt;chunksize=(12, 128, 256), meta=np.ndarray&gt;\n",
"Attributes: (12/69)\n",
" CMIP6_CV_version: cv=6.2.3.0-7-g2019642\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" EXPID: CNRM-CM6-1_historical_r1i1p1f2\n",
" activity_id: CMIP\n",
" arpege_minor_version: 6.3.2\n",
" branch_method: standard\n",
" ... ...\n",
" intake_esm_attrs:variable_id: hus\n",
" intake_esm_attrs:grid_label: gr\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM...\n",
" intake_esm_attrs:version: 20180917\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CNRM-CM6-1/r1i1p1f2/hus/6hrLev/gr</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>gr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-d8e00d52-30ef-465b-acff-24c21c4a3c84' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-d8e00d52-30ef-465b-acff-24c21c4a3c84' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-e3c1a0a7-393b-4f3b-b35b-062a90930fa2' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-e3c1a0a7-393b-4f3b-b35b-062a90930fa2' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>lev</span>: 91</li><li><span class='xr-has-index'>y</span>: 128</li><li><span class='xr-has-index'>x</span>: 256</li><li><span class='xr-has-index'>time</span>: 94964</li><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span>bnds</span>: 2</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-8360d542-e0f0-49a6-a455-d457e717f5c6' class='xr-section-summary-in' type='checkbox' checked><label for='section-8360d542-e0f0-49a6-a455-d457e717f5c6' class='xr-section-summary' >Coordinates: <span>(12)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>lev</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.9988 0.9959 ... 9.869e-06</div><input id='attrs-0d3af893-57a6-4f48-9885-b6b026b3300c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0d3af893-57a6-4f48-9885-b6b026b3300c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-acc71f65-b157-403a-963e-8928cf09e15b' class='xr-var-data-in' type='checkbox'><label for='data-acc71f65-b157-403a-963e-8928cf09e15b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>lev_bounds</dd><dt><span>formula :</span></dt><dd>p = ap + b*ps</dd><dt><span>formula_term :</span></dt><dd>ap: ap b: b ps: ps</dd><dt><span>long_name :</span></dt><dd>atmospheric model level</dd><dt><span>name :</span></dt><dd>lev</dd><dt><span>positive :</span></dt><dd>down</dd><dt><span>standard_name :</span></dt><dd>atmosphere_hybrid_sigma_pressure_coordinate</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>array([9.988151e-01, 9.959496e-01, 9.919785e-01, 9.867627e-01, 9.803135e-01,\n",
" 9.727423e-01, 9.639018e-01, 9.535363e-01, 9.416150e-01, 9.281436e-01,\n",
" 9.131237e-01, 8.965609e-01, 8.784941e-01, 8.589981e-01, 8.381457e-01,\n",
" 8.160020e-01, 7.926548e-01, 7.682247e-01, 7.428293e-01, 7.165710e-01,\n",
" 6.895664e-01, 6.619600e-01, 6.338908e-01, 6.054764e-01, 5.768424e-01,\n",
" 5.481361e-01, 5.195776e-01, 4.914467e-01, 4.640177e-01, 4.375466e-01,\n",
" 4.122711e-01, 3.882926e-01, 3.655744e-01, 3.440645e-01, 3.237057e-01,\n",
" 3.044435e-01, 2.862251e-01, 2.690002e-01, 2.527204e-01, 2.373396e-01,\n",
" 2.228133e-01, 2.090992e-01, 1.961565e-01, 1.839464e-01, 1.724318e-01,\n",
" 1.615771e-01, 1.513484e-01, 1.417132e-01, 1.326406e-01, 1.241009e-01,\n",
" 1.160565e-01, 1.084543e-01, 1.012399e-01, 9.436681e-02, 8.779560e-02,\n",
" 8.149272e-02, 7.542972e-02, 6.958413e-02, 6.395049e-02, 5.853933e-02,\n",
" 5.336302e-02, 4.843146e-02, 4.375126e-02, 3.932698e-02, 3.516221e-02,\n",
" 3.125945e-02, 2.762004e-02, 2.424404e-02, 2.113017e-02, 1.827577e-02,\n",
" 1.567665e-02, 1.332716e-02, 1.122009e-02, 9.346718e-03, 7.696813e-03,\n",
" 6.258735e-03, 5.019516e-03, 3.965015e-03, 3.080094e-03, 2.348848e-03,\n",
" 1.754865e-03, 1.281528e-03, 9.123277e-04, 6.312078e-04, 4.228940e-04,\n",
" 2.732123e-04, 1.693656e-04, 1.001505e-04, 5.609681e-05, 2.951331e-05,\n",
" 9.869430e-06])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-2e7d0ce2-81e5-4ad2-bb96-8039ec7a3ebd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2e7d0ce2-81e5-4ad2-bb96-8039ec7a3ebd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1ee2c7b2-82fe-4a9b-b392-d51d090e2763' class='xr-var-data-in' type='checkbox'><label for='data-1ee2c7b2-82fe-4a9b-b392-d51d090e2763' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd></dl></div><div class='xr-var-data'><pre>array([-88.927735, -87.538705, -86.141472, -84.742386, -83.342596, -81.942466,\n",
" -80.542146, -79.14171 , -77.741196, -76.340629, -74.940023, -73.539389,\n",
" -72.138732, -70.738059, -69.337372, -67.936673, -66.535966, -65.135251,\n",
" -63.73453 , -62.333803, -60.933072, -59.532337, -58.131598, -56.730857,\n",
" -55.330112, -53.929366, -52.528617, -51.127867, -49.727115, -48.326361,\n",
" -46.925606, -45.52485 , -44.124093, -42.723335, -41.322576, -39.921816,\n",
" -38.521056, -37.120294, -35.719532, -34.31877 , -32.918007, -31.517244,\n",
" -30.11648 , -28.715716, -27.314951, -25.914186, -24.513421, -23.112655,\n",
" -21.71189 , -20.311124, -18.910357, -17.509591, -16.108824, -14.708057,\n",
" -13.30729 , -11.906523, -10.505756, -9.104989, -7.704221, -6.303454,\n",
" -4.902687, -3.501919, -2.101151, -0.700384, 0.700384, 2.101151,\n",
" 3.501919, 4.902687, 6.303454, 7.704221, 9.104989, 10.505756,\n",
" 11.906523, 13.30729 , 14.708057, 16.108824, 17.509591, 18.910357,\n",
" 20.311124, 21.71189 , 23.112655, 24.513421, 25.914186, 27.314951,\n",
" 28.715716, 30.11648 , 31.517244, 32.918007, 34.31877 , 35.719532,\n",
" 37.120294, 38.521056, 39.921816, 41.322576, 42.723335, 44.124093,\n",
" 45.52485 , 46.925606, 48.326361, 49.727115, 51.127867, 52.528617,\n",
" 53.929366, 55.330112, 56.730857, 58.131598, 59.532337, 60.933072,\n",
" 62.333803, 63.73453 , 65.135251, 66.535966, 67.936673, 69.337372,\n",
" 70.738059, 72.138732, 73.539389, 74.940023, 76.340629, 77.741196,\n",
" 79.14171 , 80.542146, 81.942466, 83.342596, 84.742386, 86.141472,\n",
" 87.538705, 88.927735])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 1.406 2.812 ... 357.2 358.6</div><input id='attrs-8663ab5a-d17a-4093-bfc5-0189773cba84' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8663ab5a-d17a-4093-bfc5-0189773cba84' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-775f7f17-c163-461f-a24a-a72b533a08c1' class='xr-var-data-in' type='checkbox'><label for='data-775f7f17-c163-461f-a24a-a72b533a08c1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd></dl></div><div class='xr-var-data'><pre>array([ 0. , 1.40625, 2.8125 , ..., 355.78125, 357.1875 , 358.59375])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>1950-01-01T06:00:00 ... 2015-01-01</div><input id='attrs-532c3eda-b325-4677-a091-cd6edd993e38' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-532c3eda-b325-4677-a091-cd6edd993e38' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9097813e-7386-4558-ab20-5a1ab6204467' class='xr-var-data-in' type='checkbox'><label for='data-9097813e-7386-4558-ab20-5a1ab6204467' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bounds</dd><dt><span>long_name :</span></dt><dd>Time axis</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>time_origin :</span></dt><dd>1850-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1950-01-01T06:00:00.000000000&#x27;, &#x27;1950-01-01T12:00:00.000000000&#x27;,\n",
" &#x27;1950-01-01T18:00:00.000000000&#x27;, ..., &#x27;2014-12-31T12:00:00.000000000&#x27;,\n",
" &#x27;2014-12-31T18:00:00.000000000&#x27;, &#x27;2015-01-01T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_bounds</span></div><div class='xr-var-dims'>(time, bnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;</div><input id='attrs-8e5993f7-d871-4736-94a3-9f7e3c620ca3' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8e5993f7-d871-4736-94a3-9f7e3c620ca3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9e4d2d01-89ea-41f6-9e88-c50679b1d8bd' class='xr-var-data-in' type='checkbox'><label for='data-9e4d2d01-89ea-41f6-9e88-c50679b1d8bd' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.45 MiB </td>\n",
" <td> 370.95 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94964, 2) </td>\n",
" <td> (47482, 1) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> datetime64[ns] numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"75\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"60\" x2=\"25\" y2=\"60\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"12\" y2=\"120\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"45.412617\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,45.412617,60.000000)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ap_bnds</span></div><div class='xr-var-dims'>(bnds, lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;</div><input id='attrs-285e9a0d-d898-4e83-ba5e-1016185bf0fd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-285e9a0d-d898-4e83-ba5e-1016185bf0fd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-77ce4149-8f0d-43d3-b68c-e0dacbf919c9' class='xr-var-data-in' type='checkbox'><label for='data-77ce4149-8f0d-43d3-b68c-e0dacbf919c9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: ap(k+1/2)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (2, 91) </td>\n",
" <td> (2, 91) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"79\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"29\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"29\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,29.56599059001709 0.0,29.56599059001709\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"49.565991\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"14.782995\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,14.782995)\">2</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>b_bnds</span></div><div class='xr-var-dims'>(bnds, lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;</div><input id='attrs-944b149b-6b5f-4b10-b474-862aef73b5f4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-944b149b-6b5f-4b10-b474-862aef73b5f4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-408249e4-b216-4c04-83c8-b3f927520660' class='xr-var-data-in' type='checkbox'><label for='data-408249e4-b216-4c04-83c8-b3f927520660' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: b(k+1/2)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (2, 91) </td>\n",
" <td> (2, 91) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"79\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"29\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"29\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,29.56599059001709 0.0,29.56599059001709\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"49.565991\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"14.782995\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,14.782995)\">2</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lev_bounds</span></div><div class='xr-var-dims'>(lev, bnds)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91, 2), meta=np.ndarray&gt;</div><input id='attrs-5a56bc77-faf6-43c4-8ca1-1d5d9654c434' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5a56bc77-faf6-43c4-8ca1-1d5d9654c434' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-787b6a1d-4c38-4702-8a1c-fbcacf13a83d' class='xr-var-data-in' type='checkbox'><label for='data-787b6a1d-4c38-4702-8a1c-fbcacf13a83d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>formula :</span></dt><dd>p = ap + b*ps</dd><dt><span>formula_term :</span></dt><dd>ap: ap b: b ps: ps</dd><dt><span>standard_name :</span></dt><dd>atmosphere_hybrid_sigma_pressure_coordinate</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91, 2) </td>\n",
" <td> (91, 2) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"79\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"29\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"29\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"29\" y1=\"0\" x2=\"29\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 29.56599059001709,0.0 29.56599059001709,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"14.782995\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"49.565991\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,49.565991,60.000000)\">91</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>360.0 360.0 360.0 ... 358.6 358.6</div><input id='attrs-aae8355e-0366-468c-bf9e-2544cc3a98c6' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-aae8355e-0366-468c-bf9e-2544cc3a98c6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dd974fba-f29a-43a9-8f2c-3a063582f199' class='xr-var-data-in' type='checkbox'><label for='data-dd974fba-f29a-43a9-8f2c-3a063582f199' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[360. , 360. , 360. , ..., 360. , 360. ,\n",
" 360. ],\n",
" [ 1.40625, 1.40625, 1.40625, ..., 1.40625, 1.40625,\n",
" 1.40625],\n",
" [ 2.8125 , 2.8125 , 2.8125 , ..., 2.8125 , 2.8125 ,\n",
" 2.8125 ],\n",
" ...,\n",
" [355.78125, 355.78125, 355.78125, ..., 355.78125, 355.78125,\n",
" 355.78125],\n",
" [357.1875 , 357.1875 , 357.1875 , ..., 357.1875 , 357.1875 ,\n",
" 357.1875 ],\n",
" [358.59375, 358.59375, 358.59375, ..., 358.59375, 358.59375,\n",
" 358.59375]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-97a17919-b135-464a-8fdc-15f277e5724c' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-97a17919-b135-464a-8fdc-15f277e5724c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ee25ddd4-10dd-4037-bb8d-5c09ff7d6fc2' class='xr-var-data-in' type='checkbox'><label for='data-ee25ddd4-10dd-4037-bb8d-5c09ff7d6fc2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" ...,\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f2&#x27;</div><input id='attrs-00bcd25d-c0ba-4b1f-af71-56b52aca017e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-00bcd25d-c0ba-4b1f-af71-56b52aca017e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-51f3c2b9-7ca1-4b9e-9aa0-3e36daf53fd1' class='xr-var-data-in' type='checkbox'><label for='data-51f3c2b9-7ca1-4b9e-9aa0-3e36daf53fd1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f2&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-7cd62d00-4c46-4589-8605-78eb7b148507' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-7cd62d00-4c46-4589-8605-78eb7b148507' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1886d56b-9709-4e3c-b237-0772b76537a2' class='xr-var-data-in' type='checkbox'><label for='data-1886d56b-9709-4e3c-b237-0772b76537a2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-aae746c7-a781-4191-ac54-6b696cb31ec6' class='xr-section-summary-in' type='checkbox' checked><label for='section-aae746c7-a781-4191-ac54-6b696cb31ec6' class='xr-section-summary' >Data variables: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>ap</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;</div><input id='attrs-6b244ac2-95d8-4963-ad2d-54d50d88c7dc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6b244ac2-95d8-4963-ad2d-54d50d88c7dc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b66f3287-450c-4b76-a2a9-6fb9c22786b0' class='xr-var-data-in' type='checkbox'><label for='data-b66f3287-450c-4b76-a2a9-6fb9c22786b0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: ap(k)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 728 B </td>\n",
" <td> 728 B </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91,) </td>\n",
" <td> (91,) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.86984685721921 0.0,25.86984685721921\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"45.869847\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"12.934923\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,12.934923)\">1</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>b</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;</div><input id='attrs-0743be13-e26e-4d48-a9bf-0bc3b30a8015' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0743be13-e26e-4d48-a9bf-0bc3b30a8015' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-18ab8e07-a3e5-44b0-96d4-7ea985567eaf' class='xr-var-data-in' type='checkbox'><label for='data-18ab8e07-a3e5-44b0-96d4-7ea985567eaf' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: b(k)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 728 B </td>\n",
" <td> 728 B </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91,) </td>\n",
" <td> (91,) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.86984685721921 0.0,25.86984685721921\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"45.869847\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"12.934923\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,12.934923)\">1</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>hus</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, lev, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 12, 91, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-ccb5f7ba-3af9-4dd6-8a8d-f8dafb37132c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ccb5f7ba-3af9-4dd6-8a8d-f8dafb37132c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1327f6d7-0e93-4622-a2e0-6e5bad1872b6' class='xr-var-data-in' type='checkbox'><label for='data-1327f6d7-0e93-4622-a2e0-6e5bad1872b6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>Specific Humidity</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>6 h</dd><dt><span>long_name :</span></dt><dd>Specific Humidity</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>specific_humidity</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.03 TiB </td>\n",
" <td> 136.50 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (1, 1, 94964, 91, 128, 256) </td>\n",
" <td> (1, 1, 12, 91, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 7914 chunks in 3 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"518\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"0\" x2=\"28\" y2=\"14\" />\n",
" <line x1=\"17\" y1=\"0\" x2=\"32\" y2=\"14\" />\n",
" <line x1=\"21\" y1=\"0\" x2=\"36\" y2=\"14\" />\n",
" <line x1=\"24\" y1=\"0\" x2=\"39\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"0\" x2=\"43\" y2=\"14\" />\n",
" <line x1=\"32\" y1=\"0\" x2=\"47\" y2=\"14\" />\n",
" <line x1=\"36\" y1=\"0\" x2=\"51\" y2=\"14\" />\n",
" <line x1=\"39\" y1=\"0\" x2=\"54\" y2=\"14\" />\n",
" <line x1=\"43\" y1=\"0\" x2=\"58\" y2=\"14\" />\n",
" <line x1=\"47\" y1=\"0\" x2=\"62\" y2=\"14\" />\n",
" <line x1=\"51\" y1=\"0\" x2=\"66\" y2=\"14\" />\n",
" <line x1=\"54\" y1=\"0\" x2=\"69\" y2=\"14\" />\n",
" <line x1=\"58\" y1=\"0\" x2=\"73\" y2=\"14\" />\n",
" <line x1=\"62\" y1=\"0\" x2=\"77\" y2=\"14\" />\n",
" <line x1=\"66\" y1=\"0\" x2=\"81\" y2=\"14\" />\n",
" <line x1=\"70\" y1=\"0\" x2=\"84\" y2=\"14\" />\n",
" <line x1=\"73\" y1=\"0\" x2=\"88\" y2=\"14\" />\n",
" <line x1=\"77\" y1=\"0\" x2=\"92\" y2=\"14\" />\n",
" <line x1=\"81\" y1=\"0\" x2=\"96\" y2=\"14\" />\n",
" <line x1=\"84\" y1=\"0\" x2=\"99\" y2=\"14\" />\n",
" <line x1=\"88\" y1=\"0\" x2=\"103\" y2=\"14\" />\n",
" <line x1=\"92\" y1=\"0\" x2=\"107\" y2=\"14\" />\n",
" <line x1=\"96\" y1=\"0\" x2=\"111\" y2=\"14\" />\n",
" <line x1=\"99\" y1=\"0\" x2=\"114\" y2=\"14\" />\n",
" <line x1=\"103\" y1=\"0\" x2=\"118\" y2=\"14\" />\n",
" <line x1=\"107\" y1=\"0\" x2=\"122\" y2=\"14\" />\n",
" <line x1=\"111\" y1=\"0\" x2=\"126\" y2=\"14\" />\n",
" <line x1=\"114\" y1=\"0\" x2=\"129\" y2=\"14\" />\n",
" <line x1=\"118\" y1=\"0\" x2=\"133\" y2=\"14\" />\n",
" <line x1=\"122\" y1=\"0\" x2=\"137\" y2=\"14\" />\n",
" <line x1=\"126\" y1=\"0\" x2=\"141\" y2=\"14\" />\n",
" <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
" <line x1=\"28\" y1=\"14\" x2=\"28\" y2=\"40\" />\n",
" <line x1=\"32\" y1=\"14\" x2=\"32\" y2=\"40\" />\n",
" <line x1=\"36\" y1=\"14\" x2=\"36\" y2=\"40\" />\n",
" <line x1=\"39\" y1=\"14\" x2=\"39\" y2=\"40\" />\n",
" <line x1=\"43\" y1=\"14\" x2=\"43\" y2=\"40\" />\n",
" <line x1=\"47\" y1=\"14\" x2=\"47\" y2=\"40\" />\n",
" <line x1=\"51\" y1=\"14\" x2=\"51\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"14\" x2=\"54\" y2=\"40\" />\n",
" <line x1=\"58\" y1=\"14\" x2=\"58\" y2=\"40\" />\n",
" <line x1=\"62\" y1=\"14\" x2=\"62\" y2=\"40\" />\n",
" <line x1=\"66\" y1=\"14\" x2=\"66\" y2=\"40\" />\n",
" <line x1=\"69\" y1=\"14\" x2=\"69\" y2=\"40\" />\n",
" <line x1=\"73\" y1=\"14\" x2=\"73\" y2=\"40\" />\n",
" <line x1=\"77\" y1=\"14\" x2=\"77\" y2=\"40\" />\n",
" <line x1=\"81\" y1=\"14\" x2=\"81\" y2=\"40\" />\n",
" <line x1=\"84\" y1=\"14\" x2=\"84\" y2=\"40\" />\n",
" <line x1=\"88\" y1=\"14\" x2=\"88\" y2=\"40\" />\n",
" <line x1=\"92\" y1=\"14\" x2=\"92\" y2=\"40\" />\n",
" <line x1=\"96\" y1=\"14\" x2=\"96\" y2=\"40\" />\n",
" <line x1=\"99\" y1=\"14\" x2=\"99\" y2=\"40\" />\n",
" <line x1=\"103\" y1=\"14\" x2=\"103\" y2=\"40\" />\n",
" <line x1=\"107\" y1=\"14\" x2=\"107\" y2=\"40\" />\n",
" <line x1=\"111\" y1=\"14\" x2=\"111\" y2=\"40\" />\n",
" <line x1=\"114\" y1=\"14\" x2=\"114\" y2=\"40\" />\n",
" <line x1=\"118\" y1=\"14\" x2=\"118\" y2=\"40\" />\n",
" <line x1=\"122\" y1=\"14\" x2=\"122\" y2=\"40\" />\n",
" <line x1=\"126\" y1=\"14\" x2=\"126\" y2=\"40\" />\n",
" <line x1=\"129\" y1=\"14\" x2=\"129\" y2=\"40\" />\n",
" <line x1=\"133\" y1=\"14\" x2=\"133\" y2=\"40\" />\n",
" <line x1=\"137\" y1=\"14\" x2=\"137\" y2=\"40\" />\n",
" <line x1=\"141\" y1=\"14\" x2=\"141\" y2=\"40\" />\n",
" <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"84.948598\" y=\"60.361214\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >94964</text>\n",
" <text x=\"164.948598\" y=\"27.654906\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.948598,27.654906)\">1</text>\n",
" <text x=\"7.474299\" y=\"52.886915\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.474299,52.886915)\">1</text>\n",
"\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"228\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"214\" y1=\"25\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"214\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"14\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"214.0,0.0 228.9485979497544,14.948597949754403 228.9485979497544,40.36121446433689 214.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"239\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"14\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"228\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"239\" y1=\"0\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"214.0,0.0 239.41261651458248,0.0 254.36121446433688,14.948597949754403 228.9485979497544,14.948597949754403\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"228\" y1=\"14\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"40\" x2=\"254\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"228\" y1=\"14\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
" <line x1=\"254\" y1=\"14\" x2=\"254\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"228.9485979497544,14.948597949754403 254.36121446433688,14.948597949754403 254.36121446433688,40.36121446433689 228.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"241.654906\" y=\"60.361214\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"274.361214\" y=\"27.654906\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,274.361214,27.654906)\">128</text>\n",
" <text x=\"211.474299\" y=\"52.886915\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,211.474299,52.886915)\">91</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ps</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(12, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-356490e8-162a-44f5-b136-04838b30d869' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-356490e8-162a-44f5-b136-04838b30d869' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-92664128-e8f3-425d-9e29-709915e6d007' class='xr-var-data-in' type='checkbox'><label for='data-92664128-e8f3-425d-9e29-709915e6d007' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>surface pressure, not mean sea level pressure</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>6 h</dd><dt><span>long_name :</span></dt><dd>Surface Air Pressure</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>surface_air_pressure</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 11.59 GiB </td>\n",
" <td> 1.50 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94964, 128, 256) </td>\n",
" <td> (12, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 7914 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"156\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"43\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"32\" y2=\"47\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"36\" y2=\"51\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"39\" y2=\"55\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"58\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"47\" y2=\"62\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"50\" y2=\"66\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"69\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"62\" y2=\"77\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"65\" y2=\"81\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"69\" y2=\"84\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"76\" y2=\"92\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,96.00085180870013 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"35\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"39\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"42\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"46\" y2=\"11\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"50\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"53\" y2=\"18\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"57\" y2=\"22\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"61\" y2=\"26\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"65\" y2=\"29\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"68\" y2=\"33\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"72\" y2=\"37\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"76\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"79\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"87\" y2=\"52\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"91\" y2=\"55\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"94\" y2=\"59\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"98\" y2=\"63\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"102\" y2=\"66\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"35\" y1=\"0\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 35.41261651458248,0.0 106.00085180870013,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"96\" x2=\"106\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"106\" y1=\"70\" x2=\"106\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 106.00085180870013,70.58823529411765 106.00085180870013,96.00085180870013 80.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"93.294544\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,126.000852,83.294544)\">128</text>\n",
" <text x=\"35.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,80.706734)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-54cd62e4-6642-4bb5-a449-594d2eeb78d4' class='xr-section-summary-in' type='checkbox' ><label for='section-54cd62e4-6642-4bb5-a449-594d2eeb78d4' class='xr-section-summary' >Attributes: <span>(69)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>CMIP6_CV_version :</span></dt><dd>cv=6.2.3.0-7-g2019642</dd><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>EXPID :</span></dt><dd>CNRM-CM6-1_historical_r1i1p1f2</dd><dt><span>activity_id :</span></dt><dd>CMIP</dd><dt><span>arpege_minor_version :</span></dt><dd>6.3.2</dd><dt><span>branch_method :</span></dt><dd>standard</dd><dt><span>branch_time_in_child :</span></dt><dd>0.0</dd><dt><span>branch_time_in_parent :</span></dt><dd>0.0</dd><dt><span>contact :</span></dt><dd>contact.cmip@meteo.fr</dd><dt><span>creation_date :</span></dt><dd>2018-07-13T22:27:29Z</dd><dt><span>data_specs_version :</span></dt><dd>01.00.21</dd><dt><span>description :</span></dt><dd>CMIP6 historical</dd><dt><span>dr2xml_md5sum :</span></dt><dd>d6225e658d7de0912fca2a4293dbe2a7</dd><dt><span>dr2xml_version :</span></dt><dd>1.10</dd><dt><span>experiment :</span></dt><dd>all-forcing simulation of the recent past</dd><dt><span>experiment_id :</span></dt><dd>historical</dd><dt><span>external_variables :</span></dt><dd>areacella</dd><dt><span>forcing_index :</span></dt><dd>2</dd><dt><span>frequency :</span></dt><dd>6hrPt</dd><dt><span>further_info_url :</span></dt><dd>https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-CM6-1.historical.none.r1i1p1f2</dd><dt><span>grid :</span></dt><dd>data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid</dd><dt><span>grid_label :</span></dt><dd>gr</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)</dd><dt><span>institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>license :</span></dt><dd>CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at http://www.umr-cnrm.fr/cmip6/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.</dd><dt><span>mip_era :</span></dt><dd>CMIP6</dd><dt><span>name :</span></dt><dd>/scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/19500101/hus_6hrLev_CNRM-CM6-1_historical_r1i1p1f2_gr_%start_date%-%end_date%</dd><dt><span>nemo_gelato_commit :</span></dt><dd>49095b3accd5d4c_6524fe19b00467a</dd><dt><span>nominal_resolution :</span></dt><dd>250 km</dd><dt><span>parent_activity_id :</span></dt><dd>CMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>piControl</dd><dt><span>parent_mip_era :</span></dt><dd>CMIP6</dd><dt><span>parent_source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>parent_time_units :</span></dt><dd>days since 1850-01-01 00:00:00</dd><dt><span>parent_variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>atmos</dd><dt><span>references :</span></dt><dd>http://www.umr-cnrm.fr/cmip6/references</dd><dt><span>source :</span></dt><dd>CNRM-CM6-1 (2017): aerosol: prescribed monthly fields computed by TACTIC_v2 scheme atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) atmosChem: OZL_v2 land: Surfex 8.0c ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) seaIce: Gelato 6.1</dd><dt><span>source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>status :</span></dt><dd>2019-12-30;created; by gcs.cmip6.ldeo@gmail.com</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>table_id :</span></dt><dd>6hrLev</dd><dt><span>title :</span></dt><dd>CNRM-CM6-1 model output prepared for CMIP6 / CMIP historical</dd><dt><span>tracking_id :</span></dt><dd>hdl:21.14100/492a68ab-d33c-4f2f-9e8f-30ce1723b3ba\n",
"hdl:21.14100/0140a771-1ab3-48b1-8718-621ca665ad46\n",
"hdl:21.14100/ab4a71bc-43cc-4385-964e-16a8686315be\n",
"hdl:21.14100/0f7cd531-9481-4c96-9ca2-6905ff337814\n",
"hdl:21.14100/b55ce485-76fb-4cbd-9ba9-ebaaa3541457\n",
"hdl:21.14100/ea1c1133-19d4-42a6-a404-e5293d46992c\n",
"hdl:21.14100/4b3b9069-143e-476d-ab65-c089fcff22e7\n",
"hdl:21.14100/dd641016-8012-4c5f-8ad3-0695aa0ca03c\n",
"hdl:21.14100/42edf35d-c545-4583-94b2-5f1923a41904\n",
"hdl:21.14100/542e17c8-50cc-4114-ba0b-38e94f64593b\n",
"hdl:21.14100/175ed349-01c3-4bc5-a4dd-93014da0eb96\n",
"hdl:21.14100/b7298fda-096d-4dbb-9dc0-9a2984cad7d2\n",
"hdl:21.14100/130b6d76-4084-4dd2-9a63-921640ddc14a\n",
"hdl:21.14100/59a1173b-8bde-4daf-987d-8091f7712f54\n",
"hdl:21.14100/6e9c4f14-5a89-4065-bfbc-4e4de51b6d7b\n",
"hdl:21.14100/063fda7d-6414-4e02-8e7f-80c63235608b\n",
"hdl:21.14100/556f880a-e2f6-46c0-8543-4f7b28f76324\n",
"hdl:21.14100/b0f67444-05f4-498f-ba3a-4816fdf28e57\n",
"hdl:21.14100/ea9bd752-fbf2-40c3-b888-bb02e5c4266a\n",
"hdl:21.14100/cbe24319-6c78-49d1-990d-303ea75391e7\n",
"hdl:21.14100/7fcd80ec-7274-4a25-b2c5-da774e901229\n",
"hdl:21.14100/3748cbec-88d1-47dc-aafa-acbddf56e920\n",
"hdl:21.14100/94f561f8-d886-4f73-8b09-cee90609dbd4\n",
"hdl:21.14100/10b76909-c912-4c3d-982d-997eabc8a650\n",
"hdl:21.14100/aef24b54-577f-4172-8014-8924239ee25a\n",
"hdl:21.14100/6f4ec184-e6ab-4c09-8233-932fbfc6b8f0\n",
"hdl:21.14100/4df161df-c651-4853-92d9-de995302d756\n",
"hdl:21.14100/f58a31d9-a5ff-4193-9267-9c46fca32f59\n",
"hdl:21.14100/bc54ee9e-498e-4b3e-80db-ddd42c46a26b\n",
"hdl:21.14100/61ab2375-6e44-4659-9f1e-4669686f0bd3\n",
"hdl:21.14100/421b3b35-c95d-48d2-b900-da14ba30b56d\n",
"hdl:21.14100/a9c9c5a7-70cd-45ce-a669-a8f2914905b4\n",
"hdl:21.14100/c2b0ca42-23c7-423d-b178-fe6b52f70eb1\n",
"hdl:21.14100/d976a3bb-7ce3-43ac-a507-5301459db7e3\n",
"hdl:21.14100/83f431cb-4a37-4f67-81c5-c31d295015dd\n",
"hdl:21.14100/58d033fb-788c-4062-a1be-b51b56fdf844\n",
"hdl:21.14100/4fdc6f0c-51c7-4905-9990-2f6d64546109\n",
"hdl:21.14100/a336e2d2-15f1-41c4-b389-bc700eeb809e\n",
"hdl:21.14100/35eb038b-b908-4578-94d9-40b027b66a53\n",
"hdl:21.14100/cb29f7f5-2620-43d9-920f-6d70baaf5f44\n",
"hdl:21.14100/fa5b182d-f20d-447b-b938-fa5c4a71aa18\n",
"hdl:21.14100/202a71fe-c947-4117-92c3-a98ece23d300\n",
"hdl:21.14100/341925bc-f31a-463b-bf17-f8bd1e2bc990\n",
"hdl:21.14100/68966558-1526-4e96-9519-991f7a4b929c\n",
"hdl:21.14100/441dec47-9017-4db7-8963-865f24634d18\n",
"hdl:21.14100/6c8bf14d-fa1a-4c4f-88aa-6d86ef91b029\n",
"hdl:21.14100/a5238bd2-4ccb-49ce-9f7f-4a9e7cc8e315\n",
"hdl:21.14100/aeaa822c-c5c0-47b5-96f3-fa4499f75fd5\n",
"hdl:21.14100/9b4e21d3-d023-460e-a3af-8b05b8f914da\n",
"hdl:21.14100/f02f38f2-03ff-4b9f-8a06-511a757d3786\n",
"hdl:21.14100/7bb74f46-351f-4034-905e-810badb7340f\n",
"hdl:21.14100/c7c5c47f-b205-44e6-9d3d-1da35ff230af\n",
"hdl:21.14100/ecb98e23-fe3c-41d2-ba64-64659e425652\n",
"hdl:21.14100/97d68d86-45a6-475d-989b-a74161d1faf3\n",
"hdl:21.14100/724843b0-764f-4750-bada-8f23857a5e4b\n",
"hdl:21.14100/fc2b737b-fc4e-4531-8f39-1712f68dfe83\n",
"hdl:21.14100/0aedb811-cf0c-4b52-97ef-a99276eeca2d\n",
"hdl:21.14100/199b72f0-29b4-4ac7-865b-25414ff92343\n",
"hdl:21.14100/5fd482bc-71c5-482c-ba0f-18bcef558c7d\n",
"hdl:21.14100/10bd995d-36e0-4bb4-81b0-7854f37578ca\n",
"hdl:21.14100/b525eb4e-5d4f-445e-814a-9a899515fff6\n",
"hdl:21.14100/4cb8ce05-9052-462e-a9f9-763e65a93a7d\n",
"hdl:21.14100/878827b8-6886-4241-ab5f-77b8d0e19df1\n",
"hdl:21.14100/819ebae0-c98a-4102-b165-8feb8ba31e6c\n",
"hdl:21.14100/0769e9de-596d-4ecb-b749-0e5c9d353806\n",
"hdl:21.14100/c9270505-585b-40bb-bcf6-582497aaf98e\n",
"hdl:21.14100/a59597f7-75f4-41af-9e8e-29288bf3f706\n",
"hdl:21.14100/9a4354fb-f197-47da-8130-310fe21c0b24\n",
"hdl:21.14100/1df07d18-79c6-48eb-be61-762fbf184710\n",
"hdl:21.14100/e14f3533-639d-460c-8fdf-e2666bb386c9\n",
"hdl:21.14100/d63bea7d-39ea-4c29-8e17-f90554bc1cd7\n",
"hdl:21.14100/be91ccfc-012c-48ed-a006-663f2d25c6d6\n",
"hdl:21.14100/c404943b-950f-425c-a0e4-5e02353c76b5\n",
"hdl:21.14100/a70a8979-bd30-4fc5-be6d-15e875cba1f3\n",
"hdl:21.14100/aac8265b-c2ff-43a1-93a1-aed2aa53a2e7\n",
"hdl:21.14100/77f221b5-b6cb-413f-9329-4fbc28f96d5e\n",
"hdl:21.14100/a2207e5f-0e53-49c9-89e0-2a5fc8abba17\n",
"hdl:21.14100/cf2d3bc9-3fe1-4be3-927c-6f81755b7b1c\n",
"hdl:21.14100/88179cb9-dd9c-47cd-8ea5-6a50a15cdb2e\n",
"hdl:21.14100/2f2bf731-d44b-4276-9538-ce8c41e98082\n",
"hdl:21.14100/37f9e376-be01-4d47-a3cd-97f868c4c31f\n",
"hdl:21.14100/8d1a29c2-51f3-4f3c-bd0e-8f27d93474a5\n",
"hdl:21.14100/49307071-7f54-4ffa-8334-68d1d3845e8b\n",
"hdl:21.14100/0aa7643b-cee5-4f6f-8dc7-a4c6876d12b0\n",
"hdl:21.14100/f921829a-5549-4171-9ad7-942c600fa05c\n",
"hdl:21.14100/b80abfee-2fd3-4176-a498-d791b3f893b9\n",
"hdl:21.14100/6781155c-1b21-4fe7-8697-955ca256e2e9\n",
"hdl:21.14100/0933e20b-9b9e-4e40-b554-24413083cb20\n",
"hdl:21.14100/c5d8b333-eb91-44cf-b126-54e5634ad629\n",
"hdl:21.14100/c4e1ee9e-1eed-43e6-8d4c-0f8c69f1c8cf\n",
"hdl:21.14100/f8c34ec8-0a7c-4076-b483-2e62368b2627\n",
"hdl:21.14100/48e74bfc-a020-4120-a462-673fcacaaf2f\n",
"hdl:21.14100/e8abe829-ac87-41ff-900c-9b1e5b9d224e\n",
"hdl:21.14100/ce4841cf-9c93-441a-a549-6994b31e9c1b\n",
"hdl:21.14100/4aa1d200-9b54-4e1c-9954-9e0f1a021f34\n",
"hdl:21.14100/acd2664c-c475-4596-8dab-5c2246891766\n",
"hdl:21.14100/50d6930c-fd46-43ca-b29f-56d0e12e65ec\n",
"hdl:21.14100/56033b97-b6a9-4124-828a-28df4311670d\n",
"hdl:21.14100/63ee76fd-dd94-4227-a103-9c5b226dad09\n",
"hdl:21.14100/de183adb-678a-4839-b29a-9a910e18c282\n",
"hdl:21.14100/253b86a9-0408-49dc-8f79-a6f216707b12\n",
"hdl:21.14100/3bc3a4a2-7072-4d97-9759-77713df2b136\n",
"hdl:21.14100/006f4b07-1688-4aa6-81f1-d564a327e0ae\n",
"hdl:21.14100/7293faf4-a0d9-4ba8-8e51-af8917973e0f\n",
"hdl:21.14100/cb46d783-bc6c-4c94-86fe-404d7bb1a28c\n",
"hdl:21.14100/0ecbebcd-5cb1-4fed-ace7-c5d5513ae7cd\n",
"hdl:21.14100/141f9726-822f-4a08-a0f6-87f36a65554f\n",
"hdl:21.14100/68ab9ae1-e11b-4e59-917a-a281a49b7e0c\n",
"hdl:21.14100/537df0be-a84d-4864-a5ca-c578041bb3c1\n",
"hdl:21.14100/f684a5f9-e6b8-43e4-bf74-0e44858503a0\n",
"hdl:21.14100/7b9659ac-5b55-423c-8b90-79e0838636b4\n",
"hdl:21.14100/51e19329-20fd-4d68-859b-abcd96a839f3\n",
"hdl:21.14100/f70ab0a8-6e06-4868-860f-77180e60cf02\n",
"hdl:21.14100/cf9c824d-32d8-4857-991e-6319a64129a5\n",
"hdl:21.14100/fb8f7411-f1e5-43e4-acdf-50dfd29bc3cb\n",
"hdl:21.14100/42559e6c-0496-4389-a43c-e1e0a072f95f\n",
"hdl:21.14100/20da83f6-5b16-4e25-bc4b-97c461a2bb26\n",
"hdl:21.14100/1f185df4-7a05-4dc4-afce-66535452e17d\n",
"hdl:21.14100/c8a014db-8dda-4286-9513-e0575848c68a\n",
"hdl:21.14100/27d87524-2ed2-4a3a-b18d-25a37353e205\n",
"hdl:21.14100/e9a39c30-a11f-4ef8-9464-67defd63d065\n",
"hdl:21.14100/34e3b3e9-06fb-4e51-9bb6-240993c1059c\n",
"hdl:21.14100/4e46e49c-ef07-477d-9840-e59391b67072\n",
"hdl:21.14100/ea050ef7-9a8e-449e-8630-62488d94fab8\n",
"hdl:21.14100/6cd057b0-8b81-48ba-b3ce-6fa6dc17fcb3\n",
"hdl:21.14100/7343ba70-e984-49c5-ae18-eff9e7762f1f\n",
"hdl:21.14100/237f0ebd-ce85-4129-ab56-3963ff46aae4\n",
"hdl:21.14100/ed52fd07-a3f1-4a67-a5a3-80a833788ad8\n",
"hdl:21.14100/9bcac3a4-3c51-47dc-aad7-274aba8f792c\n",
"hdl:21.14100/f8424a3c-93ea-401c-b3f9-0420b1219e75</dd><dt><span>variable_id :</span></dt><dd>hus</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>xios_commit :</span></dt><dd>1442-shuffle</dd><dt><span>netcdf_tracking_ids :</span></dt><dd>hdl:21.14100/492a68ab-d33c-4f2f-9e8f-30ce1723b3ba\n",
"hdl:21.14100/0140a771-1ab3-48b1-8718-621ca665ad46\n",
"hdl:21.14100/ab4a71bc-43cc-4385-964e-16a8686315be\n",
"hdl:21.14100/0f7cd531-9481-4c96-9ca2-6905ff337814\n",
"hdl:21.14100/b55ce485-76fb-4cbd-9ba9-ebaaa3541457\n",
"hdl:21.14100/ea1c1133-19d4-42a6-a404-e5293d46992c\n",
"hdl:21.14100/4b3b9069-143e-476d-ab65-c089fcff22e7\n",
"hdl:21.14100/dd641016-8012-4c5f-8ad3-0695aa0ca03c\n",
"hdl:21.14100/42edf35d-c545-4583-94b2-5f1923a41904\n",
"hdl:21.14100/542e17c8-50cc-4114-ba0b-38e94f64593b\n",
"hdl:21.14100/175ed349-01c3-4bc5-a4dd-93014da0eb96\n",
"hdl:21.14100/b7298fda-096d-4dbb-9dc0-9a2984cad7d2\n",
"hdl:21.14100/130b6d76-4084-4dd2-9a63-921640ddc14a\n",
"hdl:21.14100/59a1173b-8bde-4daf-987d-8091f7712f54\n",
"hdl:21.14100/6e9c4f14-5a89-4065-bfbc-4e4de51b6d7b\n",
"hdl:21.14100/063fda7d-6414-4e02-8e7f-80c63235608b\n",
"hdl:21.14100/556f880a-e2f6-46c0-8543-4f7b28f76324\n",
"hdl:21.14100/b0f67444-05f4-498f-ba3a-4816fdf28e57\n",
"hdl:21.14100/ea9bd752-fbf2-40c3-b888-bb02e5c4266a\n",
"hdl:21.14100/cbe24319-6c78-49d1-990d-303ea75391e7\n",
"hdl:21.14100/7fcd80ec-7274-4a25-b2c5-da774e901229\n",
"hdl:21.14100/3748cbec-88d1-47dc-aafa-acbddf56e920\n",
"hdl:21.14100/94f561f8-d886-4f73-8b09-cee90609dbd4\n",
"hdl:21.14100/10b76909-c912-4c3d-982d-997eabc8a650\n",
"hdl:21.14100/aef24b54-577f-4172-8014-8924239ee25a\n",
"hdl:21.14100/6f4ec184-e6ab-4c09-8233-932fbfc6b8f0\n",
"hdl:21.14100/4df161df-c651-4853-92d9-de995302d756\n",
"hdl:21.14100/f58a31d9-a5ff-4193-9267-9c46fca32f59\n",
"hdl:21.14100/bc54ee9e-498e-4b3e-80db-ddd42c46a26b\n",
"hdl:21.14100/61ab2375-6e44-4659-9f1e-4669686f0bd3\n",
"hdl:21.14100/421b3b35-c95d-48d2-b900-da14ba30b56d\n",
"hdl:21.14100/a9c9c5a7-70cd-45ce-a669-a8f2914905b4\n",
"hdl:21.14100/c2b0ca42-23c7-423d-b178-fe6b52f70eb1\n",
"hdl:21.14100/d976a3bb-7ce3-43ac-a507-5301459db7e3\n",
"hdl:21.14100/83f431cb-4a37-4f67-81c5-c31d295015dd\n",
"hdl:21.14100/58d033fb-788c-4062-a1be-b51b56fdf844\n",
"hdl:21.14100/4fdc6f0c-51c7-4905-9990-2f6d64546109\n",
"hdl:21.14100/a336e2d2-15f1-41c4-b389-bc700eeb809e\n",
"hdl:21.14100/35eb038b-b908-4578-94d9-40b027b66a53\n",
"hdl:21.14100/cb29f7f5-2620-43d9-920f-6d70baaf5f44\n",
"hdl:21.14100/fa5b182d-f20d-447b-b938-fa5c4a71aa18\n",
"hdl:21.14100/202a71fe-c947-4117-92c3-a98ece23d300\n",
"hdl:21.14100/341925bc-f31a-463b-bf17-f8bd1e2bc990\n",
"hdl:21.14100/68966558-1526-4e96-9519-991f7a4b929c\n",
"hdl:21.14100/441dec47-9017-4db7-8963-865f24634d18\n",
"hdl:21.14100/6c8bf14d-fa1a-4c4f-88aa-6d86ef91b029\n",
"hdl:21.14100/a5238bd2-4ccb-49ce-9f7f-4a9e7cc8e315\n",
"hdl:21.14100/aeaa822c-c5c0-47b5-96f3-fa4499f75fd5\n",
"hdl:21.14100/9b4e21d3-d023-460e-a3af-8b05b8f914da\n",
"hdl:21.14100/f02f38f2-03ff-4b9f-8a06-511a757d3786\n",
"hdl:21.14100/7bb74f46-351f-4034-905e-810badb7340f\n",
"hdl:21.14100/c7c5c47f-b205-44e6-9d3d-1da35ff230af\n",
"hdl:21.14100/ecb98e23-fe3c-41d2-ba64-64659e425652\n",
"hdl:21.14100/97d68d86-45a6-475d-989b-a74161d1faf3\n",
"hdl:21.14100/724843b0-764f-4750-bada-8f23857a5e4b\n",
"hdl:21.14100/fc2b737b-fc4e-4531-8f39-1712f68dfe83\n",
"hdl:21.14100/0aedb811-cf0c-4b52-97ef-a99276eeca2d\n",
"hdl:21.14100/199b72f0-29b4-4ac7-865b-25414ff92343\n",
"hdl:21.14100/5fd482bc-71c5-482c-ba0f-18bcef558c7d\n",
"hdl:21.14100/10bd995d-36e0-4bb4-81b0-7854f37578ca\n",
"hdl:21.14100/b525eb4e-5d4f-445e-814a-9a899515fff6\n",
"hdl:21.14100/4cb8ce05-9052-462e-a9f9-763e65a93a7d\n",
"hdl:21.14100/878827b8-6886-4241-ab5f-77b8d0e19df1\n",
"hdl:21.14100/819ebae0-c98a-4102-b165-8feb8ba31e6c\n",
"hdl:21.14100/0769e9de-596d-4ecb-b749-0e5c9d353806\n",
"hdl:21.14100/c9270505-585b-40bb-bcf6-582497aaf98e\n",
"hdl:21.14100/a59597f7-75f4-41af-9e8e-29288bf3f706\n",
"hdl:21.14100/9a4354fb-f197-47da-8130-310fe21c0b24\n",
"hdl:21.14100/1df07d18-79c6-48eb-be61-762fbf184710\n",
"hdl:21.14100/e14f3533-639d-460c-8fdf-e2666bb386c9\n",
"hdl:21.14100/d63bea7d-39ea-4c29-8e17-f90554bc1cd7\n",
"hdl:21.14100/be91ccfc-012c-48ed-a006-663f2d25c6d6\n",
"hdl:21.14100/c404943b-950f-425c-a0e4-5e02353c76b5\n",
"hdl:21.14100/a70a8979-bd30-4fc5-be6d-15e875cba1f3\n",
"hdl:21.14100/aac8265b-c2ff-43a1-93a1-aed2aa53a2e7\n",
"hdl:21.14100/77f221b5-b6cb-413f-9329-4fbc28f96d5e\n",
"hdl:21.14100/a2207e5f-0e53-49c9-89e0-2a5fc8abba17\n",
"hdl:21.14100/cf2d3bc9-3fe1-4be3-927c-6f81755b7b1c\n",
"hdl:21.14100/88179cb9-dd9c-47cd-8ea5-6a50a15cdb2e\n",
"hdl:21.14100/2f2bf731-d44b-4276-9538-ce8c41e98082\n",
"hdl:21.14100/37f9e376-be01-4d47-a3cd-97f868c4c31f\n",
"hdl:21.14100/8d1a29c2-51f3-4f3c-bd0e-8f27d93474a5\n",
"hdl:21.14100/49307071-7f54-4ffa-8334-68d1d3845e8b\n",
"hdl:21.14100/0aa7643b-cee5-4f6f-8dc7-a4c6876d12b0\n",
"hdl:21.14100/f921829a-5549-4171-9ad7-942c600fa05c\n",
"hdl:21.14100/b80abfee-2fd3-4176-a498-d791b3f893b9\n",
"hdl:21.14100/6781155c-1b21-4fe7-8697-955ca256e2e9\n",
"hdl:21.14100/0933e20b-9b9e-4e40-b554-24413083cb20\n",
"hdl:21.14100/c5d8b333-eb91-44cf-b126-54e5634ad629\n",
"hdl:21.14100/c4e1ee9e-1eed-43e6-8d4c-0f8c69f1c8cf\n",
"hdl:21.14100/f8c34ec8-0a7c-4076-b483-2e62368b2627\n",
"hdl:21.14100/48e74bfc-a020-4120-a462-673fcacaaf2f\n",
"hdl:21.14100/e8abe829-ac87-41ff-900c-9b1e5b9d224e\n",
"hdl:21.14100/ce4841cf-9c93-441a-a549-6994b31e9c1b\n",
"hdl:21.14100/4aa1d200-9b54-4e1c-9954-9e0f1a021f34\n",
"hdl:21.14100/acd2664c-c475-4596-8dab-5c2246891766\n",
"hdl:21.14100/50d6930c-fd46-43ca-b29f-56d0e12e65ec\n",
"hdl:21.14100/56033b97-b6a9-4124-828a-28df4311670d\n",
"hdl:21.14100/63ee76fd-dd94-4227-a103-9c5b226dad09\n",
"hdl:21.14100/de183adb-678a-4839-b29a-9a910e18c282\n",
"hdl:21.14100/253b86a9-0408-49dc-8f79-a6f216707b12\n",
"hdl:21.14100/3bc3a4a2-7072-4d97-9759-77713df2b136\n",
"hdl:21.14100/006f4b07-1688-4aa6-81f1-d564a327e0ae\n",
"hdl:21.14100/7293faf4-a0d9-4ba8-8e51-af8917973e0f\n",
"hdl:21.14100/cb46d783-bc6c-4c94-86fe-404d7bb1a28c\n",
"hdl:21.14100/0ecbebcd-5cb1-4fed-ace7-c5d5513ae7cd\n",
"hdl:21.14100/141f9726-822f-4a08-a0f6-87f36a65554f\n",
"hdl:21.14100/68ab9ae1-e11b-4e59-917a-a281a49b7e0c\n",
"hdl:21.14100/537df0be-a84d-4864-a5ca-c578041bb3c1\n",
"hdl:21.14100/f684a5f9-e6b8-43e4-bf74-0e44858503a0\n",
"hdl:21.14100/7b9659ac-5b55-423c-8b90-79e0838636b4\n",
"hdl:21.14100/51e19329-20fd-4d68-859b-abcd96a839f3\n",
"hdl:21.14100/f70ab0a8-6e06-4868-860f-77180e60cf02\n",
"hdl:21.14100/cf9c824d-32d8-4857-991e-6319a64129a5\n",
"hdl:21.14100/fb8f7411-f1e5-43e4-acdf-50dfd29bc3cb\n",
"hdl:21.14100/42559e6c-0496-4389-a43c-e1e0a072f95f\n",
"hdl:21.14100/20da83f6-5b16-4e25-bc4b-97c461a2bb26\n",
"hdl:21.14100/1f185df4-7a05-4dc4-afce-66535452e17d\n",
"hdl:21.14100/c8a014db-8dda-4286-9513-e0575848c68a\n",
"hdl:21.14100/27d87524-2ed2-4a3a-b18d-25a37353e205\n",
"hdl:21.14100/e9a39c30-a11f-4ef8-9464-67defd63d065\n",
"hdl:21.14100/34e3b3e9-06fb-4e51-9bb6-240993c1059c\n",
"hdl:21.14100/4e46e49c-ef07-477d-9840-e59391b67072\n",
"hdl:21.14100/ea050ef7-9a8e-449e-8630-62488d94fab8\n",
"hdl:21.14100/6cd057b0-8b81-48ba-b3ce-6fa6dc17fcb3\n",
"hdl:21.14100/7343ba70-e984-49c5-ae18-eff9e7762f1f\n",
"hdl:21.14100/237f0ebd-ce85-4129-ab56-3963ff46aae4\n",
"hdl:21.14100/ed52fd07-a3f1-4a67-a5a3-80a833788ad8\n",
"hdl:21.14100/9bcac3a4-3c51-47dc-aad7-274aba8f792c\n",
"hdl:21.14100/f8424a3c-93ea-401c-b3f9-0420b1219e75</dd><dt><span>version_id :</span></dt><dd>v20180917</dd><dt><span>intake_esm_vars :</span></dt><dd>[&#x27;hus&#x27;]</dd><dt><span>intake_esm_attrs:activity_id :</span></dt><dd>CMIP</dd><dt><span>intake_esm_attrs:institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>intake_esm_attrs:source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>intake_esm_attrs:experiment_id :</span></dt><dd>historical</dd><dt><span>intake_esm_attrs:member_id :</span></dt><dd>r1i1p1f2</dd><dt><span>intake_esm_attrs:table_id :</span></dt><dd>6hrLev</dd><dt><span>intake_esm_attrs:variable_id :</span></dt><dd>hus</dd><dt><span>intake_esm_attrs:grid_label :</span></dt><dd>gr</dd><dt><span>intake_esm_attrs:zstore :</span></dt><dd>gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM-CM6-1/historical/r1i1p1f2/6hrLev/hus/gr/v20180917/</dd><dt><span>intake_esm_attrs:version :</span></dt><dd>20180917</dd><dt><span>intake_esm_attrs:_data_format_ :</span></dt><dd>zarr</dd><dt><span>intake_esm_dataset_key :</span></dt><dd>CNRM-CM6-1/r1i1p1f2/hus/6hrLev/gr</dd></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-af8363a0-2841-4701-a116-dda77079eb51' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-af8363a0-2841-4701-a116-dda77079eb51' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-6f61142e-3ae0-4636-a733-c806fbdfa606' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-6f61142e-3ae0-4636-a733-c806fbdfa606' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-61088651-f77e-4cc8-965c-2bb858ec0f26' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-61088651-f77e-4cc8-965c-2bb858ec0f26' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-15f6a5d1-201b-4ff3-806a-436429d14ea4' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-15f6a5d1-201b-4ff3-806a-436429d14ea4' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-6d28366b-3823-4cf2-b025-86a43025b2e0' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-6d28366b-3823-4cf2-b025-86a43025b2e0' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-4a8b318d-4b36-4610-9927-d7f5464a7186' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-4a8b318d-4b36-4610-9927-d7f5464a7186' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-c7194741-3511-4edf-a320-8e1fdb445676' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-c7194741-3511-4edf-a320-8e1fdb445676' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-bea3799e-9f6b-4084-9624-452a5e7eb65d' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-bea3799e-9f6b-4084-9624-452a5e7eb65d' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>ta</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-2eb422e6-c4d0-4a19-9e59-663cddc019b4' class='xr-section-summary-in' type='checkbox' ><label for='section-2eb422e6-c4d0-4a19-9e59-663cddc019b4' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>6hrLev</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-241b83d3-ebc6-41e4-ab8d-ff554788727c' class='xr-section-summary-in' type='checkbox' ><label for='section-241b83d3-ebc6-41e4-ab8d-ff554788727c' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (lev: 91, y: 128, x: 256, time: 94964, member_id: 1,\n",
" dcpp_init_year: 1, bnds: 2)\n",
"Coordinates:\n",
" * lev (lev) float64 0.9988 0.9959 0.992 ... 2.951e-05 9.869e-06\n",
" * y (y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * x (x) float64 0.0 1.406 2.812 4.219 ... 355.8 357.2 358.6\n",
" * time (time) datetime64[ns] 1950-01-01T06:00:00 ... 2015-01-01\n",
" time_bounds (time, bnds) datetime64[ns] dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;\n",
" ap_bnds (bnds, lev) float64 dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;\n",
" b_bnds (bnds, lev) float64 dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;\n",
" lev_bounds (lev, bnds) float64 dask.array&lt;chunksize=(91, 2), meta=np.ndarray&gt;\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.6 358.6 358.6\n",
" lat (x, y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * member_id (member_id) object &#x27;r1i1p1f2&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds\n",
"Data variables:\n",
" ap (lev) float64 dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;\n",
" b (lev) float64 dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;\n",
" ps (time, y, x) float32 dask.array&lt;chunksize=(15, 128, 256), meta=np.ndarray&gt;\n",
" ta (member_id, dcpp_init_year, time, lev, y, x) float32 dask.array&lt;chunksize=(1, 1, 15, 91, 128, 256), meta=np.ndarray&gt;\n",
"Attributes: (12/69)\n",
" CMIP6_CV_version: cv=6.2.3.0-7-g2019642\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" EXPID: CNRM-CM6-1_historical_r1i1p1f2\n",
" activity_id: CMIP\n",
" arpege_minor_version: 6.3.2\n",
" branch_method: standard\n",
" ... ...\n",
" intake_esm_attrs:variable_id: ta\n",
" intake_esm_attrs:grid_label: gr\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM...\n",
" intake_esm_attrs:version: 20180917\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CNRM-CM6-1/r1i1p1f2/ta/6hrLev/gr</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>gr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-d3c2ffb1-0e13-4708-8e49-12fc87c574c1' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-d3c2ffb1-0e13-4708-8e49-12fc87c574c1' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-427e49f0-feaf-4530-8339-7e61aea1f8e9' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-427e49f0-feaf-4530-8339-7e61aea1f8e9' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>lev</span>: 91</li><li><span class='xr-has-index'>y</span>: 128</li><li><span class='xr-has-index'>x</span>: 256</li><li><span class='xr-has-index'>time</span>: 94964</li><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span>bnds</span>: 2</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-a884c531-0901-4bf2-bb33-9af18949486c' class='xr-section-summary-in' type='checkbox' checked><label for='section-a884c531-0901-4bf2-bb33-9af18949486c' class='xr-section-summary' >Coordinates: <span>(12)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>lev</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.9988 0.9959 ... 9.869e-06</div><input id='attrs-a59475d6-67e4-4093-b004-edb063dbc400' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a59475d6-67e4-4093-b004-edb063dbc400' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-931ccc31-be42-4aa8-b280-5ab7a1179c76' class='xr-var-data-in' type='checkbox'><label for='data-931ccc31-be42-4aa8-b280-5ab7a1179c76' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>lev_bounds</dd><dt><span>formula :</span></dt><dd>p = ap + b*ps</dd><dt><span>formula_term :</span></dt><dd>ap: ap b: b ps: ps</dd><dt><span>long_name :</span></dt><dd>atmospheric model level</dd><dt><span>name :</span></dt><dd>lev</dd><dt><span>positive :</span></dt><dd>down</dd><dt><span>standard_name :</span></dt><dd>atmosphere_hybrid_sigma_pressure_coordinate</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>array([9.988151e-01, 9.959496e-01, 9.919785e-01, 9.867627e-01, 9.803135e-01,\n",
" 9.727423e-01, 9.639018e-01, 9.535363e-01, 9.416150e-01, 9.281436e-01,\n",
" 9.131237e-01, 8.965609e-01, 8.784941e-01, 8.589981e-01, 8.381457e-01,\n",
" 8.160020e-01, 7.926548e-01, 7.682247e-01, 7.428293e-01, 7.165710e-01,\n",
" 6.895664e-01, 6.619600e-01, 6.338908e-01, 6.054764e-01, 5.768424e-01,\n",
" 5.481361e-01, 5.195776e-01, 4.914467e-01, 4.640177e-01, 4.375466e-01,\n",
" 4.122711e-01, 3.882926e-01, 3.655744e-01, 3.440645e-01, 3.237057e-01,\n",
" 3.044435e-01, 2.862251e-01, 2.690002e-01, 2.527204e-01, 2.373396e-01,\n",
" 2.228133e-01, 2.090992e-01, 1.961565e-01, 1.839464e-01, 1.724318e-01,\n",
" 1.615771e-01, 1.513484e-01, 1.417132e-01, 1.326406e-01, 1.241009e-01,\n",
" 1.160565e-01, 1.084543e-01, 1.012399e-01, 9.436681e-02, 8.779560e-02,\n",
" 8.149272e-02, 7.542972e-02, 6.958413e-02, 6.395049e-02, 5.853933e-02,\n",
" 5.336302e-02, 4.843146e-02, 4.375126e-02, 3.932698e-02, 3.516221e-02,\n",
" 3.125945e-02, 2.762004e-02, 2.424404e-02, 2.113017e-02, 1.827577e-02,\n",
" 1.567665e-02, 1.332716e-02, 1.122009e-02, 9.346718e-03, 7.696813e-03,\n",
" 6.258735e-03, 5.019516e-03, 3.965015e-03, 3.080094e-03, 2.348848e-03,\n",
" 1.754865e-03, 1.281528e-03, 9.123277e-04, 6.312078e-04, 4.228940e-04,\n",
" 2.732123e-04, 1.693656e-04, 1.001505e-04, 5.609681e-05, 2.951331e-05,\n",
" 9.869430e-06])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-f022440b-4b34-456d-80e8-0728583ea7da' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f022440b-4b34-456d-80e8-0728583ea7da' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3b159737-31f6-48a8-9029-4bb2e34a84bb' class='xr-var-data-in' type='checkbox'><label for='data-3b159737-31f6-48a8-9029-4bb2e34a84bb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd></dl></div><div class='xr-var-data'><pre>array([-88.927735, -87.538705, -86.141472, -84.742386, -83.342596, -81.942466,\n",
" -80.542146, -79.14171 , -77.741196, -76.340629, -74.940023, -73.539389,\n",
" -72.138732, -70.738059, -69.337372, -67.936673, -66.535966, -65.135251,\n",
" -63.73453 , -62.333803, -60.933072, -59.532337, -58.131598, -56.730857,\n",
" -55.330112, -53.929366, -52.528617, -51.127867, -49.727115, -48.326361,\n",
" -46.925606, -45.52485 , -44.124093, -42.723335, -41.322576, -39.921816,\n",
" -38.521056, -37.120294, -35.719532, -34.31877 , -32.918007, -31.517244,\n",
" -30.11648 , -28.715716, -27.314951, -25.914186, -24.513421, -23.112655,\n",
" -21.71189 , -20.311124, -18.910357, -17.509591, -16.108824, -14.708057,\n",
" -13.30729 , -11.906523, -10.505756, -9.104989, -7.704221, -6.303454,\n",
" -4.902687, -3.501919, -2.101151, -0.700384, 0.700384, 2.101151,\n",
" 3.501919, 4.902687, 6.303454, 7.704221, 9.104989, 10.505756,\n",
" 11.906523, 13.30729 , 14.708057, 16.108824, 17.509591, 18.910357,\n",
" 20.311124, 21.71189 , 23.112655, 24.513421, 25.914186, 27.314951,\n",
" 28.715716, 30.11648 , 31.517244, 32.918007, 34.31877 , 35.719532,\n",
" 37.120294, 38.521056, 39.921816, 41.322576, 42.723335, 44.124093,\n",
" 45.52485 , 46.925606, 48.326361, 49.727115, 51.127867, 52.528617,\n",
" 53.929366, 55.330112, 56.730857, 58.131598, 59.532337, 60.933072,\n",
" 62.333803, 63.73453 , 65.135251, 66.535966, 67.936673, 69.337372,\n",
" 70.738059, 72.138732, 73.539389, 74.940023, 76.340629, 77.741196,\n",
" 79.14171 , 80.542146, 81.942466, 83.342596, 84.742386, 86.141472,\n",
" 87.538705, 88.927735])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 1.406 2.812 ... 357.2 358.6</div><input id='attrs-cf7ec60f-4ead-476b-b458-c381cb275fdc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cf7ec60f-4ead-476b-b458-c381cb275fdc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a29e6c9e-3fe3-4517-8461-33ac24e14182' class='xr-var-data-in' type='checkbox'><label for='data-a29e6c9e-3fe3-4517-8461-33ac24e14182' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd></dl></div><div class='xr-var-data'><pre>array([ 0. , 1.40625, 2.8125 , ..., 355.78125, 357.1875 , 358.59375])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>1950-01-01T06:00:00 ... 2015-01-01</div><input id='attrs-3f4d1a48-e5c2-4c02-9bad-ad8690b3e30c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3f4d1a48-e5c2-4c02-9bad-ad8690b3e30c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7ddb66f1-8b18-4331-859f-58bf00df0c27' class='xr-var-data-in' type='checkbox'><label for='data-7ddb66f1-8b18-4331-859f-58bf00df0c27' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bounds</dd><dt><span>long_name :</span></dt><dd>Time axis</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>time_origin :</span></dt><dd>1850-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1950-01-01T06:00:00.000000000&#x27;, &#x27;1950-01-01T12:00:00.000000000&#x27;,\n",
" &#x27;1950-01-01T18:00:00.000000000&#x27;, ..., &#x27;2014-12-31T12:00:00.000000000&#x27;,\n",
" &#x27;2014-12-31T18:00:00.000000000&#x27;, &#x27;2015-01-01T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_bounds</span></div><div class='xr-var-dims'>(time, bnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;</div><input id='attrs-97e8dfd7-d574-4fff-85c9-175164d2b12b' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-97e8dfd7-d574-4fff-85c9-175164d2b12b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8ac02e9e-1ee0-4dc5-be56-e29ec5d38eaf' class='xr-var-data-in' type='checkbox'><label for='data-8ac02e9e-1ee0-4dc5-be56-e29ec5d38eaf' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.45 MiB </td>\n",
" <td> 370.95 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94964, 2) </td>\n",
" <td> (47482, 1) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> datetime64[ns] numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"75\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"60\" x2=\"25\" y2=\"60\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"12\" y2=\"120\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"45.412617\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,45.412617,60.000000)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ap_bnds</span></div><div class='xr-var-dims'>(bnds, lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;</div><input id='attrs-94e00413-0f4d-45e4-b9bb-ab40368874da' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-94e00413-0f4d-45e4-b9bb-ab40368874da' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-76a87413-bbc2-4fbf-9d7b-303cf03f6a92' class='xr-var-data-in' type='checkbox'><label for='data-76a87413-bbc2-4fbf-9d7b-303cf03f6a92' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: ap(k+1/2)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (2, 91) </td>\n",
" <td> (2, 91) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"79\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"29\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"29\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,29.56599059001709 0.0,29.56599059001709\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"49.565991\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"14.782995\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,14.782995)\">2</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>b_bnds</span></div><div class='xr-var-dims'>(bnds, lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;</div><input id='attrs-386d31fc-996c-4471-bbe9-e35ea903830a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-386d31fc-996c-4471-bbe9-e35ea903830a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4ac13659-d772-4a85-b7d1-198a83ad20ea' class='xr-var-data-in' type='checkbox'><label for='data-4ac13659-d772-4a85-b7d1-198a83ad20ea' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: b(k+1/2)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (2, 91) </td>\n",
" <td> (2, 91) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"79\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"29\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"29\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,29.56599059001709 0.0,29.56599059001709\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"49.565991\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"14.782995\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,14.782995)\">2</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lev_bounds</span></div><div class='xr-var-dims'>(lev, bnds)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91, 2), meta=np.ndarray&gt;</div><input id='attrs-a49b009b-ac13-4a0c-a1d7-5e5e15cf3b2d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a49b009b-ac13-4a0c-a1d7-5e5e15cf3b2d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0932aa90-7895-49e6-bd43-e3e0241ab104' class='xr-var-data-in' type='checkbox'><label for='data-0932aa90-7895-49e6-bd43-e3e0241ab104' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>formula :</span></dt><dd>p = ap + b*ps</dd><dt><span>formula_term :</span></dt><dd>ap: ap b: b ps: ps</dd><dt><span>standard_name :</span></dt><dd>atmosphere_hybrid_sigma_pressure_coordinate</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91, 2) </td>\n",
" <td> (91, 2) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"79\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"29\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"29\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"29\" y1=\"0\" x2=\"29\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 29.56599059001709,0.0 29.56599059001709,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"14.782995\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"49.565991\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,49.565991,60.000000)\">91</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>360.0 360.0 360.0 ... 358.6 358.6</div><input id='attrs-bbc94232-2000-41ed-bb75-e17d0daf5b58' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-bbc94232-2000-41ed-bb75-e17d0daf5b58' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-08befefb-d74b-4f31-b137-beda777b343d' class='xr-var-data-in' type='checkbox'><label for='data-08befefb-d74b-4f31-b137-beda777b343d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[360. , 360. , 360. , ..., 360. , 360. ,\n",
" 360. ],\n",
" [ 1.40625, 1.40625, 1.40625, ..., 1.40625, 1.40625,\n",
" 1.40625],\n",
" [ 2.8125 , 2.8125 , 2.8125 , ..., 2.8125 , 2.8125 ,\n",
" 2.8125 ],\n",
" ...,\n",
" [355.78125, 355.78125, 355.78125, ..., 355.78125, 355.78125,\n",
" 355.78125],\n",
" [357.1875 , 357.1875 , 357.1875 , ..., 357.1875 , 357.1875 ,\n",
" 357.1875 ],\n",
" [358.59375, 358.59375, 358.59375, ..., 358.59375, 358.59375,\n",
" 358.59375]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-bdcf4427-630b-41f9-9cc3-4904bdc9ece2' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-bdcf4427-630b-41f9-9cc3-4904bdc9ece2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ed453fd9-4208-40fc-8a7c-0fcebf55a690' class='xr-var-data-in' type='checkbox'><label for='data-ed453fd9-4208-40fc-8a7c-0fcebf55a690' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" ...,\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f2&#x27;</div><input id='attrs-70156e7d-3f79-47e8-aeeb-713a6597a3bf' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-70156e7d-3f79-47e8-aeeb-713a6597a3bf' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-28becc59-39d5-46ec-b7e2-8fbfc44b33d8' class='xr-var-data-in' type='checkbox'><label for='data-28becc59-39d5-46ec-b7e2-8fbfc44b33d8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f2&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-2c5e58c5-652b-4155-b646-c285cc4b583f' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-2c5e58c5-652b-4155-b646-c285cc4b583f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f3fbed6a-8b11-44b5-8a40-a228d55bdb30' class='xr-var-data-in' type='checkbox'><label for='data-f3fbed6a-8b11-44b5-8a40-a228d55bdb30' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-e48c92bf-6e13-4a94-a704-0bd31ed0ee7f' class='xr-section-summary-in' type='checkbox' checked><label for='section-e48c92bf-6e13-4a94-a704-0bd31ed0ee7f' class='xr-section-summary' >Data variables: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>ap</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;</div><input id='attrs-079ea8bf-e2d2-4127-8737-a7325037d830' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-079ea8bf-e2d2-4127-8737-a7325037d830' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-05198b2a-d6e9-4a4b-8dcb-04701ea274af' class='xr-var-data-in' type='checkbox'><label for='data-05198b2a-d6e9-4a4b-8dcb-04701ea274af' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: ap(k)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 728 B </td>\n",
" <td> 728 B </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91,) </td>\n",
" <td> (91,) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.86984685721921 0.0,25.86984685721921\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"45.869847\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"12.934923\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,12.934923)\">1</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>b</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;</div><input id='attrs-f08ce843-77f1-409b-adca-c382fa06953e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f08ce843-77f1-409b-adca-c382fa06953e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f1c3a436-1bcf-4315-aea8-da6a3acbdb8d' class='xr-var-data-in' type='checkbox'><label for='data-f1c3a436-1bcf-4315-aea8-da6a3acbdb8d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: b(k)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 728 B </td>\n",
" <td> 728 B </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91,) </td>\n",
" <td> (91,) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.86984685721921 0.0,25.86984685721921\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"45.869847\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"12.934923\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,12.934923)\">1</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ps</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(15, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-9fe97c02-2990-47f7-95ae-4a1f3669f30b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9fe97c02-2990-47f7-95ae-4a1f3669f30b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bad9deac-b77d-4c5c-9d50-830324988e80' class='xr-var-data-in' type='checkbox'><label for='data-bad9deac-b77d-4c5c-9d50-830324988e80' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>surface pressure, not mean sea level pressure</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>6 h</dd><dt><span>long_name :</span></dt><dd>Surface Air Pressure</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>surface_air_pressure</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 11.59 GiB </td>\n",
" <td> 1.88 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94964, 128, 256) </td>\n",
" <td> (15, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 6331 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"156\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"43\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"32\" y2=\"47\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"36\" y2=\"51\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"39\" y2=\"55\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"58\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"47\" y2=\"62\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"50\" y2=\"66\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"69\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"62\" y2=\"77\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"65\" y2=\"81\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"69\" y2=\"84\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"76\" y2=\"92\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,96.00085180870013 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"35\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"39\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"42\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"46\" y2=\"11\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"50\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"53\" y2=\"18\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"57\" y2=\"22\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"61\" y2=\"26\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"65\" y2=\"29\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"68\" y2=\"33\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"72\" y2=\"37\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"76\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"79\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"87\" y2=\"52\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"91\" y2=\"55\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"94\" y2=\"59\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"98\" y2=\"63\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"102\" y2=\"66\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"35\" y1=\"0\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 35.41261651458248,0.0 106.00085180870013,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"96\" x2=\"106\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"106\" y1=\"70\" x2=\"106\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 106.00085180870013,70.58823529411765 106.00085180870013,96.00085180870013 80.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"93.294544\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,126.000852,83.294544)\">128</text>\n",
" <text x=\"35.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,80.706734)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ta</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, lev, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 15, 91, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-bf67ff1c-27c6-4817-92ba-b8c204891f4b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bf67ff1c-27c6-4817-92ba-b8c204891f4b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9da72152-88d0-4234-ac8d-623ae30f7b70' class='xr-var-data-in' type='checkbox'><label for='data-9da72152-88d0-4234-ac8d-623ae30f7b70' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>Air Temperature</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>6 h</dd><dt><span>long_name :</span></dt><dd>Air Temperature</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>air_temperature</dd><dt><span>units :</span></dt><dd>K</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.03 TiB </td>\n",
" <td> 170.62 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (1, 1, 94964, 91, 128, 256) </td>\n",
" <td> (1, 1, 15, 91, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 6331 chunks in 3 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"518\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"0\" x2=\"28\" y2=\"14\" />\n",
" <line x1=\"17\" y1=\"0\" x2=\"32\" y2=\"14\" />\n",
" <line x1=\"21\" y1=\"0\" x2=\"36\" y2=\"14\" />\n",
" <line x1=\"24\" y1=\"0\" x2=\"39\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"0\" x2=\"43\" y2=\"14\" />\n",
" <line x1=\"32\" y1=\"0\" x2=\"47\" y2=\"14\" />\n",
" <line x1=\"36\" y1=\"0\" x2=\"51\" y2=\"14\" />\n",
" <line x1=\"39\" y1=\"0\" x2=\"54\" y2=\"14\" />\n",
" <line x1=\"43\" y1=\"0\" x2=\"58\" y2=\"14\" />\n",
" <line x1=\"47\" y1=\"0\" x2=\"62\" y2=\"14\" />\n",
" <line x1=\"51\" y1=\"0\" x2=\"66\" y2=\"14\" />\n",
" <line x1=\"54\" y1=\"0\" x2=\"69\" y2=\"14\" />\n",
" <line x1=\"58\" y1=\"0\" x2=\"73\" y2=\"14\" />\n",
" <line x1=\"62\" y1=\"0\" x2=\"77\" y2=\"14\" />\n",
" <line x1=\"66\" y1=\"0\" x2=\"81\" y2=\"14\" />\n",
" <line x1=\"69\" y1=\"0\" x2=\"84\" y2=\"14\" />\n",
" <line x1=\"73\" y1=\"0\" x2=\"88\" y2=\"14\" />\n",
" <line x1=\"77\" y1=\"0\" x2=\"92\" y2=\"14\" />\n",
" <line x1=\"81\" y1=\"0\" x2=\"96\" y2=\"14\" />\n",
" <line x1=\"84\" y1=\"0\" x2=\"99\" y2=\"14\" />\n",
" <line x1=\"88\" y1=\"0\" x2=\"103\" y2=\"14\" />\n",
" <line x1=\"92\" y1=\"0\" x2=\"107\" y2=\"14\" />\n",
" <line x1=\"96\" y1=\"0\" x2=\"111\" y2=\"14\" />\n",
" <line x1=\"99\" y1=\"0\" x2=\"114\" y2=\"14\" />\n",
" <line x1=\"103\" y1=\"0\" x2=\"118\" y2=\"14\" />\n",
" <line x1=\"107\" y1=\"0\" x2=\"122\" y2=\"14\" />\n",
" <line x1=\"111\" y1=\"0\" x2=\"126\" y2=\"14\" />\n",
" <line x1=\"114\" y1=\"0\" x2=\"129\" y2=\"14\" />\n",
" <line x1=\"118\" y1=\"0\" x2=\"133\" y2=\"14\" />\n",
" <line x1=\"122\" y1=\"0\" x2=\"137\" y2=\"14\" />\n",
" <line x1=\"126\" y1=\"0\" x2=\"141\" y2=\"14\" />\n",
" <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
" <line x1=\"28\" y1=\"14\" x2=\"28\" y2=\"40\" />\n",
" <line x1=\"32\" y1=\"14\" x2=\"32\" y2=\"40\" />\n",
" <line x1=\"36\" y1=\"14\" x2=\"36\" y2=\"40\" />\n",
" <line x1=\"39\" y1=\"14\" x2=\"39\" y2=\"40\" />\n",
" <line x1=\"43\" y1=\"14\" x2=\"43\" y2=\"40\" />\n",
" <line x1=\"47\" y1=\"14\" x2=\"47\" y2=\"40\" />\n",
" <line x1=\"51\" y1=\"14\" x2=\"51\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"14\" x2=\"54\" y2=\"40\" />\n",
" <line x1=\"58\" y1=\"14\" x2=\"58\" y2=\"40\" />\n",
" <line x1=\"62\" y1=\"14\" x2=\"62\" y2=\"40\" />\n",
" <line x1=\"66\" y1=\"14\" x2=\"66\" y2=\"40\" />\n",
" <line x1=\"69\" y1=\"14\" x2=\"69\" y2=\"40\" />\n",
" <line x1=\"73\" y1=\"14\" x2=\"73\" y2=\"40\" />\n",
" <line x1=\"77\" y1=\"14\" x2=\"77\" y2=\"40\" />\n",
" <line x1=\"81\" y1=\"14\" x2=\"81\" y2=\"40\" />\n",
" <line x1=\"84\" y1=\"14\" x2=\"84\" y2=\"40\" />\n",
" <line x1=\"88\" y1=\"14\" x2=\"88\" y2=\"40\" />\n",
" <line x1=\"92\" y1=\"14\" x2=\"92\" y2=\"40\" />\n",
" <line x1=\"96\" y1=\"14\" x2=\"96\" y2=\"40\" />\n",
" <line x1=\"99\" y1=\"14\" x2=\"99\" y2=\"40\" />\n",
" <line x1=\"103\" y1=\"14\" x2=\"103\" y2=\"40\" />\n",
" <line x1=\"107\" y1=\"14\" x2=\"107\" y2=\"40\" />\n",
" <line x1=\"111\" y1=\"14\" x2=\"111\" y2=\"40\" />\n",
" <line x1=\"114\" y1=\"14\" x2=\"114\" y2=\"40\" />\n",
" <line x1=\"118\" y1=\"14\" x2=\"118\" y2=\"40\" />\n",
" <line x1=\"122\" y1=\"14\" x2=\"122\" y2=\"40\" />\n",
" <line x1=\"126\" y1=\"14\" x2=\"126\" y2=\"40\" />\n",
" <line x1=\"129\" y1=\"14\" x2=\"129\" y2=\"40\" />\n",
" <line x1=\"133\" y1=\"14\" x2=\"133\" y2=\"40\" />\n",
" <line x1=\"137\" y1=\"14\" x2=\"137\" y2=\"40\" />\n",
" <line x1=\"141\" y1=\"14\" x2=\"141\" y2=\"40\" />\n",
" <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"84.948598\" y=\"60.361214\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >94964</text>\n",
" <text x=\"164.948598\" y=\"27.654906\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.948598,27.654906)\">1</text>\n",
" <text x=\"7.474299\" y=\"52.886915\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.474299,52.886915)\">1</text>\n",
"\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"228\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"214\" y1=\"25\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"214\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"14\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"214.0,0.0 228.9485979497544,14.948597949754403 228.9485979497544,40.36121446433689 214.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"239\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"14\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"228\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"239\" y1=\"0\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"214.0,0.0 239.41261651458248,0.0 254.36121446433688,14.948597949754403 228.9485979497544,14.948597949754403\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"228\" y1=\"14\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"40\" x2=\"254\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"228\" y1=\"14\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
" <line x1=\"254\" y1=\"14\" x2=\"254\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"228.9485979497544,14.948597949754403 254.36121446433688,14.948597949754403 254.36121446433688,40.36121446433689 228.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"241.654906\" y=\"60.361214\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"274.361214\" y=\"27.654906\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,274.361214,27.654906)\">128</text>\n",
" <text x=\"211.474299\" y=\"52.886915\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,211.474299,52.886915)\">91</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-29814995-aa2c-4537-b846-6f0ac49dc0fc' class='xr-section-summary-in' type='checkbox' ><label for='section-29814995-aa2c-4537-b846-6f0ac49dc0fc' class='xr-section-summary' >Attributes: <span>(69)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>CMIP6_CV_version :</span></dt><dd>cv=6.2.3.0-7-g2019642</dd><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>EXPID :</span></dt><dd>CNRM-CM6-1_historical_r1i1p1f2</dd><dt><span>activity_id :</span></dt><dd>CMIP</dd><dt><span>arpege_minor_version :</span></dt><dd>6.3.2</dd><dt><span>branch_method :</span></dt><dd>standard</dd><dt><span>branch_time_in_child :</span></dt><dd>0.0</dd><dt><span>branch_time_in_parent :</span></dt><dd>0.0</dd><dt><span>contact :</span></dt><dd>contact.cmip@meteo.fr</dd><dt><span>creation_date :</span></dt><dd>2018-07-13T22:27:31Z</dd><dt><span>data_specs_version :</span></dt><dd>01.00.21</dd><dt><span>description :</span></dt><dd>CMIP6 historical</dd><dt><span>dr2xml_md5sum :</span></dt><dd>d6225e658d7de0912fca2a4293dbe2a7</dd><dt><span>dr2xml_version :</span></dt><dd>1.10</dd><dt><span>experiment :</span></dt><dd>all-forcing simulation of the recent past</dd><dt><span>experiment_id :</span></dt><dd>historical</dd><dt><span>external_variables :</span></dt><dd>areacella</dd><dt><span>forcing_index :</span></dt><dd>2</dd><dt><span>frequency :</span></dt><dd>6hrPt</dd><dt><span>further_info_url :</span></dt><dd>https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-CM6-1.historical.none.r1i1p1f2</dd><dt><span>grid :</span></dt><dd>data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid</dd><dt><span>grid_label :</span></dt><dd>gr</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)</dd><dt><span>institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>license :</span></dt><dd>CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at http://www.umr-cnrm.fr/cmip6/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.</dd><dt><span>mip_era :</span></dt><dd>CMIP6</dd><dt><span>name :</span></dt><dd>/scratch/work/voldoire/outputs/CMIP6/DECK/CNRM-CM6-1_historical_r1i1p1f2/19500101/ta_6hrLev_CNRM-CM6-1_historical_r1i1p1f2_gr_%start_date%-%end_date%</dd><dt><span>nemo_gelato_commit :</span></dt><dd>49095b3accd5d4c_6524fe19b00467a</dd><dt><span>nominal_resolution :</span></dt><dd>250 km</dd><dt><span>parent_activity_id :</span></dt><dd>CMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>piControl</dd><dt><span>parent_mip_era :</span></dt><dd>CMIP6</dd><dt><span>parent_source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>parent_time_units :</span></dt><dd>days since 1850-01-01 00:00:00</dd><dt><span>parent_variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>atmos</dd><dt><span>references :</span></dt><dd>http://www.umr-cnrm.fr/cmip6/references</dd><dt><span>source :</span></dt><dd>CNRM-CM6-1 (2017): aerosol: prescribed monthly fields computed by TACTIC_v2 scheme atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) atmosChem: OZL_v2 land: Surfex 8.0c ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) seaIce: Gelato 6.1</dd><dt><span>source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>status :</span></dt><dd>2019-12-31;created; by gcs.cmip6.ldeo@gmail.com</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>table_id :</span></dt><dd>6hrLev</dd><dt><span>title :</span></dt><dd>CNRM-CM6-1 model output prepared for CMIP6 / CMIP historical</dd><dt><span>tracking_id :</span></dt><dd>hdl:21.14100/2bd05dbf-0e68-40ad-bd18-c77befe4fb71\n",
"hdl:21.14100/d9fba512-dc73-44e2-a2c2-534890ed9a60\n",
"hdl:21.14100/01602aad-78a2-4694-8508-6312c4e29ec5\n",
"hdl:21.14100/e8994724-b696-4af3-a80e-12531dc02944\n",
"hdl:21.14100/2e84ea96-f5f5-46ad-b2ce-5d7fec4e8264\n",
"hdl:21.14100/f0f1b12e-f035-46ef-9f26-6e74966f9137\n",
"hdl:21.14100/eaa55ce4-f2a7-4987-8247-ebff59cd7e3a\n",
"hdl:21.14100/e8d5d966-ff12-4ea9-802b-bce76ed4c4de\n",
"hdl:21.14100/3136faf9-9ff4-4efd-877d-2d12d1c64fd7\n",
"hdl:21.14100/4648bb60-a6c9-4156-bb8b-9702cd8d4764\n",
"hdl:21.14100/24736302-4235-4264-b4fe-7bbed675c6d1\n",
"hdl:21.14100/d8b09857-16f6-4671-8ba4-246cb453c93d\n",
"hdl:21.14100/c7170e0b-f4e0-4e49-ad26-f29a853d86e6\n",
"hdl:21.14100/414d8c2c-431c-4109-b71d-14d61f51137c\n",
"hdl:21.14100/d0fe6a6f-00a1-4f7a-9dae-b1225434dd1e\n",
"hdl:21.14100/861074a2-5661-46b9-8ae6-8ac888528211\n",
"hdl:21.14100/bfea41da-5e8b-4617-ab0d-13db20c57f0c\n",
"hdl:21.14100/162a21a6-ea94-480c-b8bc-05881b42e61d\n",
"hdl:21.14100/e0065083-2002-4d01-b943-d7a56d3fe780\n",
"hdl:21.14100/1cee19f1-f673-4cd9-b312-a35c5bed2d33\n",
"hdl:21.14100/01e2f7b4-57b7-495d-9c0f-d44141eb84e3\n",
"hdl:21.14100/57efcfad-c9be-45d2-b43a-b5101b796c87\n",
"hdl:21.14100/6b2a614f-d632-4ad4-8b99-659081943412\n",
"hdl:21.14100/c3108ad3-895b-44e0-acce-cb25eda6d871\n",
"hdl:21.14100/4cc741d5-6651-4c94-b282-1915132f3523\n",
"hdl:21.14100/0e9f365f-4bc7-4d88-845a-69a157250523\n",
"hdl:21.14100/5f6b97a6-8fff-47d8-b01c-eed337b6b6a7\n",
"hdl:21.14100/87e74632-313c-46cf-b961-73ae5a3fb7e1\n",
"hdl:21.14100/3ee7bcf9-0ec2-41ae-ad27-1df29a331862\n",
"hdl:21.14100/8ce63a2e-9baf-43ec-a1e4-68111a3e3d91\n",
"hdl:21.14100/8c010824-1ed5-43a1-adb6-b14b0809e1e0\n",
"hdl:21.14100/d5914b91-98b1-47d6-a61a-c8a234e20289\n",
"hdl:21.14100/a80ad773-bc14-43a5-8525-f5961447d560\n",
"hdl:21.14100/51cc3872-9b62-4bb6-a885-7cae0b59fd2d\n",
"hdl:21.14100/edb2a32c-b48e-4108-9192-2ca0eba431e5\n",
"hdl:21.14100/a637ae08-5db2-4d99-b342-1934281d60f5\n",
"hdl:21.14100/a8219ae8-51dc-4822-8623-c28292a90bf3\n",
"hdl:21.14100/455f1e24-43be-4d4a-9336-5a1a5a62073d\n",
"hdl:21.14100/97f36e75-409f-40eb-8237-6248aa25b684\n",
"hdl:21.14100/9fcc156a-f33e-497c-acaf-469226fd77cf\n",
"hdl:21.14100/bc1bab45-b102-4dde-b18f-7d498eb46715\n",
"hdl:21.14100/68b316bc-8350-40ae-98ec-0f3ee1cc7226\n",
"hdl:21.14100/77649156-e14d-44e1-b70d-c1566dd5bd28\n",
"hdl:21.14100/ad84909b-1204-4365-b338-f5056d0e8ef9\n",
"hdl:21.14100/2ac310e0-e358-46e8-9443-05e2e8707070\n",
"hdl:21.14100/06652248-c954-4020-b494-f2f18697e23b\n",
"hdl:21.14100/71b81a4f-43c7-4d94-b093-06751dca4c1b\n",
"hdl:21.14100/9a933b6e-907c-46bb-b874-e7bf5aa7fa44\n",
"hdl:21.14100/3c61191f-faff-4a12-b6b0-3bde1129851d\n",
"hdl:21.14100/8be8ceee-04ad-4da5-85a1-1e7bf8914274\n",
"hdl:21.14100/82dcd96e-95a8-4913-a1f5-95d43ec33bee\n",
"hdl:21.14100/efebd04a-4138-4145-8353-2b5be14c0e0d\n",
"hdl:21.14100/34ec11f3-e263-4dc0-9fcd-3c8dccddc30a\n",
"hdl:21.14100/eb464784-784f-456a-91da-e9bc37d02a59\n",
"hdl:21.14100/c5a6e395-7c9f-4de7-a8e3-4eff5822c640\n",
"hdl:21.14100/bbd4ed5a-5bb2-4bbd-a34a-3820100a5880\n",
"hdl:21.14100/9064e073-8646-4d02-ade6-164ce527327c\n",
"hdl:21.14100/0722b229-1eec-4084-84ad-9ad6504fbfa7\n",
"hdl:21.14100/7dda976d-94a9-4ac0-8c77-8363791c0aad\n",
"hdl:21.14100/fcc4b727-c2ce-4d60-8e13-7d40995f21d7\n",
"hdl:21.14100/f00495b0-a8d0-479d-8b65-00600d50e297\n",
"hdl:21.14100/270074e7-ae8c-4e01-9117-10a965526981\n",
"hdl:21.14100/343cde00-7833-485b-8c2d-12e353a0db16\n",
"hdl:21.14100/361d4abe-783a-42d9-b740-d8bdb34f5540\n",
"hdl:21.14100/c8750bf2-c98b-49c2-bddf-03acd378cb9c\n",
"hdl:21.14100/61bc96a3-151b-4ec4-bbb9-4f06127590de\n",
"hdl:21.14100/31643cc0-aa6f-4831-998d-0cd135bc590b\n",
"hdl:21.14100/a216e9b7-612b-4803-a49e-79ec8da22991\n",
"hdl:21.14100/a488215f-222c-455b-890d-e8429d72ca88\n",
"hdl:21.14100/3f6c2e89-9955-4c6f-981f-c8a78f1353d7\n",
"hdl:21.14100/697dad0d-f28c-4655-bd71-4bfae28201ce\n",
"hdl:21.14100/0075b119-f3dd-4d72-a25e-be892670cf6d\n",
"hdl:21.14100/2cbb00d2-8002-4a7b-9828-16cd68775969\n",
"hdl:21.14100/714c9f39-3466-4c61-9767-69e21a41ae78\n",
"hdl:21.14100/814f667b-2860-4ff3-a31b-3f3ee2691dfc\n",
"hdl:21.14100/c67d5c0c-7153-4b81-9d5b-4075c0f0de0c\n",
"hdl:21.14100/20bbbcbc-9b96-41b9-9a00-fcf38e140f42\n",
"hdl:21.14100/ea0b29d0-cb0f-45d7-88ff-672b9345fabe\n",
"hdl:21.14100/f7a1d9e2-5c3c-4d2c-85bc-10aa066bd40b\n",
"hdl:21.14100/da9ff924-1d9d-4f99-8a61-f0d833987b3a\n",
"hdl:21.14100/a904c854-577a-4620-b70c-5f3d89bb7062\n",
"hdl:21.14100/4d7eb47e-8351-40a4-9da0-f3d2e2e52e36\n",
"hdl:21.14100/36a7df2e-9659-40cf-8e09-fe208c5f6087\n",
"hdl:21.14100/4876c663-5efa-4f0c-b249-61f3c8510a32\n",
"hdl:21.14100/a9f8eff0-36de-4564-88ed-403aa60512c9\n",
"hdl:21.14100/f8ab3f56-f38f-4f6c-ba5d-8bc6c25c6f00\n",
"hdl:21.14100/f0d93044-7f78-4bc6-aaed-1eac624f568a\n",
"hdl:21.14100/31c4fd0d-7ccc-414a-846c-938a6c792f4d\n",
"hdl:21.14100/fcd9aee0-1348-477c-9cf1-93727c46d77f\n",
"hdl:21.14100/507e514f-c013-49b8-b6a3-c5157b258b41\n",
"hdl:21.14100/04285db1-1cc1-4449-af2e-60a71a1d4a09\n",
"hdl:21.14100/26a69c7e-8858-42ec-a345-05a0f8e16bde\n",
"hdl:21.14100/fdcff95f-9a60-4b06-a66c-e48b1bb7198a\n",
"hdl:21.14100/23937c03-35e8-47b0-a87e-651736751802\n",
"hdl:21.14100/02b899e5-dc1e-45c7-9f01-b7527c2bcfa5\n",
"hdl:21.14100/fe326796-5550-4bc3-b3fa-338eceec7cfe\n",
"hdl:21.14100/92e7602c-df65-4ec6-b8a7-cec2561ca6b8\n",
"hdl:21.14100/d1999886-fe09-446a-a9af-80507d311341\n",
"hdl:21.14100/a2b00652-0765-4292-bdc6-e11d72e4c2dd\n",
"hdl:21.14100/71e524dc-e4ef-4d04-9d5c-9e5d327815df\n",
"hdl:21.14100/b19205ea-4925-406a-84f7-6ec437651cc2\n",
"hdl:21.14100/62850a9d-c26e-43f6-91da-d8a6fa5c7ecc\n",
"hdl:21.14100/d50c2f45-0d81-4d08-93fc-10ae56eeefa9\n",
"hdl:21.14100/24849c69-d3ee-4524-aa4b-d1bd6add91c5\n",
"hdl:21.14100/3df51d95-0b27-4a95-b14d-847fa136b61a\n",
"hdl:21.14100/af163a8e-e1ac-44a2-8af5-021813956639\n",
"hdl:21.14100/e4ac3e07-3e44-4dea-931a-57a3e828a9cf\n",
"hdl:21.14100/29f61841-16bd-4452-a530-b137066da136\n",
"hdl:21.14100/917d332b-21c4-4928-9d97-76775cab53ab\n",
"hdl:21.14100/4415cebb-fe02-45e4-8a0d-f54202a5df65\n",
"hdl:21.14100/74d10099-959c-4b07-9285-7290d5130ffd\n",
"hdl:21.14100/42784172-40f8-47ff-a96b-c18e4443b36a\n",
"hdl:21.14100/85ebdced-493f-49c9-a13a-216542c7bedc\n",
"hdl:21.14100/010ba364-13d3-4fa9-8ed3-5a58e2dea5ad\n",
"hdl:21.14100/38debe71-dd39-410a-9857-8a81b60ff844\n",
"hdl:21.14100/f4a22be9-5737-4f04-930c-087a7200dfa2\n",
"hdl:21.14100/15a0c64a-c48f-4d2d-b2a6-dc9c24e7b035\n",
"hdl:21.14100/e64668e3-dd14-4025-a6b2-108edea3ad99\n",
"hdl:21.14100/53003733-e6fe-4fc1-b865-cceb99aaf2d5\n",
"hdl:21.14100/e9027223-7fb6-47f7-a00d-ae1a410b153e\n",
"hdl:21.14100/4a82bee5-c54a-4f72-8cde-6d1f9151d14f\n",
"hdl:21.14100/2b19be0d-c7d4-45f9-874e-68ba9d5bc9c2\n",
"hdl:21.14100/33bd0135-05b7-46ef-aabc-f6c4feae4e23\n",
"hdl:21.14100/4d9f1841-641c-4aaa-a08e-ef270258e86c\n",
"hdl:21.14100/0ea763b7-3fb5-4205-ac25-567e3331b7b9\n",
"hdl:21.14100/0fedc93d-7707-402a-9ddf-609fa8a2a79d\n",
"hdl:21.14100/b4f37f92-ac81-4ade-a92d-f35e36757ec8\n",
"hdl:21.14100/9538ebed-2693-4e70-b5e0-52d9d38817bc\n",
"hdl:21.14100/7839b348-d8f2-4522-9e43-18116de36ab0\n",
"hdl:21.14100/ed59e52f-1029-4d5f-8eb4-dd2779b6da26</dd><dt><span>variable_id :</span></dt><dd>ta</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>xios_commit :</span></dt><dd>1442-shuffle</dd><dt><span>netcdf_tracking_ids :</span></dt><dd>hdl:21.14100/2bd05dbf-0e68-40ad-bd18-c77befe4fb71\n",
"hdl:21.14100/d9fba512-dc73-44e2-a2c2-534890ed9a60\n",
"hdl:21.14100/01602aad-78a2-4694-8508-6312c4e29ec5\n",
"hdl:21.14100/e8994724-b696-4af3-a80e-12531dc02944\n",
"hdl:21.14100/2e84ea96-f5f5-46ad-b2ce-5d7fec4e8264\n",
"hdl:21.14100/f0f1b12e-f035-46ef-9f26-6e74966f9137\n",
"hdl:21.14100/eaa55ce4-f2a7-4987-8247-ebff59cd7e3a\n",
"hdl:21.14100/e8d5d966-ff12-4ea9-802b-bce76ed4c4de\n",
"hdl:21.14100/3136faf9-9ff4-4efd-877d-2d12d1c64fd7\n",
"hdl:21.14100/4648bb60-a6c9-4156-bb8b-9702cd8d4764\n",
"hdl:21.14100/24736302-4235-4264-b4fe-7bbed675c6d1\n",
"hdl:21.14100/d8b09857-16f6-4671-8ba4-246cb453c93d\n",
"hdl:21.14100/c7170e0b-f4e0-4e49-ad26-f29a853d86e6\n",
"hdl:21.14100/414d8c2c-431c-4109-b71d-14d61f51137c\n",
"hdl:21.14100/d0fe6a6f-00a1-4f7a-9dae-b1225434dd1e\n",
"hdl:21.14100/861074a2-5661-46b9-8ae6-8ac888528211\n",
"hdl:21.14100/bfea41da-5e8b-4617-ab0d-13db20c57f0c\n",
"hdl:21.14100/162a21a6-ea94-480c-b8bc-05881b42e61d\n",
"hdl:21.14100/e0065083-2002-4d01-b943-d7a56d3fe780\n",
"hdl:21.14100/1cee19f1-f673-4cd9-b312-a35c5bed2d33\n",
"hdl:21.14100/01e2f7b4-57b7-495d-9c0f-d44141eb84e3\n",
"hdl:21.14100/57efcfad-c9be-45d2-b43a-b5101b796c87\n",
"hdl:21.14100/6b2a614f-d632-4ad4-8b99-659081943412\n",
"hdl:21.14100/c3108ad3-895b-44e0-acce-cb25eda6d871\n",
"hdl:21.14100/4cc741d5-6651-4c94-b282-1915132f3523\n",
"hdl:21.14100/0e9f365f-4bc7-4d88-845a-69a157250523\n",
"hdl:21.14100/5f6b97a6-8fff-47d8-b01c-eed337b6b6a7\n",
"hdl:21.14100/87e74632-313c-46cf-b961-73ae5a3fb7e1\n",
"hdl:21.14100/3ee7bcf9-0ec2-41ae-ad27-1df29a331862\n",
"hdl:21.14100/8ce63a2e-9baf-43ec-a1e4-68111a3e3d91\n",
"hdl:21.14100/8c010824-1ed5-43a1-adb6-b14b0809e1e0\n",
"hdl:21.14100/d5914b91-98b1-47d6-a61a-c8a234e20289\n",
"hdl:21.14100/a80ad773-bc14-43a5-8525-f5961447d560\n",
"hdl:21.14100/51cc3872-9b62-4bb6-a885-7cae0b59fd2d\n",
"hdl:21.14100/edb2a32c-b48e-4108-9192-2ca0eba431e5\n",
"hdl:21.14100/a637ae08-5db2-4d99-b342-1934281d60f5\n",
"hdl:21.14100/a8219ae8-51dc-4822-8623-c28292a90bf3\n",
"hdl:21.14100/455f1e24-43be-4d4a-9336-5a1a5a62073d\n",
"hdl:21.14100/97f36e75-409f-40eb-8237-6248aa25b684\n",
"hdl:21.14100/9fcc156a-f33e-497c-acaf-469226fd77cf\n",
"hdl:21.14100/bc1bab45-b102-4dde-b18f-7d498eb46715\n",
"hdl:21.14100/68b316bc-8350-40ae-98ec-0f3ee1cc7226\n",
"hdl:21.14100/77649156-e14d-44e1-b70d-c1566dd5bd28\n",
"hdl:21.14100/ad84909b-1204-4365-b338-f5056d0e8ef9\n",
"hdl:21.14100/2ac310e0-e358-46e8-9443-05e2e8707070\n",
"hdl:21.14100/06652248-c954-4020-b494-f2f18697e23b\n",
"hdl:21.14100/71b81a4f-43c7-4d94-b093-06751dca4c1b\n",
"hdl:21.14100/9a933b6e-907c-46bb-b874-e7bf5aa7fa44\n",
"hdl:21.14100/3c61191f-faff-4a12-b6b0-3bde1129851d\n",
"hdl:21.14100/8be8ceee-04ad-4da5-85a1-1e7bf8914274\n",
"hdl:21.14100/82dcd96e-95a8-4913-a1f5-95d43ec33bee\n",
"hdl:21.14100/efebd04a-4138-4145-8353-2b5be14c0e0d\n",
"hdl:21.14100/34ec11f3-e263-4dc0-9fcd-3c8dccddc30a\n",
"hdl:21.14100/eb464784-784f-456a-91da-e9bc37d02a59\n",
"hdl:21.14100/c5a6e395-7c9f-4de7-a8e3-4eff5822c640\n",
"hdl:21.14100/bbd4ed5a-5bb2-4bbd-a34a-3820100a5880\n",
"hdl:21.14100/9064e073-8646-4d02-ade6-164ce527327c\n",
"hdl:21.14100/0722b229-1eec-4084-84ad-9ad6504fbfa7\n",
"hdl:21.14100/7dda976d-94a9-4ac0-8c77-8363791c0aad\n",
"hdl:21.14100/fcc4b727-c2ce-4d60-8e13-7d40995f21d7\n",
"hdl:21.14100/f00495b0-a8d0-479d-8b65-00600d50e297\n",
"hdl:21.14100/270074e7-ae8c-4e01-9117-10a965526981\n",
"hdl:21.14100/343cde00-7833-485b-8c2d-12e353a0db16\n",
"hdl:21.14100/361d4abe-783a-42d9-b740-d8bdb34f5540\n",
"hdl:21.14100/c8750bf2-c98b-49c2-bddf-03acd378cb9c\n",
"hdl:21.14100/61bc96a3-151b-4ec4-bbb9-4f06127590de\n",
"hdl:21.14100/31643cc0-aa6f-4831-998d-0cd135bc590b\n",
"hdl:21.14100/a216e9b7-612b-4803-a49e-79ec8da22991\n",
"hdl:21.14100/a488215f-222c-455b-890d-e8429d72ca88\n",
"hdl:21.14100/3f6c2e89-9955-4c6f-981f-c8a78f1353d7\n",
"hdl:21.14100/697dad0d-f28c-4655-bd71-4bfae28201ce\n",
"hdl:21.14100/0075b119-f3dd-4d72-a25e-be892670cf6d\n",
"hdl:21.14100/2cbb00d2-8002-4a7b-9828-16cd68775969\n",
"hdl:21.14100/714c9f39-3466-4c61-9767-69e21a41ae78\n",
"hdl:21.14100/814f667b-2860-4ff3-a31b-3f3ee2691dfc\n",
"hdl:21.14100/c67d5c0c-7153-4b81-9d5b-4075c0f0de0c\n",
"hdl:21.14100/20bbbcbc-9b96-41b9-9a00-fcf38e140f42\n",
"hdl:21.14100/ea0b29d0-cb0f-45d7-88ff-672b9345fabe\n",
"hdl:21.14100/f7a1d9e2-5c3c-4d2c-85bc-10aa066bd40b\n",
"hdl:21.14100/da9ff924-1d9d-4f99-8a61-f0d833987b3a\n",
"hdl:21.14100/a904c854-577a-4620-b70c-5f3d89bb7062\n",
"hdl:21.14100/4d7eb47e-8351-40a4-9da0-f3d2e2e52e36\n",
"hdl:21.14100/36a7df2e-9659-40cf-8e09-fe208c5f6087\n",
"hdl:21.14100/4876c663-5efa-4f0c-b249-61f3c8510a32\n",
"hdl:21.14100/a9f8eff0-36de-4564-88ed-403aa60512c9\n",
"hdl:21.14100/f8ab3f56-f38f-4f6c-ba5d-8bc6c25c6f00\n",
"hdl:21.14100/f0d93044-7f78-4bc6-aaed-1eac624f568a\n",
"hdl:21.14100/31c4fd0d-7ccc-414a-846c-938a6c792f4d\n",
"hdl:21.14100/fcd9aee0-1348-477c-9cf1-93727c46d77f\n",
"hdl:21.14100/507e514f-c013-49b8-b6a3-c5157b258b41\n",
"hdl:21.14100/04285db1-1cc1-4449-af2e-60a71a1d4a09\n",
"hdl:21.14100/26a69c7e-8858-42ec-a345-05a0f8e16bde\n",
"hdl:21.14100/fdcff95f-9a60-4b06-a66c-e48b1bb7198a\n",
"hdl:21.14100/23937c03-35e8-47b0-a87e-651736751802\n",
"hdl:21.14100/02b899e5-dc1e-45c7-9f01-b7527c2bcfa5\n",
"hdl:21.14100/fe326796-5550-4bc3-b3fa-338eceec7cfe\n",
"hdl:21.14100/92e7602c-df65-4ec6-b8a7-cec2561ca6b8\n",
"hdl:21.14100/d1999886-fe09-446a-a9af-80507d311341\n",
"hdl:21.14100/a2b00652-0765-4292-bdc6-e11d72e4c2dd\n",
"hdl:21.14100/71e524dc-e4ef-4d04-9d5c-9e5d327815df\n",
"hdl:21.14100/b19205ea-4925-406a-84f7-6ec437651cc2\n",
"hdl:21.14100/62850a9d-c26e-43f6-91da-d8a6fa5c7ecc\n",
"hdl:21.14100/d50c2f45-0d81-4d08-93fc-10ae56eeefa9\n",
"hdl:21.14100/24849c69-d3ee-4524-aa4b-d1bd6add91c5\n",
"hdl:21.14100/3df51d95-0b27-4a95-b14d-847fa136b61a\n",
"hdl:21.14100/af163a8e-e1ac-44a2-8af5-021813956639\n",
"hdl:21.14100/e4ac3e07-3e44-4dea-931a-57a3e828a9cf\n",
"hdl:21.14100/29f61841-16bd-4452-a530-b137066da136\n",
"hdl:21.14100/917d332b-21c4-4928-9d97-76775cab53ab\n",
"hdl:21.14100/4415cebb-fe02-45e4-8a0d-f54202a5df65\n",
"hdl:21.14100/74d10099-959c-4b07-9285-7290d5130ffd\n",
"hdl:21.14100/42784172-40f8-47ff-a96b-c18e4443b36a\n",
"hdl:21.14100/85ebdced-493f-49c9-a13a-216542c7bedc\n",
"hdl:21.14100/010ba364-13d3-4fa9-8ed3-5a58e2dea5ad\n",
"hdl:21.14100/38debe71-dd39-410a-9857-8a81b60ff844\n",
"hdl:21.14100/f4a22be9-5737-4f04-930c-087a7200dfa2\n",
"hdl:21.14100/15a0c64a-c48f-4d2d-b2a6-dc9c24e7b035\n",
"hdl:21.14100/e64668e3-dd14-4025-a6b2-108edea3ad99\n",
"hdl:21.14100/53003733-e6fe-4fc1-b865-cceb99aaf2d5\n",
"hdl:21.14100/e9027223-7fb6-47f7-a00d-ae1a410b153e\n",
"hdl:21.14100/4a82bee5-c54a-4f72-8cde-6d1f9151d14f\n",
"hdl:21.14100/2b19be0d-c7d4-45f9-874e-68ba9d5bc9c2\n",
"hdl:21.14100/33bd0135-05b7-46ef-aabc-f6c4feae4e23\n",
"hdl:21.14100/4d9f1841-641c-4aaa-a08e-ef270258e86c\n",
"hdl:21.14100/0ea763b7-3fb5-4205-ac25-567e3331b7b9\n",
"hdl:21.14100/0fedc93d-7707-402a-9ddf-609fa8a2a79d\n",
"hdl:21.14100/b4f37f92-ac81-4ade-a92d-f35e36757ec8\n",
"hdl:21.14100/9538ebed-2693-4e70-b5e0-52d9d38817bc\n",
"hdl:21.14100/7839b348-d8f2-4522-9e43-18116de36ab0\n",
"hdl:21.14100/ed59e52f-1029-4d5f-8eb4-dd2779b6da26</dd><dt><span>version_id :</span></dt><dd>v20180917</dd><dt><span>intake_esm_vars :</span></dt><dd>[&#x27;ta&#x27;]</dd><dt><span>intake_esm_attrs:activity_id :</span></dt><dd>CMIP</dd><dt><span>intake_esm_attrs:institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>intake_esm_attrs:source_id :</span></dt><dd>CNRM-CM6-1</dd><dt><span>intake_esm_attrs:experiment_id :</span></dt><dd>historical</dd><dt><span>intake_esm_attrs:member_id :</span></dt><dd>r1i1p1f2</dd><dt><span>intake_esm_attrs:table_id :</span></dt><dd>6hrLev</dd><dt><span>intake_esm_attrs:variable_id :</span></dt><dd>ta</dd><dt><span>intake_esm_attrs:grid_label :</span></dt><dd>gr</dd><dt><span>intake_esm_attrs:zstore :</span></dt><dd>gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM-CM6-1/historical/r1i1p1f2/6hrLev/ta/gr/v20180917/</dd><dt><span>intake_esm_attrs:version :</span></dt><dd>20180917</dd><dt><span>intake_esm_attrs:_data_format_ :</span></dt><dd>zarr</dd><dt><span>intake_esm_dataset_key :</span></dt><dd>CNRM-CM6-1/r1i1p1f2/ta/6hrLev/gr</dd></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-ce30ff54-9d11-49ea-9cfc-1229d88bf1ba' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-ce30ff54-9d11-49ea-9cfc-1229d88bf1ba' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-d1ff2390-eaf7-45df-ba19-17673d71eb14' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-d1ff2390-eaf7-45df-ba19-17673d71eb14' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-407c524d-f209-462e-9a85-16246f1eaa63' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-407c524d-f209-462e-9a85-16246f1eaa63' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-eaedc67b-798e-426e-a1cf-45fd620fe638' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-eaedc67b-798e-426e-a1cf-45fd620fe638' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-055fd90f-09cd-411f-9252-af32abdb33fa' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-055fd90f-09cd-411f-9252-af32abdb33fa' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-b17b9757-fac6-421d-8a60-49ce27f067b4' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b17b9757-fac6-421d-8a60-49ce27f067b4' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-6dc4c4df-cd3b-48b2-8da3-39eef44074b7' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-6dc4c4df-cd3b-48b2-8da3-39eef44074b7' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-777fc71a-3053-48ba-9989-fafa0a68f803' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-777fc71a-3053-48ba-9989-fafa0a68f803' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-840df584-d3d1-4032-8134-4551715dbf45' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-840df584-d3d1-4032-8134-4551715dbf45' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-84c27223-bce9-46db-acf8-033b4ba05259' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-84c27223-bce9-46db-acf8-033b4ba05259' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-54a700b8-e6ee-473a-ba36-e45298f27dc7' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-54a700b8-e6ee-473a-ba36-e45298f27dc7' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-86659731-d699-4eb9-aea3-36ac3e03314e' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-86659731-d699-4eb9-aea3-36ac3e03314e' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-a148d629-cf7d-429f-98a1-313cec37fe2c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-a148d629-cf7d-429f-98a1-313cec37fe2c' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-67ca8a20-2aad-44bb-b142-e6e95be708fe' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-67ca8a20-2aad-44bb-b142-e6e95be708fe' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-e31567c7-6d54-474c-827c-ea9828533b81' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-e31567c7-6d54-474c-827c-ea9828533b81' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-ff51218b-e17f-4b5e-b3de-707299f911fd' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-ff51218b-e17f-4b5e-b3de-707299f911fd' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>CNRM-ESM2-1</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-a0afaf4c-cd4b-44c3-80c3-7abdc0ee00ea' class='xr-section-summary-in' type='checkbox' ><label for='section-a0afaf4c-cd4b-44c3-80c3-7abdc0ee00ea' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>r1i1p1f2</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-266bf466-7c15-4742-8d89-63c6ea4c2863' class='xr-section-summary-in' type='checkbox' ><label for='section-266bf466-7c15-4742-8d89-63c6ea4c2863' class='xr-section-summary' >Groups: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>ta</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-900aaebb-1f13-471a-ae01-03b908398819' class='xr-section-summary-in' type='checkbox' ><label for='section-900aaebb-1f13-471a-ae01-03b908398819' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>6hrLev</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-68e1d62c-4530-494e-87e6-d655118d7603' class='xr-section-summary-in' type='checkbox' ><label for='section-68e1d62c-4530-494e-87e6-d655118d7603' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (lev: 91, y: 128, x: 256, time: 94964, member_id: 1,\n",
" dcpp_init_year: 1, bnds: 2)\n",
"Coordinates:\n",
" * lev (lev) float64 0.9988 0.9959 0.992 ... 2.951e-05 9.869e-06\n",
" * y (y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * x (x) float64 0.0 1.406 2.812 4.219 ... 355.8 357.2 358.6\n",
" * time (time) datetime64[ns] 1950-01-01T06:00:00 ... 2015-01-01\n",
" time_bounds (time, bnds) datetime64[ns] dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;\n",
" ap_bnds (bnds, lev) float64 dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;\n",
" b_bnds (bnds, lev) float64 dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;\n",
" lev_bounds (lev, bnds) float64 dask.array&lt;chunksize=(91, 2), meta=np.ndarray&gt;\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.6 358.6 358.6\n",
" lat (x, y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * member_id (member_id) object &#x27;r1i1p1f2&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds\n",
"Data variables:\n",
" ap (lev) float64 dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;\n",
" b (lev) float64 dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;\n",
" ps (time, y, x) float32 dask.array&lt;chunksize=(15, 128, 256), meta=np.ndarray&gt;\n",
" ta (member_id, dcpp_init_year, time, lev, y, x) float32 dask.array&lt;chunksize=(1, 1, 15, 91, 128, 256), meta=np.ndarray&gt;\n",
"Attributes: (12/68)\n",
" CMIP6_CV_version: cv=6.2.3.0-7-g2019642\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" EXPID: CNRM-ESM2-1_historical_r1i1p1f2_v2\n",
" activity_id: CMIP\n",
" arpege_minor_version: 6.3.2\n",
" branch_method: standard\n",
" ... ...\n",
" intake_esm_attrs:variable_id: ta\n",
" intake_esm_attrs:grid_label: gr\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM...\n",
" intake_esm_attrs:version: 20181206\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CNRM-ESM2-1/r1i1p1f2/ta/6hrLev/gr</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>gr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-d2d7a36c-0f4d-481d-b8fb-3f14e5417645' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-d2d7a36c-0f4d-481d-b8fb-3f14e5417645' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-0f66362d-e977-4cb0-8913-6126d9609c0c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-0f66362d-e977-4cb0-8913-6126d9609c0c' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>lev</span>: 91</li><li><span class='xr-has-index'>y</span>: 128</li><li><span class='xr-has-index'>x</span>: 256</li><li><span class='xr-has-index'>time</span>: 94964</li><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span>bnds</span>: 2</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-f2366106-c394-44a7-90f3-ba7c79bd9e34' class='xr-section-summary-in' type='checkbox' checked><label for='section-f2366106-c394-44a7-90f3-ba7c79bd9e34' class='xr-section-summary' >Coordinates: <span>(12)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>lev</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.9988 0.9959 ... 9.869e-06</div><input id='attrs-572f2935-91b3-41cb-991b-c0fd88bce999' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-572f2935-91b3-41cb-991b-c0fd88bce999' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d6bd9d60-aed7-4739-88b7-110729905159' class='xr-var-data-in' type='checkbox'><label for='data-d6bd9d60-aed7-4739-88b7-110729905159' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>lev_bounds</dd><dt><span>formula :</span></dt><dd>p = ap + b*ps</dd><dt><span>formula_term :</span></dt><dd>ap: ap b: b ps: ps</dd><dt><span>long_name :</span></dt><dd>atmospheric model level</dd><dt><span>name :</span></dt><dd>lev</dd><dt><span>positive :</span></dt><dd>down</dd><dt><span>standard_name :</span></dt><dd>atmosphere_hybrid_sigma_pressure_coordinate</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>array([9.988151e-01, 9.959496e-01, 9.919785e-01, 9.867627e-01, 9.803135e-01,\n",
" 9.727423e-01, 9.639018e-01, 9.535363e-01, 9.416150e-01, 9.281436e-01,\n",
" 9.131237e-01, 8.965609e-01, 8.784941e-01, 8.589981e-01, 8.381457e-01,\n",
" 8.160020e-01, 7.926548e-01, 7.682247e-01, 7.428293e-01, 7.165710e-01,\n",
" 6.895664e-01, 6.619600e-01, 6.338908e-01, 6.054764e-01, 5.768424e-01,\n",
" 5.481361e-01, 5.195776e-01, 4.914467e-01, 4.640177e-01, 4.375466e-01,\n",
" 4.122711e-01, 3.882926e-01, 3.655744e-01, 3.440645e-01, 3.237057e-01,\n",
" 3.044435e-01, 2.862251e-01, 2.690002e-01, 2.527204e-01, 2.373396e-01,\n",
" 2.228133e-01, 2.090992e-01, 1.961565e-01, 1.839464e-01, 1.724318e-01,\n",
" 1.615771e-01, 1.513484e-01, 1.417132e-01, 1.326406e-01, 1.241009e-01,\n",
" 1.160565e-01, 1.084543e-01, 1.012399e-01, 9.436681e-02, 8.779560e-02,\n",
" 8.149272e-02, 7.542972e-02, 6.958413e-02, 6.395049e-02, 5.853933e-02,\n",
" 5.336302e-02, 4.843146e-02, 4.375126e-02, 3.932698e-02, 3.516221e-02,\n",
" 3.125945e-02, 2.762004e-02, 2.424404e-02, 2.113017e-02, 1.827577e-02,\n",
" 1.567665e-02, 1.332716e-02, 1.122009e-02, 9.346718e-03, 7.696813e-03,\n",
" 6.258735e-03, 5.019516e-03, 3.965015e-03, 3.080094e-03, 2.348848e-03,\n",
" 1.754865e-03, 1.281528e-03, 9.123277e-04, 6.312078e-04, 4.228940e-04,\n",
" 2.732123e-04, 1.693656e-04, 1.001505e-04, 5.609681e-05, 2.951331e-05,\n",
" 9.869430e-06])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-35175083-ea5e-4932-8cac-b633edba55b5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-35175083-ea5e-4932-8cac-b633edba55b5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b3ec9b60-aa71-431e-916d-b7a2f62def5d' class='xr-var-data-in' type='checkbox'><label for='data-b3ec9b60-aa71-431e-916d-b7a2f62def5d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd></dl></div><div class='xr-var-data'><pre>array([-88.927735, -87.538705, -86.141472, -84.742386, -83.342596, -81.942466,\n",
" -80.542146, -79.14171 , -77.741196, -76.340629, -74.940023, -73.539389,\n",
" -72.138732, -70.738059, -69.337372, -67.936673, -66.535966, -65.135251,\n",
" -63.73453 , -62.333803, -60.933072, -59.532337, -58.131598, -56.730857,\n",
" -55.330112, -53.929366, -52.528617, -51.127867, -49.727115, -48.326361,\n",
" -46.925606, -45.52485 , -44.124093, -42.723335, -41.322576, -39.921816,\n",
" -38.521056, -37.120294, -35.719532, -34.31877 , -32.918007, -31.517244,\n",
" -30.11648 , -28.715716, -27.314951, -25.914186, -24.513421, -23.112655,\n",
" -21.71189 , -20.311124, -18.910357, -17.509591, -16.108824, -14.708057,\n",
" -13.30729 , -11.906523, -10.505756, -9.104989, -7.704221, -6.303454,\n",
" -4.902687, -3.501919, -2.101151, -0.700384, 0.700384, 2.101151,\n",
" 3.501919, 4.902687, 6.303454, 7.704221, 9.104989, 10.505756,\n",
" 11.906523, 13.30729 , 14.708057, 16.108824, 17.509591, 18.910357,\n",
" 20.311124, 21.71189 , 23.112655, 24.513421, 25.914186, 27.314951,\n",
" 28.715716, 30.11648 , 31.517244, 32.918007, 34.31877 , 35.719532,\n",
" 37.120294, 38.521056, 39.921816, 41.322576, 42.723335, 44.124093,\n",
" 45.52485 , 46.925606, 48.326361, 49.727115, 51.127867, 52.528617,\n",
" 53.929366, 55.330112, 56.730857, 58.131598, 59.532337, 60.933072,\n",
" 62.333803, 63.73453 , 65.135251, 66.535966, 67.936673, 69.337372,\n",
" 70.738059, 72.138732, 73.539389, 74.940023, 76.340629, 77.741196,\n",
" 79.14171 , 80.542146, 81.942466, 83.342596, 84.742386, 86.141472,\n",
" 87.538705, 88.927735])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 1.406 2.812 ... 357.2 358.6</div><input id='attrs-14fddec0-a4fd-4b30-bc2b-171f12c4ca86' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-14fddec0-a4fd-4b30-bc2b-171f12c4ca86' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b2de1239-fb74-48a4-be65-26e5005ce0ae' class='xr-var-data-in' type='checkbox'><label for='data-b2de1239-fb74-48a4-be65-26e5005ce0ae' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd></dl></div><div class='xr-var-data'><pre>array([ 0. , 1.40625, 2.8125 , ..., 355.78125, 357.1875 , 358.59375])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>1950-01-01T06:00:00 ... 2015-01-01</div><input id='attrs-999ae969-35c3-48aa-a682-3710961a7b18' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-999ae969-35c3-48aa-a682-3710961a7b18' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-93178c96-f721-48a9-bb8d-cc8df09010dd' class='xr-var-data-in' type='checkbox'><label for='data-93178c96-f721-48a9-bb8d-cc8df09010dd' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bounds</dd><dt><span>long_name :</span></dt><dd>Time axis</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>time_origin :</span></dt><dd>1850-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1950-01-01T06:00:00.000000000&#x27;, &#x27;1950-01-01T12:00:00.000000000&#x27;,\n",
" &#x27;1950-01-01T18:00:00.000000000&#x27;, ..., &#x27;2014-12-31T12:00:00.000000000&#x27;,\n",
" &#x27;2014-12-31T18:00:00.000000000&#x27;, &#x27;2015-01-01T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_bounds</span></div><div class='xr-var-dims'>(time, bnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;</div><input id='attrs-8bf16430-cd10-40fb-bfe9-34747663d9ad' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8bf16430-cd10-40fb-bfe9-34747663d9ad' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-920ff628-198e-48b6-844f-d3c7d299cd1a' class='xr-var-data-in' type='checkbox'><label for='data-920ff628-198e-48b6-844f-d3c7d299cd1a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.45 MiB </td>\n",
" <td> 370.95 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94964, 2) </td>\n",
" <td> (47482, 1) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> datetime64[ns] numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"75\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"60\" x2=\"25\" y2=\"60\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"12\" y2=\"120\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"45.412617\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,45.412617,60.000000)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ap_bnds</span></div><div class='xr-var-dims'>(bnds, lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;</div><input id='attrs-63f572ba-a859-4ce8-887e-967189e9d20f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-63f572ba-a859-4ce8-887e-967189e9d20f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-914fb751-2e08-4afb-806b-9e7092d5ea41' class='xr-var-data-in' type='checkbox'><label for='data-914fb751-2e08-4afb-806b-9e7092d5ea41' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: ap(k+1/2)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (2, 91) </td>\n",
" <td> (2, 91) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"79\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"29\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"29\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,29.56599059001709 0.0,29.56599059001709\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"49.565991\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"14.782995\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,14.782995)\">2</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>b_bnds</span></div><div class='xr-var-dims'>(bnds, lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;</div><input id='attrs-9cde57d2-8bc6-40ef-be35-a30b1061d1f4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9cde57d2-8bc6-40ef-be35-a30b1061d1f4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-175558ee-fa36-4d15-a45f-46ba952a4ae8' class='xr-var-data-in' type='checkbox'><label for='data-175558ee-fa36-4d15-a45f-46ba952a4ae8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: b(k+1/2)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (2, 91) </td>\n",
" <td> (2, 91) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"79\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"29\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"29\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,29.56599059001709 0.0,29.56599059001709\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"49.565991\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"14.782995\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,14.782995)\">2</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lev_bounds</span></div><div class='xr-var-dims'>(lev, bnds)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91, 2), meta=np.ndarray&gt;</div><input id='attrs-8901b63d-117b-4e4a-9f4e-acdab085e042' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8901b63d-117b-4e4a-9f4e-acdab085e042' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fb71d595-8a7d-48fe-bbab-5ab247fe20dc' class='xr-var-data-in' type='checkbox'><label for='data-fb71d595-8a7d-48fe-bbab-5ab247fe20dc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>formula :</span></dt><dd>p = ap + b*ps</dd><dt><span>formula_term :</span></dt><dd>ap: ap b: b ps: ps</dd><dt><span>standard_name :</span></dt><dd>atmosphere_hybrid_sigma_pressure_coordinate</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91, 2) </td>\n",
" <td> (91, 2) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"79\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"29\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"29\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"29\" y1=\"0\" x2=\"29\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 29.56599059001709,0.0 29.56599059001709,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"14.782995\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"49.565991\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,49.565991,60.000000)\">91</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>360.0 360.0 360.0 ... 358.6 358.6</div><input id='attrs-64c1f758-e48e-4d0c-9771-a29ad3f0e2e2' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-64c1f758-e48e-4d0c-9771-a29ad3f0e2e2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4a995925-a1cc-4298-837d-824da9bbda20' class='xr-var-data-in' type='checkbox'><label for='data-4a995925-a1cc-4298-837d-824da9bbda20' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[360. , 360. , 360. , ..., 360. , 360. ,\n",
" 360. ],\n",
" [ 1.40625, 1.40625, 1.40625, ..., 1.40625, 1.40625,\n",
" 1.40625],\n",
" [ 2.8125 , 2.8125 , 2.8125 , ..., 2.8125 , 2.8125 ,\n",
" 2.8125 ],\n",
" ...,\n",
" [355.78125, 355.78125, 355.78125, ..., 355.78125, 355.78125,\n",
" 355.78125],\n",
" [357.1875 , 357.1875 , 357.1875 , ..., 357.1875 , 357.1875 ,\n",
" 357.1875 ],\n",
" [358.59375, 358.59375, 358.59375, ..., 358.59375, 358.59375,\n",
" 358.59375]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-0e3fab6d-955c-4c92-8898-308bd0d0ef4c' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-0e3fab6d-955c-4c92-8898-308bd0d0ef4c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e8ac5bb9-7682-4b48-a59c-4c20e5652878' class='xr-var-data-in' type='checkbox'><label for='data-e8ac5bb9-7682-4b48-a59c-4c20e5652878' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" ...,\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f2&#x27;</div><input id='attrs-d4442caf-b675-4e03-bfda-489150df2c2e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-d4442caf-b675-4e03-bfda-489150df2c2e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-789e35b9-a560-42dc-b8d8-5485a0d92f54' class='xr-var-data-in' type='checkbox'><label for='data-789e35b9-a560-42dc-b8d8-5485a0d92f54' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f2&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-837e35a4-1f9d-4db0-8143-0ac03f933914' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-837e35a4-1f9d-4db0-8143-0ac03f933914' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bca77dcd-f0c4-4417-863a-59b7303195cc' class='xr-var-data-in' type='checkbox'><label for='data-bca77dcd-f0c4-4417-863a-59b7303195cc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-1b94d140-149e-4432-b90a-42a994e6f245' class='xr-section-summary-in' type='checkbox' checked><label for='section-1b94d140-149e-4432-b90a-42a994e6f245' class='xr-section-summary' >Data variables: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>ap</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;</div><input id='attrs-e8d570dd-9be2-4cee-ac2e-fdf80c681662' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e8d570dd-9be2-4cee-ac2e-fdf80c681662' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3934d7b7-c0ff-4a61-9696-e00d7b221a73' class='xr-var-data-in' type='checkbox'><label for='data-3934d7b7-c0ff-4a61-9696-e00d7b221a73' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: ap(k)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 728 B </td>\n",
" <td> 728 B </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91,) </td>\n",
" <td> (91,) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.86984685721921 0.0,25.86984685721921\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"45.869847\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"12.934923\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,12.934923)\">1</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>b</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;</div><input id='attrs-944f802e-8d49-4373-9c1f-a5b14c2c973d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-944f802e-8d49-4373-9c1f-a5b14c2c973d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-967486a4-9c78-4e12-9d93-bcd9cc0cd101' class='xr-var-data-in' type='checkbox'><label for='data-967486a4-9c78-4e12-9d93-bcd9cc0cd101' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: b(k)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 728 B </td>\n",
" <td> 728 B </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91,) </td>\n",
" <td> (91,) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.86984685721921 0.0,25.86984685721921\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"45.869847\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"12.934923\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,12.934923)\">1</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ps</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(15, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-6fe65097-81eb-4bd7-b159-29e36208cd74' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6fe65097-81eb-4bd7-b159-29e36208cd74' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6ed5c120-bdf8-4018-a7da-708c3ce58cef' class='xr-var-data-in' type='checkbox'><label for='data-6ed5c120-bdf8-4018-a7da-708c3ce58cef' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>surface pressure, not mean sea level pressure</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>6 h</dd><dt><span>long_name :</span></dt><dd>Surface Air Pressure</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>surface_air_pressure</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 11.59 GiB </td>\n",
" <td> 1.88 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94964, 128, 256) </td>\n",
" <td> (15, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 6331 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"156\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"43\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"32\" y2=\"47\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"36\" y2=\"51\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"39\" y2=\"55\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"58\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"47\" y2=\"62\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"50\" y2=\"66\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"69\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"62\" y2=\"77\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"65\" y2=\"81\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"69\" y2=\"84\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"76\" y2=\"92\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,96.00085180870013 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"35\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"39\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"42\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"46\" y2=\"11\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"50\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"53\" y2=\"18\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"57\" y2=\"22\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"61\" y2=\"26\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"65\" y2=\"29\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"68\" y2=\"33\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"72\" y2=\"37\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"76\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"79\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"87\" y2=\"52\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"91\" y2=\"55\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"94\" y2=\"59\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"98\" y2=\"63\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"102\" y2=\"66\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"35\" y1=\"0\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 35.41261651458248,0.0 106.00085180870013,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"106\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"96\" x2=\"106\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"106\" y1=\"70\" x2=\"106\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 106.00085180870013,70.58823529411765 106.00085180870013,96.00085180870013 80.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"93.294544\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,126.000852,83.294544)\">128</text>\n",
" <text x=\"35.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,80.706734)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ta</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, lev, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 15, 91, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-990cff50-5e8e-4533-b5b9-079e664fa572' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-990cff50-5e8e-4533-b5b9-079e664fa572' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b22eebb0-28c0-4e39-a15d-f03e4f207f28' class='xr-var-data-in' type='checkbox'><label for='data-b22eebb0-28c0-4e39-a15d-f03e4f207f28' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>Air Temperature</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>6 h</dd><dt><span>long_name :</span></dt><dd>Air Temperature</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>air_temperature</dd><dt><span>units :</span></dt><dd>K</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.03 TiB </td>\n",
" <td> 170.62 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (1, 1, 94964, 91, 128, 256) </td>\n",
" <td> (1, 1, 15, 91, 128, 256) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 6331 chunks in 3 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"518\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"0\" x2=\"28\" y2=\"14\" />\n",
" <line x1=\"17\" y1=\"0\" x2=\"32\" y2=\"14\" />\n",
" <line x1=\"21\" y1=\"0\" x2=\"36\" y2=\"14\" />\n",
" <line x1=\"24\" y1=\"0\" x2=\"39\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"0\" x2=\"43\" y2=\"14\" />\n",
" <line x1=\"32\" y1=\"0\" x2=\"47\" y2=\"14\" />\n",
" <line x1=\"36\" y1=\"0\" x2=\"51\" y2=\"14\" />\n",
" <line x1=\"39\" y1=\"0\" x2=\"54\" y2=\"14\" />\n",
" <line x1=\"43\" y1=\"0\" x2=\"58\" y2=\"14\" />\n",
" <line x1=\"47\" y1=\"0\" x2=\"62\" y2=\"14\" />\n",
" <line x1=\"51\" y1=\"0\" x2=\"66\" y2=\"14\" />\n",
" <line x1=\"54\" y1=\"0\" x2=\"69\" y2=\"14\" />\n",
" <line x1=\"58\" y1=\"0\" x2=\"73\" y2=\"14\" />\n",
" <line x1=\"62\" y1=\"0\" x2=\"77\" y2=\"14\" />\n",
" <line x1=\"66\" y1=\"0\" x2=\"81\" y2=\"14\" />\n",
" <line x1=\"69\" y1=\"0\" x2=\"84\" y2=\"14\" />\n",
" <line x1=\"73\" y1=\"0\" x2=\"88\" y2=\"14\" />\n",
" <line x1=\"77\" y1=\"0\" x2=\"92\" y2=\"14\" />\n",
" <line x1=\"81\" y1=\"0\" x2=\"96\" y2=\"14\" />\n",
" <line x1=\"84\" y1=\"0\" x2=\"99\" y2=\"14\" />\n",
" <line x1=\"88\" y1=\"0\" x2=\"103\" y2=\"14\" />\n",
" <line x1=\"92\" y1=\"0\" x2=\"107\" y2=\"14\" />\n",
" <line x1=\"96\" y1=\"0\" x2=\"111\" y2=\"14\" />\n",
" <line x1=\"99\" y1=\"0\" x2=\"114\" y2=\"14\" />\n",
" <line x1=\"103\" y1=\"0\" x2=\"118\" y2=\"14\" />\n",
" <line x1=\"107\" y1=\"0\" x2=\"122\" y2=\"14\" />\n",
" <line x1=\"111\" y1=\"0\" x2=\"126\" y2=\"14\" />\n",
" <line x1=\"114\" y1=\"0\" x2=\"129\" y2=\"14\" />\n",
" <line x1=\"118\" y1=\"0\" x2=\"133\" y2=\"14\" />\n",
" <line x1=\"122\" y1=\"0\" x2=\"137\" y2=\"14\" />\n",
" <line x1=\"126\" y1=\"0\" x2=\"141\" y2=\"14\" />\n",
" <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n",
" <line x1=\"28\" y1=\"14\" x2=\"28\" y2=\"40\" />\n",
" <line x1=\"32\" y1=\"14\" x2=\"32\" y2=\"40\" />\n",
" <line x1=\"36\" y1=\"14\" x2=\"36\" y2=\"40\" />\n",
" <line x1=\"39\" y1=\"14\" x2=\"39\" y2=\"40\" />\n",
" <line x1=\"43\" y1=\"14\" x2=\"43\" y2=\"40\" />\n",
" <line x1=\"47\" y1=\"14\" x2=\"47\" y2=\"40\" />\n",
" <line x1=\"51\" y1=\"14\" x2=\"51\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"14\" x2=\"54\" y2=\"40\" />\n",
" <line x1=\"58\" y1=\"14\" x2=\"58\" y2=\"40\" />\n",
" <line x1=\"62\" y1=\"14\" x2=\"62\" y2=\"40\" />\n",
" <line x1=\"66\" y1=\"14\" x2=\"66\" y2=\"40\" />\n",
" <line x1=\"69\" y1=\"14\" x2=\"69\" y2=\"40\" />\n",
" <line x1=\"73\" y1=\"14\" x2=\"73\" y2=\"40\" />\n",
" <line x1=\"77\" y1=\"14\" x2=\"77\" y2=\"40\" />\n",
" <line x1=\"81\" y1=\"14\" x2=\"81\" y2=\"40\" />\n",
" <line x1=\"84\" y1=\"14\" x2=\"84\" y2=\"40\" />\n",
" <line x1=\"88\" y1=\"14\" x2=\"88\" y2=\"40\" />\n",
" <line x1=\"92\" y1=\"14\" x2=\"92\" y2=\"40\" />\n",
" <line x1=\"96\" y1=\"14\" x2=\"96\" y2=\"40\" />\n",
" <line x1=\"99\" y1=\"14\" x2=\"99\" y2=\"40\" />\n",
" <line x1=\"103\" y1=\"14\" x2=\"103\" y2=\"40\" />\n",
" <line x1=\"107\" y1=\"14\" x2=\"107\" y2=\"40\" />\n",
" <line x1=\"111\" y1=\"14\" x2=\"111\" y2=\"40\" />\n",
" <line x1=\"114\" y1=\"14\" x2=\"114\" y2=\"40\" />\n",
" <line x1=\"118\" y1=\"14\" x2=\"118\" y2=\"40\" />\n",
" <line x1=\"122\" y1=\"14\" x2=\"122\" y2=\"40\" />\n",
" <line x1=\"126\" y1=\"14\" x2=\"126\" y2=\"40\" />\n",
" <line x1=\"129\" y1=\"14\" x2=\"129\" y2=\"40\" />\n",
" <line x1=\"133\" y1=\"14\" x2=\"133\" y2=\"40\" />\n",
" <line x1=\"137\" y1=\"14\" x2=\"137\" y2=\"40\" />\n",
" <line x1=\"141\" y1=\"14\" x2=\"141\" y2=\"40\" />\n",
" <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"84.948598\" y=\"60.361214\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >94964</text>\n",
" <text x=\"164.948598\" y=\"27.654906\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.948598,27.654906)\">1</text>\n",
" <text x=\"7.474299\" y=\"52.886915\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.474299,52.886915)\">1</text>\n",
"\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"228\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"214\" y1=\"25\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"214\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"14\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"214.0,0.0 228.9485979497544,14.948597949754403 228.9485979497544,40.36121446433689 214.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"239\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"14\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"214\" y1=\"0\" x2=\"228\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"239\" y1=\"0\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"214.0,0.0 239.41261651458248,0.0 254.36121446433688,14.948597949754403 228.9485979497544,14.948597949754403\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"228\" y1=\"14\" x2=\"254\" y2=\"14\" style=\"stroke-width:2\" />\n",
" <line x1=\"228\" y1=\"40\" x2=\"254\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"228\" y1=\"14\" x2=\"228\" y2=\"40\" style=\"stroke-width:2\" />\n",
" <line x1=\"254\" y1=\"14\" x2=\"254\" y2=\"40\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"228.9485979497544,14.948597949754403 254.36121446433688,14.948597949754403 254.36121446433688,40.36121446433689 228.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"241.654906\" y=\"60.361214\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >256</text>\n",
" <text x=\"274.361214\" y=\"27.654906\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,274.361214,27.654906)\">128</text>\n",
" <text x=\"211.474299\" y=\"52.886915\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,211.474299,52.886915)\">91</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-7d2db4be-559c-43d2-ab68-19fcc023f5cd' class='xr-section-summary-in' type='checkbox' ><label for='section-7d2db4be-559c-43d2-ab68-19fcc023f5cd' class='xr-section-summary' >Attributes: <span>(68)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>CMIP6_CV_version :</span></dt><dd>cv=6.2.3.0-7-g2019642</dd><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>EXPID :</span></dt><dd>CNRM-ESM2-1_historical_r1i1p1f2_v2</dd><dt><span>activity_id :</span></dt><dd>CMIP</dd><dt><span>arpege_minor_version :</span></dt><dd>6.3.2</dd><dt><span>branch_method :</span></dt><dd>standard</dd><dt><span>branch_time_in_child :</span></dt><dd>0.0</dd><dt><span>branch_time_in_parent :</span></dt><dd>0.0</dd><dt><span>contact :</span></dt><dd>contact.cmip@meteo.fr</dd><dt><span>creation_date :</span></dt><dd>2018-10-21T08:15:26Z</dd><dt><span>data_specs_version :</span></dt><dd>01.00.21</dd><dt><span>description :</span></dt><dd>CMIP6 historical</dd><dt><span>dr2xml_md5sum :</span></dt><dd>92ddb3d0d8ce79f498d792fc8e559dcf</dd><dt><span>dr2xml_version :</span></dt><dd>1.13</dd><dt><span>experiment :</span></dt><dd>all-forcing simulation of the recent past</dd><dt><span>experiment_id :</span></dt><dd>historical</dd><dt><span>external_variables :</span></dt><dd>areacella</dd><dt><span>forcing_index :</span></dt><dd>2</dd><dt><span>frequency :</span></dt><dd>6hrPt</dd><dt><span>further_info_url :</span></dt><dd>https://furtherinfo.es-doc.org/CMIP6.CNRM-CERFACS.CNRM-ESM2-1.historical.none.r1i1p1f2</dd><dt><span>grid :</span></dt><dd>data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid</dd><dt><span>grid_label :</span></dt><dd>gr</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)</dd><dt><span>institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>license :</span></dt><dd>CMIP6 model data produced by CNRM-CERFACS is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at http://www.umr-cnrm.fr/cmip6/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.</dd><dt><span>mip_era :</span></dt><dd>CMIP6</dd><dt><span>nemo_gelato_commit :</span></dt><dd>49095b3accd5d4c_6524fe19b00467a</dd><dt><span>nominal_resolution :</span></dt><dd>250 km</dd><dt><span>parent_activity_id :</span></dt><dd>CMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>piControl</dd><dt><span>parent_mip_era :</span></dt><dd>CMIP6</dd><dt><span>parent_source_id :</span></dt><dd>CNRM-ESM2-1</dd><dt><span>parent_time_units :</span></dt><dd>days since 1850-01-01 00:00:00</dd><dt><span>parent_variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>atmos</dd><dt><span>references :</span></dt><dd>http://www.umr-cnrm.fr/cmip6/references</dd><dt><span>source :</span></dt><dd>CNRM-ESM2-1 (2017): aerosol: TACTIC_v2 atmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km) atmosChem: REPROBUS-C_v2 land: Surfex 8.0c ocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m) ocnBgchem: Pisces 2.s seaIce: Gelato 6.1</dd><dt><span>source_id :</span></dt><dd>CNRM-ESM2-1</dd><dt><span>source_type :</span></dt><dd>AOGCM BGC AER CHEM</dd><dt><span>status :</span></dt><dd>2019-12-19;created; by gcs.cmip6.ldeo@gmail.com</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>table_id :</span></dt><dd>6hrLev</dd><dt><span>title :</span></dt><dd>CNRM-ESM2-1 model output prepared for CMIP6 / CMIP historical</dd><dt><span>tracking_id :</span></dt><dd>hdl:21.14100/92f3d72d-53b8-4461-8baa-33213655beda\n",
"hdl:21.14100/34a63369-a986-47fd-ae07-3d888f51da9a\n",
"hdl:21.14100/9677069f-baf2-458f-afb2-38cbfe932c61\n",
"hdl:21.14100/e9292160-915d-4dcc-84cc-e725166822a8\n",
"hdl:21.14100/2f826cf7-4885-4494-a19a-428fd2a1116e\n",
"hdl:21.14100/4226d71a-040e-4ef1-b0a2-57873b88edb0\n",
"hdl:21.14100/3b116298-7c81-4708-b7a9-c691cc6e278c\n",
"hdl:21.14100/b21d25e9-f504-428d-82ae-ef7b8b667675\n",
"hdl:21.14100/380bd6e9-026a-4524-8b4f-96b274877797\n",
"hdl:21.14100/c2d9a5ee-f9c8-45be-8443-071034724972\n",
"hdl:21.14100/386a9671-075b-4378-a911-dce82eca5fe9\n",
"hdl:21.14100/ed0eb8f8-67f7-4fbd-8e07-a9555c179f7b\n",
"hdl:21.14100/245c81ff-ff95-4728-a263-1b0658563161\n",
"hdl:21.14100/82bbf739-799c-4252-a019-b8d2b2ff48b6\n",
"hdl:21.14100/d7bf631b-e3e5-4440-b041-30dfe7793fe0\n",
"hdl:21.14100/45af63d8-477a-4b17-90f7-b2179affd71e\n",
"hdl:21.14100/93f04352-cdc0-4a01-9d43-d391ec68ba4a\n",
"hdl:21.14100/4bfd95d7-2612-4aa9-a0a5-fbae1fd89201\n",
"hdl:21.14100/e49d96ad-fe61-4c98-8c1e-827163e42365\n",
"hdl:21.14100/658ac0a4-618e-4030-a94e-1d151def858d\n",
"hdl:21.14100/26b6092a-627a-43e4-972a-0567168a4d3d\n",
"hdl:21.14100/6fb6795a-2536-4df6-b353-2757a025d09f\n",
"hdl:21.14100/e64bffef-fb86-48b5-b465-8fdbe738522a\n",
"hdl:21.14100/c0392c2c-f45b-49c2-b827-8155fd34abfe\n",
"hdl:21.14100/cc0d76f5-1dd9-43c5-a692-45eb38b937a5\n",
"hdl:21.14100/9457c984-5338-4873-8d77-4daf2ca5d7c0\n",
"hdl:21.14100/d7e06c98-258b-4343-ad80-d85eb78c4b86\n",
"hdl:21.14100/6d25f07b-025c-4470-9d15-d42523b8bfbd\n",
"hdl:21.14100/2641ee60-a7a1-43c1-a324-5448dec364e5\n",
"hdl:21.14100/c3a5d753-67a8-4599-90a9-5bbac5a8bd1f\n",
"hdl:21.14100/088b2afc-a12c-45c2-95a5-ebc96bf221f2\n",
"hdl:21.14100/287b20da-7b7c-49e5-921f-665541cf15b7\n",
"hdl:21.14100/0cb7cbc7-375d-41ee-9ad6-ecbd6e2dc7eb\n",
"hdl:21.14100/887a2a29-013d-4a4a-aca5-705393835835\n",
"hdl:21.14100/8fefb178-b514-41e2-bbb9-7eb637502d8e\n",
"hdl:21.14100/669ef6cb-0752-4b23-b12c-cee803f0ba50\n",
"hdl:21.14100/1941b7e7-fbeb-4a94-8722-333dff915196\n",
"hdl:21.14100/98ff0bff-fd66-489b-867e-c6f0fc55407b\n",
"hdl:21.14100/e3637cff-257f-4407-a58b-ca6f5376ec0d\n",
"hdl:21.14100/4483d26a-1de0-428b-b3d9-d8a81c4b1393\n",
"hdl:21.14100/d721aac2-1e7e-4dfb-8fd8-91b01435d729\n",
"hdl:21.14100/7f906e32-4ec8-4834-8932-941afc9fdfe1\n",
"hdl:21.14100/c59c39e8-7a08-4137-bc8e-7c2982d0b4d8\n",
"hdl:21.14100/624a7425-89a3-48b5-9378-7bc9e34000f4\n",
"hdl:21.14100/bd40673b-0068-4dad-8980-62fd7213fc3b\n",
"hdl:21.14100/10a7b501-b626-4d2e-9ebc-5aaedd47dade\n",
"hdl:21.14100/4c33559a-0f6e-41f0-b270-413778b9cc37\n",
"hdl:21.14100/7657dbae-ac7e-4356-b92e-0278f635f992\n",
"hdl:21.14100/653da7ae-1488-4562-89bb-b007406dedc7\n",
"hdl:21.14100/739405cb-0afb-4d2e-9c5a-7bec09e97919\n",
"hdl:21.14100/bd6d3164-9896-40e0-a311-9999344f0763\n",
"hdl:21.14100/2835fbef-9088-444f-aaf2-9ef77c81d63e\n",
"hdl:21.14100/28aa85e2-7852-46c8-8394-50c548e24659\n",
"hdl:21.14100/c8712dc4-8115-4e36-895e-ca6063949895\n",
"hdl:21.14100/03cc1451-7cec-45f1-a156-4b89d8471dfb\n",
"hdl:21.14100/ecbdf6c0-98f1-4c2d-b92e-9c0ee442c8fa\n",
"hdl:21.14100/ce8d445d-4176-449b-87e7-a16f5cc0fac6\n",
"hdl:21.14100/b82c8e4f-2982-458c-ba12-26c6980bc220\n",
"hdl:21.14100/da0505cd-8970-4995-92da-7d34e0c26131\n",
"hdl:21.14100/33eea69d-a220-4ded-b9d1-39f093172296\n",
"hdl:21.14100/39d1250f-9fab-4220-897a-39042bc37a8f\n",
"hdl:21.14100/5a296f06-2d97-4bf3-bb69-7b4f62e12c2f\n",
"hdl:21.14100/be7fe2e7-6732-4ec1-85b8-7c1dea283d23\n",
"hdl:21.14100/b71a8b37-2b53-4c04-9392-d1ace98108a5\n",
"hdl:21.14100/d108f975-6a3b-4ee1-b1d8-64f99683c795\n",
"hdl:21.14100/280f0096-985a-46cb-86c7-07335510dc3f\n",
"hdl:21.14100/8bcab481-92dc-47ef-9679-15528820e982\n",
"hdl:21.14100/409d5aef-d1c3-4aa5-b618-93866b77961f\n",
"hdl:21.14100/6d54d959-bcc3-43fc-a28c-7e18c558f239\n",
"hdl:21.14100/463238b6-f51f-4910-a290-c447a2fcba46\n",
"hdl:21.14100/3be98668-fdb6-4fd6-88b0-90a26a8de39a\n",
"hdl:21.14100/26e1f93b-0a93-4884-b709-bec985f1a1a0\n",
"hdl:21.14100/62040d66-ce24-4716-9e3d-d58d801a3f11\n",
"hdl:21.14100/ef3a372f-20a7-445d-b21c-acdf5e90a7c3\n",
"hdl:21.14100/516d3205-4ef1-48f7-b20b-371a95d74e1a\n",
"hdl:21.14100/116ec1bc-b308-4eef-a263-62c0e2ecfdb5\n",
"hdl:21.14100/e956a3ae-a55b-4747-8403-9ccda7734bbd\n",
"hdl:21.14100/275d0a2b-ba20-4eaa-9655-99379a8bbf3a\n",
"hdl:21.14100/28471f28-e34a-4eda-8127-de62b1c4a7d1\n",
"hdl:21.14100/9a6c19f5-fd84-4b36-b7fc-3ebc7bc5eebb\n",
"hdl:21.14100/ae87d027-b8e0-45b3-aeab-6fe6e6543ed8\n",
"hdl:21.14100/aafc7852-f5f6-4ae5-91ea-7049de86e57e\n",
"hdl:21.14100/d2b2af96-5b68-485b-8913-2bb99ef2ec86\n",
"hdl:21.14100/8f2d6808-6e76-46ac-a51b-c7cd329c3417\n",
"hdl:21.14100/60388067-6385-45ac-a89a-afc040263fd7\n",
"hdl:21.14100/551a5e02-fa53-4be1-bddd-533e06a574b6\n",
"hdl:21.14100/fb9e57f6-6d6a-4e4a-984c-0d367d75d591\n",
"hdl:21.14100/75daaebb-4b88-4be4-bb6a-fb5c6d03397d\n",
"hdl:21.14100/c4af0cf2-e8de-4cd0-8d2b-11388a6b0b7a\n",
"hdl:21.14100/43b63c5a-d4cf-4a82-b92c-96350cbe8c6f\n",
"hdl:21.14100/ad86036a-7983-4150-ac3d-946734eb9161\n",
"hdl:21.14100/799c8ce9-263e-4544-a6dc-37b5c98a7767\n",
"hdl:21.14100/ba5293b0-6315-4e3e-b0ee-2dd69f326f22\n",
"hdl:21.14100/ef338d56-c5eb-4b06-90ba-b9dd3159e531\n",
"hdl:21.14100/e82d77b7-cbd4-4eba-a9c4-3d3986f2a814\n",
"hdl:21.14100/cfe9e53a-adc0-4147-9443-c99442905305\n",
"hdl:21.14100/a0275f8a-cfa7-44be-8da8-7c09aab8129b\n",
"hdl:21.14100/c93d8ea9-fc1b-4a4c-af33-0d8ffef7a99c\n",
"hdl:21.14100/ca09fb23-c840-4d6d-b3aa-5633b64841c5\n",
"hdl:21.14100/dbf9a9ec-5acf-4100-ba7f-58b422285e5b\n",
"hdl:21.14100/67895951-f5bb-44ec-a1bf-032cc93118ef\n",
"hdl:21.14100/7cad5279-4390-4d57-af6b-5595ba01da01\n",
"hdl:21.14100/070990f0-b160-44c9-a1a6-69ddc261274c\n",
"hdl:21.14100/9ed8b2e1-3d4b-4188-9d61-6d37f7baf661\n",
"hdl:21.14100/e566940e-18f5-404d-b0be-73dd99969881\n",
"hdl:21.14100/de68f4a8-b158-475a-a0eb-984d852373a5\n",
"hdl:21.14100/758fae58-dd23-420d-8bfd-5b071c731d79\n",
"hdl:21.14100/093dcaf1-edba-49d5-b28b-1ea067a028ad\n",
"hdl:21.14100/c9c4d0d2-93b0-4b94-8194-d954e16727aa\n",
"hdl:21.14100/b29fd884-e752-4f2e-b249-cc0431924572\n",
"hdl:21.14100/e35c95f2-74c6-4842-a893-c24cb8c9a77d\n",
"hdl:21.14100/bdf7c8e9-1551-4cc1-b1e1-fea2e00012de\n",
"hdl:21.14100/c62166e6-c786-4bd2-b466-8850612b0dde\n",
"hdl:21.14100/952de719-0c84-49ed-99e0-b0e67ba38f68\n",
"hdl:21.14100/304bc2fb-697e-45d5-9361-97b3b63a086d\n",
"hdl:21.14100/371d0943-21f6-4d85-b5a4-ba70ba2485b8\n",
"hdl:21.14100/c4e963fe-d06a-410c-9ae4-8906b500394b\n",
"hdl:21.14100/934e39a2-54ad-4c9a-a505-e3389b6af396\n",
"hdl:21.14100/1c1a0f71-8500-4b45-bc99-5ccaa8f8a4a5\n",
"hdl:21.14100/b3af98f3-10f0-4a1f-add0-7825790ff54a\n",
"hdl:21.14100/4ce3e5ec-5300-4b2a-951f-5dd83dded63c\n",
"hdl:21.14100/0a2c09ed-0ea9-46da-a61a-4deb9d3da5fc\n",
"hdl:21.14100/8dd6df91-dddc-4746-beb3-9d3dcc6aa5c7\n",
"hdl:21.14100/8ee9d343-aef8-4d61-a0c4-96429ec34b21\n",
"hdl:21.14100/0998fd51-f546-48e2-bc81-b1e000c236dc\n",
"hdl:21.14100/93120889-80d9-446a-af12-f8b6dd76e0c4\n",
"hdl:21.14100/1ab94c7e-dbbd-440b-98f4-e9f4b07f5493\n",
"hdl:21.14100/4b504879-4439-4304-9700-8af13ae99adc\n",
"hdl:21.14100/7f307c66-dd51-4f63-9b2e-abba464c6260\n",
"hdl:21.14100/a29086d6-8832-4065-88e5-f31f4760880d</dd><dt><span>variable_id :</span></dt><dd>ta</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f2</dd><dt><span>xios_commit :</span></dt><dd>1442-shuffle</dd><dt><span>netcdf_tracking_ids :</span></dt><dd>hdl:21.14100/92f3d72d-53b8-4461-8baa-33213655beda\n",
"hdl:21.14100/34a63369-a986-47fd-ae07-3d888f51da9a\n",
"hdl:21.14100/9677069f-baf2-458f-afb2-38cbfe932c61\n",
"hdl:21.14100/e9292160-915d-4dcc-84cc-e725166822a8\n",
"hdl:21.14100/2f826cf7-4885-4494-a19a-428fd2a1116e\n",
"hdl:21.14100/4226d71a-040e-4ef1-b0a2-57873b88edb0\n",
"hdl:21.14100/3b116298-7c81-4708-b7a9-c691cc6e278c\n",
"hdl:21.14100/b21d25e9-f504-428d-82ae-ef7b8b667675\n",
"hdl:21.14100/380bd6e9-026a-4524-8b4f-96b274877797\n",
"hdl:21.14100/c2d9a5ee-f9c8-45be-8443-071034724972\n",
"hdl:21.14100/386a9671-075b-4378-a911-dce82eca5fe9\n",
"hdl:21.14100/ed0eb8f8-67f7-4fbd-8e07-a9555c179f7b\n",
"hdl:21.14100/245c81ff-ff95-4728-a263-1b0658563161\n",
"hdl:21.14100/82bbf739-799c-4252-a019-b8d2b2ff48b6\n",
"hdl:21.14100/d7bf631b-e3e5-4440-b041-30dfe7793fe0\n",
"hdl:21.14100/45af63d8-477a-4b17-90f7-b2179affd71e\n",
"hdl:21.14100/93f04352-cdc0-4a01-9d43-d391ec68ba4a\n",
"hdl:21.14100/4bfd95d7-2612-4aa9-a0a5-fbae1fd89201\n",
"hdl:21.14100/e49d96ad-fe61-4c98-8c1e-827163e42365\n",
"hdl:21.14100/658ac0a4-618e-4030-a94e-1d151def858d\n",
"hdl:21.14100/26b6092a-627a-43e4-972a-0567168a4d3d\n",
"hdl:21.14100/6fb6795a-2536-4df6-b353-2757a025d09f\n",
"hdl:21.14100/e64bffef-fb86-48b5-b465-8fdbe738522a\n",
"hdl:21.14100/c0392c2c-f45b-49c2-b827-8155fd34abfe\n",
"hdl:21.14100/cc0d76f5-1dd9-43c5-a692-45eb38b937a5\n",
"hdl:21.14100/9457c984-5338-4873-8d77-4daf2ca5d7c0\n",
"hdl:21.14100/d7e06c98-258b-4343-ad80-d85eb78c4b86\n",
"hdl:21.14100/6d25f07b-025c-4470-9d15-d42523b8bfbd\n",
"hdl:21.14100/2641ee60-a7a1-43c1-a324-5448dec364e5\n",
"hdl:21.14100/c3a5d753-67a8-4599-90a9-5bbac5a8bd1f\n",
"hdl:21.14100/088b2afc-a12c-45c2-95a5-ebc96bf221f2\n",
"hdl:21.14100/287b20da-7b7c-49e5-921f-665541cf15b7\n",
"hdl:21.14100/0cb7cbc7-375d-41ee-9ad6-ecbd6e2dc7eb\n",
"hdl:21.14100/887a2a29-013d-4a4a-aca5-705393835835\n",
"hdl:21.14100/8fefb178-b514-41e2-bbb9-7eb637502d8e\n",
"hdl:21.14100/669ef6cb-0752-4b23-b12c-cee803f0ba50\n",
"hdl:21.14100/1941b7e7-fbeb-4a94-8722-333dff915196\n",
"hdl:21.14100/98ff0bff-fd66-489b-867e-c6f0fc55407b\n",
"hdl:21.14100/e3637cff-257f-4407-a58b-ca6f5376ec0d\n",
"hdl:21.14100/4483d26a-1de0-428b-b3d9-d8a81c4b1393\n",
"hdl:21.14100/d721aac2-1e7e-4dfb-8fd8-91b01435d729\n",
"hdl:21.14100/7f906e32-4ec8-4834-8932-941afc9fdfe1\n",
"hdl:21.14100/c59c39e8-7a08-4137-bc8e-7c2982d0b4d8\n",
"hdl:21.14100/624a7425-89a3-48b5-9378-7bc9e34000f4\n",
"hdl:21.14100/bd40673b-0068-4dad-8980-62fd7213fc3b\n",
"hdl:21.14100/10a7b501-b626-4d2e-9ebc-5aaedd47dade\n",
"hdl:21.14100/4c33559a-0f6e-41f0-b270-413778b9cc37\n",
"hdl:21.14100/7657dbae-ac7e-4356-b92e-0278f635f992\n",
"hdl:21.14100/653da7ae-1488-4562-89bb-b007406dedc7\n",
"hdl:21.14100/739405cb-0afb-4d2e-9c5a-7bec09e97919\n",
"hdl:21.14100/bd6d3164-9896-40e0-a311-9999344f0763\n",
"hdl:21.14100/2835fbef-9088-444f-aaf2-9ef77c81d63e\n",
"hdl:21.14100/28aa85e2-7852-46c8-8394-50c548e24659\n",
"hdl:21.14100/c8712dc4-8115-4e36-895e-ca6063949895\n",
"hdl:21.14100/03cc1451-7cec-45f1-a156-4b89d8471dfb\n",
"hdl:21.14100/ecbdf6c0-98f1-4c2d-b92e-9c0ee442c8fa\n",
"hdl:21.14100/ce8d445d-4176-449b-87e7-a16f5cc0fac6\n",
"hdl:21.14100/b82c8e4f-2982-458c-ba12-26c6980bc220\n",
"hdl:21.14100/da0505cd-8970-4995-92da-7d34e0c26131\n",
"hdl:21.14100/33eea69d-a220-4ded-b9d1-39f093172296\n",
"hdl:21.14100/39d1250f-9fab-4220-897a-39042bc37a8f\n",
"hdl:21.14100/5a296f06-2d97-4bf3-bb69-7b4f62e12c2f\n",
"hdl:21.14100/be7fe2e7-6732-4ec1-85b8-7c1dea283d23\n",
"hdl:21.14100/b71a8b37-2b53-4c04-9392-d1ace98108a5\n",
"hdl:21.14100/d108f975-6a3b-4ee1-b1d8-64f99683c795\n",
"hdl:21.14100/280f0096-985a-46cb-86c7-07335510dc3f\n",
"hdl:21.14100/8bcab481-92dc-47ef-9679-15528820e982\n",
"hdl:21.14100/409d5aef-d1c3-4aa5-b618-93866b77961f\n",
"hdl:21.14100/6d54d959-bcc3-43fc-a28c-7e18c558f239\n",
"hdl:21.14100/463238b6-f51f-4910-a290-c447a2fcba46\n",
"hdl:21.14100/3be98668-fdb6-4fd6-88b0-90a26a8de39a\n",
"hdl:21.14100/26e1f93b-0a93-4884-b709-bec985f1a1a0\n",
"hdl:21.14100/62040d66-ce24-4716-9e3d-d58d801a3f11\n",
"hdl:21.14100/ef3a372f-20a7-445d-b21c-acdf5e90a7c3\n",
"hdl:21.14100/516d3205-4ef1-48f7-b20b-371a95d74e1a\n",
"hdl:21.14100/116ec1bc-b308-4eef-a263-62c0e2ecfdb5\n",
"hdl:21.14100/e956a3ae-a55b-4747-8403-9ccda7734bbd\n",
"hdl:21.14100/275d0a2b-ba20-4eaa-9655-99379a8bbf3a\n",
"hdl:21.14100/28471f28-e34a-4eda-8127-de62b1c4a7d1\n",
"hdl:21.14100/9a6c19f5-fd84-4b36-b7fc-3ebc7bc5eebb\n",
"hdl:21.14100/ae87d027-b8e0-45b3-aeab-6fe6e6543ed8\n",
"hdl:21.14100/aafc7852-f5f6-4ae5-91ea-7049de86e57e\n",
"hdl:21.14100/d2b2af96-5b68-485b-8913-2bb99ef2ec86\n",
"hdl:21.14100/8f2d6808-6e76-46ac-a51b-c7cd329c3417\n",
"hdl:21.14100/60388067-6385-45ac-a89a-afc040263fd7\n",
"hdl:21.14100/551a5e02-fa53-4be1-bddd-533e06a574b6\n",
"hdl:21.14100/fb9e57f6-6d6a-4e4a-984c-0d367d75d591\n",
"hdl:21.14100/75daaebb-4b88-4be4-bb6a-fb5c6d03397d\n",
"hdl:21.14100/c4af0cf2-e8de-4cd0-8d2b-11388a6b0b7a\n",
"hdl:21.14100/43b63c5a-d4cf-4a82-b92c-96350cbe8c6f\n",
"hdl:21.14100/ad86036a-7983-4150-ac3d-946734eb9161\n",
"hdl:21.14100/799c8ce9-263e-4544-a6dc-37b5c98a7767\n",
"hdl:21.14100/ba5293b0-6315-4e3e-b0ee-2dd69f326f22\n",
"hdl:21.14100/ef338d56-c5eb-4b06-90ba-b9dd3159e531\n",
"hdl:21.14100/e82d77b7-cbd4-4eba-a9c4-3d3986f2a814\n",
"hdl:21.14100/cfe9e53a-adc0-4147-9443-c99442905305\n",
"hdl:21.14100/a0275f8a-cfa7-44be-8da8-7c09aab8129b\n",
"hdl:21.14100/c93d8ea9-fc1b-4a4c-af33-0d8ffef7a99c\n",
"hdl:21.14100/ca09fb23-c840-4d6d-b3aa-5633b64841c5\n",
"hdl:21.14100/dbf9a9ec-5acf-4100-ba7f-58b422285e5b\n",
"hdl:21.14100/67895951-f5bb-44ec-a1bf-032cc93118ef\n",
"hdl:21.14100/7cad5279-4390-4d57-af6b-5595ba01da01\n",
"hdl:21.14100/070990f0-b160-44c9-a1a6-69ddc261274c\n",
"hdl:21.14100/9ed8b2e1-3d4b-4188-9d61-6d37f7baf661\n",
"hdl:21.14100/e566940e-18f5-404d-b0be-73dd99969881\n",
"hdl:21.14100/de68f4a8-b158-475a-a0eb-984d852373a5\n",
"hdl:21.14100/758fae58-dd23-420d-8bfd-5b071c731d79\n",
"hdl:21.14100/093dcaf1-edba-49d5-b28b-1ea067a028ad\n",
"hdl:21.14100/c9c4d0d2-93b0-4b94-8194-d954e16727aa\n",
"hdl:21.14100/b29fd884-e752-4f2e-b249-cc0431924572\n",
"hdl:21.14100/e35c95f2-74c6-4842-a893-c24cb8c9a77d\n",
"hdl:21.14100/bdf7c8e9-1551-4cc1-b1e1-fea2e00012de\n",
"hdl:21.14100/c62166e6-c786-4bd2-b466-8850612b0dde\n",
"hdl:21.14100/952de719-0c84-49ed-99e0-b0e67ba38f68\n",
"hdl:21.14100/304bc2fb-697e-45d5-9361-97b3b63a086d\n",
"hdl:21.14100/371d0943-21f6-4d85-b5a4-ba70ba2485b8\n",
"hdl:21.14100/c4e963fe-d06a-410c-9ae4-8906b500394b\n",
"hdl:21.14100/934e39a2-54ad-4c9a-a505-e3389b6af396\n",
"hdl:21.14100/1c1a0f71-8500-4b45-bc99-5ccaa8f8a4a5\n",
"hdl:21.14100/b3af98f3-10f0-4a1f-add0-7825790ff54a\n",
"hdl:21.14100/4ce3e5ec-5300-4b2a-951f-5dd83dded63c\n",
"hdl:21.14100/0a2c09ed-0ea9-46da-a61a-4deb9d3da5fc\n",
"hdl:21.14100/8dd6df91-dddc-4746-beb3-9d3dcc6aa5c7\n",
"hdl:21.14100/8ee9d343-aef8-4d61-a0c4-96429ec34b21\n",
"hdl:21.14100/0998fd51-f546-48e2-bc81-b1e000c236dc\n",
"hdl:21.14100/93120889-80d9-446a-af12-f8b6dd76e0c4\n",
"hdl:21.14100/1ab94c7e-dbbd-440b-98f4-e9f4b07f5493\n",
"hdl:21.14100/4b504879-4439-4304-9700-8af13ae99adc\n",
"hdl:21.14100/7f307c66-dd51-4f63-9b2e-abba464c6260\n",
"hdl:21.14100/a29086d6-8832-4065-88e5-f31f4760880d</dd><dt><span>version_id :</span></dt><dd>v20181206</dd><dt><span>intake_esm_vars :</span></dt><dd>[&#x27;ta&#x27;]</dd><dt><span>intake_esm_attrs:activity_id :</span></dt><dd>CMIP</dd><dt><span>intake_esm_attrs:institution_id :</span></dt><dd>CNRM-CERFACS</dd><dt><span>intake_esm_attrs:source_id :</span></dt><dd>CNRM-ESM2-1</dd><dt><span>intake_esm_attrs:experiment_id :</span></dt><dd>historical</dd><dt><span>intake_esm_attrs:member_id :</span></dt><dd>r1i1p1f2</dd><dt><span>intake_esm_attrs:table_id :</span></dt><dd>6hrLev</dd><dt><span>intake_esm_attrs:variable_id :</span></dt><dd>ta</dd><dt><span>intake_esm_attrs:grid_label :</span></dt><dd>gr</dd><dt><span>intake_esm_attrs:zstore :</span></dt><dd>gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM-ESM2-1/historical/r1i1p1f2/6hrLev/ta/gr/v20181206/</dd><dt><span>intake_esm_attrs:version :</span></dt><dd>20181206</dd><dt><span>intake_esm_attrs:_data_format_ :</span></dt><dd>zarr</dd><dt><span>intake_esm_dataset_key :</span></dt><dd>CNRM-ESM2-1/r1i1p1f2/ta/6hrLev/gr</dd></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-011b66c3-67e3-4139-bb78-783a39055497' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-011b66c3-67e3-4139-bb78-783a39055497' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-f47da336-6052-4e8b-b682-f1c01e2dae99' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-f47da336-6052-4e8b-b682-f1c01e2dae99' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-81c8b3d5-7aec-4930-b5a4-112645e71b06' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-81c8b3d5-7aec-4930-b5a4-112645e71b06' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-b9686182-a295-4201-9dd2-217df79f3783' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b9686182-a295-4201-9dd2-217df79f3783' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-931dc65f-25c4-4864-bf3c-fa49dc4f9f23' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-931dc65f-25c4-4864-bf3c-fa49dc4f9f23' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-d0dc888d-aed4-4d9c-bee3-7be46ad7ff2b' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-d0dc888d-aed4-4d9c-bee3-7be46ad7ff2b' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-2792c37c-373e-467a-8ee4-0c6375c80937' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-2792c37c-373e-467a-8ee4-0c6375c80937' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-e573c65a-1404-47d3-bf72-152a9769454e' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-e573c65a-1404-47d3-bf72-152a9769454e' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>hus</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-a3493df2-97ae-48fd-8299-d0b1c09bf501' class='xr-section-summary-in' type='checkbox' ><label for='section-a3493df2-97ae-48fd-8299-d0b1c09bf501' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>6hrLev</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-f8848f15-d11c-4b63-82e6-b561bf9755f6' class='xr-section-summary-in' type='checkbox' ><label for='section-f8848f15-d11c-4b63-82e6-b561bf9755f6' class='xr-section-summary' >Groups: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (lev: 91, y: 128, x: 256, time: 94964, member_id: 1,\n",
" dcpp_init_year: 1, bnds: 2)\n",
"Coordinates:\n",
" * lev (lev) float64 0.9988 0.9959 0.992 ... 2.951e-05 9.869e-06\n",
" * y (y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * x (x) float64 0.0 1.406 2.812 4.219 ... 355.8 357.2 358.6\n",
" * time (time) datetime64[ns] 1950-01-01T06:00:00 ... 2015-01-01\n",
" time_bounds (time, bnds) datetime64[ns] dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;\n",
" ap_bnds (bnds, lev) float64 dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;\n",
" b_bnds (bnds, lev) float64 dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;\n",
" lev_bounds (lev, bnds) float64 dask.array&lt;chunksize=(91, 2), meta=np.ndarray&gt;\n",
" lon (x, y) float64 360.0 360.0 360.0 360.0 ... 358.6 358.6 358.6\n",
" lat (x, y) float64 -88.93 -87.54 -86.14 ... 86.14 87.54 88.93\n",
" * member_id (member_id) object &#x27;r1i1p1f2&#x27;\n",
" * dcpp_init_year (dcpp_init_year) float64 nan\n",
"Dimensions without coordinates: bnds\n",
"Data variables:\n",
" ap (lev) float64 dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;\n",
" b (lev) float64 dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;\n",
" hus (member_id, dcpp_init_year, time, lev, y, x) float32 dask.array&lt;chunksize=(1, 1, 12, 91, 128, 256), meta=np.ndarray&gt;\n",
" ps (time, y, x) float32 dask.array&lt;chunksize=(12, 128, 256), meta=np.ndarray&gt;\n",
"Attributes: (12/68)\n",
" CMIP6_CV_version: cv=6.2.3.0-7-g2019642\n",
" Conventions: CF-1.7 CMIP-6.2\n",
" EXPID: CNRM-ESM2-1_historical_r1i1p1f2_v2\n",
" activity_id: CMIP\n",
" arpege_minor_version: 6.3.2\n",
" branch_method: standard\n",
" ... ...\n",
" intake_esm_attrs:variable_id: hus\n",
" intake_esm_attrs:grid_label: gr\n",
" intake_esm_attrs:zstore: gs://cmip6/CMIP6/CMIP/CNRM-CERFACS/CNRM...\n",
" intake_esm_attrs:version: 20181206\n",
" intake_esm_attrs:_data_format_: zarr\n",
" intake_esm_dataset_key: CNRM-ESM2-1/r1i1p1f2/hus/6hrLev/gr</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>gr</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-677d772f-a53e-434b-8bcf-3111ebd00509' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-677d772f-a53e-434b-8bcf-3111ebd00509' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-dc6cea37-7bb2-421a-894b-abc856f958b2' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-dc6cea37-7bb2-421a-894b-abc856f958b2' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>lev</span>: 91</li><li><span class='xr-has-index'>y</span>: 128</li><li><span class='xr-has-index'>x</span>: 256</li><li><span class='xr-has-index'>time</span>: 94964</li><li><span class='xr-has-index'>member_id</span>: 1</li><li><span class='xr-has-index'>dcpp_init_year</span>: 1</li><li><span>bnds</span>: 2</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-91e959f8-b727-47ea-ab7b-be022f532f92' class='xr-section-summary-in' type='checkbox' checked><label for='section-91e959f8-b727-47ea-ab7b-be022f532f92' class='xr-section-summary' >Coordinates: <span>(12)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>lev</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.9988 0.9959 ... 9.869e-06</div><input id='attrs-3739defe-c002-40de-ad11-6c98d47512fe' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3739defe-c002-40de-ad11-6c98d47512fe' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e7cdbe3b-6f0f-4909-b577-c0479a698401' class='xr-var-data-in' type='checkbox'><label for='data-e7cdbe3b-6f0f-4909-b577-c0479a698401' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>lev_bounds</dd><dt><span>formula :</span></dt><dd>p = ap + b*ps</dd><dt><span>formula_term :</span></dt><dd>ap: ap b: b ps: ps</dd><dt><span>long_name :</span></dt><dd>atmospheric model level</dd><dt><span>name :</span></dt><dd>lev</dd><dt><span>positive :</span></dt><dd>down</dd><dt><span>standard_name :</span></dt><dd>atmosphere_hybrid_sigma_pressure_coordinate</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>array([9.988151e-01, 9.959496e-01, 9.919785e-01, 9.867627e-01, 9.803135e-01,\n",
" 9.727423e-01, 9.639018e-01, 9.535363e-01, 9.416150e-01, 9.281436e-01,\n",
" 9.131237e-01, 8.965609e-01, 8.784941e-01, 8.589981e-01, 8.381457e-01,\n",
" 8.160020e-01, 7.926548e-01, 7.682247e-01, 7.428293e-01, 7.165710e-01,\n",
" 6.895664e-01, 6.619600e-01, 6.338908e-01, 6.054764e-01, 5.768424e-01,\n",
" 5.481361e-01, 5.195776e-01, 4.914467e-01, 4.640177e-01, 4.375466e-01,\n",
" 4.122711e-01, 3.882926e-01, 3.655744e-01, 3.440645e-01, 3.237057e-01,\n",
" 3.044435e-01, 2.862251e-01, 2.690002e-01, 2.527204e-01, 2.373396e-01,\n",
" 2.228133e-01, 2.090992e-01, 1.961565e-01, 1.839464e-01, 1.724318e-01,\n",
" 1.615771e-01, 1.513484e-01, 1.417132e-01, 1.326406e-01, 1.241009e-01,\n",
" 1.160565e-01, 1.084543e-01, 1.012399e-01, 9.436681e-02, 8.779560e-02,\n",
" 8.149272e-02, 7.542972e-02, 6.958413e-02, 6.395049e-02, 5.853933e-02,\n",
" 5.336302e-02, 4.843146e-02, 4.375126e-02, 3.932698e-02, 3.516221e-02,\n",
" 3.125945e-02, 2.762004e-02, 2.424404e-02, 2.113017e-02, 1.827577e-02,\n",
" 1.567665e-02, 1.332716e-02, 1.122009e-02, 9.346718e-03, 7.696813e-03,\n",
" 6.258735e-03, 5.019516e-03, 3.965015e-03, 3.080094e-03, 2.348848e-03,\n",
" 1.754865e-03, 1.281528e-03, 9.123277e-04, 6.312078e-04, 4.228940e-04,\n",
" 2.732123e-04, 1.693656e-04, 1.001505e-04, 5.609681e-05, 2.951331e-05,\n",
" 9.869430e-06])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-d9a7aee1-a9f9-4d9a-914e-ba2a2c8b0741' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d9a7aee1-a9f9-4d9a-914e-ba2a2c8b0741' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8586a9fd-0b84-4bf6-8829-6a91b3e8b836' class='xr-var-data-in' type='checkbox'><label for='data-8586a9fd-0b84-4bf6-8829-6a91b3e8b836' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Y</dd><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd></dl></div><div class='xr-var-data'><pre>array([-88.927735, -87.538705, -86.141472, -84.742386, -83.342596, -81.942466,\n",
" -80.542146, -79.14171 , -77.741196, -76.340629, -74.940023, -73.539389,\n",
" -72.138732, -70.738059, -69.337372, -67.936673, -66.535966, -65.135251,\n",
" -63.73453 , -62.333803, -60.933072, -59.532337, -58.131598, -56.730857,\n",
" -55.330112, -53.929366, -52.528617, -51.127867, -49.727115, -48.326361,\n",
" -46.925606, -45.52485 , -44.124093, -42.723335, -41.322576, -39.921816,\n",
" -38.521056, -37.120294, -35.719532, -34.31877 , -32.918007, -31.517244,\n",
" -30.11648 , -28.715716, -27.314951, -25.914186, -24.513421, -23.112655,\n",
" -21.71189 , -20.311124, -18.910357, -17.509591, -16.108824, -14.708057,\n",
" -13.30729 , -11.906523, -10.505756, -9.104989, -7.704221, -6.303454,\n",
" -4.902687, -3.501919, -2.101151, -0.700384, 0.700384, 2.101151,\n",
" 3.501919, 4.902687, 6.303454, 7.704221, 9.104989, 10.505756,\n",
" 11.906523, 13.30729 , 14.708057, 16.108824, 17.509591, 18.910357,\n",
" 20.311124, 21.71189 , 23.112655, 24.513421, 25.914186, 27.314951,\n",
" 28.715716, 30.11648 , 31.517244, 32.918007, 34.31877 , 35.719532,\n",
" 37.120294, 38.521056, 39.921816, 41.322576, 42.723335, 44.124093,\n",
" 45.52485 , 46.925606, 48.326361, 49.727115, 51.127867, 52.528617,\n",
" 53.929366, 55.330112, 56.730857, 58.131598, 59.532337, 60.933072,\n",
" 62.333803, 63.73453 , 65.135251, 66.535966, 67.936673, 69.337372,\n",
" 70.738059, 72.138732, 73.539389, 74.940023, 76.340629, 77.741196,\n",
" 79.14171 , 80.542146, 81.942466, 83.342596, 84.742386, 86.141472,\n",
" 87.538705, 88.927735])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 1.406 2.812 ... 357.2 358.6</div><input id='attrs-e139a395-d041-4342-b6df-b5d43bbf69c6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e139a395-d041-4342-b6df-b5d43bbf69c6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-371ab365-6d07-425e-9f9c-f1e64c1bc32e' class='xr-var-data-in' type='checkbox'><label for='data-371ab365-6d07-425e-9f9c-f1e64c1bc32e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>X</dd><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd></dl></div><div class='xr-var-data'><pre>array([ 0. , 1.40625, 2.8125 , ..., 355.78125, 357.1875 , 358.59375])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>1950-01-01T06:00:00 ... 2015-01-01</div><input id='attrs-017dcc6b-2473-4ac8-9b8d-b08e6854cbaf' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-017dcc6b-2473-4ac8-9b8d-b08e6854cbaf' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-33157b74-cbc4-4ff8-824f-3af2445f3135' class='xr-var-data-in' type='checkbox'><label for='data-33157b74-cbc4-4ff8-824f-3af2445f3135' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bounds</dd><dt><span>long_name :</span></dt><dd>Time axis</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>time_origin :</span></dt><dd>1850-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1950-01-01T06:00:00.000000000&#x27;, &#x27;1950-01-01T12:00:00.000000000&#x27;,\n",
" &#x27;1950-01-01T18:00:00.000000000&#x27;, ..., &#x27;2014-12-31T12:00:00.000000000&#x27;,\n",
" &#x27;2014-12-31T18:00:00.000000000&#x27;, &#x27;2015-01-01T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_bounds</span></div><div class='xr-var-dims'>(time, bnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(47482, 1), meta=np.ndarray&gt;</div><input id='attrs-1819f5f8-e710-4cec-b1cd-60dfc6f03e81' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-1819f5f8-e710-4cec-b1cd-60dfc6f03e81' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4368f12e-482f-466e-acec-4e0091328b18' class='xr-var-data-in' type='checkbox'><label for='data-4368f12e-482f-466e-acec-4e0091328b18' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.45 MiB </td>\n",
" <td> 370.95 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (94964, 2) </td>\n",
" <td> (47482, 1) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 4 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> datetime64[ns] numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"75\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"25\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"60\" x2=\"25\" y2=\"60\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"12\" y2=\"120\" />\n",
" <line x1=\"25\" y1=\"0\" x2=\"25\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 25.412616514582485,0.0 25.412616514582485,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"12.706308\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"45.412617\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,45.412617,60.000000)\">94964</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ap_bnds</span></div><div class='xr-var-dims'>(bnds, lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;</div><input id='attrs-677c1915-5aba-4cca-97ce-df702a8d618b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-677c1915-5aba-4cca-97ce-df702a8d618b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-162fcc59-f768-4beb-908f-5a15804c2f3d' class='xr-var-data-in' type='checkbox'><label for='data-162fcc59-f768-4beb-908f-5a15804c2f3d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: ap(k+1/2)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (2, 91) </td>\n",
" <td> (2, 91) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"79\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"29\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"29\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,29.56599059001709 0.0,29.56599059001709\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"49.565991\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"14.782995\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,14.782995)\">2</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>b_bnds</span></div><div class='xr-var-dims'>(bnds, lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2, 91), meta=np.ndarray&gt;</div><input id='attrs-645396dd-cf70-45c5-bafd-5e7ce1793011' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-645396dd-cf70-45c5-bafd-5e7ce1793011' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7048f305-bea9-4bc6-94c3-613794a85ca6' class='xr-var-data-in' type='checkbox'><label for='data-7048f305-bea9-4bc6-94c3-613794a85ca6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: b(k+1/2)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (2, 91) </td>\n",
" <td> (2, 91) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"79\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"29\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"29\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"29\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,29.56599059001709 0.0,29.56599059001709\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"49.565991\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"14.782995\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,14.782995)\">2</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lev_bounds</span></div><div class='xr-var-dims'>(lev, bnds)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91, 2), meta=np.ndarray&gt;</div><input id='attrs-2ef87945-33f6-4750-8b30-c5c9595bc16d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2ef87945-33f6-4750-8b30-c5c9595bc16d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b1aeadca-2171-47f9-b94e-2c6b080d04e2' class='xr-var-data-in' type='checkbox'><label for='data-b1aeadca-2171-47f9-b94e-2c6b080d04e2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>formula :</span></dt><dd>p = ap + b*ps</dd><dt><span>formula_term :</span></dt><dd>ap: ap b: b ps: ps</dd><dt><span>standard_name :</span></dt><dd>atmosphere_hybrid_sigma_pressure_coordinate</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 1.42 kiB </td>\n",
" <td> 1.42 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91, 2) </td>\n",
" <td> (91, 2) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"79\" height=\"170\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"29\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"120\" x2=\"29\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"120\" style=\"stroke-width:2\" />\n",
" <line x1=\"29\" y1=\"0\" x2=\"29\" y2=\"120\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 29.56599059001709,0.0 29.56599059001709,120.0 0.0,120.0\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"14.782995\" y=\"140.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >2</text>\n",
" <text x=\"49.565991\" y=\"60.000000\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,49.565991,60.000000)\">91</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>360.0 360.0 360.0 ... 358.6 358.6</div><input id='attrs-30b3a617-ed81-4967-83c1-df71790e9fbc' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-30b3a617-ed81-4967-83c1-df71790e9fbc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1ccc0b00-f05e-4f64-85fa-9e4603c82d68' class='xr-var-data-in' type='checkbox'><label for='data-1ccc0b00-f05e-4f64-85fa-9e4603c82d68' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[360. , 360. , 360. , ..., 360. , 360. ,\n",
" 360. ],\n",
" [ 1.40625, 1.40625, 1.40625, ..., 1.40625, 1.40625,\n",
" 1.40625],\n",
" [ 2.8125 , 2.8125 , 2.8125 , ..., 2.8125 , 2.8125 ,\n",
" 2.8125 ],\n",
" ...,\n",
" [355.78125, 355.78125, 355.78125, ..., 355.78125, 355.78125,\n",
" 355.78125],\n",
" [357.1875 , 357.1875 , 357.1875 , ..., 357.1875 , 357.1875 ,\n",
" 357.1875 ],\n",
" [358.59375, 358.59375, 358.59375, ..., 358.59375, 358.59375,\n",
" 358.59375]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-88.93 -87.54 ... 87.54 88.93</div><input id='attrs-42a14bfc-626a-493a-9d66-f9121cb75d50' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-42a14bfc-626a-493a-9d66-f9121cb75d50' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-21ed8ef2-ecee-4ec0-a5bb-ae60148c5e89' class='xr-var-data-in' type='checkbox'><label for='data-21ed8ef2-ecee-4ec0-a5bb-ae60148c5e89' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([[-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" ...,\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535],\n",
" [-88.92773535, -87.53870521, -86.1414721 , ..., 86.1414721 ,\n",
" 87.53870521, 88.92773535]])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>member_id</span></div><div class='xr-var-dims'>(member_id)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>&#x27;r1i1p1f2&#x27;</div><input id='attrs-5aaef6c5-f7ce-4ec9-a065-30b080da4d25' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-5aaef6c5-f7ce-4ec9-a065-30b080da4d25' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-81477aad-187d-4f42-9709-b4299e422843' class='xr-var-data-in' type='checkbox'><label for='data-81477aad-187d-4f42-9709-b4299e422843' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;r1i1p1f2&#x27;], dtype=object)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dcpp_init_year</span></div><div class='xr-var-dims'>(dcpp_init_year)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>nan</div><input id='attrs-af766d2b-9cee-47c7-9777-30795761b241' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-af766d2b-9cee-47c7-9777-30795761b241' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a8a381a9-4aad-4598-9070-5100ce84bd41' class='xr-var-data-in' type='checkbox'><label for='data-a8a381a9-4aad-4598-9070-5100ce84bd41' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([nan])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-6ce13add-dd6b-4f93-898d-d7e82629d086' class='xr-section-summary-in' type='checkbox' checked><label for='section-6ce13add-dd6b-4f93-898d-d7e82629d086' class='xr-section-summary' >Data variables: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>ap</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;</div><input id='attrs-dde33e2b-103b-42a9-b35c-00c291566af0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dde33e2b-103b-42a9-b35c-00c291566af0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-57104449-ec15-4153-a168-38874665ee51' class='xr-var-data-in' type='checkbox'><label for='data-57104449-ec15-4153-a168-38874665ee51' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: ap(k)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 728 B </td>\n",
" <td> 728 B </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91,) </td>\n",
" <td> (91,) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.86984685721921 0.0,25.86984685721921\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"45.869847\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"12.934923\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,12.934923)\">1</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>b</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(91,), meta=np.ndarray&gt;</div><input id='attrs-342c9658-c936-4065-9558-3de4cf07819c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-342c9658-c936-4065-9558-3de4cf07819c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f935450f-55c5-4f53-8cb7-d6fb72e4936b' class='xr-var-data-in' type='checkbox'><label for='data-f935450f-55c5-4f53-8cb7-d6fb72e4936b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>vertical coordinate formula term: b(k)</dd><dt><span>online_operation :</span></dt><dd>once</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 728 B </td>\n",
" <td> 728 B </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (91,) </td>\n",
" <td> (91,) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float64 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.86984685721921 0.0,25.86984685721921\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"60.000000\" y=\"45.869847\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >91</text>\n",
" <text x=\"140.000000\" y=\"12.934923\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,12.934923)\">1</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>hus</span></div><div class='xr-var-dims'>(member_id, dcpp_init_year, time, lev, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 1, 12, 91, 128, 256), meta=np.ndarray&gt;</div><input id='attrs-67c1ee21-2234-4cb4-96e1-e56df49dbc98' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-67c1ee21-2234-4cb4-96e1-e56df49dbc98' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-95346def-5e26-4bbf-9ded-6d98da5eab7d' class='xr-var-data-in' type='checkbox'><label for='data-95346def-5e26-4bbf-9ded-6d98da5eab7d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>cell_measures :</span></dt><dd>area: areacella</dd><dt><span>cell_methods :</span></dt><dd>area: mean time: point</dd><dt><span>description :</span></dt><dd>Specific Humidity</dd><dt><span>history :</span></dt><dd>none</dd><dt><span>interval_operation :</span></dt><dd>900 s</dd><dt><span>interval_write :</span></dt><dd>6 h</dd><dt><span>long_name :</span></dt><dd>Specific Humidity</dd><dt><span>online_operation :</span></dt><dd>instant</dd><dt><span>standard_name :</span></dt><dd>specific_humidity</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment