Skip to content

Instantly share code, notes, and snippets.

@gervasiocaj
Last active March 31, 2023 15:27
Show Gist options
  • Save gervasiocaj/8ddf67356d07b086359691818b850fa2 to your computer and use it in GitHub Desktop.
Save gervasiocaj/8ddf67356d07b086359691818b850fa2 to your computer and use it in GitHub Desktop.
Versão preliminar do cálculo da evapotranspiração de referência aplicada ao zoneamento de risco climático do milho no estado da Bahia. Imagens no final denotam a média por decêndio ao longo de dez anos para um setor específico, bem como a visualização 3D da soma da evapotranspiração para um decêndio específico no estado (notar que a borda zerada…
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"id": "elcJodlsAxt8"
},
"outputs": [],
"source": [
"#!pip install \"xarray[complete]\"\n",
"import pandas as pd\n",
"import xarray as xr\n",
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"id": "0JhPRlqWBDq1"
},
"outputs": [],
"source": [
"import dask\n",
"dask.config.set({\n",
" \"array.slicing.split_large_chunks\": False,\n",
" \"num_workers\": 32,\n",
"})\n",
"\n",
"from dask.diagnostics import ProgressBar\n",
"pbar = ProgressBar()\n",
"pbar.register()"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 543
},
"id": "F5yAWbhCl6VH",
"outputId": "618c7717-3186-40f5-e7ed-97c17b6c9a72"
},
"outputs": [],
"source": [
"# https://www.fao.org/fileadmin/user_upload/faowater/docs/ReferenceManualETo.pdf\n",
"\n",
"#!wget http://research.jisao.washington.edu/data_sets/elevation/elev.0.5-deg.nc -P '/content/drive/MyDrive/kaori/elev'"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"# atmospheric_pressure = 101.3 * (((293 - (0.0065 * ds5.data)) / 293) ** 5.26)\n",
"# psychrometric_constant = (0.664742 * 10**-3) * atmospheric_pressure\n",
"# psychrometric_constant\n",
"# ------------------------------------\n",
"\n",
"# atmospheric_pressure [kPa]\n",
"atmospheric_pressure = lambda elev: 101.3 * (((293 - (0.0065 * elev)) / 293) ** 5.26)\n",
"\n",
"# psychrometric_constant [kPa °C**-1]\n",
"psychrometric_constant = lambda elev: (0.664742 * 10**-3) * atmospheric_pressure(elev)\n",
"\n",
"# saturation vapour pressure as a function of air temperature [kPa]\n",
"e_0_T = lambda t_c: (0.6108 * np.exp((17.27 * t_c) / (t_c + 237.3)))\n",
"\n",
"# actual vapour pressure [kPa]\n",
"e_a = lambda d2m_c: e_0_T(d2m_c)\n",
"\n",
"# saturation vapour pressure [kPa]\n",
"e_s = lambda t2m_c: e_0_T(t2m_c)\n",
"\n",
"# slope of saturation vapour pressure curve [kPa °C**-1]\n",
"delta = lambda t_c: 4098 * e_0_T(t_c) / ((t_c + 237.3)**2)\n",
"\n",
"# net radiation at the crop surface [MJ m**-2 day**-1]\n",
"R_n = lambda ssr, str_: (ssr - str_)/10**6\n",
"\n",
"# soil heat flux density [MJ m**-2 day**-1]\n",
"G = 0\n",
"\n",
"# wind speed to standard height (2m) [m s**-1]\n",
"u2 = lambda uz, h=10: uz * 4.87 / np.log(67.7 * h - 5.42)\n",
"\n",
"# reference evapotranspiration [mm day**-1]\n",
"ETo = lambda t2m_c, d2m_c, ssr, str_, elev, uz_10: (\n",
" (\n",
" (\n",
" 0.408 * delta(t2m_c) * (R_n(ssr, str_) - G)\n",
" ) + (\n",
" psychrometric_constant(elev) * (900 / (t2m_c + 273)) * u2(uz_10, 10) * (e_s(t2m_c) - e_a(d2m_c))\n",
" )\n",
" ) / (\n",
" delta(t2m_c) + (psychrometric_constant(elev) * (1 + (0.34 * u2(uz_10))))\n",
" )\n",
")\n",
"\n",
"ETo_2 = lambda t2m_c, d2m_c, rn, elev, uz_10: (\n",
" (\n",
" (\n",
" 0.408 * delta(t2m_c) * (rn - G)\n",
" ) + (\n",
" psychrometric_constant(elev) * (900 / (t2m_c + 273)) * u2(uz_10, 10) * (e_s(t2m_c) - e_a(d2m_c))\n",
" )\n",
" ) / (\n",
" delta(t2m_c) + (psychrometric_constant(elev) * (1 + (0.34 * u2(uz_10))))\n",
" )\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (longitude: 101, latitude: 106, time: 87648)\n",
"Coordinates:\n",
" * longitude (longitude) float32 -47.0 -46.9 -46.8 -46.7 ... -37.2 -37.1 -37.0\n",
" * latitude (latitude) float32 -18.5 -18.4 -18.3 -18.2 ... -8.2 -8.1 -8.0\n",
" * time (time) datetime64[ns] 1993-01-01 ... 2002-12-31T23:00:00\n",
"Data variables:\n",
" d2m (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" ssr (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" str (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" t2m (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" u10 (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" v10 (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
"Attributes:\n",
" Conventions: CF-1.6\n",
" history: 2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmw...</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-29481fd2-3827-4c4a-bcf0-a51ca7d96c80' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-29481fd2-3827-4c4a-bcf0-a51ca7d96c80' 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'>longitude</span>: 101</li><li><span class='xr-has-index'>latitude</span>: 106</li><li><span class='xr-has-index'>time</span>: 87648</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-9c316767-f674-4cc5-9a47-4142fab03bee' class='xr-section-summary-in' type='checkbox' checked><label for='section-9c316767-f674-4cc5-9a47-4142fab03bee' class='xr-section-summary' >Coordinates: <span>(3)</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'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-47.0 -46.9 -46.8 ... -37.1 -37.0</div><input id='attrs-647865d0-f1c0-495b-9a71-c435eb7eebda' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-647865d0-f1c0-495b-9a71-c435eb7eebda' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a8b140e8-e807-4e9a-b254-838079954ebe' class='xr-var-data-in' type='checkbox'><label for='data-a8b140e8-e807-4e9a-b254-838079954ebe' 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>units :</span></dt><dd>degrees_east</dd><dt><span>long_name :</span></dt><dd>longitude</dd></dl></div><div class='xr-var-data'><pre>array([-47. , -46.9, -46.8, -46.7, -46.6, -46.5, -46.4, -46.3, -46.2, -46.1,\n",
" -46. , -45.9, -45.8, -45.7, -45.6, -45.5, -45.4, -45.3, -45.2, -45.1,\n",
" -45. , -44.9, -44.8, -44.7, -44.6, -44.5, -44.4, -44.3, -44.2, -44.1,\n",
" -44. , -43.9, -43.8, -43.7, -43.6, -43.5, -43.4, -43.3, -43.2, -43.1,\n",
" -43. , -42.9, -42.8, -42.7, -42.6, -42.5, -42.4, -42.3, -42.2, -42.1,\n",
" -42. , -41.9, -41.8, -41.7, -41.6, -41.5, -41.4, -41.3, -41.2, -41.1,\n",
" -41. , -40.9, -40.8, -40.7, -40.6, -40.5, -40.4, -40.3, -40.2, -40.1,\n",
" -40. , -39.9, -39.8, -39.7, -39.6, -39.5, -39.4, -39.3, -39.2, -39.1,\n",
" -39. , -38.9, -38.8, -38.7, -38.6, -38.5, -38.4, -38.3, -38.2, -38.1,\n",
" -38. , -37.9, -37.8, -37.7, -37.6, -37.5, -37.4, -37.3, -37.2, -37.1,\n",
" -37. ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-18.5 -18.4 -18.3 ... -8.1 -8.0</div><input id='attrs-81f98808-01dd-484f-bea9-290853cdc1b1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-81f98808-01dd-484f-bea9-290853cdc1b1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-57660040-afa8-4a76-9f4a-ecf8142fb2f3' class='xr-var-data-in' type='checkbox'><label for='data-57660040-afa8-4a76-9f4a-ecf8142fb2f3' 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>units :</span></dt><dd>degrees_north</dd><dt><span>long_name :</span></dt><dd>latitude</dd></dl></div><div class='xr-var-data'><pre>array([-18.5, -18.4, -18.3, -18.2, -18.1, -18. , -17.9, -17.8, -17.7, -17.6,\n",
" -17.5, -17.4, -17.3, -17.2, -17.1, -17. , -16.9, -16.8, -16.7, -16.6,\n",
" -16.5, -16.4, -16.3, -16.2, -16.1, -16. , -15.9, -15.8, -15.7, -15.6,\n",
" -15.5, -15.4, -15.3, -15.2, -15.1, -15. , -14.9, -14.8, -14.7, -14.6,\n",
" -14.5, -14.4, -14.3, -14.2, -14.1, -14. , -13.9, -13.8, -13.7, -13.6,\n",
" -13.5, -13.4, -13.3, -13.2, -13.1, -13. , -12.9, -12.8, -12.7, -12.6,\n",
" -12.5, -12.4, -12.3, -12.2, -12.1, -12. , -11.9, -11.8, -11.7, -11.6,\n",
" -11.5, -11.4, -11.3, -11.2, -11.1, -11. , -10.9, -10.8, -10.7, -10.6,\n",
" -10.5, -10.4, -10.3, -10.2, -10.1, -10. , -9.9, -9.8, -9.7, -9.6,\n",
" -9.5, -9.4, -9.3, -9.2, -9.1, -9. , -8.9, -8.8, -8.7, -8.6,\n",
" -8.5, -8.4, -8.3, -8.2, -8.1, -8. ], dtype=float32)</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'>1993-01-01 ... 2002-12-31T23:00:00</div><input id='attrs-dfb37333-30fe-4f80-a145-9e1de0b9f4a2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dfb37333-30fe-4f80-a145-9e1de0b9f4a2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dfe07890-a8a6-4b6f-a816-47cf1223106a' class='xr-var-data-in' type='checkbox'><label for='data-dfe07890-a8a6-4b6f-a816-47cf1223106a' 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>time</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1993-01-01T00:00:00.000000000&#x27;, &#x27;1993-01-01T01:00:00.000000000&#x27;,\n",
" &#x27;1993-01-01T02:00:00.000000000&#x27;, ..., &#x27;2002-12-31T21:00:00.000000000&#x27;,\n",
" &#x27;2002-12-31T22:00:00.000000000&#x27;, &#x27;2002-12-31T23:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-a781cef1-adf4-4c74-a00e-b53075fe9ad3' class='xr-section-summary-in' type='checkbox' checked><label for='section-a781cef1-adf4-4c74-a00e-b53075fe9ad3' class='xr-section-summary' >Data variables: <span>(6)</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>d2m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-c143d1dd-03e1-44bd-b78c-f35e7083f9fc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c143d1dd-03e1-44bd-b78c-f35e7083f9fc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-870873c3-2f7e-4e14-b1af-7d4066f5bd6f' class='xr-var-data-in' type='checkbox'><label for='data-870873c3-2f7e-4e14-b1af-7d4066f5bd6f' 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>units :</span></dt><dd>K</dd><dt><span>long_name :</span></dt><dd>2 metre dewpoint temperature</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ssr</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-c598019d-3f1e-4014-a59c-349434d4a25c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c598019d-3f1e-4014-a59c-349434d4a25c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a9de7549-614c-4ebe-920b-be7888396c4e' class='xr-var-data-in' type='checkbox'><label for='data-a9de7549-614c-4ebe-920b-be7888396c4e' 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>units :</span></dt><dd>J m**-2</dd><dt><span>long_name :</span></dt><dd>Surface net solar radiation</dd><dt><span>standard_name :</span></dt><dd>surface_net_downward_shortwave_flux</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>str</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-c0694118-d4a9-4ee4-8e86-ea462e63db29' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c0694118-d4a9-4ee4-8e86-ea462e63db29' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c76ad284-b7b3-4807-8009-4df11433b90f' class='xr-var-data-in' type='checkbox'><label for='data-c76ad284-b7b3-4807-8009-4df11433b90f' 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>units :</span></dt><dd>J m**-2</dd><dt><span>long_name :</span></dt><dd>Surface net thermal radiation</dd><dt><span>standard_name :</span></dt><dd>surface_net_upward_longwave_flux</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-e7fa5a73-97a0-4649-b80b-04585c4a0b0d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e7fa5a73-97a0-4649-b80b-04585c4a0b0d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-83f680a7-7b41-441c-9810-0f1767947f90' class='xr-var-data-in' type='checkbox'><label for='data-83f680a7-7b41-441c-9810-0f1767947f90' 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>units :</span></dt><dd>K</dd><dt><span>long_name :</span></dt><dd>2 metre temperature</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>u10</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-f778c674-6f3e-447a-9f06-05b8ab8cf966' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f778c674-6f3e-447a-9f06-05b8ab8cf966' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8de85eaf-52ff-432b-ab31-ca5ddb03f999' class='xr-var-data-in' type='checkbox'><label for='data-8de85eaf-52ff-432b-ab31-ca5ddb03f999' 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>units :</span></dt><dd>m s**-1</dd><dt><span>long_name :</span></dt><dd>10 metre U wind component</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>v10</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-75c3b548-8641-41f7-b922-84182fdf5ef1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-75c3b548-8641-41f7-b922-84182fdf5ef1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a34cbd03-be62-44ae-9723-cb5be6f0b5fb' class='xr-var-data-in' type='checkbox'><label for='data-a34cbd03-be62-44ae-9723-cb5be6f0b5fb' 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>units :</span></dt><dd>m s**-1</dd><dt><span>long_name :</span></dt><dd>10 metre V wind component</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-b5e9b5ea-a6da-4654-b7f2-826cc3c699f8' class='xr-section-summary-in' type='checkbox' checked><label for='section-b5e9b5ea-a6da-4654-b7f2-826cc3c699f8' class='xr-section-summary' >Attributes: <span>(2)</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.6</dd><dt><span>history :</span></dt><dd>2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmwf/mars-client/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1632708390.5273278-7308-19-2be0131c-e468-427a-afad-bf5a7f32fbc0.nc /cache/tmp/2be0131c-e468-427a-afad-bf5a7f32fbc0-adaptor.mars.internal-1632694090.8666043-7308-22-tmp.grib</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (longitude: 101, latitude: 106, time: 87648)\n",
"Coordinates:\n",
" * longitude (longitude) float32 -47.0 -46.9 -46.8 -46.7 ... -37.2 -37.1 -37.0\n",
" * latitude (latitude) float32 -18.5 -18.4 -18.3 -18.2 ... -8.2 -8.1 -8.0\n",
" * time (time) datetime64[ns] 1993-01-01 ... 2002-12-31T23:00:00\n",
"Data variables:\n",
" d2m (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" ssr (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" str (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" t2m (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" u10 (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" v10 (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
"Attributes:\n",
" Conventions: CF-1.6\n",
" history: 2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmw..."
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ds = xr.open_mfdataset(\n",
" './dados/*.nc',\n",
" chunks={'time': 240 },\n",
").sortby(['latitude', 'longitude'])\n",
"\n",
"ds"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 541
},
"id": "0B95LGR_BK1E",
"outputId": "e661abbe-70b1-4946-aa8b-4abea04697f9"
},
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (longitude: 101, latitude: 106, time: 87648)\n",
"Coordinates:\n",
" * longitude (longitude) float32 -47.0 -46.9 -46.8 -46.7 ... -37.2 -37.1 -37.0\n",
" * latitude (latitude) float32 -18.5 -18.4 -18.3 -18.2 ... -8.2 -8.1 -8.0\n",
" * time (time) datetime64[ns] 1993-01-01 ... 2002-12-31T23:00:00\n",
"Data variables:\n",
" d2m (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" ssr (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" str (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" t2m (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" u10 (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" v10 (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" t2m_c (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" d2m_c (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" vv (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" ur (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
" rn (time, latitude, longitude) float64 dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;\n",
"Attributes:\n",
" Conventions: CF-1.6\n",
" history: 2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmw...</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-701cd4d4-9cea-4f03-9fd3-fe70b3ef8558' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-701cd4d4-9cea-4f03-9fd3-fe70b3ef8558' 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'>longitude</span>: 101</li><li><span class='xr-has-index'>latitude</span>: 106</li><li><span class='xr-has-index'>time</span>: 87648</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-58cbde73-7b3a-4a8b-a1e3-127545c12bee' class='xr-section-summary-in' type='checkbox' checked><label for='section-58cbde73-7b3a-4a8b-a1e3-127545c12bee' class='xr-section-summary' >Coordinates: <span>(3)</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'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-47.0 -46.9 -46.8 ... -37.1 -37.0</div><input id='attrs-d2472e1c-4287-40f8-8849-ca8063756ff8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d2472e1c-4287-40f8-8849-ca8063756ff8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-98d8a106-a2d1-4fdb-91ce-d265bcabf0d5' class='xr-var-data-in' type='checkbox'><label for='data-98d8a106-a2d1-4fdb-91ce-d265bcabf0d5' 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>units :</span></dt><dd>degrees_east</dd><dt><span>long_name :</span></dt><dd>longitude</dd></dl></div><div class='xr-var-data'><pre>array([-47. , -46.9, -46.8, -46.7, -46.6, -46.5, -46.4, -46.3, -46.2, -46.1,\n",
" -46. , -45.9, -45.8, -45.7, -45.6, -45.5, -45.4, -45.3, -45.2, -45.1,\n",
" -45. , -44.9, -44.8, -44.7, -44.6, -44.5, -44.4, -44.3, -44.2, -44.1,\n",
" -44. , -43.9, -43.8, -43.7, -43.6, -43.5, -43.4, -43.3, -43.2, -43.1,\n",
" -43. , -42.9, -42.8, -42.7, -42.6, -42.5, -42.4, -42.3, -42.2, -42.1,\n",
" -42. , -41.9, -41.8, -41.7, -41.6, -41.5, -41.4, -41.3, -41.2, -41.1,\n",
" -41. , -40.9, -40.8, -40.7, -40.6, -40.5, -40.4, -40.3, -40.2, -40.1,\n",
" -40. , -39.9, -39.8, -39.7, -39.6, -39.5, -39.4, -39.3, -39.2, -39.1,\n",
" -39. , -38.9, -38.8, -38.7, -38.6, -38.5, -38.4, -38.3, -38.2, -38.1,\n",
" -38. , -37.9, -37.8, -37.7, -37.6, -37.5, -37.4, -37.3, -37.2, -37.1,\n",
" -37. ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-18.5 -18.4 -18.3 ... -8.1 -8.0</div><input id='attrs-a671e4a6-6a82-4a89-b803-68e19f4c7fb9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a671e4a6-6a82-4a89-b803-68e19f4c7fb9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-13385f8c-2f59-475e-8a87-f0e8f7494dbf' class='xr-var-data-in' type='checkbox'><label for='data-13385f8c-2f59-475e-8a87-f0e8f7494dbf' 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>units :</span></dt><dd>degrees_north</dd><dt><span>long_name :</span></dt><dd>latitude</dd></dl></div><div class='xr-var-data'><pre>array([-18.5, -18.4, -18.3, -18.2, -18.1, -18. , -17.9, -17.8, -17.7, -17.6,\n",
" -17.5, -17.4, -17.3, -17.2, -17.1, -17. , -16.9, -16.8, -16.7, -16.6,\n",
" -16.5, -16.4, -16.3, -16.2, -16.1, -16. , -15.9, -15.8, -15.7, -15.6,\n",
" -15.5, -15.4, -15.3, -15.2, -15.1, -15. , -14.9, -14.8, -14.7, -14.6,\n",
" -14.5, -14.4, -14.3, -14.2, -14.1, -14. , -13.9, -13.8, -13.7, -13.6,\n",
" -13.5, -13.4, -13.3, -13.2, -13.1, -13. , -12.9, -12.8, -12.7, -12.6,\n",
" -12.5, -12.4, -12.3, -12.2, -12.1, -12. , -11.9, -11.8, -11.7, -11.6,\n",
" -11.5, -11.4, -11.3, -11.2, -11.1, -11. , -10.9, -10.8, -10.7, -10.6,\n",
" -10.5, -10.4, -10.3, -10.2, -10.1, -10. , -9.9, -9.8, -9.7, -9.6,\n",
" -9.5, -9.4, -9.3, -9.2, -9.1, -9. , -8.9, -8.8, -8.7, -8.6,\n",
" -8.5, -8.4, -8.3, -8.2, -8.1, -8. ], dtype=float32)</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'>1993-01-01 ... 2002-12-31T23:00:00</div><input id='attrs-1e0b5b59-779a-4373-852f-6b4a13e29cf8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1e0b5b59-779a-4373-852f-6b4a13e29cf8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b758189f-419a-4971-bbf6-24726e7ebe31' class='xr-var-data-in' type='checkbox'><label for='data-b758189f-419a-4971-bbf6-24726e7ebe31' 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>time</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1993-01-01T00:00:00.000000000&#x27;, &#x27;1993-01-01T01:00:00.000000000&#x27;,\n",
" &#x27;1993-01-01T02:00:00.000000000&#x27;, ..., &#x27;2002-12-31T21:00:00.000000000&#x27;,\n",
" &#x27;2002-12-31T22:00:00.000000000&#x27;, &#x27;2002-12-31T23:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-a247a46f-1ca8-4c7a-b734-e965ab27eb5b' class='xr-section-summary-in' type='checkbox' checked><label for='section-a247a46f-1ca8-4c7a-b734-e965ab27eb5b' class='xr-section-summary' >Data variables: <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>d2m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-aa3583fe-bdf6-42ec-b9ce-d57bfbb06c84' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-aa3583fe-bdf6-42ec-b9ce-d57bfbb06c84' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0f5bdb14-a349-4ed0-8013-c27277f8d0e5' class='xr-var-data-in' type='checkbox'><label for='data-0f5bdb14-a349-4ed0-8013-c27277f8d0e5' 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>units :</span></dt><dd>K</dd><dt><span>long_name :</span></dt><dd>2 metre dewpoint temperature</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ssr</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-63d788f7-381d-4b28-9735-18703c4fc40f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-63d788f7-381d-4b28-9735-18703c4fc40f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5aaa210a-59c6-40ba-b7ae-4651920e44ff' class='xr-var-data-in' type='checkbox'><label for='data-5aaa210a-59c6-40ba-b7ae-4651920e44ff' 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>units :</span></dt><dd>J m**-2</dd><dt><span>long_name :</span></dt><dd>Surface net solar radiation</dd><dt><span>standard_name :</span></dt><dd>surface_net_downward_shortwave_flux</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>str</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-594a416b-363c-4f39-8009-439411b3fcb3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-594a416b-363c-4f39-8009-439411b3fcb3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2248050d-1e17-4c16-b627-26e87388a546' class='xr-var-data-in' type='checkbox'><label for='data-2248050d-1e17-4c16-b627-26e87388a546' 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>units :</span></dt><dd>J m**-2</dd><dt><span>long_name :</span></dt><dd>Surface net thermal radiation</dd><dt><span>standard_name :</span></dt><dd>surface_net_upward_longwave_flux</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-5ca13dc5-a205-4945-923a-f469f3a9c70b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5ca13dc5-a205-4945-923a-f469f3a9c70b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-656421c9-3cf5-4a33-8730-8cfd691009c6' class='xr-var-data-in' type='checkbox'><label for='data-656421c9-3cf5-4a33-8730-8cfd691009c6' 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>units :</span></dt><dd>K</dd><dt><span>long_name :</span></dt><dd>2 metre temperature</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>u10</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-54e2dbda-7b79-4e81-beba-506be647f910' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-54e2dbda-7b79-4e81-beba-506be647f910' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fd55b55b-2cc6-4933-b21e-5a28a3741509' class='xr-var-data-in' type='checkbox'><label for='data-fd55b55b-2cc6-4933-b21e-5a28a3741509' 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>units :</span></dt><dd>m s**-1</dd><dt><span>long_name :</span></dt><dd>10 metre U wind component</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>v10</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-9257fd81-dd33-448f-a746-c02719918289' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9257fd81-dd33-448f-a746-c02719918289' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-84020a32-3925-43e7-b5ce-888b13029b28' class='xr-var-data-in' type='checkbox'><label for='data-84020a32-3925-43e7-b5ce-888b13029b28' 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>units :</span></dt><dd>m s**-1</dd><dt><span>long_name :</span></dt><dd>10 metre V wind component</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 733 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-37cc5737-c65c-4c0b-b674-89e39a6a4f23' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-37cc5737-c65c-4c0b-b674-89e39a6a4f23' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-41521241-10c5-4a71-9d55-4fd9e0c3e6f6' class='xr-var-data-in' type='checkbox'><label for='data-41521241-10c5-4a71-9d55-4fd9e0c3e6f6' 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>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 1099 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-a4675f5c-6d86-4351-b1d9-bf25c0438f11' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-a4675f5c-6d86-4351-b1d9-bf25c0438f11' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-793844bc-f20c-4491-811d-52fe60f21f35' class='xr-var-data-in' type='checkbox'><label for='data-793844bc-f20c-4491-811d-52fe60f21f35' 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>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 1099 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vv</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-e2e42ecc-784c-45c7-a2e3-cab21aede470' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-e2e42ecc-784c-45c7-a2e3-cab21aede470' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5013a11f-acef-4884-a4ad-e14707c8a12b' class='xr-var-data-in' type='checkbox'><label for='data-5013a11f-acef-4884-a4ad-e14707c8a12b' 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>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2930 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-5a48b376-e02c-41a6-b8e9-b710cb02cf3c' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-5a48b376-e02c-41a6-b8e9-b710cb02cf3c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-71e40840-4ab2-4c0a-943d-999a1523c464' class='xr-var-data-in' type='checkbox'><label for='data-71e40840-4ab2-4c0a-943d-999a1523c464' 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>\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> 3.50 GiB </td>\n",
" <td> 9.80 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 6590 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>rn</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 106, 101), meta=np.ndarray&gt;</div><input id='attrs-5a3d3257-6a01-4fc4-8d6c-6622a420da9e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-5a3d3257-6a01-4fc4-8d6c-6622a420da9e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b65bd6f5-ab64-4f74-9597-5885523b28f9' class='xr-var-data-in' type='checkbox'><label for='data-b65bd6f5-ab64-4f74-9597-5885523b28f9' 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>\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> 6.99 GiB </td>\n",
" <td> 19.60 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 106, 101) </td>\n",
" <td> (240, 106, 101) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2198 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float64 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >101</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)\">106</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-d9304fab-4472-46e9-baf2-5ce09ff23a10' class='xr-section-summary-in' type='checkbox' checked><label for='section-d9304fab-4472-46e9-baf2-5ce09ff23a10' class='xr-section-summary' >Attributes: <span>(2)</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.6</dd><dt><span>history :</span></dt><dd>2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmwf/mars-client/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1632708390.5273278-7308-19-2be0131c-e468-427a-afad-bf5a7f32fbc0.nc /cache/tmp/2be0131c-e468-427a-afad-bf5a7f32fbc0-adaptor.mars.internal-1632694090.8666043-7308-22-tmp.grib</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (longitude: 101, latitude: 106, time: 87648)\n",
"Coordinates:\n",
" * longitude (longitude) float32 -47.0 -46.9 -46.8 -46.7 ... -37.2 -37.1 -37.0\n",
" * latitude (latitude) float32 -18.5 -18.4 -18.3 -18.2 ... -8.2 -8.1 -8.0\n",
" * time (time) datetime64[ns] 1993-01-01 ... 2002-12-31T23:00:00\n",
"Data variables:\n",
" d2m (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" ssr (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" str (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" t2m (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" u10 (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" v10 (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" t2m_c (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" d2m_c (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" vv (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" ur (time, latitude, longitude) float32 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
" rn (time, latitude, longitude) float64 dask.array<chunksize=(240, 106, 101), meta=np.ndarray>\n",
"Attributes:\n",
" Conventions: CF-1.6\n",
" history: 2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmw..."
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ds = ds.assign({\n",
" 't2m_c': lambda dsi: dsi.t2m - 273.15,\n",
" 'd2m_c': lambda dsi: dsi.d2m - 273.15,\n",
"})\n",
"\n",
"ds = ds.assign({\n",
" 'vv': lambda dsi: np.sqrt((dsi.u10 ** 2) + (dsi.v10 ** 2)),\n",
" 'ur': lambda dsi: (0.6108 * np.exp((17.27 * dsi.d2m_c) / (dsi.d2m_c + 237.3))) / (0.6108 * np.exp((17.27 * dsi.t2m_c) / (dsi.t2m_c + 237.3))) * 100,\n",
" 'rn': lambda dsi: (dsi.ssr - dsi['str'])/10**6, #megajoule/metro/dia\n",
"})\n",
"\n",
"dsx = ds\n",
"dsx"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 541
},
"id": "9ymDlk5sCZxS",
"outputId": "74a866e0-b46a-4930-e9a8-bb5332f7b986"
},
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (time: 87648, latitude: 21, longitude: 20)\n",
"Coordinates:\n",
" * longitude (longitude) float32 -46.75 -46.25 -45.75 ... -38.25 -37.75 -37.25\n",
" * latitude (latitude) float32 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
" * time (time) datetime64[ns] 1993-01-01 ... 2002-12-31T23:00:00\n",
"Data variables:\n",
" d2m (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" ssr (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" str (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" t2m (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" u10 (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" v10 (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" vv (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" ur (time, latitude, longitude) float32 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
" rn (time, latitude, longitude) float64 dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;\n",
"Attributes:\n",
" Conventions: CF-1.6\n",
" history: 2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmw...</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-a8ce129b-ca77-431e-a66d-c5a02f06126a' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-a8ce129b-ca77-431e-a66d-c5a02f06126a' 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'>time</span>: 87648</li><li><span class='xr-has-index'>latitude</span>: 21</li><li><span class='xr-has-index'>longitude</span>: 20</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-0dda4b83-2570-492e-8c0b-91855fbcd6d4' class='xr-section-summary-in' type='checkbox' checked><label for='section-0dda4b83-2570-492e-8c0b-91855fbcd6d4' class='xr-section-summary' >Coordinates: <span>(3)</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'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-46.75 -46.25 ... -37.75 -37.25</div><input id='attrs-aebdabcb-2479-43bd-b71c-2c3402d3d5ee' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-aebdabcb-2479-43bd-b71c-2c3402d3d5ee' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d46d5b65-9fc5-4628-8196-a17d04008948' class='xr-var-data-in' type='checkbox'><label for='data-d46d5b65-9fc5-4628-8196-a17d04008948' 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([-46.75, -46.25, -45.75, -45.25, -44.75, -44.25, -43.75, -43.25, -42.75,\n",
" -42.25, -41.75, -41.25, -40.75, -40.25, -39.75, -39.25, -38.75, -38.25,\n",
" -37.75, -37.25], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-18.25 -17.75 ... -8.75 -8.25</div><input id='attrs-c92afb84-962f-464b-8c8e-764d5c2b87a2' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c92afb84-962f-464b-8c8e-764d5c2b87a2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e3971a77-e70d-4063-aac7-3ec6478213af' class='xr-var-data-in' type='checkbox'><label for='data-e3971a77-e70d-4063-aac7-3ec6478213af' 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([-18.25, -17.75, -17.25, -16.75, -16.25, -15.75, -15.25, -14.75, -14.25,\n",
" -13.75, -13.25, -12.75, -12.25, -11.75, -11.25, -10.75, -10.25, -9.75,\n",
" -9.25, -8.75, -8.25], dtype=float32)</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'>1993-01-01 ... 2002-12-31T23:00:00</div><input id='attrs-73135fd0-56a7-458c-8ca6-b267ec8fc0cb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-73135fd0-56a7-458c-8ca6-b267ec8fc0cb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7a7867c0-849e-4043-b010-d16aa64373e3' class='xr-var-data-in' type='checkbox'><label for='data-7a7867c0-849e-4043-b010-d16aa64373e3' 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>time</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;1993-01-01T00:00:00.000000000&#x27;, &#x27;1993-01-01T01:00:00.000000000&#x27;,\n",
" &#x27;1993-01-01T02:00:00.000000000&#x27;, ..., &#x27;2002-12-31T21:00:00.000000000&#x27;,\n",
" &#x27;2002-12-31T22:00:00.000000000&#x27;, &#x27;2002-12-31T23:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-80962f48-d8c5-450f-b2a3-c33ca7dc4b58' class='xr-section-summary-in' type='checkbox' checked><label for='section-80962f48-d8c5-450f-b2a3-c33ca7dc4b58' class='xr-section-summary' >Data variables: <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>d2m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-08441590-87b6-4058-bfaa-6267685e870c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-08441590-87b6-4058-bfaa-6267685e870c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-39c34b86-00c1-4fe7-a9c8-0d502ed1b4e0' class='xr-var-data-in' type='checkbox'><label for='data-39c34b86-00c1-4fe7-a9c8-0d502ed1b4e0' 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>units :</span></dt><dd>K</dd><dt><span>long_name :</span></dt><dd>2 metre dewpoint temperature</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2563 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ssr</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-b6ab5288-2da2-4516-975d-343fb6a75380' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b6ab5288-2da2-4516-975d-343fb6a75380' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c4b72c6b-43d3-4a31-a1c1-a506e7f4e640' class='xr-var-data-in' type='checkbox'><label for='data-c4b72c6b-43d3-4a31-a1c1-a506e7f4e640' 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>units :</span></dt><dd>J m**-2</dd><dt><span>long_name :</span></dt><dd>Surface net solar radiation</dd><dt><span>standard_name :</span></dt><dd>surface_net_downward_shortwave_flux</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2563 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>str</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-8bb945a0-f133-47ea-9935-4ad233cb3992' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8bb945a0-f133-47ea-9935-4ad233cb3992' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-513375bc-922b-4692-a732-7481702de698' class='xr-var-data-in' type='checkbox'><label for='data-513375bc-922b-4692-a732-7481702de698' 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>units :</span></dt><dd>J m**-2</dd><dt><span>long_name :</span></dt><dd>Surface net thermal radiation</dd><dt><span>standard_name :</span></dt><dd>surface_net_upward_longwave_flux</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2563 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-0d7e7b6a-e583-4166-8688-a6a0db052fb4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0d7e7b6a-e583-4166-8688-a6a0db052fb4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-706982b3-29f7-41e6-8af6-f906033e7fbe' class='xr-var-data-in' type='checkbox'><label for='data-706982b3-29f7-41e6-8af6-f906033e7fbe' 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>units :</span></dt><dd>K</dd><dt><span>long_name :</span></dt><dd>2 metre temperature</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2563 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>u10</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-f44e8438-43ef-4140-a87b-09aac290d6c3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f44e8438-43ef-4140-a87b-09aac290d6c3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c2a88489-f6f8-45d9-b478-3a0b73a61ef6' class='xr-var-data-in' type='checkbox'><label for='data-c2a88489-f6f8-45d9-b478-3a0b73a61ef6' 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>units :</span></dt><dd>m s**-1</dd><dt><span>long_name :</span></dt><dd>10 metre U wind component</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2563 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>v10</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-fc6abbec-305c-4175-b18d-c3445a5ae6f7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fc6abbec-305c-4175-b18d-c3445a5ae6f7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e0e69aea-29b5-4832-8ece-7ebfb7deec71' class='xr-var-data-in' type='checkbox'><label for='data-e0e69aea-29b5-4832-8ece-7ebfb7deec71' 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>units :</span></dt><dd>m s**-1</dd><dt><span>long_name :</span></dt><dd>10 metre V wind component</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2563 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-bd4a4044-2bff-4ea3-aee3-3cfc5e815695' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-bd4a4044-2bff-4ea3-aee3-3cfc5e815695' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ebb52377-ff4b-4d6f-ad73-fb697f4343ec' class='xr-var-data-in' type='checkbox'><label for='data-ebb52377-ff4b-4d6f-ad73-fb697f4343ec' 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>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2929 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-18f801da-6b66-4087-a486-b82a9f1d46b5' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-18f801da-6b66-4087-a486-b82a9f1d46b5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-86245f55-cf45-4cb3-a437-95e4bd04f3b2' class='xr-var-data-in' type='checkbox'><label for='data-86245f55-cf45-4cb3-a437-95e4bd04f3b2' 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>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 2929 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vv</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-346b95ae-286d-4be7-b182-aee707ccf1f3' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-346b95ae-286d-4be7-b182-aee707ccf1f3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a24ea4ff-c199-4745-9134-a10442689aed' class='xr-var-data-in' type='checkbox'><label for='data-a24ea4ff-c199-4745-9134-a10442689aed' 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>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 4760 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-0c074f24-eeaf-49e2-a7e5-69470e17c046' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-0c074f24-eeaf-49e2-a7e5-69470e17c046' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-90c3bd17-c1c6-4706-9498-da4e5d0bb520' class='xr-var-data-in' type='checkbox'><label for='data-90c3bd17-c1c6-4706-9498-da4e5d0bb520' 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>\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> 140.43 MiB </td>\n",
" <td> 393.75 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 8420 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>rn</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(240, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-951969a3-d967-4bf8-bb34-14ea29a4eabd' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-951969a3-d967-4bf8-bb34-14ea29a4eabd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ba476cc1-b5f8-4c80-8bef-e983c509e9a6' class='xr-var-data-in' type='checkbox'><label for='data-ba476cc1-b5f8-4c80-8bef-e983c509e9a6' 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>\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> 280.85 MiB </td>\n",
" <td> 787.50 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (87648, 21, 20) </td>\n",
" <td> (240, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 4028 Tasks </td>\n",
" <td> 366 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float64 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"70\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"80\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"83\" y2=\"48\" />\n",
" <line x1=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">87648</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-2420f303-50d2-4647-8054-dd9f45916aca' class='xr-section-summary-in' type='checkbox' checked><label for='section-2420f303-50d2-4647-8054-dd9f45916aca' class='xr-section-summary' >Attributes: <span>(2)</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.6</dd><dt><span>history :</span></dt><dd>2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmwf/mars-client/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1632708390.5273278-7308-19-2be0131c-e468-427a-afad-bf5a7f32fbc0.nc /cache/tmp/2be0131c-e468-427a-afad-bf5a7f32fbc0-adaptor.mars.internal-1632694090.8666043-7308-22-tmp.grib</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (time: 87648, latitude: 21, longitude: 20)\n",
"Coordinates:\n",
" * longitude (longitude) float32 -46.75 -46.25 -45.75 ... -38.25 -37.75 -37.25\n",
" * latitude (latitude) float32 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
" * time (time) datetime64[ns] 1993-01-01 ... 2002-12-31T23:00:00\n",
"Data variables:\n",
" d2m (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" ssr (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" str (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" t2m (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" u10 (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" v10 (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" t2m_c (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" d2m_c (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" vv (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" ur (time, latitude, longitude) float32 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
" rn (time, latitude, longitude) float64 dask.array<chunksize=(240, 21, 20), meta=np.ndarray>\n",
"Attributes:\n",
" Conventions: CF-1.6\n",
" history: 2021-09-27 02:44:23 GMT by grib_to_netcdf-2.20.0: /opt/ecmw..."
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"grouped_spacing = dsx.coarsen(latitude=5, longitude=5, boundary='trim').mean()\n",
"grouped_spacing = grouped_spacing.assign(\n",
" latitude = grouped_spacing.latitude + 0.05,\n",
" longitude = grouped_spacing.longitude + 0.05,\n",
")\n",
"grouped_spacing"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "4RYzL1eV6ljI",
"outputId": "83496c77-6fd2-4d53-8030-4c0e27570e77"
},
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (time: 3652, longitude: 20, latitude: 21)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
" * longitude (longitude) float32 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float32 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
"Data variables:\n",
" t2m_c.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ur.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ur.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ur.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" vv.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" rn.last (time, latitude, longitude) float64 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</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-a647d668-150c-4fd4-9260-b299d9f0cc39' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-a647d668-150c-4fd4-9260-b299d9f0cc39' 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'>time</span>: 3652</li><li><span class='xr-has-index'>longitude</span>: 20</li><li><span class='xr-has-index'>latitude</span>: 21</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-19035e8b-320c-4e80-87ad-c5ed76ea75bd' class='xr-section-summary-in' type='checkbox' checked><label for='section-19035e8b-320c-4e80-87ad-c5ed76ea75bd' class='xr-section-summary' >Coordinates: <span>(3)</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'>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'>1993-01-01 ... 2002-12-31</div><input id='attrs-e547b993-50d9-435b-bedb-0e0ab468919e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-e547b993-50d9-435b-bedb-0e0ab468919e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-663fa2bb-6705-4d71-b75b-53392c7285e2' class='xr-var-data-in' type='checkbox'><label for='data-663fa2bb-6705-4d71-b75b-53392c7285e2' 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;1993-01-01T00:00:00.000000000&#x27;, &#x27;1993-01-02T00:00:00.000000000&#x27;,\n",
" &#x27;1993-01-03T00:00:00.000000000&#x27;, ..., &#x27;2002-12-29T00:00:00.000000000&#x27;,\n",
" &#x27;2002-12-30T00:00:00.000000000&#x27;, &#x27;2002-12-31T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-46.75 -46.25 ... -37.75 -37.25</div><input id='attrs-4270a059-2aff-40d4-97df-b7aa8fecc0dc' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-4270a059-2aff-40d4-97df-b7aa8fecc0dc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ff45b19b-0895-4273-98ae-a9fa1c953865' class='xr-var-data-in' type='checkbox'><label for='data-ff45b19b-0895-4273-98ae-a9fa1c953865' 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([-46.75, -46.25, -45.75, -45.25, -44.75, -44.25, -43.75, -43.25, -42.75,\n",
" -42.25, -41.75, -41.25, -40.75, -40.25, -39.75, -39.25, -38.75, -38.25,\n",
" -37.75, -37.25], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-18.25 -17.75 ... -8.75 -8.25</div><input id='attrs-50ca9f9c-356a-4ea2-8488-46cb3fbe5bfd' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-50ca9f9c-356a-4ea2-8488-46cb3fbe5bfd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-59869ebb-be4f-40e4-bd03-2e0d5700e017' class='xr-var-data-in' type='checkbox'><label for='data-59869ebb-be4f-40e4-bd03-2e0d5700e017' 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([-18.25, -17.75, -17.25, -16.75, -16.25, -15.75, -15.25, -14.75, -14.25,\n",
" -13.75, -13.25, -12.75, -12.25, -11.75, -11.25, -10.75, -10.25, -9.75,\n",
" -9.25, -8.75, -8.25], dtype=float32)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-c71b13c9-9798-426e-a471-690e72dd212f' class='xr-section-summary-in' type='checkbox' checked><label for='section-c71b13c9-9798-426e-a471-690e72dd212f' class='xr-section-summary' >Data variables: <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>t2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-cc2b5e21-2013-4113-94fa-9c2f2bbd741b' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-cc2b5e21-2013-4113-94fa-9c2f2bbd741b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6bdfecad-ab89-47c0-aaef-b37af59a6165' class='xr-var-data-in' type='checkbox'><label for='data-6bdfecad-ab89-47c0-aaef-b37af59a6165' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-94166615-6e63-4a69-9691-55cbcbcb540a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-94166615-6e63-4a69-9691-55cbcbcb540a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7fca16da-42d6-46a3-b01d-f95cabd642e3' class='xr-var-data-in' type='checkbox'><label for='data-7fca16da-42d6-46a3-b01d-f95cabd642e3' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-ac719ea7-4bf9-440f-956a-c460c6d0f52a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ac719ea7-4bf9-440f-956a-c460c6d0f52a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-22e29252-eb0b-4d79-901e-52e431491a10' class='xr-var-data-in' type='checkbox'><label for='data-22e29252-eb0b-4d79-901e-52e431491a10' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-93a631fa-4c50-4fdc-8891-a08297bfb522' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-93a631fa-4c50-4fdc-8891-a08297bfb522' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9fd1f317-b039-4903-b814-6228d4e9e8c1' class='xr-var-data-in' type='checkbox'><label for='data-9fd1f317-b039-4903-b814-6228d4e9e8c1' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-c828efb7-94a2-4ffe-a0ce-077a19a1f274' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c828efb7-94a2-4ffe-a0ce-077a19a1f274' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ef5542e7-0ead-46e6-bde3-72bea2fc2b37' class='xr-var-data-in' type='checkbox'><label for='data-ef5542e7-0ead-46e6-bde3-72bea2fc2b37' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-8292cd92-191c-41b1-be8f-57a62edf3c0b' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8292cd92-191c-41b1-be8f-57a62edf3c0b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b244848b-e732-473f-b93c-1b85c33b8ca8' class='xr-var-data-in' type='checkbox'><label for='data-b244848b-e732-473f-b93c-1b85c33b8ca8' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-ed00aa61-2939-4cc2-ad59-afdd05a2730f' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ed00aa61-2939-4cc2-ad59-afdd05a2730f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-493fb029-6051-4016-be07-1212c8fdd283' class='xr-var-data-in' type='checkbox'><label for='data-493fb029-6051-4016-be07-1212c8fdd283' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-9ab61ecf-bff3-409b-a5fe-5322a8eef0f7' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-9ab61ecf-bff3-409b-a5fe-5322a8eef0f7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-27a79735-4bd7-4ce7-b52a-9a34e435d50b' class='xr-var-data-in' type='checkbox'><label for='data-27a79735-4bd7-4ce7-b52a-9a34e435d50b' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-cbabdfda-07ef-4a6b-90d2-e10270969113' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-cbabdfda-07ef-4a6b-90d2-e10270969113' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dd73fb4d-e63c-47e4-b22f-2b40a9bdd582' class='xr-var-data-in' type='checkbox'><label for='data-dd73fb4d-e63c-47e4-b22f-2b40a9bdd582' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vv.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-153332ee-7188-4ce8-b5a5-84abf00587f8' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-153332ee-7188-4ce8-b5a5-84abf00587f8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f4b88da4-89b4-4a35-a789-cb62d50fab20' class='xr-var-data-in' type='checkbox'><label for='data-f4b88da4-89b4-4a35-a789-cb62d50fab20' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 19368 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>rn.last</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-23ae2799-4252-4e5c-989d-80ce85cb2ac8' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-23ae2799-4252-4e5c-989d-80ce85cb2ac8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-780dc2b9-3e4b-41bc-8d7d-e67e54e5f82b' class='xr-var-data-in' type='checkbox'><label for='data-780dc2b9-3e4b-41bc-8d7d-e67e54e5f82b' 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>\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.70 MiB </td>\n",
" <td> 3.28 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 14984 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float64 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-97b376b7-8641-4607-91a6-b2f0d4537dbb' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-97b376b7-8641-4607-91a6-b2f0d4537dbb' 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>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (time: 3652, longitude: 20, latitude: 21)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
" * longitude (longitude) float32 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float32 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
"Data variables:\n",
" t2m_c.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" t2m_c.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" t2m_c.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ur.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ur.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ur.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" vv.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" rn.last (time, latitude, longitude) float64 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>"
]
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#!del .\\tmp\\generic_nc\\grouped_spacing.nc\n",
"#grouped_spacing.to_netcdf('./tmp/generic_nc/grouped_spacing.nc')\n",
" \n",
"#!del .\\tmp\\tmp0\\*.nc\n",
"#grouped_spacing = xr.open_dataset('./tmp/generic_nc/grouped_spacing.nc')\n",
"\n",
"# grouped_spacing.t2m_c.resample(time='1D').mean().rename('t2m_c.mean').to_netcdf('./tmp/tmp0/t2m_c.mean.nc')\n",
"# grouped_spacing.t2m_c.resample(time='1D').min().rename('t2m_c.min').to_netcdf('./tmp/tmp0/t2m_c.min.nc')\n",
"# grouped_spacing.t2m_c.resample(time='1D').max().rename('t2m_c.max').to_netcdf('./tmp/tmp0/t2m_c.max.nc')\n",
"# grouped_spacing.d2m_c.resample(time='1D').mean().rename('d2m_c.mean').to_netcdf('./tmp/tmp0/d2m_c.mean.nc')\n",
"# grouped_spacing.d2m_c.resample(time='1D').min().rename('d2m_c.min').to_netcdf('./tmp/tmp0/d2m_c.min.nc')\n",
"# grouped_spacing.d2m_c.resample(time='1D').max().rename('d2m_c.max').to_netcdf('./tmp/tmp0/d2m_c.max.nc')\n",
"# grouped_spacing.ur.resample(time='1D').mean().rename('ur.mean').to_netcdf('./tmp/tmp0/ur.mean.nc')\n",
"# grouped_spacing.ur.resample(time='1D').min().rename('ur.min').to_netcdf('./tmp/tmp0/ur.min.nc')\n",
"# grouped_spacing.ur.resample(time='1D').max().rename('ur.max').to_netcdf('./tmp/tmp0/ur.max.nc')\n",
"# grouped_spacing.vv.resample(time='1D').mean().rename('vv.mean').to_netcdf('./tmp/tmp0/vv.mean.nc')\n",
"# grouped_spacing.rn.resample(time='1D').last(skipna=False).rename('rn.last').to_netcdf('./tmp/tmp0/rn.last.nc')\n",
"\n",
"all = xr.merge([\n",
" grouped_spacing.t2m_c.resample(time='1D').mean().rename('t2m_c.mean'),\n",
" grouped_spacing.t2m_c.resample(time='1D').min().rename('t2m_c.min'),\n",
" grouped_spacing.t2m_c.resample(time='1D').max().rename('t2m_c.max'),\n",
" grouped_spacing.d2m_c.resample(time='1D').mean().rename('d2m_c.mean'),\n",
" grouped_spacing.d2m_c.resample(time='1D').min().rename('d2m_c.min'),\n",
" grouped_spacing.d2m_c.resample(time='1D').max().rename('d2m_c.max'),\n",
" grouped_spacing.ur.resample(time='1D').mean().rename('ur.mean'),\n",
" grouped_spacing.ur.resample(time='1D').min().rename('ur.min'),\n",
" grouped_spacing.ur.resample(time='1D').max().rename('ur.max'),\n",
" grouped_spacing.vv.resample(time='1D').mean().rename('vv.mean'),\n",
" grouped_spacing.rn.resample(time='1D').last(skipna=False).rename('rn.last'),\n",
"])\n",
"all"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 418
},
"id": "z3styx2aCvpR",
"outputId": "07c9cf96-89a8-468a-8b4d-cd5ba656db9b"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[########################################] | 100% Completed | 0.3s\n"
]
},
{
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (latitude: 360, longitude: 720, time: 6210)\n",
"Coordinates:\n",
" * latitude (latitude) float32 -89.75 -89.25 -88.75 ... 88.75 89.25 89.75\n",
" * longitude (longitude) float32 -179.8 -179.2 -178.8 ... 178.8 179.2 179.8\n",
" * time (time) datetime64[ns] 2000-01-01 2000-01-02 ... 2016-12-31\n",
"Data variables:\n",
" precip (time, latitude, longitude) float32 dask.array&lt;chunksize=(366, 360, 720), meta=np.ndarray&gt;\n",
"Attributes:\n",
" Conventions: CF-1.0\n",
" version: V1.0\n",
" history: created 9/2016 by CAS NOAA/ESRL PSD\n",
" title: CPC GLOBAL PRCP V1.0\n",
" dataset_title: CPC GLOBAL PRCP V1.0\n",
" Source: ftp://ftp.cpc.ncep.noaa.gov/precip/CPC_UNI_PRCP/\n",
" References: https://www.psl.noaa.gov/data/gridded/data.cpc.globalprec...</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-b5851ebe-ab19-4fa1-b8cc-e1470ebfe931' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b5851ebe-ab19-4fa1-b8cc-e1470ebfe931' 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'>latitude</span>: 360</li><li><span class='xr-has-index'>longitude</span>: 720</li><li><span class='xr-has-index'>time</span>: 6210</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-372b5ba6-0b6d-41ca-9714-a7348b844170' class='xr-section-summary-in' type='checkbox' checked><label for='section-372b5ba6-0b6d-41ca-9714-a7348b844170' class='xr-section-summary' >Coordinates: <span>(3)</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'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-89.75 -89.25 ... 89.25 89.75</div><input id='attrs-b0050441-0a23-45df-ba32-078ee39db17d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b0050441-0a23-45df-ba32-078ee39db17d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b94c124f-4819-40cb-8cd1-5df9860a744a' class='xr-var-data-in' type='checkbox'><label for='data-b94c124f-4819-40cb-8cd1-5df9860a744a' 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>actual_range :</span></dt><dd>[ 89.75 -89.75]</dd><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>axis :</span></dt><dd>Y</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>coordinate_defines :</span></dt><dd>center</dd></dl></div><div class='xr-var-data'><pre>array([-89.75, -89.25, -88.75, ..., 88.75, 89.25, 89.75], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-179.8 -179.2 ... 179.2 179.8</div><input id='attrs-64e9eb18-ca74-4011-ac75-6b0922670f50' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-64e9eb18-ca74-4011-ac75-6b0922670f50' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-361bc4b2-d394-4b3f-bee0-2b584a606322' class='xr-var-data-in' type='checkbox'><label for='data-361bc4b2-d394-4b3f-bee0-2b584a606322' 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([-179.75, -179.25, -178.75, ..., 178.75, 179.25, 179.75],\n",
" dtype=float32)</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'>2000-01-01 ... 2016-12-31</div><input id='attrs-701e53e2-2fcb-4739-9f8b-75868e8a0362' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-701e53e2-2fcb-4739-9f8b-75868e8a0362' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ff632e6e-cb71-4d20-9850-08de60124170' class='xr-var-data-in' type='checkbox'><label for='data-ff632e6e-cb71-4d20-9850-08de60124170' 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>Time</dd><dt><span>axis :</span></dt><dd>T</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>coordinate_defines :</span></dt><dd>start</dd><dt><span>actual_range :</span></dt><dd>[876576. 885336.]</dd><dt><span>delta_t :</span></dt><dd>0000-00-01 00:00:00</dd><dt><span>avg_period :</span></dt><dd>0000-00-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2000-01-01T00:00:00.000000000&#x27;, &#x27;2000-01-02T00:00:00.000000000&#x27;,\n",
" &#x27;2000-01-03T00:00:00.000000000&#x27;, ..., &#x27;2016-12-29T00:00:00.000000000&#x27;,\n",
" &#x27;2016-12-30T00:00:00.000000000&#x27;, &#x27;2016-12-31T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-d19c9da8-266a-4f5b-beac-1214dbfa1efd' class='xr-section-summary-in' type='checkbox' checked><label for='section-d19c9da8-266a-4f5b-beac-1214dbfa1efd' 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>precip</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(366, 360, 720), meta=np.ndarray&gt;</div><input id='attrs-399e3e57-ddd3-49d5-888e-0be13e4d5175' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-399e3e57-ddd3-49d5-888e-0be13e4d5175' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3cc4c074-c279-4b30-ad5b-3e9d1645fd6d' class='xr-var-data-in' type='checkbox'><label for='data-3cc4c074-c279-4b30-ad5b-3e9d1645fd6d' 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>var_desc :</span></dt><dd>Precipitation</dd><dt><span>level_desc :</span></dt><dd>Surface</dd><dt><span>statistic :</span></dt><dd>Total</dd><dt><span>parent_stat :</span></dt><dd>Other</dd><dt><span>long_name :</span></dt><dd>Daily total of precipitation</dd><dt><span>cell_methods :</span></dt><dd>time: sum</dd><dt><span>avg_period :</span></dt><dd>0000-00-01 00:00:00</dd><dt><span>actual_range :</span></dt><dd>[ 0. 482.55536]</dd><dt><span>units :</span></dt><dd>mm</dd><dt><span>valid_range :</span></dt><dd>[ 0. 1000.]</dd><dt><span>dataset :</span></dt><dd>CPC Global Precipitation</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 6.00 GiB </td>\n",
" <td> 361.89 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (6210, 360, 720) </td>\n",
" <td> (366, 360, 720) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 85 Tasks </td>\n",
" <td> 17 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"169\" height=\"155\" 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=\"35\" x2=\"80\" y2=\"105\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"35\" style=\"stroke-width:2\" />\n",
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"39\" />\n",
" <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"43\" />\n",
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"47\" />\n",
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"52\" />\n",
" <line x1=\"30\" y1=\"20\" x2=\"30\" y2=\"56\" />\n",
" <line x1=\"34\" y1=\"24\" x2=\"34\" y2=\"60\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"39\" y2=\"64\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"68\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"47\" y2=\"72\" />\n",
" <line x1=\"51\" y1=\"41\" x2=\"51\" y2=\"76\" />\n",
" <line x1=\"55\" y1=\"45\" x2=\"55\" y2=\"81\" />\n",
" <line x1=\"59\" y1=\"49\" x2=\"59\" y2=\"85\" />\n",
" <line x1=\"63\" y1=\"53\" x2=\"63\" y2=\"89\" />\n",
" <line x1=\"68\" y1=\"58\" x2=\"68\" y2=\"93\" />\n",
" <line x1=\"72\" y1=\"62\" x2=\"72\" y2=\"97\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"76\" y2=\"101\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"105\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,105.99208273622179 10.0,35.40384744210414\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"49\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"14\" y1=\"4\" x2=\"53\" y2=\"4\" />\n",
" <line x1=\"18\" y1=\"8\" x2=\"57\" y2=\"8\" />\n",
" <line x1=\"22\" y1=\"12\" x2=\"61\" y2=\"12\" />\n",
" <line x1=\"26\" y1=\"16\" x2=\"66\" y2=\"16\" />\n",
" <line x1=\"30\" y1=\"20\" x2=\"70\" y2=\"20\" />\n",
" <line x1=\"34\" y1=\"24\" x2=\"74\" y2=\"24\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"78\" y2=\"29\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"82\" y2=\"33\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"86\" y2=\"37\" />\n",
" <line x1=\"51\" y1=\"41\" x2=\"90\" y2=\"41\" />\n",
" <line x1=\"55\" y1=\"45\" x2=\"95\" y2=\"45\" />\n",
" <line x1=\"59\" y1=\"49\" x2=\"99\" y2=\"49\" />\n",
" <line x1=\"63\" y1=\"53\" x2=\"103\" y2=\"53\" />\n",
" <line x1=\"68\" y1=\"58\" x2=\"107\" y2=\"58\" />\n",
" <line x1=\"72\" y1=\"62\" x2=\"111\" y2=\"62\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"115\" y2=\"66\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"119\" 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=\"49\" y1=\"0\" x2=\"119\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 49.39965167068543,0.0 119.98788696480308,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"119\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"105\" x2=\"119\" y2=\"105\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"105\" style=\"stroke-width:2\" />\n",
" <line x1=\"119\" y1=\"70\" x2=\"119\" y2=\"105\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 119.98788696480308,70.58823529411765 119.98788696480308,105.99208273622179 80.58823529411765,105.99208273622179\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"100.288061\" y=\"125.992083\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >720</text>\n",
" <text x=\"139.987887\" y=\"88.290159\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,139.987887,88.290159)\">360</text>\n",
" <text x=\"35.294118\" y=\"90.697965\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,90.697965)\">6210</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-61de0b53-1d09-48de-9ac1-e7c4e532f325' class='xr-section-summary-in' type='checkbox' checked><label for='section-61de0b53-1d09-48de-9ac1-e7c4e532f325' class='xr-section-summary' >Attributes: <span>(7)</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.0</dd><dt><span>version :</span></dt><dd>V1.0</dd><dt><span>history :</span></dt><dd>created 9/2016 by CAS NOAA/ESRL PSD</dd><dt><span>title :</span></dt><dd>CPC GLOBAL PRCP V1.0</dd><dt><span>dataset_title :</span></dt><dd>CPC GLOBAL PRCP V1.0</dd><dt><span>Source :</span></dt><dd>ftp://ftp.cpc.ncep.noaa.gov/precip/CPC_UNI_PRCP/</dd><dt><span>References :</span></dt><dd>https://www.psl.noaa.gov/data/gridded/data.cpc.globalprecip.html</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (latitude: 360, longitude: 720, time: 6210)\n",
"Coordinates:\n",
" * latitude (latitude) float32 -89.75 -89.25 -88.75 ... 88.75 89.25 89.75\n",
" * longitude (longitude) float32 -179.8 -179.2 -178.8 ... 178.8 179.2 179.8\n",
" * time (time) datetime64[ns] 2000-01-01 2000-01-02 ... 2016-12-31\n",
"Data variables:\n",
" precip (time, latitude, longitude) float32 dask.array<chunksize=(366, 360, 720), meta=np.ndarray>\n",
"Attributes:\n",
" Conventions: CF-1.0\n",
" version: V1.0\n",
" history: created 9/2016 by CAS NOAA/ESRL PSD\n",
" title: CPC GLOBAL PRCP V1.0\n",
" dataset_title: CPC GLOBAL PRCP V1.0\n",
" Source: ftp://ftp.cpc.ncep.noaa.gov/precip/CPC_UNI_PRCP/\n",
" References: https://www.psl.noaa.gov/data/gridded/data.cpc.globalprec..."
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ds2 = xr.open_mfdataset(\n",
" './precip/precip.*.nc',\n",
" parallel=True,\n",
")\n",
"\n",
"# converte as latitude de (0, 360) pra (-180, 180)\n",
"ds2 = ds2.assign_coords(lon=(((ds2.lon + 180) % 360) - 180))\n",
"\n",
"ds2 = (\n",
" ds2\n",
" .rename(lat='latitude', lon='longitude')\n",
" .sortby(['latitude', 'longitude'])\n",
")\n",
"\n",
"ds2"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 413
},
"id": "AtoODxI-Cw9b",
"outputId": "f3dc5cc5-4125-40f4-b286-e917ebaab468"
},
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (time: 3652, longitude: 20, latitude: 21)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
" * longitude (longitude) float64 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float64 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
"Data variables:\n",
" t2m_c.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ur.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ur.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ur.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" vv.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" rn.last (time, latitude, longitude) float64 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" precip (time, latitude, longitude) float32 dask.array&lt;chunksize=(2922, 21, 20), meta=np.ndarray&gt;</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-2825aaee-d3e4-43cb-8b59-cc78d7b0381f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-2825aaee-d3e4-43cb-8b59-cc78d7b0381f' 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'>time</span>: 3652</li><li><span class='xr-has-index'>longitude</span>: 20</li><li><span class='xr-has-index'>latitude</span>: 21</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-45dfae3e-8359-4867-8cd8-0982509cc0c9' class='xr-section-summary-in' type='checkbox' checked><label for='section-45dfae3e-8359-4867-8cd8-0982509cc0c9' class='xr-section-summary' >Coordinates: <span>(3)</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'>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'>1993-01-01 ... 2002-12-31</div><input id='attrs-3c588878-4493-4bf5-810e-a09b7a887b94' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-3c588878-4493-4bf5-810e-a09b7a887b94' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fbeb4828-6c33-4580-9603-2b015f87da7b' class='xr-var-data-in' type='checkbox'><label for='data-fbeb4828-6c33-4580-9603-2b015f87da7b' 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;1993-01-01T00:00:00.000000000&#x27;, &#x27;1993-01-02T00:00:00.000000000&#x27;,\n",
" &#x27;1993-01-03T00:00:00.000000000&#x27;, ..., &#x27;2002-12-29T00:00:00.000000000&#x27;,\n",
" &#x27;2002-12-30T00:00:00.000000000&#x27;, &#x27;2002-12-31T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-46.75 -46.25 ... -37.75 -37.25</div><input id='attrs-3d4b0518-801a-45ef-acb3-fc615b526da3' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-3d4b0518-801a-45ef-acb3-fc615b526da3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5f640cb9-dd32-4910-9762-749b67c69841' class='xr-var-data-in' type='checkbox'><label for='data-5f640cb9-dd32-4910-9762-749b67c69841' 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([-46.75, -46.25, -45.75, -45.25, -44.75, -44.25, -43.75, -43.25, -42.75,\n",
" -42.25, -41.75, -41.25, -40.75, -40.25, -39.75, -39.25, -38.75, -38.25,\n",
" -37.75, -37.25])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-18.25 -17.75 ... -8.75 -8.25</div><input id='attrs-3367f51a-0d27-48a6-82fa-92eb7bea1f72' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-3367f51a-0d27-48a6-82fa-92eb7bea1f72' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2a311f53-52e4-471a-957c-a387c912b362' class='xr-var-data-in' type='checkbox'><label for='data-2a311f53-52e4-471a-957c-a387c912b362' 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([-18.25, -17.75, -17.25, -16.75, -16.25, -15.75, -15.25, -14.75, -14.25,\n",
" -13.75, -13.25, -12.75, -12.25, -11.75, -11.25, -10.75, -10.25, -9.75,\n",
" -9.25, -8.75, -8.25])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-2961dca8-fc89-4f42-ac4e-4feef176465f' class='xr-section-summary-in' type='checkbox' checked><label for='section-2961dca8-fc89-4f42-ac4e-4feef176465f' class='xr-section-summary' >Data variables: <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>t2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-3145811c-af0b-4adf-86cb-f386b0e5fdc8' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-3145811c-af0b-4adf-86cb-f386b0e5fdc8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-71ad353f-bba8-49bc-9b9c-07d8a72d3530' class='xr-var-data-in' type='checkbox'><label for='data-71ad353f-bba8-49bc-9b9c-07d8a72d3530' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-ad198f31-5b27-4b02-81d1-d7a8c238daaa' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ad198f31-5b27-4b02-81d1-d7a8c238daaa' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6d56a3d2-d357-409f-b4d1-4062c78fb48d' class='xr-var-data-in' type='checkbox'><label for='data-6d56a3d2-d357-409f-b4d1-4062c78fb48d' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-07f50efa-dd68-42e3-8dd9-5a108bbe1ce5' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-07f50efa-dd68-42e3-8dd9-5a108bbe1ce5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3d7fbde9-b75a-429c-9c2a-d7cbb3aacdb8' class='xr-var-data-in' type='checkbox'><label for='data-3d7fbde9-b75a-429c-9c2a-d7cbb3aacdb8' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-7993ada4-a37a-4abe-8dee-4d6cae8b8bcd' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-7993ada4-a37a-4abe-8dee-4d6cae8b8bcd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-03e663ba-2d78-4d9f-ac3b-924eb5744831' class='xr-var-data-in' type='checkbox'><label for='data-03e663ba-2d78-4d9f-ac3b-924eb5744831' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-5e78a69b-d691-4970-9540-e1e248bc1902' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-5e78a69b-d691-4970-9540-e1e248bc1902' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4d6a59fb-7465-4239-a8da-3a4d5da2f9d6' class='xr-var-data-in' type='checkbox'><label for='data-4d6a59fb-7465-4239-a8da-3a4d5da2f9d6' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-e7a6c6cf-4e47-4fc5-8c67-aeff9816d608' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-e7a6c6cf-4e47-4fc5-8c67-aeff9816d608' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-55493032-e029-4651-b86d-9397ebd5df20' class='xr-var-data-in' type='checkbox'><label for='data-55493032-e029-4651-b86d-9397ebd5df20' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-46c3f5c6-5c3d-4a33-8106-fa157802210f' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-46c3f5c6-5c3d-4a33-8106-fa157802210f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-53939c39-4b10-4acb-ab93-5bb9b18c5434' class='xr-var-data-in' type='checkbox'><label for='data-53939c39-4b10-4acb-ab93-5bb9b18c5434' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-cf3e4757-3e29-4e49-9e4e-0b12b0969ca7' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-cf3e4757-3e29-4e49-9e4e-0b12b0969ca7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-96522ccd-6552-48b8-b7d5-5acff9e01db5' class='xr-var-data-in' type='checkbox'><label for='data-96522ccd-6552-48b8-b7d5-5acff9e01db5' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-f544ab51-1a35-4c2b-be65-73691613ac40' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-f544ab51-1a35-4c2b-be65-73691613ac40' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-29e024b3-f144-405c-8f47-ee7fcd4c23e5' class='xr-var-data-in' type='checkbox'><label for='data-29e024b3-f144-405c-8f47-ee7fcd4c23e5' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vv.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-a2f08440-4734-45d4-ae88-0479b1256e8d' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-a2f08440-4734-45d4-ae88-0479b1256e8d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-948448d9-4f28-4343-b722-2ee69f004992' class='xr-var-data-in' type='checkbox'><label for='data-948448d9-4f28-4343-b722-2ee69f004992' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 19368 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>rn.last</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-c9b23ad2-3123-4e41-beeb-fded8797292e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c9b23ad2-3123-4e41-beeb-fded8797292e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-36a6f69c-6147-4e5a-a456-9c06fdcd453b' class='xr-var-data-in' type='checkbox'><label for='data-36a6f69c-6147-4e5a-a456-9c06fdcd453b' 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>\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.70 MiB </td>\n",
" <td> 3.28 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 14984 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float64 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>precip</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2922, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-f0b15181-fa1a-48f2-bd9d-c45d203e5f5d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f0b15181-fa1a-48f2-bd9d-c45d203e5f5d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-de15d98e-0e0d-417a-99dd-3d8f80b6b4e6' class='xr-var-data-in' type='checkbox'><label for='data-de15d98e-0e0d-417a-99dd-3d8f80b6b4e6' 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>var_desc :</span></dt><dd>Precipitation</dd><dt><span>level_desc :</span></dt><dd>Surface</dd><dt><span>statistic :</span></dt><dd>Total</dd><dt><span>parent_stat :</span></dt><dd>Other</dd><dt><span>long_name :</span></dt><dd>Daily total of precipitation</dd><dt><span>cell_methods :</span></dt><dd>time: sum</dd><dt><span>avg_period :</span></dt><dd>0000-00-01 00:00:00</dd><dt><span>actual_range :</span></dt><dd>[ 0. 482.55536]</dd><dt><span>units :</span></dt><dd>mm</dd><dt><span>valid_range :</span></dt><dd>[ 0. 1000.]</dd><dt><span>dataset :</span></dt><dd>CPC Global Precipitation</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 5.85 MiB </td>\n",
" <td> 4.68 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (2922, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 144 Tasks </td>\n",
" <td> 3 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"66\" y1=\"56\" x2=\"66\" y2=\"81\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\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.41261651458248\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"35\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"66\" y1=\"56\" x2=\"91\" y2=\"56\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"98\" y2=\"63\" />\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:#ECB172A0;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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-a9b0119f-51c0-4cb0-a8a8-a90476f7811f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-a9b0119f-51c0-4cb0-a8a8-a90476f7811f' 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>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (time: 3652, longitude: 20, latitude: 21)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
" * longitude (longitude) float64 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float64 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
"Data variables:\n",
" t2m_c.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" t2m_c.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" t2m_c.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ur.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ur.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ur.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" vv.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" rn.last (time, latitude, longitude) float64 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" precip (time, latitude, longitude) float32 dask.array<chunksize=(2922, 21, 20), meta=np.ndarray>"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"all = all.merge(ds2.precip, join='left')\n",
"all"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (latitude: 360, longitude: 720)\n",
"Coordinates:\n",
" * latitude (latitude) float32 -89.75 -89.25 -88.75 ... 88.75 89.25 89.75\n",
" * longitude (longitude) float32 -179.8 -179.2 -178.8 ... 178.8 179.2 179.8\n",
"Data variables:\n",
" elev (latitude, longitude) float32 ...\n",
"Attributes:\n",
" history: \\nElevations calculated from the TBASE 5-minute\\nlatitude-longi...</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-2b4a0699-6fbd-4f45-a628-f85ec6b0c396' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-2b4a0699-6fbd-4f45-a628-f85ec6b0c396' 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'>latitude</span>: 360</li><li><span class='xr-has-index'>longitude</span>: 720</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-edb87e65-1ab8-4475-93db-f5ef24ceb9a7' class='xr-section-summary-in' type='checkbox' checked><label for='section-edb87e65-1ab8-4475-93db-f5ef24ceb9a7' class='xr-section-summary' >Coordinates: <span>(2)</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'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-89.75 -89.25 ... 89.25 89.75</div><input id='attrs-216ce050-cc13-4edf-a6f4-6e58d899a79d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-216ce050-cc13-4edf-a6f4-6e58d899a79d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b9349aec-97c3-4832-a33b-f4c9c7459047' class='xr-var-data-in' type='checkbox'><label for='data-b9349aec-97c3-4832-a33b-f4c9c7459047' 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>title :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd></dl></div><div class='xr-var-data'><pre>array([-89.75, -89.25, -88.75, ..., 88.75, 89.25, 89.75], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>-179.8 -179.2 ... 179.2 179.8</div><input id='attrs-8db0c1ff-f0df-46ce-822e-a4bd8a8873c0' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8db0c1ff-f0df-46ce-822e-a4bd8a8873c0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0f78b333-a3fc-4cbf-a9ce-1d41532441d8' class='xr-var-data-in' type='checkbox'><label for='data-0f78b333-a3fc-4cbf-a9ce-1d41532441d8' 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([-179.75, -179.25, -178.75, ..., 178.75, 179.25, 179.75],\n",
" dtype=float32)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-67847327-7cb3-4cb7-8fc0-2c701eb41c59' class='xr-section-summary-in' type='checkbox' checked><label for='section-67847327-7cb3-4cb7-8fc0-2c701eb41c59' 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>elev</span></div><div class='xr-var-dims'>(latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c5fe2027-4ccc-49f8-a4a5-1a340d1a4f87' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c5fe2027-4ccc-49f8-a4a5-1a340d1a4f87' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-17a1e4ce-e2bc-4710-a67f-153d21a46ad6' class='xr-var-data-in' type='checkbox'><label for='data-17a1e4ce-e2bc-4710-a67f-153d21a46ad6' 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>meters, from 5-min data</dd><dt><span>units :</span></dt><dd>meters, from 5-min data</dd></dl></div><div class='xr-var-data'><pre>[259200 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-272cda24-b73f-43ff-b365-ae7fc17ed54f' class='xr-section-summary-in' type='checkbox' checked><label for='section-272cda24-b73f-43ff-b365-ae7fc17ed54f' class='xr-section-summary' >Attributes: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>history :</span></dt><dd>\n",
"Elevations calculated from the TBASE 5-minute\n",
"latitude-longitude resolution elevation data set.\n",
"TBASE is available from the NCAR data archive at \n",
"ftp://ncardata.ucar.edu/datasets/ds759.2/ \n",
"Calculation and netCDF file written by Todd Mitchell in August 2000.\n",
"The file is written in COARDS-compliant netCDF:\n",
"http://ferret.wrc.noaa.gov/noaa_coop/coop_cdf_profile.html\n",
"The file was written at the JISAO at the University of Washington.\n",
"http://jisao.washington.edu</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (latitude: 360, longitude: 720)\n",
"Coordinates:\n",
" * latitude (latitude) float32 -89.75 -89.25 -88.75 ... 88.75 89.25 89.75\n",
" * longitude (longitude) float32 -179.8 -179.2 -178.8 ... 178.8 179.2 179.8\n",
"Data variables:\n",
" elev (latitude, longitude) float32 ...\n",
"Attributes:\n",
" history: \\nElevations calculated from the TBASE 5-minute\\nlatitude-longi..."
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ds5 = xr.open_dataset(\n",
" './elev/elev.0.5-deg.nc',\n",
" decode_times=False,\n",
")\n",
"\n",
"# converte as latitude de (0, 360) pra (-180, 180)\n",
"ds5 = ds5.assign_coords(lon=(((ds5.lon + 180) % 360) - 180))\n",
"\n",
"ds5 = (\n",
" ds5\n",
" .rename(lat='latitude', lon='longitude', data='elev')\n",
" .sortby(['latitude', 'longitude'])\n",
" .drop('time')\n",
")\n",
"\n",
"#ds5_corte = ds5.sel(latitude= -7.25, longitude= slice(-36.25, -35.25))\n",
"ds5 = ds5.isel(time=0)\n",
"ds5"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (longitude: 20, latitude: 21, time: 3652)\n",
"Coordinates:\n",
" * longitude (longitude) float64 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float64 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
"Data variables: (12/13)\n",
" t2m_c.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ... ...\n",
" ur.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ur.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" vv.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" rn.last (time, latitude, longitude) float64 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" precip (time, latitude, longitude) float32 dask.array&lt;chunksize=(2922, 21, 20), meta=np.ndarray&gt;\n",
" elev (latitude, longitude) float32 930.0 946.0 766.0 ... 523.0 603.0</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-99b08c58-d155-4072-8e2b-0939db4f61f3' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-99b08c58-d155-4072-8e2b-0939db4f61f3' 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'>longitude</span>: 20</li><li><span class='xr-has-index'>latitude</span>: 21</li><li><span class='xr-has-index'>time</span>: 3652</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-bbf25ef8-6895-433e-80cc-ab984625ec9b' class='xr-section-summary-in' type='checkbox' checked><label for='section-bbf25ef8-6895-433e-80cc-ab984625ec9b' class='xr-section-summary' >Coordinates: <span>(3)</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'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-46.75 -46.25 ... -37.75 -37.25</div><input id='attrs-7a516133-8f67-4467-afe1-b264b937d8a1' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-7a516133-8f67-4467-afe1-b264b937d8a1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5b856fa0-860d-4025-ab0d-fcbd8525013a' class='xr-var-data-in' type='checkbox'><label for='data-5b856fa0-860d-4025-ab0d-fcbd8525013a' 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([-46.75, -46.25, -45.75, -45.25, -44.75, -44.25, -43.75, -43.25, -42.75,\n",
" -42.25, -41.75, -41.25, -40.75, -40.25, -39.75, -39.25, -38.75, -38.25,\n",
" -37.75, -37.25])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-18.25 -17.75 ... -8.75 -8.25</div><input id='attrs-e0e21b8c-39a4-4dd5-89e0-c3d09af95dfb' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-e0e21b8c-39a4-4dd5-89e0-c3d09af95dfb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2e9b051d-8f31-40a1-9219-5ccd65976b14' class='xr-var-data-in' type='checkbox'><label for='data-2e9b051d-8f31-40a1-9219-5ccd65976b14' 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([-18.25, -17.75, -17.25, -16.75, -16.25, -15.75, -15.25, -14.75, -14.25,\n",
" -13.75, -13.25, -12.75, -12.25, -11.75, -11.25, -10.75, -10.25, -9.75,\n",
" -9.25, -8.75, -8.25])</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'>1993-01-01 ... 2002-12-31</div><input id='attrs-6f7d70db-17a3-4de4-9088-61f0c9e2140d' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-6f7d70db-17a3-4de4-9088-61f0c9e2140d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-886fcc2f-085b-470b-9cea-ce0e487d65c3' class='xr-var-data-in' type='checkbox'><label for='data-886fcc2f-085b-470b-9cea-ce0e487d65c3' 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;1993-01-01T00:00:00.000000000&#x27;, &#x27;1993-01-02T00:00:00.000000000&#x27;,\n",
" &#x27;1993-01-03T00:00:00.000000000&#x27;, ..., &#x27;2002-12-29T00:00:00.000000000&#x27;,\n",
" &#x27;2002-12-30T00:00:00.000000000&#x27;, &#x27;2002-12-31T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-36714fac-f775-44fc-aa19-efdae9239079' class='xr-section-summary-in' type='checkbox' checked><label for='section-36714fac-f775-44fc-aa19-efdae9239079' class='xr-section-summary' >Data variables: <span>(13)</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>t2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-61a6c4d3-363b-477b-8004-403b22a602ad' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-61a6c4d3-363b-477b-8004-403b22a602ad' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-95affe21-7328-4af1-acc1-3162c5ca0345' class='xr-var-data-in' type='checkbox'><label for='data-95affe21-7328-4af1-acc1-3162c5ca0345' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-f1c519f3-33ea-4ebc-9825-e20b9ec3478a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-f1c519f3-33ea-4ebc-9825-e20b9ec3478a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b75bd7a0-b5e7-44f0-a2ad-731ca71b2eea' class='xr-var-data-in' type='checkbox'><label for='data-b75bd7a0-b5e7-44f0-a2ad-731ca71b2eea' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-f2d58267-6f18-454d-80cc-9aa9f46c1d65' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-f2d58267-6f18-454d-80cc-9aa9f46c1d65' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6f96cf1c-7406-40ff-97c4-12a53df1c7e9' class='xr-var-data-in' type='checkbox'><label for='data-6f96cf1c-7406-40ff-97c4-12a53df1c7e9' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-59996c6b-fbd7-4656-9eab-9beca280c92a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-59996c6b-fbd7-4656-9eab-9beca280c92a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b4b21879-abf5-4d24-9653-050b0cc610a8' class='xr-var-data-in' type='checkbox'><label for='data-b4b21879-abf5-4d24-9653-050b0cc610a8' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-ae0b38bf-0fff-4a27-badf-64ab53350bd2' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ae0b38bf-0fff-4a27-badf-64ab53350bd2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0483e740-8959-4a62-9f85-ddcd1e90ee0d' class='xr-var-data-in' type='checkbox'><label for='data-0483e740-8959-4a62-9f85-ddcd1e90ee0d' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-3da462ec-3844-4553-a05e-3c28bbac569c' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-3da462ec-3844-4553-a05e-3c28bbac569c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2379c5df-fc0e-4b92-9805-c82dbe4840d8' class='xr-var-data-in' type='checkbox'><label for='data-2379c5df-fc0e-4b92-9805-c82dbe4840d8' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-fc5df470-5293-43c5-bda9-e3f364511e22' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-fc5df470-5293-43c5-bda9-e3f364511e22' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cbee0ef1-2877-4682-b781-5b088835c4b5' class='xr-var-data-in' type='checkbox'><label for='data-cbee0ef1-2877-4682-b781-5b088835c4b5' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-b62f2a2f-6a69-4bf5-a1bb-bb73fc8bf354' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-b62f2a2f-6a69-4bf5-a1bb-bb73fc8bf354' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-98ebf887-63d8-4a3d-ac5f-ea5bd184631b' class='xr-var-data-in' type='checkbox'><label for='data-98ebf887-63d8-4a3d-ac5f-ea5bd184631b' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-bb55f0f8-20f6-4dd7-8f89-9a8416b770f9' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-bb55f0f8-20f6-4dd7-8f89-9a8416b770f9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0a0719d5-465b-4289-8277-47ae4792cea0' class='xr-var-data-in' type='checkbox'><label for='data-0a0719d5-465b-4289-8277-47ae4792cea0' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vv.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-5595126d-204c-44f4-9d44-34b6146f34fe' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-5595126d-204c-44f4-9d44-34b6146f34fe' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e7546960-a8ec-432d-a4ce-c46cd9eed0c8' class='xr-var-data-in' type='checkbox'><label for='data-e7546960-a8ec-432d-a4ce-c46cd9eed0c8' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 19368 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>rn.last</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-2fef68c6-e087-4794-8ade-ad076a0f8028' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-2fef68c6-e087-4794-8ade-ad076a0f8028' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-42f5ab0a-5142-4061-add5-adaad62f0ed8' class='xr-var-data-in' type='checkbox'><label for='data-42f5ab0a-5142-4061-add5-adaad62f0ed8' 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>\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.70 MiB </td>\n",
" <td> 3.28 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 14984 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float64 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>precip</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2922, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-e762ecc6-308f-41bf-b88b-a712d01163d7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e762ecc6-308f-41bf-b88b-a712d01163d7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7cfec9f6-e7d6-42ca-b33c-f7e30ccda47d' class='xr-var-data-in' type='checkbox'><label for='data-7cfec9f6-e7d6-42ca-b33c-f7e30ccda47d' 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>var_desc :</span></dt><dd>Precipitation</dd><dt><span>level_desc :</span></dt><dd>Surface</dd><dt><span>statistic :</span></dt><dd>Total</dd><dt><span>parent_stat :</span></dt><dd>Other</dd><dt><span>long_name :</span></dt><dd>Daily total of precipitation</dd><dt><span>cell_methods :</span></dt><dd>time: sum</dd><dt><span>avg_period :</span></dt><dd>0000-00-01 00:00:00</dd><dt><span>actual_range :</span></dt><dd>[ 0. 482.55536]</dd><dt><span>units :</span></dt><dd>mm</dd><dt><span>valid_range :</span></dt><dd>[ 0. 1000.]</dd><dt><span>dataset :</span></dt><dd>CPC Global Precipitation</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 5.85 MiB </td>\n",
" <td> 4.68 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (2922, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 144 Tasks </td>\n",
" <td> 3 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"66\" y1=\"56\" x2=\"66\" y2=\"81\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\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.41261651458248\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"35\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"66\" y1=\"56\" x2=\"91\" y2=\"56\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"98\" y2=\"63\" />\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:#ECB172A0;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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elev</span></div><div class='xr-var-dims'>(latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-32841a91-a231-4965-aec5-8e9468c8a093' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-32841a91-a231-4965-aec5-8e9468c8a093' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b701c16b-dc3c-49b2-98b7-1e80a0ee7c8e' class='xr-var-data-in' type='checkbox'><label for='data-b701c16b-dc3c-49b2-98b7-1e80a0ee7c8e' 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>meters, from 5-min data</dd><dt><span>units :</span></dt><dd>meters, from 5-min data</dd></dl></div><div class='xr-var-data'><pre>array([[ 930., 946., 766., ..., -18., -396., -2232.],\n",
" [ 751., 759., 735., ..., -67., -745., -2219.],\n",
" [ 640., 529., 569., ..., -1573., -2121., -2086.],\n",
" ...,\n",
" [ 517., 450., 460., ..., 397., 499., 397.],\n",
" [ 505., 469., 325., ..., 444., 496., 553.],\n",
" [ 473., 469., 304., ..., 463., 523., 603.]], dtype=float32)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-cbef6208-5a6c-499e-bb7c-eaa87d28cd6e' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-cbef6208-5a6c-499e-bb7c-eaa87d28cd6e' 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>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (longitude: 20, latitude: 21, time: 3652)\n",
"Coordinates:\n",
" * longitude (longitude) float64 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float64 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
"Data variables: (12/13)\n",
" t2m_c.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" t2m_c.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" t2m_c.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ... ...\n",
" ur.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ur.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" vv.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" rn.last (time, latitude, longitude) float64 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" precip (time, latitude, longitude) float32 dask.array<chunksize=(2922, 21, 20), meta=np.ndarray>\n",
" elev (latitude, longitude) float32 ..."
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"all = all.merge(ds5.elev, join='left')\n",
"all"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (longitude: 20, latitude: 21, time: 3652)\n",
"Coordinates:\n",
" * longitude (longitude) float64 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float64 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
"Data variables: (12/14)\n",
" t2m_c.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" t2m_c.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.min (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" d2m_c.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" ... ...\n",
" ur.max (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" vv.mean (time, latitude, longitude) float32 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" rn.last (time, latitude, longitude) float64 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;\n",
" precip (time, latitude, longitude) float32 dask.array&lt;chunksize=(2922, 21, 20), meta=np.ndarray&gt;\n",
" elev (latitude, longitude) float32 930.0 946.0 766.0 ... 523.0 603.0\n",
" et0 (time, latitude, longitude) float64 dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</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-1eb554be-d9f7-4391-8de2-a3752fd3c687' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-1eb554be-d9f7-4391-8de2-a3752fd3c687' 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'>longitude</span>: 20</li><li><span class='xr-has-index'>latitude</span>: 21</li><li><span class='xr-has-index'>time</span>: 3652</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-752291e9-e433-4fe6-a7bf-5689a34388c6' class='xr-section-summary-in' type='checkbox' checked><label for='section-752291e9-e433-4fe6-a7bf-5689a34388c6' class='xr-section-summary' >Coordinates: <span>(3)</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'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-46.75 -46.25 ... -37.75 -37.25</div><input id='attrs-2598b361-12ba-4786-83c8-1273a48f1b44' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-2598b361-12ba-4786-83c8-1273a48f1b44' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ab2b9894-f54c-49b1-98c9-5f16f64a64ca' class='xr-var-data-in' type='checkbox'><label for='data-ab2b9894-f54c-49b1-98c9-5f16f64a64ca' 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([-46.75, -46.25, -45.75, -45.25, -44.75, -44.25, -43.75, -43.25, -42.75,\n",
" -42.25, -41.75, -41.25, -40.75, -40.25, -39.75, -39.25, -38.75, -38.25,\n",
" -37.75, -37.25])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-18.25 -17.75 ... -8.75 -8.25</div><input id='attrs-fb9e8b14-bdd3-46af-ba8b-cbcc7ef8ff04' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-fb9e8b14-bdd3-46af-ba8b-cbcc7ef8ff04' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b8a742f9-1fd2-4915-a8b9-4f238ec41e84' class='xr-var-data-in' type='checkbox'><label for='data-b8a742f9-1fd2-4915-a8b9-4f238ec41e84' 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([-18.25, -17.75, -17.25, -16.75, -16.25, -15.75, -15.25, -14.75, -14.25,\n",
" -13.75, -13.25, -12.75, -12.25, -11.75, -11.25, -10.75, -10.25, -9.75,\n",
" -9.25, -8.75, -8.25])</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'>1993-01-01 ... 2002-12-31</div><input id='attrs-7454e197-8ebd-487f-bc7d-e061fd6b4c92' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-7454e197-8ebd-487f-bc7d-e061fd6b4c92' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9188a145-5503-4180-b1f5-199b2071a7e9' class='xr-var-data-in' type='checkbox'><label for='data-9188a145-5503-4180-b1f5-199b2071a7e9' 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;1993-01-01T00:00:00.000000000&#x27;, &#x27;1993-01-02T00:00:00.000000000&#x27;,\n",
" &#x27;1993-01-03T00:00:00.000000000&#x27;, ..., &#x27;2002-12-29T00:00:00.000000000&#x27;,\n",
" &#x27;2002-12-30T00:00:00.000000000&#x27;, &#x27;2002-12-31T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-21f220b8-9581-475d-8c97-2fb2f42fbca9' class='xr-section-summary-in' type='checkbox' checked><label for='section-21f220b8-9581-475d-8c97-2fb2f42fbca9' class='xr-section-summary' >Data variables: <span>(14)</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>t2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-49e79490-3e7b-459f-8114-3dcf66eaf1b2' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-49e79490-3e7b-459f-8114-3dcf66eaf1b2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-387d185c-2c09-411d-a5ee-7a26ae802e3c' class='xr-var-data-in' type='checkbox'><label for='data-387d185c-2c09-411d-a5ee-7a26ae802e3c' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-a9c884ea-f5d6-4913-8a06-d74a9988858a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-a9c884ea-f5d6-4913-8a06-d74a9988858a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-911f2264-2264-4619-8bc2-a32e2db85565' class='xr-var-data-in' type='checkbox'><label for='data-911f2264-2264-4619-8bc2-a32e2db85565' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-2d3de597-b0ce-42d4-bc59-11d796e89e20' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-2d3de597-b0ce-42d4-bc59-11d796e89e20' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-95eb499d-8ba6-46e1-9987-f6b8a8302dfd' class='xr-var-data-in' type='checkbox'><label for='data-95eb499d-8ba6-46e1-9987-f6b8a8302dfd' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-58d73124-fde6-4f5d-b7f6-8086daa2df97' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-58d73124-fde6-4f5d-b7f6-8086daa2df97' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b308045a-fbe8-4436-b85f-60096d6d4184' class='xr-var-data-in' type='checkbox'><label for='data-b308045a-fbe8-4436-b85f-60096d6d4184' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-274225c9-0925-43ce-8b14-1236285c45a3' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-274225c9-0925-43ce-8b14-1236285c45a3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d39e8183-d694-493e-9947-4e795d29a786' class='xr-var-data-in' type='checkbox'><label for='data-d39e8183-d694-493e-9947-4e795d29a786' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-c903c374-243b-4a7b-b83e-ee3d406a073b' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c903c374-243b-4a7b-b83e-ee3d406a073b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0ae1c15e-8081-4e41-8b62-5de040ade070' class='xr-var-data-in' type='checkbox'><label for='data-0ae1c15e-8081-4e41-8b62-5de040ade070' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 17537 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-ef2ea584-0cb5-4cbf-904b-8da6e7802ca6' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ef2ea584-0cb5-4cbf-904b-8da6e7802ca6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d1aa051f-6dd4-4ca4-a8b8-5a42687660d2' class='xr-var-data-in' type='checkbox'><label for='data-d1aa051f-6dd4-4ca4-a8b8-5a42687660d2' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-e6b15f09-2072-48f8-a456-554a504bbe7e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-e6b15f09-2072-48f8-a456-554a504bbe7e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b2ad8b63-b543-4437-ab39-5eb601049025' class='xr-var-data-in' type='checkbox'><label for='data-b2ad8b63-b543-4437-ab39-5eb601049025' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-b3ce51ad-d2e4-4d6a-a6b5-f446fa8e5afc' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-b3ce51ad-d2e4-4d6a-a6b5-f446fa8e5afc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a3aab2ae-7105-4f6b-acf4-9282a2032f56' class='xr-var-data-in' type='checkbox'><label for='data-a3aab2ae-7105-4f6b-acf4-9282a2032f56' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 23028 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vv.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-bb9113a7-1397-48b9-8719-dde7d6121c8a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-bb9113a7-1397-48b9-8719-dde7d6121c8a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-657da971-3ffe-41a7-b00e-90563d74a84d' class='xr-var-data-in' type='checkbox'><label for='data-657da971-3ffe-41a7-b00e-90563d74a84d' 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>\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> 5.85 MiB </td>\n",
" <td> 1.64 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 19368 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>rn.last</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-4598e0f1-4b1b-4bd7-9752-285009a2fd4e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-4598e0f1-4b1b-4bd7-9752-285009a2fd4e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0e14f60c-883f-41cc-90ff-7b9e32190bec' class='xr-var-data-in' type='checkbox'><label for='data-0e14f60c-883f-41cc-90ff-7b9e32190bec' 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>\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.70 MiB </td>\n",
" <td> 3.28 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 14984 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float64 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>precip</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(2922, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-c8dde84c-cd95-4995-b86c-b66f7de3652b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c8dde84c-cd95-4995-b86c-b66f7de3652b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ab5b67dc-ccda-4931-9321-fd28824ef66e' class='xr-var-data-in' type='checkbox'><label for='data-ab5b67dc-ccda-4931-9321-fd28824ef66e' 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>var_desc :</span></dt><dd>Precipitation</dd><dt><span>level_desc :</span></dt><dd>Surface</dd><dt><span>statistic :</span></dt><dd>Total</dd><dt><span>parent_stat :</span></dt><dd>Other</dd><dt><span>long_name :</span></dt><dd>Daily total of precipitation</dd><dt><span>cell_methods :</span></dt><dd>time: sum</dd><dt><span>avg_period :</span></dt><dd>0000-00-01 00:00:00</dd><dt><span>actual_range :</span></dt><dd>[ 0. 482.55536]</dd><dt><span>units :</span></dt><dd>mm</dd><dt><span>valid_range :</span></dt><dd>[ 0. 1000.]</dd><dt><span>dataset :</span></dt><dd>CPC Global Precipitation</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table>\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> 5.85 MiB </td>\n",
" <td> 4.68 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (2922, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 144 Tasks </td>\n",
" <td> 3 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float32 </td>\n",
" <td> 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=\"66\" y1=\"56\" x2=\"66\" y2=\"81\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\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.41261651458248\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"35\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"66\" y1=\"56\" x2=\"91\" y2=\"56\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"98\" y2=\"63\" />\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:#ECB172A0;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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elev</span></div><div class='xr-var-dims'>(latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>930.0 946.0 766.0 ... 523.0 603.0</div><input id='attrs-1e9f8807-afc2-4a4f-9b5d-66e659d17c41' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1e9f8807-afc2-4a4f-9b5d-66e659d17c41' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-34954fe0-8a8f-4b3c-8ae6-8b290fa8ca8d' class='xr-var-data-in' type='checkbox'><label for='data-34954fe0-8a8f-4b3c-8ae6-8b290fa8ca8d' 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>meters, from 5-min data</dd><dt><span>units :</span></dt><dd>meters, from 5-min data</dd></dl></div><div class='xr-var-data'><pre>array([[ 930., 946., 766., ..., -18., -396., -2232.],\n",
" [ 751., 759., 735., ..., -67., -745., -2219.],\n",
" [ 640., 529., 569., ..., -1573., -2121., -2086.],\n",
" ...,\n",
" [ 517., 450., 460., ..., 397., 499., 397.],\n",
" [ 505., 469., 325., ..., 444., 496., 553.],\n",
" [ 473., 469., 304., ..., 463., 523., 603.]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>et0</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(1, 21, 20), meta=np.ndarray&gt;</div><input id='attrs-215c5bc7-ef67-46e9-bbc9-84b15056597d' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-215c5bc7-ef67-46e9-bbc9-84b15056597d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ff374145-5041-498e-9fb1-28e330af85c8' class='xr-var-data-in' type='checkbox'><label for='data-ff374145-5041-498e-9fb1-28e330af85c8' 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>\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.70 MiB </td>\n",
" <td> 3.28 kiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (3652, 21, 20) </td>\n",
" <td> (1, 21, 20) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Count </th>\n",
" <td> 237419 Tasks </td>\n",
" <td> 3652 Chunks </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Type </th>\n",
" <td> float64 </td>\n",
" <td> 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=\"35\" y1=\"25\" x2=\"35\" 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=\"61\" y1=\"51\" x2=\"61\" 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.41261651458248\" 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=\"35\" y1=\"25\" x2=\"61\" y2=\"25\" />\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=\"61\" y1=\"51\" x2=\"87\" y2=\"51\" />\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\" >20</text>\n",
" <text x=\"126.000852\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,126.000852,83.294544)\">21</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)\">3652</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-ed06d8dc-16a9-42c7-ad63-84849719374d' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-ed06d8dc-16a9-42c7-ad63-84849719374d' 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>"
],
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (longitude: 20, latitude: 21, time: 3652)\n",
"Coordinates:\n",
" * longitude (longitude) float64 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float64 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
"Data variables: (12/14)\n",
" t2m_c.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" t2m_c.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" t2m_c.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.min (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" d2m_c.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" ... ...\n",
" ur.max (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" vv.mean (time, latitude, longitude) float32 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" rn.last (time, latitude, longitude) float64 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>\n",
" precip (time, latitude, longitude) float32 dask.array<chunksize=(2922, 21, 20), meta=np.ndarray>\n",
" elev (latitude, longitude) float32 930.0 946.0 766.0 ... 523.0 603.0\n",
" et0 (time, latitude, longitude) float64 dask.array<chunksize=(1, 21, 20), meta=np.ndarray>"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"all = all.assign({\n",
" 'et0': lambda dsi: ETo_2(\n",
" t2m_c = (dsi['t2m_c.max'] + dsi['t2m_c.min']) / 2,\n",
" d2m_c = (dsi['d2m_c.max'] + dsi['d2m_c.min']) / 2,\n",
" elev = dsi['elev'],\n",
" rn = dsi['rn.last'],\n",
" uz_10 = dsi['vv.mean'],\n",
" ),\n",
"})\n",
"all"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[ ] | 0% Completed | 2.9s"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"C:\\Users\\gerva\\anaconda3\\envs\\datascience\\lib\\site-packages\\dask\\array\\reductions.py:540: RuntimeWarning: All-NaN slice encountered\n",
" return np.nanmin(x_chunk, axis=axis, keepdims=keepdims)\n",
"C:\\Users\\gerva\\anaconda3\\envs\\datascience\\lib\\site-packages\\dask\\array\\reductions.py:569: RuntimeWarning: All-NaN slice encountered\n",
" return np.nanmax(x_chunk, axis=axis, keepdims=keepdims)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"[########################################] | 100% Completed | 1min 30.1s\n"
]
},
{
"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.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-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",
" 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",
" 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-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-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",
" 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: (longitude: 20, latitude: 21, time: 3652)\n",
"Coordinates:\n",
" * longitude (longitude) float64 -46.75 -46.25 -45.75 ... -37.75 -37.25\n",
" * latitude (latitude) float64 -18.25 -17.75 -17.25 ... -9.25 -8.75 -8.25\n",
" * time (time) datetime64[ns] 1993-01-01 1993-01-02 ... 2002-12-31\n",
"Data variables: (12/14)\n",
" t2m_c.mean (time, latitude, longitude) float32 22.78 22.72 ... 27.7 27.09\n",
" t2m_c.min (time, latitude, longitude) float32 17.53 16.93 ... 21.23 20.43\n",
" t2m_c.max (time, latitude, longitude) float32 28.5 28.1 ... 34.73 34.43\n",
" d2m_c.mean (time, latitude, longitude) float32 15.13 15.19 ... 14.82 14.11\n",
" d2m_c.min (time, latitude, longitude) float32 14.09 14.22 ... 10.51 9.263\n",
" d2m_c.max (time, latitude, longitude) float32 16.78 16.69 ... 18.13 17.91\n",
" ... ...\n",
" ur.max (time, latitude, longitude) float32 84.5 88.59 ... 81.35 80.93\n",
" vv.mean (time, latitude, longitude) float32 2.502 2.534 ... 3.37 3.522\n",
" rn.last (time, latitude, longitude) float64 33.07 33.21 ... 30.86 31.07\n",
" precip (time, latitude, longitude) float32 nan nan nan ... 0.0 0.0 0.0\n",
" elev (latitude, longitude) float32 930.0 946.0 766.0 ... 523.0 603.0\n",
" et0 (time, latitude, longitude) float64 9.889 9.756 ... 11.24 11.27</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-8616cead-57ce-451f-8b49-3ee29bbc12ee' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-8616cead-57ce-451f-8b49-3ee29bbc12ee' 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'>longitude</span>: 20</li><li><span class='xr-has-index'>latitude</span>: 21</li><li><span class='xr-has-index'>time</span>: 3652</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-9e1c9602-e97e-43f0-aa30-360b95f56a0d' class='xr-section-summary-in' type='checkbox' checked><label for='section-9e1c9602-e97e-43f0-aa30-360b95f56a0d' class='xr-section-summary' >Coordinates: <span>(3)</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'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-46.75 -46.25 ... -37.75 -37.25</div><input id='attrs-cb0c1aed-5115-4bc9-98c0-e8161ca87094' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-cb0c1aed-5115-4bc9-98c0-e8161ca87094' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9c633399-69af-43e3-857f-32df11c25cf1' class='xr-var-data-in' type='checkbox'><label for='data-9c633399-69af-43e3-857f-32df11c25cf1' 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([-46.75, -46.25, -45.75, -45.25, -44.75, -44.25, -43.75, -43.25, -42.75,\n",
" -42.25, -41.75, -41.25, -40.75, -40.25, -39.75, -39.25, -38.75, -38.25,\n",
" -37.75, -37.25])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-18.25 -17.75 ... -8.75 -8.25</div><input id='attrs-b5f8a262-1462-4bd3-9015-694b71621db6' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-b5f8a262-1462-4bd3-9015-694b71621db6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-37e94371-927c-418a-acce-eb9b2260f6f2' class='xr-var-data-in' type='checkbox'><label for='data-37e94371-927c-418a-acce-eb9b2260f6f2' 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([-18.25, -17.75, -17.25, -16.75, -16.25, -15.75, -15.25, -14.75, -14.25,\n",
" -13.75, -13.25, -12.75, -12.25, -11.75, -11.25, -10.75, -10.25, -9.75,\n",
" -9.25, -8.75, -8.25])</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'>1993-01-01 ... 2002-12-31</div><input id='attrs-40d39403-c845-44a9-a1f1-00198e1ed547' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-40d39403-c845-44a9-a1f1-00198e1ed547' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-505e7816-6658-4546-bc7c-80720f8346ea' class='xr-var-data-in' type='checkbox'><label for='data-505e7816-6658-4546-bc7c-80720f8346ea' 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;1993-01-01T00:00:00.000000000&#x27;, &#x27;1993-01-02T00:00:00.000000000&#x27;,\n",
" &#x27;1993-01-03T00:00:00.000000000&#x27;, ..., &#x27;2002-12-29T00:00:00.000000000&#x27;,\n",
" &#x27;2002-12-30T00:00:00.000000000&#x27;, &#x27;2002-12-31T00:00:00.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-659fbb75-2450-450f-8669-e93bf8526f68' class='xr-section-summary-in' type='checkbox' checked><label for='section-659fbb75-2450-450f-8669-e93bf8526f68' class='xr-section-summary' >Data variables: <span>(14)</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>t2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>22.78 22.72 22.77 ... 27.7 27.09</div><input id='attrs-c6b36656-269a-4700-92a5-6e0adfc7ed5f' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c6b36656-269a-4700-92a5-6e0adfc7ed5f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6b3acc7a-50d8-4690-b162-a400e4291c53' class='xr-var-data-in' type='checkbox'><label for='data-6b3acc7a-50d8-4690-b162-a400e4291c53' 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([[[22.779448, 22.715448, 22.774954, ..., nan, nan,\n",
" nan],\n",
" [23.929483, 23.717392, 23.081108, ..., nan, nan,\n",
" nan],\n",
" [24.07702 , 24.6621 , 24.177696, ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [24.718714, 24.598793, 24.663973, ..., 25.842287, 26.058699,\n",
" 25.737648],\n",
" [24.777582, 24.749765, 24.92315 , ..., 26.282286, 25.212532,\n",
" 24.285728],\n",
" [25.206696, 24.922728, 24.917658, ..., 26.910019, 25.78726 ,\n",
" 24.554445]],\n",
"\n",
" [[23.235392, 23.755173, 23.946974, ..., nan, nan,\n",
" nan],\n",
" [24.479593, 24.072882, 23.441246, ..., nan, nan,\n",
" nan],\n",
" [25.025742, 24.839897, 24.258432, ..., nan, nan,\n",
" nan],\n",
"...\n",
" [24.252258, 24.239573, 24.662104, ..., 26.367014, 26.644127,\n",
" 26.630041],\n",
" [23.900452, 23.887384, 24.62764 , ..., 27.121527, 26.567446,\n",
" 26.331038],\n",
" [24.17306 , 23.90345 , 24.526594, ..., 28.33512 , 27.492823,\n",
" 27.14351 ]],\n",
"\n",
" [[22.150305, 22.019018, 22.373766, ..., nan, nan,\n",
" nan],\n",
" [23.489187, 23.08286 , 22.623756, ..., nan, nan,\n",
" nan],\n",
" [23.933762, 24.159792, 23.508081, ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [25.077559, 25.486198, 25.708387, ..., 26.235304, 26.737747,\n",
" 26.791618],\n",
" [25.285162, 25.561287, 26.129797, ..., 26.95432 , 26.641237,\n",
" 26.27302 ],\n",
" [25.484484, 25.405058, 26.182009, ..., 28.22149 , 27.699997,\n",
" 27.093597]]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>17.53 16.93 16.82 ... 21.23 20.43</div><input id='attrs-ee28d68f-2a95-4e04-9a35-2f374dcd15fc' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ee28d68f-2a95-4e04-9a35-2f374dcd15fc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d93ac861-9224-48e7-a84e-4ade7537d0be' class='xr-var-data-in' type='checkbox'><label for='data-d93ac861-9224-48e7-a84e-4ade7537d0be' 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([[[17.531242, 16.929764, 16.822502, ..., nan, nan,\n",
" nan],\n",
" [17.561647, 18.151888, 16.970592, ..., nan, nan,\n",
" nan],\n",
" [17.413818, 18.43126 , 18.160463, ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [20.2329 , 20.25213 , 20.246496, ..., 20.965117, 21.461538,\n",
" 21.552654],\n",
" [20.413862, 20.675753, 20.38401 , ..., 20.967413, 19.841164,\n",
" 19.550644],\n",
" [20.765451, 20.91654 , 20.402111, ..., 21.03807 , 19.884115,\n",
" 19.150396]],\n",
"\n",
" [[16.509233, 17.918882, 18.795649, ..., nan, nan,\n",
" nan],\n",
" [19.072596, 17.926966, 17.369553, ..., nan, nan,\n",
" nan],\n",
" [19.554436, 19.079374, 18.327644, ..., nan, nan,\n",
" nan],\n",
"...\n",
" [21.081642, 21.22499 , 21.435078, ..., 21.81296 , 21.951698,\n",
" 22.040756],\n",
" [21.122875, 21.221796, 21.644093, ..., 22.187645, 20.790499,\n",
" 20.513145],\n",
" [21.874975, 21.600195, 21.613985, ..., 22.741304, 20.982378,\n",
" 20.46717 ]],\n",
"\n",
" [[20.124283, 19.814316, 19.867023, ..., nan, nan,\n",
" nan],\n",
" [20.924433, 20.385147, 19.895353, ..., nan, nan,\n",
" nan],\n",
" [20.993034, 21.18545 , 20.67672 , ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [22.572388, 22.322739, 22.561026, ..., 21.82559 , 22.1792 ,\n",
" 22.104319],\n",
" [22.504732, 22.273848, 22.645424, ..., 21.869507, 20.631363,\n",
" 20.223269],\n",
" [22.176905, 21.993341, 22.377447, ..., 22.586197, 21.231426,\n",
" 20.432259]]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>t2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>28.5 28.1 27.76 ... 34.73 34.43</div><input id='attrs-fbb903d1-9dab-430b-80bb-3a52e6dccbca' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-fbb903d1-9dab-430b-80bb-3a52e6dccbca' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bc3ddff2-931e-494a-83a1-3b52f21185be' class='xr-var-data-in' type='checkbox'><label for='data-bc3ddff2-931e-494a-83a1-3b52f21185be' 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([[[28.49985 , 28.101103, 27.758518, ..., nan, nan,\n",
" nan],\n",
" [29.540815, 29.320093, 28.4985 , ..., nan, nan,\n",
" nan],\n",
" [29.14552 , 30.068438, 29.544228, ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [29.211206, 29.204706, 29.488686, ..., 31.38751 , 31.177895,\n",
" 30.965172],\n",
" [29.050465, 29.137867, 29.684189, ..., 31.790054, 30.475332,\n",
" 29.630598],\n",
" [29.560888, 29.219013, 29.671104, ..., 32.98865 , 31.164858,\n",
" 29.880825]],\n",
"\n",
" [[29.151226, 29.250229, 28.934536, ..., nan, nan,\n",
" nan],\n",
" [29.852394, 29.942158, 29.345161, ..., nan, nan,\n",
" nan],\n",
" [29.766338, 30.667751, 30.240807, ..., nan, nan,\n",
" nan],\n",
"...\n",
" [28.620234, 28.96541 , 29.427656, ..., 31.571861, 32.52429 ,\n",
" 32.880722],\n",
" [27.344505, 27.155947, 28.413324, ..., 32.76145 , 33.10356 ,\n",
" 33.14242 ],\n",
" [27.34845 , 26.97432 , 28.428848, ..., 34.580185, 34.5061 ,\n",
" 34.358795]],\n",
"\n",
" [[25.620405, 26.194172, 26.749094, ..., nan, nan,\n",
" nan],\n",
" [27.236988, 27.552465, 26.91042 , ..., nan, nan,\n",
" nan],\n",
" [27.854738, 28.39458 , 27.57226 , ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [29.296595, 30.12968 , 30.422136, ..., 31.68193 , 32.489567,\n",
" 32.91229 ],\n",
" [29.675417, 30.575562, 31.185165, ..., 33.218185, 33.688618,\n",
" 33.298492],\n",
" [30.112549, 30.193798, 31.336153, ..., 35.200123, 34.728508,\n",
" 34.433575]]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>15.13 15.19 15.92 ... 14.82 14.11</div><input id='attrs-41d8f3dc-7461-4665-95b6-91bbc17916ee' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-41d8f3dc-7461-4665-95b6-91bbc17916ee' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bf23eaf6-95cf-4ece-83bc-7fa1fa52e560' class='xr-var-data-in' type='checkbox'><label for='data-bf23eaf6-95cf-4ece-83bc-7fa1fa52e560' 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([[[15.125344 , 15.190516 , 15.919974 , ..., nan,\n",
" nan, nan],\n",
" [16.432138 , 16.048891 , 15.761082 , ..., nan,\n",
" nan, nan],\n",
" [16.464384 , 16.837854 , 16.42148 , ..., nan,\n",
" nan, nan],\n",
" ...,\n",
" [18.209795 , 17.978365 , 17.938759 , ..., 17.112917 ,\n",
" 17.222387 , 17.561914 ],\n",
" [18.026783 , 17.94238 , 18.191769 , ..., 16.422293 ,\n",
" 16.244183 , 16.499762 ],\n",
" [18.330492 , 18.227955 , 18.366726 , ..., 15.202927 ,\n",
" 15.527195 , 15.933614 ]],\n",
"\n",
" [[15.526848 , 15.142609 , 15.420681 , ..., nan,\n",
" nan, nan],\n",
" [16.538523 , 16.264158 , 15.525638 , ..., nan,\n",
" nan, nan],\n",
" [16.283623 , 16.79794 , 16.06322 , ..., nan,\n",
" nan, nan],\n",
"...\n",
" [21.54236 , 21.431002 , 21.248575 , ..., 18.636734 ,\n",
" 18.609833 , 18.429392 ],\n",
" [21.272625 , 21.225119 , 21.134237 , ..., 17.750895 ,\n",
" 16.634384 , 15.686788 ],\n",
" [21.258844 , 21.21657 , 21.290792 , ..., 15.804667 ,\n",
" 15.286756 , 14.504256 ]],\n",
"\n",
" [[19.75761 , 19.496004 , 19.717524 , ..., nan,\n",
" nan, nan],\n",
" [20.528997 , 20.314825 , 19.973555 , ..., nan,\n",
" nan, nan],\n",
" [20.555368 , 20.911695 , 20.683043 , ..., nan,\n",
" nan, nan],\n",
" ...,\n",
" [21.95494 , 21.711243 , 21.979689 , ..., 17.944263 ,\n",
" 17.618532 , 17.260729 ],\n",
" [21.596292 , 21.434732 , 21.604614 , ..., 17.18746 ,\n",
" 15.839139 , 15.088714 ],\n",
" [21.807325 , 21.713789 , 21.784912 , ..., 15.592045 ,\n",
" 14.820704 , 14.11023 ]]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>14.09 14.22 15.21 ... 10.51 9.263</div><input id='attrs-6d4072f2-69d1-4905-9f5a-96123f62f475' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-6d4072f2-69d1-4905-9f5a-96123f62f475' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-390965aa-f83c-4616-8448-3b8dc3aa2905' class='xr-var-data-in' type='checkbox'><label for='data-390965aa-f83c-4616-8448-3b8dc3aa2905' 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([[[14.090632 , 14.220506 , 15.211195 , ..., nan,\n",
" nan, nan],\n",
" [15.245227 , 14.687603 , 14.664043 , ..., nan,\n",
" nan, nan],\n",
" [15.149519 , 15.598976 , 15.134785 , ..., nan,\n",
" nan, nan],\n",
" ...,\n",
" [16.958754 , 16.43141 , 16.290813 , ..., 14.414647 ,\n",
" 14.993579 , 16.079689 ],\n",
" [17.212622 , 16.840748 , 16.802017 , ..., 13.999665 ,\n",
" 14.207078 , 15.167454 ],\n",
" [17.683172 , 17.26958 , 17.265026 , ..., 12.300424 ,\n",
" 13.313767 , 14.034602 ]],\n",
"\n",
" [[14.222444 , 13.626086 , 13.756421 , ..., nan,\n",
" nan, nan],\n",
" [15.294031 , 14.980408 , 13.770372 , ..., nan,\n",
" nan, nan],\n",
" [15.300942 , 14.957415 , 14.248048 , ..., nan,\n",
" nan, nan],\n",
"...\n",
" [20.785454 , 20.680676 , 20.350574 , ..., 15.81537 ,\n",
" 15.564418 , 15.434462 ],\n",
" [20.685396 , 20.82709 , 19.856565 , ..., 15.44483 ,\n",
" 13.468971 , 11.853538 ],\n",
" [20.772324 , 20.603828 , 20.588463 , ..., 12.905906 ,\n",
" 11.328761 , 9.574921 ]],\n",
"\n",
" [[19.09854 , 18.997032 , 19.223965 , ..., nan,\n",
" nan, nan],\n",
" [19.897638 , 19.818296 , 19.42761 , ..., nan,\n",
" nan, nan],\n",
" [20.196638 , 20.453999 , 20.182226 , ..., nan,\n",
" nan, nan],\n",
" ...,\n",
" [21.10047 , 20.857056 , 21.430021 , ..., 15.090302 ,\n",
" 14.476009 , 13.968374 ],\n",
" [21.201426 , 20.518227 , 20.643843 , ..., 13.830762 ,\n",
" 12.047953 , 11.021122 ],\n",
" [21.01451 , 21.122234 , 20.79209 , ..., 11.259874 ,\n",
" 10.506863 , 9.263449 ]]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>d2m_c.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>16.78 16.69 17.06 ... 18.13 17.91</div><input id='attrs-f2a15d04-f232-4d2d-a433-78832f32d943' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-f2a15d04-f232-4d2d-a433-78832f32d943' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-72976644-91ac-4858-ae47-5059f0b627db' class='xr-var-data-in' type='checkbox'><label for='data-72976644-91ac-4858-ae47-5059f0b627db' 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([[[16.782776, 16.694212, 17.055288, ..., nan, nan,\n",
" nan],\n",
" [19.339127, 17.401848, 17.260073, ..., nan, nan,\n",
" nan],\n",
" [20.071695, 18.898584, 18.27685 , ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [19.636143, 19.113562, 19.090425, ..., 19.351873, 19.244404,\n",
" 19.196419],\n",
" [19.178953, 18.856834, 19.427443, ..., 18.324625, 17.902264,\n",
" 17.610006],\n",
" [19.358932, 19.254436, 19.730005, ..., 17.300615, 17.399826,\n",
" 17.617971]],\n",
"\n",
" [[17.555157, 17.313345, 17.513725, ..., nan, nan,\n",
" nan],\n",
" [19.363825, 19.102226, 17.519138, ..., nan, nan,\n",
" nan],\n",
" [19.536808, 20.10335 , 19.302374, ..., nan, nan,\n",
" nan],\n",
"...\n",
" [22.497246, 22.4271 , 22.030806, ..., 20.154726, 20.123936,\n",
" 20.091255],\n",
" [22.165014, 22.140617, 21.760168, ..., 19.516708, 18.425602,\n",
" 17.933561],\n",
" [21.99146 , 22.082558, 22.117413, ..., 17.739456, 17.87573 ,\n",
" 17.740803]],\n",
"\n",
" [[20.60897 , 20.079622, 20.360498, ..., nan, nan,\n",
" nan],\n",
" [21.045256, 20.898657, 20.650898, ..., nan, nan,\n",
" nan],\n",
" [21.188906, 21.629753, 21.566809, ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [22.889309, 22.24189 , 22.910694, ..., 20.148867, 20.0062 ,\n",
" 19.902145],\n",
" [21.969332, 22.003809, 22.900957, ..., 19.757586, 18.92562 ,\n",
" 18.388092],\n",
" [22.587759, 22.75853 , 22.9469 , ..., 18.50081 , 18.128565,\n",
" 17.912527]]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.mean</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>64.45 64.85 67.2 ... 50.42 50.8</div><input id='attrs-865fbdd3-6426-4207-a4e2-88d42c0af7e0' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-865fbdd3-6426-4207-a4e2-88d42c0af7e0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fad6b32f-b8da-43fa-8423-49eb7ffd66e7' class='xr-var-data-in' type='checkbox'><label for='data-fad6b32f-b8da-43fa-8423-49eb7ffd66e7' 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([[[64.45298 , 64.85391 , 67.19958 , ..., nan, nan,\n",
" nan],\n",
" [65.32479 , 64.682846, 65.73162 , ..., nan, nan,\n",
" nan],\n",
" [64.28776 , 63.925922, 64.08783 , ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [68.06377 , 67.71719 , 67.342575, ..., 61.93884 , 61.122375,\n",
" 63.001804],\n",
" [67.26696 , 66.98937 , 67.61088 , ..., 57.78549 , 60.445126,\n",
" 64.24748 ],\n",
" [66.96364 , 67.51562 , 68.32239 , ..., 52.02007 , 56.252518,\n",
" 61.689716]],\n",
"\n",
" [[64.095535, 60.706554, 60.82556 , ..., nan, nan,\n",
" nan],\n",
" [63.01038 , 64.19984 , 63.97652 , ..., nan, nan,\n",
" nan],\n",
" [60.026947, 63.660355, 63.225895, ..., nan, nan,\n",
" nan],\n",
"...\n",
" [85.86908 , 85.48602 , 82.92346 , ..., 65.297424, 64.43044 ,\n",
" 63.977783],\n",
" [85.956665, 85.831024, 82.373215, ..., 59.479492, 58.19543 ,\n",
" 56.440826],\n",
" [84.41253 , 85.55244 , 83.405876, ..., 49.492596, 51.54948 ,\n",
" 51.461857]],\n",
"\n",
" [[86.79362 , 86.30349 , 85.75851 , ..., nan, nan,\n",
" nan],\n",
" [84.15011 , 85.30481 , 85.9345 , ..., nan, nan,\n",
" nan],\n",
" [82.478836, 83.20732 , 85.15671 , ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [83.46165 , 80.8655 , 80.893486, ..., 63.807117, 61.264835,\n",
" 60.142933],\n",
" [81.107216, 79.51773 , 77.5785 , ..., 59.229977, 56.798985,\n",
" 55.6085 ],\n",
" [81.379585, 81.50769 , 78.34865 , ..., 50.545685, 50.420715,\n",
" 50.80012 ]]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.min</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>41.33 42.69 46.88 ... 23.24 21.52</div><input id='attrs-50afb5bd-82d6-46c7-9f4f-168f2789da16' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-50afb5bd-82d6-46c7-9f4f-168f2789da16' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-169661cf-99f2-43db-8f1a-6816e81d8988' class='xr-var-data-in' type='checkbox'><label for='data-169661cf-99f2-43db-8f1a-6816e81d8988' 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([[[41.326767, 42.69446 , 46.882084, ..., nan, nan,\n",
" nan],\n",
" [42.152416, 40.9737 , 43.429234, ..., nan, nan,\n",
" nan],\n",
" [44.334785, 41.699898, 41.636288, ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [51.840687, 50.304153, 49.356564, ..., 35.77798 , 37.58229 ,\n",
" 40.94792 ],\n",
" [50.27267 , 49.816406, 48.677834, ..., 34.16833 , 37.28396 ,\n",
" 41.740273],\n",
" [49.679985, 50.751865, 49.951645, ..., 28.69195 , 33.783424,\n",
" 38.72691 ]],\n",
"\n",
" [[42.035797, 38.942516, 39.43589 , ..., nan, nan,\n",
" nan],\n",
" [43.247646, 40.557987, 38.78141 , ..., nan, nan,\n",
" nan],\n",
" [41.5387 , 38.592377, 37.78285 , ..., nan, nan,\n",
" nan],\n",
"...\n",
" [65.00023 , 61.063927, 59.448254, ..., 38.83263 , 37.096764,\n",
" 35.23336 ],\n",
" [69.13195 , 68.894226, 60.053356, ..., 36.162037, 31.078506,\n",
" 27.781715],\n",
" [68.38331 , 69.78408 , 62.6063 , ..., 27.739033, 25.14807 ,\n",
" 22.405312]],\n",
"\n",
" [[71.42316 , 67.35619 , 64.610245, ..., nan, nan,\n",
" nan],\n",
" [68.372765, 66.37932 , 67.90661 , ..., nan, nan,\n",
" nan],\n",
" [64.395096, 64.278076, 67.22238 , ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [67.443504, 61.405346, 61.13097 , ..., 36.882393, 33.962757,\n",
" 31.938267],\n",
" [61.598633, 56.008427, 53.62191 , ..., 31.550928, 27.182201,\n",
" 25.911772],\n",
" [59.33822 , 58.409454, 53.870815, ..., 23.5154 , 23.244778,\n",
" 21.515484]]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ur.max</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>84.5 88.59 90.24 ... 81.35 80.93</div><input id='attrs-62b62b87-b8a8-40bd-a2e1-f1e4ffec2d44' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-62b62b87-b8a8-40bd-a2e1-f1e4ffec2d44' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5626dccf-4fd3-4fc6-8f95-9a6d0be57e52' class='xr-var-data-in' type='checkbox'><label for='data-5626dccf-4fd3-4fc6-8f95-9a6d0be57e52' 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([[[84.504906, 88.58546 , 90.23998 , ..., nan, nan,\n",
" nan],\n",
" [87.69492 , 86.178246, 89.20637 , ..., nan, nan,\n",
" nan],\n",
" [88.08025 , 87.49055 , 86.118034, ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [81.54417 , 80.70225 , 79.51068 , ..., 90.38034 , 87.12314 ,\n",
" 85.880066],\n",
" [84.26496 , 82.09379 , 83.82367 , ..., 84.50992 , 88.20725 ,\n",
" 88.44468 ],\n",
" [84.209984, 82.91257 , 84.58727 , ..., 77.327545, 83.25622 ,\n",
" 87.49487 ]],\n",
"\n",
" [[86.39763 , 85.65973 , 85.51372 , ..., nan, nan,\n",
" nan],\n",
" [85.02646 , 86.66995 , 85.511444, ..., nan, nan,\n",
" nan],\n",
" [84.60446 , 85.68999 , 87.050316, ..., nan, nan,\n",
" nan],\n",
"...\n",
" [98.25843 , 98.463104, 98.02438 , ..., 90.23526 , 88.07705 ,\n",
" 85.33289 ],\n",
" [97.34936 , 97.758446, 97.23451 , ..., 83.518005, 84.27912 ,\n",
" 83.80381 ],\n",
" [93.47646 , 94.65611 , 96.264336, ..., 73.215706, 81.806595,\n",
" 83.73689 ]],\n",
"\n",
" [[96.10602 , 96.41627 , 96.08666 , ..., nan, nan,\n",
" nan],\n",
" [95.503975, 97.33409 , 98.028 , ..., nan, nan,\n",
" nan],\n",
" [95.62855 , 95.96086 , 97.07679 , ..., nan, nan,\n",
" nan],\n",
" ...,\n",
" [92.67518 , 93.60792 , 93.41647 , ..., 89.54188 , 86.62301 ,\n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment