Created
February 6, 2026 16:05
-
-
Save rsignell/6bd00aa9f8067d75e9d8c210797fad5f to your computer and use it in GitHub Desktop.
ICON_xugrid.ipynb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "cells": [ | |
| { | |
| "cell_type": "markdown", | |
| "id": "90a67885-45a9-4679-a3aa-fb6869c92e3a", | |
| "metadata": {}, | |
| "source": [ | |
| "# Visualize ICON data with xugrid\n", | |
| "* Open ICON data from Eerie Cloud as xarray Dataset\n", | |
| "* Add metadata to make UGRID-compliant\n", | |
| "* Convert to xugrid UgridDataset\n", | |
| "* Visualize with xugrid\n", | |
| "* Try to visualize with holoviz\n", | |
| " * interpolate cell data to vertices\n", | |
| " * use Trimesh and Datashader for dynamic visualization" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 1, | |
| "id": "3c609ee4-0f1e-4ceb-b723-451597043ccf", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "import xarray as xr\n", | |
| "import requests\n", | |
| "import pandas as pd\n", | |
| "import cf_xarray\n", | |
| "import xugrid as xu\n", | |
| "import numpy as np" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 2, | |
| "id": "062e9490-bd5e-4c96-bc75-ac096171a66d", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "item=requests.get(\"https://stac2.cloud.dkrz.de/fastapi/collections/eerie-eerie-mpi-m-icon-esm-er-highres-future-ssp245-v20240618/items/eerie-eerie-mpi-m-icon-esm-er-highres-future-ssp245-v20240618-disk.model-output.icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_monthly_mean-zarr-kerchunk\").json()\n", | |
| "#asset=\"dkrz-disk\"\n", | |
| "asset=\"eerie-cloud\" # from everywhere else\n", | |
| "ds = xr.open_dataset(\n", | |
| " item[\"assets\"][asset][\"href\"],\n", | |
| " **item[\"assets\"][asset][\"xarray:open_kwargs\"],\n", | |
| " storage_options=item[\"assets\"][asset].get(\"xarray:storage_options\")\n", | |
| ")" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 3, | |
| "id": "5dd97b17-f426-409a-b51c-d0e514bc83d0", | |
| "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 notebooks */\n", | |
| "\n", | |
| ":root {\n", | |
| " --xr-font-color0: var(\n", | |
| " --jp-content-font-color0,\n", | |
| " var(--pst-color-text-base rgba(0, 0, 0, 1))\n", | |
| " );\n", | |
| " --xr-font-color2: var(\n", | |
| " --jp-content-font-color2,\n", | |
| " var(--pst-color-text-base, rgba(0, 0, 0, 0.54))\n", | |
| " );\n", | |
| " --xr-font-color3: var(\n", | |
| " --jp-content-font-color3,\n", | |
| " var(--pst-color-text-base, rgba(0, 0, 0, 0.38))\n", | |
| " );\n", | |
| " --xr-border-color: var(\n", | |
| " --jp-border-color2,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 10))\n", | |
| " );\n", | |
| " --xr-disabled-color: var(\n", | |
| " --jp-layout-color3,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 40))\n", | |
| " );\n", | |
| " --xr-background-color: var(\n", | |
| " --jp-layout-color0,\n", | |
| " var(--pst-color-on-background, white)\n", | |
| " );\n", | |
| " --xr-background-color-row-even: var(\n", | |
| " --jp-layout-color1,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 5))\n", | |
| " );\n", | |
| " --xr-background-color-row-odd: var(\n", | |
| " --jp-layout-color2,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 15))\n", | |
| " );\n", | |
| "}\n", | |
| "\n", | |
| "html[theme=\"dark\"],\n", | |
| "html[data-theme=\"dark\"],\n", | |
| "body[data-theme=\"dark\"],\n", | |
| "body.vscode-dark {\n", | |
| " --xr-font-color0: var(\n", | |
| " --jp-content-font-color0,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 1))\n", | |
| " );\n", | |
| " --xr-font-color2: var(\n", | |
| " --jp-content-font-color2,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 0.54))\n", | |
| " );\n", | |
| " --xr-font-color3: var(\n", | |
| " --jp-content-font-color3,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 0.38))\n", | |
| " );\n", | |
| " --xr-border-color: var(\n", | |
| " --jp-border-color2,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 10))\n", | |
| " );\n", | |
| " --xr-disabled-color: var(\n", | |
| " --jp-layout-color3,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 40))\n", | |
| " );\n", | |
| " --xr-background-color: var(\n", | |
| " --jp-layout-color0,\n", | |
| " var(--pst-color-on-background, #111111)\n", | |
| " );\n", | |
| " --xr-background-color-row-even: var(\n", | |
| " --jp-layout-color1,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 5))\n", | |
| " );\n", | |
| " --xr-background-color-row-odd: var(\n", | |
| " --jp-layout-color2,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 15))\n", | |
| " );\n", | |
| "}\n", | |
| "\n", | |
| ".xr-wrap {\n", | |
| " display: block !important;\n", | |
| " min-width: 300px;\n", | |
| " max-width: 700px;\n", | |
| " line-height: 1.6;\n", | |
| " padding-bottom: 4px;\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", | |
| "}\n", | |
| "\n", | |
| ".xr-header {\n", | |
| " border-bottom: solid 1px var(--xr-border-color);\n", | |
| " margin-bottom: 4px;\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-obj-name {\n", | |
| " margin-left: 2px;\n", | |
| " margin-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-obj-type,\n", | |
| ".xr-group-box-contents > label {\n", | |
| " color: var(--xr-font-color2);\n", | |
| " display: block;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-sections {\n", | |
| " padding-left: 0 !important;\n", | |
| " display: grid;\n", | |
| " grid-template-columns: 150px auto auto 1fr 0 20px 0 20px;\n", | |
| " margin-block-start: 0;\n", | |
| " margin-block-end: 0;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item {\n", | |
| " display: contents;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input,\n", | |
| ".xr-group-box-contents > input,\n", | |
| ".xr-array-wrap > input {\n", | |
| " display: block;\n", | |
| " opacity: 0;\n", | |
| " height: 0;\n", | |
| " margin: 0;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input + label,\n", | |
| ".xr-var-item > input + label {\n", | |
| " color: var(--xr-disabled-color);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:enabled + label,\n", | |
| ".xr-var-item > input:enabled + label,\n", | |
| ".xr-array-wrap > input:enabled + label,\n", | |
| ".xr-group-box-contents > input:enabled + label {\n", | |
| " cursor: pointer;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:focus-visible + label,\n", | |
| ".xr-var-item > input:focus-visible + label,\n", | |
| ".xr-array-wrap > input:focus-visible + label,\n", | |
| ".xr-group-box-contents > input:focus-visible + label {\n", | |
| " outline: auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:enabled + label:hover,\n", | |
| ".xr-var-item > input:enabled + label:hover,\n", | |
| ".xr-array-wrap > input:enabled + label:hover,\n", | |
| ".xr-group-box-contents > 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", | |
| " white-space: nowrap;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary > em {\n", | |
| " font-weight: normal;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-span-grid {\n", | |
| " grid-column-end: -1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary > span {\n", | |
| " display: inline-block;\n", | |
| " padding-left: 0.3em;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label > span {\n", | |
| " display: inline-block;\n", | |
| " padding-left: 0.6em;\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", | |
| ".xr-group-box-contents > label {\n", | |
| " padding-top: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-inline-details {\n", | |
| " grid-column: 2 / -1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-details {\n", | |
| " grid-column: 1 / -1;\n", | |
| " margin-top: 4px;\n", | |
| " margin-bottom: 5px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary-in ~ .xr-section-details {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary-in:checked ~ .xr-section-details {\n", | |
| " display: contents;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-children {\n", | |
| " display: inline-grid;\n", | |
| " grid-template-columns: 100%;\n", | |
| " grid-column: 1 / -1;\n", | |
| " padding-top: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box {\n", | |
| " display: inline-grid;\n", | |
| " grid-template-columns: 0px 30px auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-vline {\n", | |
| " grid-column-start: 1;\n", | |
| " border-right: 0.2em solid;\n", | |
| " border-color: var(--xr-border-color);\n", | |
| " width: 0px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-hline {\n", | |
| " grid-column-start: 2;\n", | |
| " grid-row-start: 1;\n", | |
| " height: 1em;\n", | |
| " width: 26px;\n", | |
| " border-bottom: 0.2em solid;\n", | |
| " border-color: var(--xr-border-color);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents {\n", | |
| " grid-column-start: 3;\n", | |
| " padding-bottom: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > label::before {\n", | |
| " content: \"📂\";\n", | |
| " padding-right: 0.3em;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label::before {\n", | |
| " content: \"📁\";\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label {\n", | |
| " padding-bottom: 0px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked ~ .xr-sections {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input + label > span {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-ellipsis {\n", | |
| " font-size: 1.4em;\n", | |
| " font-weight: 900;\n", | |
| " color: var(--xr-font-color2);\n", | |
| " letter-spacing: 0.15em;\n", | |
| " cursor: default;\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", | |
| " border-color: var(--xr-background-color-row-odd);\n", | |
| " margin-bottom: 0;\n", | |
| " padding-top: 2px;\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", | |
| " border-color: var(--xr-background-color-row-even);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name {\n", | |
| " grid-column: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-dims {\n", | |
| " grid-column: 2;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-dtype {\n", | |
| " grid-column: 3;\n", | |
| " text-align: right;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-preview {\n", | |
| " grid-column: 4;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-index-preview {\n", | |
| " grid-column: 2 / 5;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name,\n", | |
| ".xr-var-dims,\n", | |
| ".xr-var-dtype,\n", | |
| ".xr-preview,\n", | |
| ".xr-attrs dt {\n", | |
| " white-space: nowrap;\n", | |
| " overflow: hidden;\n", | |
| " text-overflow: ellipsis;\n", | |
| " padding-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name:hover,\n", | |
| ".xr-var-dims:hover,\n", | |
| ".xr-var-dtype:hover,\n", | |
| ".xr-attrs dt:hover {\n", | |
| " overflow: visible;\n", | |
| " width: auto;\n", | |
| " z-index: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-data {\n", | |
| " display: none;\n", | |
| " border-top: 2px dotted var(--xr-background-color);\n", | |
| " padding-bottom: 20px !important;\n", | |
| " padding-top: 10px !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in + label,\n", | |
| ".xr-var-data-in + label,\n", | |
| ".xr-index-data-in + label {\n", | |
| " padding: 0 1px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in:checked ~ .xr-var-attrs,\n", | |
| ".xr-var-data-in:checked ~ .xr-var-data,\n", | |
| ".xr-index-data-in:checked ~ .xr-index-data {\n", | |
| " display: block;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-data > table {\n", | |
| " float: right;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-data > pre,\n", | |
| ".xr-index-data > pre,\n", | |
| ".xr-var-data > table > tbody > tr {\n", | |
| " background-color: transparent !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name span,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-name div,\n", | |
| ".xr-index-data,\n", | |
| ".xr-attrs {\n", | |
| " padding-left: 25px !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs,\n", | |
| ".xr-var-attrs,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-data {\n", | |
| " grid-column: 1 / -1;\n", | |
| "}\n", | |
| "\n", | |
| "dl.xr-attrs {\n", | |
| " padding: 0;\n", | |
| " margin: 0;\n", | |
| " display: grid;\n", | |
| " grid-template-columns: 125px auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt,\n", | |
| ".xr-attrs dd {\n", | |
| " padding: 0;\n", | |
| " margin: 0;\n", | |
| " float: left;\n", | |
| " padding-right: 10px;\n", | |
| " width: auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt {\n", | |
| " font-weight: normal;\n", | |
| " grid-column: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt:hover span {\n", | |
| " display: inline-block;\n", | |
| " background: var(--xr-background-color);\n", | |
| " padding-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dd {\n", | |
| " grid-column: 2;\n", | |
| " white-space: pre-wrap;\n", | |
| " word-break: break-all;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-icon-database,\n", | |
| ".xr-icon-file-text2,\n", | |
| ".xr-no-icon {\n", | |
| " display: inline-block;\n", | |
| " vertical-align: middle;\n", | |
| " width: 1em;\n", | |
| " height: 1.5em !important;\n", | |
| " stroke-width: 0;\n", | |
| " stroke: currentColor;\n", | |
| " fill: currentColor;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in:checked + label > .xr-icon-file-text2,\n", | |
| ".xr-var-data-in:checked + label > .xr-icon-database,\n", | |
| ".xr-index-data-in:checked + label > .xr-icon-database {\n", | |
| " color: var(--xr-font-color0);\n", | |
| " filter: drop-shadow(1px 1px 5px var(--xr-font-color2));\n", | |
| " stroke-width: 0.8px;\n", | |
| "}\n", | |
| "</style><pre class='xr-text-repr-fallback'><xarray.Dataset> Size: 1TB\n", | |
| "Dimensions: (time: 432, ncells: 14886338, lev: 1,\n", | |
| " depth: 1, ncells_2: 22375924)\n", | |
| "Coordinates:\n", | |
| " * time (time) datetime64[ns] 3kB 2015-01-31...\n", | |
| " cell_sea_land_mask (ncells) int32 60MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " lat (ncells) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " lon (ncells) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " * lev (lev) float64 8B 0.0\n", | |
| " * depth (depth) float64 8B 1.0\n", | |
| "Dimensions without coordinates: ncells, ncells_2\n", | |
| "Data variables: (12/40)\n", | |
| " FrshFlux_IceSalt (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " FrshFlux_TotalIce (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " Qbot (time, lev, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Qtop (time, lev, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Wind_Speed_10m (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " atmos_fluxes_FrshFlux_Evaporation (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " ... ...\n", | |
| " snow_to_ice (time, lev, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " so (time, depth, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " ssh (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " stretch_c (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " to (time, depth, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " verticallyTotal_mass_flux_e (time, ncells_2) float32 39GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| "Attributes: (12/31)\n", | |
| " Conventions: CF-1.7 CMIP-6.2\n", | |
| " activity_id: HighResMIP\n", | |
| " contact: juergen.kroeger@mpimet.mpg.de\n", | |
| " creation_date: 2025-07-08T10:51:45\n", | |
| " data_specs_version: 01.00.32\n", | |
| " experiment: coupled future 2015-2050 using a scenario as close...\n", | |
| " ... ...\n", | |
| " source_id: ICON-ESM-ER\n", | |
| " source_type: AOGCM\n", | |
| " sub_experiment: none\n", | |
| " sub_experiment_id: none\n", | |
| " variant_label: r1i1p1f1\n", | |
| " version_id: v20240618</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-d4f4f60a-43c6-4798-bfa9-514b3b4b6cda' class='xr-section-summary-in' type='checkbox' disabled /><label for='section-d4f4f60a-43c6-4798-bfa9-514b3b4b6cda' class='xr-section-summary'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 432</li><li><span>ncells</span>: 14886338</li><li><span class='xr-has-index'>lev</span>: 1</li><li><span class='xr-has-index'>depth</span>: 1</li><li><span>ncells_2</span>: 22375924</li></ul></div></li><li class='xr-section-item'><input id='section-95cfe030-32d3-49ef-9f2d-967f5578c88b' class='xr-section-summary-in' type='checkbox' checked /><label for='section-95cfe030-32d3-49ef-9f2d-967f5578c88b' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <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 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'>2015-01-31T23:59:59 ... 2050-12-...</div><input id='attrs-152402eb-c8bc-4e3e-9ef6-a16be83936ac' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-152402eb-c8bc-4e3e-9ef6-a16be83936ac' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-237a89d5-18ad-4c3d-82df-e24de24e7c07' class='xr-var-data-in' type='checkbox'><label for='data-237a89d5-18ad-4c3d-82df-e24de24e7c07' 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(['2015-01-31T23:59:59.000000000', '2015-02-28T23:59:59.000000000',\n", | |
| " '2015-03-31T23:59:59.000000000', ..., '2050-10-31T23:59:59.000000000',\n", | |
| " '2050-11-30T23:59:59.000000000', '2050-12-31T23:59:59.000000000'],\n", | |
| " shape=(432,), dtype='datetime64[ns]')</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_sea_land_mask</span></div><div class='xr-var-dims'>(ncells)</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(14886338,), meta=np.ndarray></div><input id='attrs-ccf68b6d-5320-4e93-aaf5-df520072aefc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ccf68b6d-5320-4e93-aaf5-df520072aefc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-678b6b5f-f6a8-41c6-9eff-8c26ce555218' class='xr-var-data-in' type='checkbox'><label for='data-678b6b5f-f6a8-41c6-9eff-8c26ce555218' 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>sea (-2 inner, -1 boundary) land (2 inner, 1 boundary) mask for the cell</dd><dt><span>units :</span></dt><dd>2,1,-1,-</dd><dt><span>grid_type :</span></dt><dd>unstructured</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>dtype :</span></dt><dd>int32</dd><dt><span>zlib :</span></dt><dd>False</dd><dt><span>szip :</span></dt><dd>False</dd><dt><span>zstd :</span></dt><dd>False</dd><dt><span>bzip2 :</span></dt><dd>False</dd><dt><span>blosc :</span></dt><dd>False</dd><dt><span>shuffle :</span></dt><dd>False</dd><dt><span>complevel :</span></dt><dd>0</dd><dt><span>fletcher32 :</span></dt><dd>False</dd><dt><span>contiguous :</span></dt><dd>True</dd><dt><span>chunksizes :</span></dt><dd>None</dd><dt><span>source :</span></dt><dd>/work/bm1344/DKRZ/kerchunks_batched/erc2002/icon_grid_0016_R02B09_O.nc</dd><dt><span>original_shape :</span></dt><dd>[14886338]</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 56.79 MiB </td>\n", | |
| " <td> 56.79 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (14886338,) </td>\n", | |
| " <td> (14886338,) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> int32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.0,12.706308257291242)\">1</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(ncells)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(14886338,), meta=np.ndarray></div><input id='attrs-f49ffbb7-f8a1-400a-955b-2f957d001534' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f49ffbb7-f8a1-400a-955b-2f957d001534' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c5dd5348-b6bd-49e4-9651-564ab697a773' class='xr-var-data-in' type='checkbox'><label for='data-c5dd5348-b6bd-49e4-9651-564ab697a773' 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>center latitude</dd><dt><span>units :</span></dt><dd>radian</dd><dt><span>standard_name :</span></dt><dd>grid_latitude</dd><dt><span>bounds :</span></dt><dd>clat_vertices</dd><dt><span>dtype :</span></dt><dd>float64</dd><dt><span>zlib :</span></dt><dd>False</dd><dt><span>szip :</span></dt><dd>False</dd><dt><span>zstd :</span></dt><dd>False</dd><dt><span>bzip2 :</span></dt><dd>False</dd><dt><span>blosc :</span></dt><dd>False</dd><dt><span>shuffle :</span></dt><dd>False</dd><dt><span>complevel :</span></dt><dd>0</dd><dt><span>fletcher32 :</span></dt><dd>False</dd><dt><span>contiguous :</span></dt><dd>True</dd><dt><span>chunksizes :</span></dt><dd>None</dd><dt><span>source :</span></dt><dd>/work/bm1344/DKRZ/kerchunks_batched/erc2002/icon_grid_0016_R02B09_O.nc</dd><dt><span>original_shape :</span></dt><dd>[14886338]</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (14886338,) </td>\n", | |
| " <td> (14886338,) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float64 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.0,12.706308257291242)\">1</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(ncells)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(14886338,), meta=np.ndarray></div><input id='attrs-730f1d5e-36b9-47e6-b228-2aaeb9eb4aec' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-730f1d5e-36b9-47e6-b228-2aaeb9eb4aec' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4b7289a5-7d5b-4ed9-aa43-1c4b20e252f3' class='xr-var-data-in' type='checkbox'><label for='data-4b7289a5-7d5b-4ed9-aa43-1c4b20e252f3' 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>center longitude</dd><dt><span>units :</span></dt><dd>radian</dd><dt><span>standard_name :</span></dt><dd>grid_longitude</dd><dt><span>bounds :</span></dt><dd>clon_vertices</dd><dt><span>dtype :</span></dt><dd>float64</dd><dt><span>zlib :</span></dt><dd>False</dd><dt><span>szip :</span></dt><dd>False</dd><dt><span>zstd :</span></dt><dd>False</dd><dt><span>bzip2 :</span></dt><dd>False</dd><dt><span>blosc :</span></dt><dd>False</dd><dt><span>shuffle :</span></dt><dd>False</dd><dt><span>complevel :</span></dt><dd>0</dd><dt><span>fletcher32 :</span></dt><dd>False</dd><dt><span>contiguous :</span></dt><dd>True</dd><dt><span>chunksizes :</span></dt><dd>None</dd><dt><span>source :</span></dt><dd>/work/bm1344/DKRZ/kerchunks_batched/erc2002/icon_grid_0016_R02B09_O.nc</dd><dt><span>original_shape :</span></dt><dd>[14886338]</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (14886338,) </td>\n", | |
| " <td> (14886338,) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float64 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.0,12.706308257291242)\">1</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>lev</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0</div><input id='attrs-bbfa6dbd-4d2b-49b0-8318-96428d6762b7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bbfa6dbd-4d2b-49b0-8318-96428d6762b7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7c14d2cb-ff3c-49c7-be80-93328516275b' class='xr-var-data-in' type='checkbox'><label for='data-7c14d2cb-ff3c-49c7-be80-93328516275b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Z</dd></dl></div><div class='xr-var-data'><pre>array([0.])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>depth</span></div><div class='xr-var-dims'>(depth)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>1.0</div><input id='attrs-0484fd1e-5abf-432e-aed3-8549d3b83444' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0484fd1e-5abf-432e-aed3-8549d3b83444' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7ea5eed9-a53b-47da-b540-dbd459ea6869' class='xr-var-data-in' type='checkbox'><label for='data-7ea5eed9-a53b-47da-b540-dbd459ea6869' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Z</dd><dt><span>long_name :</span></dt><dd>depth_below_sea</dd><dt><span>positive :</span></dt><dd>down</dd><dt><span>standard_name :</span></dt><dd>depth</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>array([1.])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-f0f0fdd3-54ac-4100-bfe1-78246a8ca84d' class='xr-section-summary-in' type='checkbox' /><label for='section-f0f0fdd3-54ac-4100-bfe1-78246a8ca84d' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(40)</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>FrshFlux_IceSalt</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-a18b4edf-36fa-4f54-a44a-2a0e5b7e1e05' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a18b4edf-36fa-4f54-a44a-2a0e5b7e1e05' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5869e4ec-b7be-4747-9877-03fae3d08c28' class='xr-var-data-in' type='checkbox'><label for='data-5869e4ec-b7be-4747-9877-03fae3d08c28' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Salt volume flux due to sea ice change</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>FrshFlux_IceSalt</dd><dt><span>units :</span></dt><dd>psu m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>FrshFlux_TotalIce</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-bf118ee9-22ab-446c-b87a-05d10f24aaf7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bf118ee9-22ab-446c-b87a-05d10f24aaf7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-eee035b6-f61e-460c-870c-cb1b857434b8' class='xr-var-data-in' type='checkbox'><label for='data-eee035b6-f61e-460c-870c-cb1b857434b8' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Freshwater Flux due to Sea Ice Change</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>FrshFlux_TotalIce</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Qbot</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-9402e435-cd38-4584-9a24-75602362d107' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9402e435-cd38-4584-9a24-75602362d107' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a8724bab-6563-4353-869e-eed1b9aa520c' class='xr-var-data-in' type='checkbox'><label for='data-a8724bab-6563-4353-869e-eed1b9aa520c' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Conductive heat flux at ice-ocean interface</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>Qbot</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Qtop</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-b3856f3f-7e84-4733-9e51-5de5d03a5bb4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b3856f3f-7e84-4733-9e51-5de5d03a5bb4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9ca6e477-3a74-4954-a9f9-336ebd2be761' class='xr-var-data-in' type='checkbox'><label for='data-9ca6e477-3a74-4954-a9f9-336ebd2be761' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Energy flux available for surface melting</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>Qtop</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Wind_Speed_10m</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-41b5c5f1-7d6a-4509-a7b7-07e1d2a83895' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-41b5c5f1-7d6a-4509-a7b7-07e1d2a83895' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bf49af52-efba-40e7-ac4e-61a84f58a890' class='xr-var-data-in' type='checkbox'><label for='data-bf49af52-efba-40e7-ac4e-61a84f58a890' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Wind Speed at 10m height</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>wind_speed</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Evaporation</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-042a6a28-59e0-40fa-a0b5-4f7a9ce29eb5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-042a6a28-59e0-40fa-a0b5-4f7a9ce29eb5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-57504f96-121b-45d9-9a53-e9ec44f7614c' class='xr-var-data-in' type='checkbox'><label for='data-57504f96-121b-45d9-9a53-e9ec44f7614c' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Evaporation</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Evaporation</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Precipitation</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-7c4f572d-468d-4639-b4b2-0d01cdd70254' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7c4f572d-468d-4639-b4b2-0d01cdd70254' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c676e0e8-5cf5-40cd-99b6-9b69689ec0a5' class='xr-var-data-in' type='checkbox'><label for='data-c676e0e8-5cf5-40cd-99b6-9b69689ec0a5' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Precipitation</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Precipitation</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Runoff</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-dd40890e-a004-4796-8496-d2564269f0f6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dd40890e-a004-4796-8496-d2564269f0f6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8720ec42-d3fb-458c-a8b2-672543eb7f0a' class='xr-var-data-in' type='checkbox'><label for='data-8720ec42-d3fb-458c-a8b2-672543eb7f0a' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Runoff</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Runoff</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_SnowFall</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-1518a7e8-fe20-41b9-b91b-458d6247f4a3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1518a7e8-fe20-41b9-b91b-458d6247f4a3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fa6a915c-6888-48e4-bf68-136977eb251f' class='xr-var-data-in' type='checkbox'><label for='data-fa6a915c-6888-48e4-bf68-136977eb251f' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_SnowFall</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_SnowFall</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Latent</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-32c87d03-caf9-4473-b200-22f299ec03da' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-32c87d03-caf9-4473-b200-22f299ec03da' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-94aec514-7989-48c1-9e45-9882c0b08fdc' class='xr-var-data-in' type='checkbox'><label for='data-94aec514-7989-48c1-9e45-9882c0b08fdc' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Latent</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Latent</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_LongWave</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-ce7d8be1-92ae-4595-bcf1-4910c539b499' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ce7d8be1-92ae-4595-bcf1-4910c539b499' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-97ea062b-2f50-4e44-8ed9-4ee783bada77' class='xr-var-data-in' type='checkbox'><label for='data-97ea062b-2f50-4e44-8ed9-4ee783bada77' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_LongWave</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_LongWave</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Sensible</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-d4dcbe40-32b2-45d0-8705-a60e4132fca7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d4dcbe40-32b2-45d0-8705-a60e4132fca7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0ec7b1c6-fb10-4fcc-bce7-0aaca8f2047c' class='xr-var-data-in' type='checkbox'><label for='data-0ec7b1c6-fb10-4fcc-bce7-0aaca8f2047c' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Sensible</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Sensible</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_ShortWave</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-6dff0322-6b08-48c5-bd55-e6c75dee1fbf' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6dff0322-6b08-48c5-bd55-e6c75dee1fbf' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7376717c-f4e3-404e-9705-acea03195c0b' class='xr-var-data-in' type='checkbox'><label for='data-7376717c-f4e3-404e-9705-acea03195c0b' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_ShortWave</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_ShortWave</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Total</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-7991137c-ffcb-49d1-a740-519067d8b55a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7991137c-ffcb-49d1-a740-519067d8b55a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fa4d6e88-36b1-4e4a-a9f5-6a4fbea397cf' class='xr-var-data-in' type='checkbox'><label for='data-fa4d6e88-36b1-4e4a-a9f5-6a4fbea397cf' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Total</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Total</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_x</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-3498fcba-828d-490e-bc04-20aabf449222' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3498fcba-828d-490e-bc04-20aabf449222' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-214217a0-9510-4727-b9fc-8da2ca8be08f' class='xr-var-data-in' type='checkbox'><label for='data-214217a0-9510-4727-b9fc-8da2ca8be08f' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_x</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_eastward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_xw</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-d72c778c-a6e5-4e1a-ac72-d71226bec57c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d72c778c-a6e5-4e1a-ac72-d71226bec57c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-18f7df0f-7b70-4db7-a670-10220297c984' class='xr-var-data-in' type='checkbox'><label for='data-18f7df0f-7b70-4db7-a670-10220297c984' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_xw</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_eastward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_y</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-30f3886e-2772-4125-99be-4c0120de6127' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-30f3886e-2772-4125-99be-4c0120de6127' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1f6be15e-2997-4a71-9806-2de27fececbf' class='xr-var-data-in' type='checkbox'><label for='data-1f6be15e-2997-4a71-9806-2de27fececbf' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_y</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_northward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_yw</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-95a326ad-a6a8-4b22-8167-d83123be6e5b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-95a326ad-a6a8-4b22-8167-d83123be6e5b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4dc8f130-838e-4d5c-9505-cb6aeff02273' class='xr-var-data-in' type='checkbox'><label for='data-4dc8f130-838e-4d5c-9505-cb6aeff02273' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_yw</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_northward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>conc</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-5bc404b0-1372-439c-a67e-1fc56ddc4434' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5bc404b0-1372-439c-a67e-1fc56ddc4434' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5ed7437f-b16e-439b-abff-4b5f1c67ee46' class='xr-var-data-in' type='checkbox'><label for='data-5ed7437f-b16e-439b-abff-4b5f1c67ee46' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>ice concentration in each ice class</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>0.2.10</dd><dt><span>standard_name :</span></dt><dd>conc</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>delhi</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-ab84afb4-0290-4729-a11d-1a8e9a3a805f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ab84afb4-0290-4729-a11d-1a8e9a3a805f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a2c16e5c-8136-4ac3-ab2a-1dc5e8929c6d' class='xr-var-data-in' type='checkbox'><label for='data-a2c16e5c-8136-4ac3-ab2a-1dc5e8929c6d' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>Change in ice mean thickness due to thermodynamic effects</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>6.2.10</dd><dt><span>standard_name :</span></dt><dd>delhi</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>delhs</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-fb2d8f9c-81cf-449a-a866-61a19f7ae973' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fb2d8f9c-81cf-449a-a866-61a19f7ae973' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ecae2b5a-17b2-4cfc-8ca8-28eb85fcb15c' class='xr-var-data-in' type='checkbox'><label for='data-ecae2b5a-17b2-4cfc-8ca8-28eb85fcb15c' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Change in mean snow thickness due to thermodynamic melting</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>delhs</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heatOceI</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-248c8d59-edab-4f70-997d-a50a5ccd11b5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-248c8d59-edab-4f70-997d-a50a5ccd11b5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-93478147-efe0-413f-8884-cb8ae9f9de65' class='xr-var-data-in' type='checkbox'><label for='data-93478147-efe0-413f-8884-cb8ae9f9de65' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Heat flux to ocean from the ice growth</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heatOceI</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heatOceW</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-ac603e8c-9c2f-4866-9d18-8fbcfd15a60c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ac603e8c-9c2f-4866-9d18-8fbcfd15a60c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-60b6c8a0-2543-4949-be70-db161d93e28d' class='xr-var-data-in' type='checkbox'><label for='data-60b6c8a0-2543-4949-be70-db161d93e28d' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Heat flux to ocean from the atmosphere</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heatOceW</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_seaice</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-a030ea0f-e73d-4db8-afdb-1b08345f8822' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a030ea0f-e73d-4db8-afdb-1b08345f8822' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-53d73061-9543-4acb-8bd9-58b6902357a0' class='xr-var-data-in' type='checkbox'><label for='data-53d73061-9543-4acb-8bd9-58b6902357a0' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_content_seaice</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_seaice</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_snow</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-78cb569d-1abf-462f-b31d-f14ab19774ac' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-78cb569d-1abf-462f-b31d-f14ab19774ac' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4c795bea-6090-413d-a4bf-74c19225bd9b' class='xr-var-data-in' type='checkbox'><label for='data-4c795bea-6090-413d-a4bf-74c19225bd9b' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_conten_snow</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_snow</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_total</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-f20c608b-300c-4dce-8bf3-f49f7331f224' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f20c608b-300c-4dce-8bf3-f49f7331f224' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f303b9c3-6737-47eb-81de-fca15c2e85fa' class='xr-var-data-in' type='checkbox'><label for='data-f303b9c3-6737-47eb-81de-fca15c2e85fa' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_content_total</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_total</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>hi</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-edf9a426-82aa-4e98-a1b6-169ad93efaf0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-edf9a426-82aa-4e98-a1b6-169ad93efaf0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f79d3351-3560-48e3-8a07-75ededc8b24a' class='xr-var-data-in' type='checkbox'><label for='data-f79d3351-3560-48e3-8a07-75ededc8b24a' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>ice thickness</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>1.2.10</dd><dt><span>standard_name :</span></dt><dd>hi</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>hs</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-402abcfb-1e1b-403e-875f-e0e9b66901d1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-402abcfb-1e1b-403e-875f-e0e9b66901d1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-45488747-8abc-4245-8b66-a3f5b9ecd538' class='xr-var-data-in' type='checkbox'><label for='data-45488747-8abc-4245-8b66-a3f5b9ecd538' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>snow thickness</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>192.2.10</dd><dt><span>standard_name :</span></dt><dd>hs</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ice_u</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-16a8b507-ceb7-4536-acad-e3b351ebf010' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-16a8b507-ceb7-4536-acad-e3b351ebf010' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fd0411b1-1bda-441d-8268-dbbc1debb635' class='xr-var-data-in' type='checkbox'><label for='data-fd0411b1-1bda-441d-8268-dbbc1debb635' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>zonal velocity</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>4.2.10</dd><dt><span>standard_name :</span></dt><dd>ice_u</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ice_v</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-201d03c2-221d-4289-96eb-fa354a8c03fc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-201d03c2-221d-4289-96eb-fa354a8c03fc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c6c469d7-854c-4bba-a182-5be5ae64f19f' class='xr-var-data-in' type='checkbox'><label for='data-c6c469d7-854c-4bba-a182-5be5ae64f19f' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>meridional velocity</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>5.2.10</dd><dt><span>standard_name :</span></dt><dd>ice_v</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>mlotst</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-0158384f-031b-486e-8586-6648eaf75b92' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0158384f-031b-486e-8586-6648eaf75b92' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-11d0578f-1c38-4db4-8644-e3c84a2c40a3' class='xr-var-data-in' type='checkbox'><label for='data-11d0578f-1c38-4db4-8644-e3c84a2c40a3' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>mlotst10</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-78119398-aede-4577-a13e-d2684195a0e1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-78119398-aede-4577-a13e-d2684195a0e1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6f5d6c8a-f68a-41cf-9485-b1bc9a27e892' class='xr-var-data-in' type='checkbox'><label for='data-6f5d6c8a-f68a-41cf-9485-b1bc9a27e892' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t_10m</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>mlotst10</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>newice</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-14102d90-61b1-4db5-a1c1-7a7793fea953' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-14102d90-61b1-4db5-a1c1-7a7793fea953' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a9c7815b-8385-46d4-8762-30a40ec469fe' class='xr-var-data-in' type='checkbox'><label for='data-a9c7815b-8385-46d4-8762-30a40ec469fe' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>new ice growth in open water</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>newice</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sea_level_pressure</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-4287bd4c-f655-4911-824a-8b67eb8d5b22' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4287bd4c-f655-4911-824a-8b67eb8d5b22' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3769e25e-054e-4e66-96d8-ffb22d5d797f' class='xr-var-data-in' type='checkbox'><label for='data-3769e25e-054e-4e66-96d8-ffb22d5d797f' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Sea Level Pressure</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>air_pressure_at_mean_sea_level</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>snow_to_ice</span></div><div class='xr-var-dims'>(time, lev, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-115f1706-bf97-4a7a-9134-d4316f5ffba3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-115f1706-bf97-4a7a-9134-d4316f5ffba3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6fd28f59-66db-4af6-a728-917ee707ee49' class='xr-var-data-in' type='checkbox'><label for='data-6fd28f59-66db-4af6-a728-917ee707ee49' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>amount of snow that is transformed to ice</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>snow_to_ice</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>so</span></div><div class='xr-var-dims'>(time, depth, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-088bd59f-7e00-4e13-922e-40e01738d3a3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-088bd59f-7e00-4e13-922e-40e01738d3a3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-671f9349-80b2-4431-8235-dd5f051f2e6b' class='xr-var-data-in' type='checkbox'><label for='data-671f9349-80b2-4431-8235-dd5f051f2e6b' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>sea water salinity</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>21.4.10</dd><dt><span>standard_name :</span></dt><dd>sea_water_salinity</dd><dt><span>units :</span></dt><dd>psu</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ssh</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-69b63fae-e1f3-4c81-8474-113fea083fd5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-69b63fae-e1f3-4c81-8474-113fea083fd5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f4d15234-9870-4d39-b30e-4ec774f557ae' class='xr-var-data-in' type='checkbox'><label for='data-f4d15234-9870-4d39-b30e-4ec774f557ae' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>surface elevation at cell center</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>1.3.10</dd><dt><span>standard_name :</span></dt><dd>ssh</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>stretch_c</span></div><div class='xr-var-dims'>(time, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-497c2d82-8f59-4c0a-984a-f9514555401f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-497c2d82-8f59-4c0a-984a-f9514555401f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-59f546ef-e72a-4f8b-b23d-3b6f7ab331d6' class='xr-var-data-in' type='checkbox'><label for='data-59f546ef-e72a-4f8b-b23d-3b6f7ab331d6' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>1</dd><dt><span>long_name :</span></dt><dd>zstar surface stretch at cell center</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>stretch_c.TL3</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>to</span></div><div class='xr-var-dims'>(time, depth, ncells)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-364280f7-4c70-4ce1-9120-63c18f837968' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-364280f7-4c70-4ce1-9120-63c18f837968' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-852a0c64-0530-4073-8277-3e0fc61c7714' class='xr-var-data-in' type='checkbox'><label for='data-852a0c64-0530-4073-8277-3e0fc61c7714' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>sea water potential temperature</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>sea_water_potential_temperature</dd><dt><span>units :</span></dt><dd>C</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>verticallyTotal_mass_flux_e</span></div><div class='xr-var-dims'>(time, ncells_2)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-3cd59a00-d72f-4bce-b305-4972e2fd7d53' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3cd59a00-d72f-4bce-b305-4972e2fd7d53' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-de0c99b7-4bc7-4e39-9709-a2da788ba257' class='xr-var-data-in' type='checkbox'><label for='data-de0c99b7-4bc7-4e39-9709-a2da788ba257' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>vertically integrated mass flux at edges</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>3</dd><dt><span>standard_name :</span></dt><dd>verticallyTotal_mass_flux_e</dd><dt><span>units :</span></dt><dd>kg s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 36.01 GiB </td>\n", | |
| " <td> 94.42 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 22375924) </td>\n", | |
| " <td> (2, 12375924) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"53\" y1=\"0\" x2=\"53\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >22375924</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-d25e2efb-0634-4578-a1ac-82f5a6742ea1' class='xr-section-summary-in' type='checkbox' /><label for='section-d25e2efb-0634-4578-a1ac-82f5a6742ea1' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(31)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>activity_id :</span></dt><dd>HighResMIP</dd><dt><span>contact :</span></dt><dd>juergen.kroeger@mpimet.mpg.de</dd><dt><span>creation_date :</span></dt><dd>2025-07-08T10:51:45</dd><dt><span>data_specs_version :</span></dt><dd>01.00.32</dd><dt><span>experiment :</span></dt><dd>coupled future 2015-2050 using a scenario as close to CMIP6 ssp245 as possible</dd><dt><span>experiment_id :</span></dt><dd>highres-future-ssp245</dd><dt><span>forcing_index :</span></dt><dd>1</dd><dt><span>grid :</span></dt><dd>native</dd><dt><span>grid_label :</span></dt><dd>gn</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>Max Planck Institute for Meteorology, Hamburg 20146, Germany</dd><dt><span>institution_id :</span></dt><dd>MPI-M</dd><dt><span>license :</span></dt><dd>EERIE model data produced by MPI-M is licensed under a Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. </dd><dt><span>mip_era :</span></dt><dd>EERIE</dd><dt><span>nominal_resolution :</span></dt><dd>5 km</dd><dt><span>parent_activity_id :</span></dt><dd>HighResMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>hist-1950</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>project_id :</span></dt><dd>EERIE</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>ocean</dd><dt><span>references :</span></dt><dd>Hohenegger et al., ICON-Sapphire: simulating the components of the Earth system and their interactions at kilometer and subkilometer scales. Geosci. Model Dev., 16, 779–811, 2023, https://doi.org/10.5194/gmd-16-779-2023</dd><dt><span>source :</span></dt><dd>ICON-ESM-ER (2023): \n", | |
| "aerosol: none, prescribed MACv2-SP\n", | |
| "atmos: ICON-A (icosahedral/triangles; 10 km; 90 levels; top level 80 km)\n", | |
| "atmosChem: none\n", | |
| "land: JSBACH4.20\n", | |
| "landIce: none/prescribed\n", | |
| "ocean: ICON-O (icosahedral/triangles; 5 km; 72 levels; top grid cell 0-2 m)\n", | |
| "ocnBgchem: none\n", | |
| "seaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)</dd><dt><span>source_id :</span></dt><dd>ICON-ESM-ER</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f1</dd><dt><span>version_id :</span></dt><dd>v20240618</dd></dl></div></li></ul></div></div>" | |
| ], | |
| "text/plain": [ | |
| "<xarray.Dataset> Size: 1TB\n", | |
| "Dimensions: (time: 432, ncells: 14886338, lev: 1,\n", | |
| " depth: 1, ncells_2: 22375924)\n", | |
| "Coordinates:\n", | |
| " * time (time) datetime64[ns] 3kB 2015-01-31...\n", | |
| " cell_sea_land_mask (ncells) int32 60MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " lat (ncells) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " lon (ncells) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " * lev (lev) float64 8B 0.0\n", | |
| " * depth (depth) float64 8B 1.0\n", | |
| "Dimensions without coordinates: ncells, ncells_2\n", | |
| "Data variables: (12/40)\n", | |
| " FrshFlux_IceSalt (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " FrshFlux_TotalIce (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " Qbot (time, lev, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Qtop (time, lev, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Wind_Speed_10m (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " atmos_fluxes_FrshFlux_Evaporation (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " ... ...\n", | |
| " snow_to_ice (time, lev, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " so (time, depth, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " ssh (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " stretch_c (time, ncells) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " to (time, depth, ncells) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " verticallyTotal_mass_flux_e (time, ncells_2) float32 39GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| "Attributes: (12/31)\n", | |
| " Conventions: CF-1.7 CMIP-6.2\n", | |
| " activity_id: HighResMIP\n", | |
| " contact: juergen.kroeger@mpimet.mpg.de\n", | |
| " creation_date: 2025-07-08T10:51:45\n", | |
| " data_specs_version: 01.00.32\n", | |
| " experiment: coupled future 2015-2050 using a scenario as close...\n", | |
| " ... ...\n", | |
| " source_id: ICON-ESM-ER\n", | |
| " source_type: AOGCM\n", | |
| " sub_experiment: none\n", | |
| " sub_experiment_id: none\n", | |
| " variant_label: r1i1p1f1\n", | |
| " version_id: v20240618" | |
| ] | |
| }, | |
| "execution_count": 3, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "ds" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 4, | |
| "id": "ea2266d0-1794-437b-92da-98cc4197ee4b", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "ds_mesh = xr.open_dataset('https://swift.dkrz.de/v1/dkrz_7fa6baba-db43-4d12-a295-8e3ebb1a01ed/grids/icon_grid_0016_R02B09_O.zarr', engine='zarr')" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 5, | |
| "id": "4a068747-bb95-45ed-9dbf-07844726ab6e", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "ds = ds.rename({'ncells':'cell', 'ncells_2':'edge'})" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 6, | |
| "id": "b7f94fba-3e4f-4c3a-895c-59bf0534f1f3", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "ds = ds.drop_vars(['cell_sea_land_mask']) # todo: figure out why we need to drop this " | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 7, | |
| "id": "b18571eb-9980-4a54-ad44-dc64a9853a75", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "ds = xr.merge([ds, ds_mesh])" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 8, | |
| "id": "c7580142-4889-4444-bddc-74bc136950b4", | |
| "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 notebooks */\n", | |
| "\n", | |
| ":root {\n", | |
| " --xr-font-color0: var(\n", | |
| " --jp-content-font-color0,\n", | |
| " var(--pst-color-text-base rgba(0, 0, 0, 1))\n", | |
| " );\n", | |
| " --xr-font-color2: var(\n", | |
| " --jp-content-font-color2,\n", | |
| " var(--pst-color-text-base, rgba(0, 0, 0, 0.54))\n", | |
| " );\n", | |
| " --xr-font-color3: var(\n", | |
| " --jp-content-font-color3,\n", | |
| " var(--pst-color-text-base, rgba(0, 0, 0, 0.38))\n", | |
| " );\n", | |
| " --xr-border-color: var(\n", | |
| " --jp-border-color2,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 10))\n", | |
| " );\n", | |
| " --xr-disabled-color: var(\n", | |
| " --jp-layout-color3,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 40))\n", | |
| " );\n", | |
| " --xr-background-color: var(\n", | |
| " --jp-layout-color0,\n", | |
| " var(--pst-color-on-background, white)\n", | |
| " );\n", | |
| " --xr-background-color-row-even: var(\n", | |
| " --jp-layout-color1,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 5))\n", | |
| " );\n", | |
| " --xr-background-color-row-odd: var(\n", | |
| " --jp-layout-color2,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 15))\n", | |
| " );\n", | |
| "}\n", | |
| "\n", | |
| "html[theme=\"dark\"],\n", | |
| "html[data-theme=\"dark\"],\n", | |
| "body[data-theme=\"dark\"],\n", | |
| "body.vscode-dark {\n", | |
| " --xr-font-color0: var(\n", | |
| " --jp-content-font-color0,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 1))\n", | |
| " );\n", | |
| " --xr-font-color2: var(\n", | |
| " --jp-content-font-color2,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 0.54))\n", | |
| " );\n", | |
| " --xr-font-color3: var(\n", | |
| " --jp-content-font-color3,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 0.38))\n", | |
| " );\n", | |
| " --xr-border-color: var(\n", | |
| " --jp-border-color2,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 10))\n", | |
| " );\n", | |
| " --xr-disabled-color: var(\n", | |
| " --jp-layout-color3,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 40))\n", | |
| " );\n", | |
| " --xr-background-color: var(\n", | |
| " --jp-layout-color0,\n", | |
| " var(--pst-color-on-background, #111111)\n", | |
| " );\n", | |
| " --xr-background-color-row-even: var(\n", | |
| " --jp-layout-color1,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 5))\n", | |
| " );\n", | |
| " --xr-background-color-row-odd: var(\n", | |
| " --jp-layout-color2,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 15))\n", | |
| " );\n", | |
| "}\n", | |
| "\n", | |
| ".xr-wrap {\n", | |
| " display: block !important;\n", | |
| " min-width: 300px;\n", | |
| " max-width: 700px;\n", | |
| " line-height: 1.6;\n", | |
| " padding-bottom: 4px;\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", | |
| "}\n", | |
| "\n", | |
| ".xr-header {\n", | |
| " border-bottom: solid 1px var(--xr-border-color);\n", | |
| " margin-bottom: 4px;\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-obj-name {\n", | |
| " margin-left: 2px;\n", | |
| " margin-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-obj-type,\n", | |
| ".xr-group-box-contents > label {\n", | |
| " color: var(--xr-font-color2);\n", | |
| " display: block;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-sections {\n", | |
| " padding-left: 0 !important;\n", | |
| " display: grid;\n", | |
| " grid-template-columns: 150px auto auto 1fr 0 20px 0 20px;\n", | |
| " margin-block-start: 0;\n", | |
| " margin-block-end: 0;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item {\n", | |
| " display: contents;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input,\n", | |
| ".xr-group-box-contents > input,\n", | |
| ".xr-array-wrap > input {\n", | |
| " display: block;\n", | |
| " opacity: 0;\n", | |
| " height: 0;\n", | |
| " margin: 0;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input + label,\n", | |
| ".xr-var-item > input + label {\n", | |
| " color: var(--xr-disabled-color);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:enabled + label,\n", | |
| ".xr-var-item > input:enabled + label,\n", | |
| ".xr-array-wrap > input:enabled + label,\n", | |
| ".xr-group-box-contents > input:enabled + label {\n", | |
| " cursor: pointer;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:focus-visible + label,\n", | |
| ".xr-var-item > input:focus-visible + label,\n", | |
| ".xr-array-wrap > input:focus-visible + label,\n", | |
| ".xr-group-box-contents > input:focus-visible + label {\n", | |
| " outline: auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:enabled + label:hover,\n", | |
| ".xr-var-item > input:enabled + label:hover,\n", | |
| ".xr-array-wrap > input:enabled + label:hover,\n", | |
| ".xr-group-box-contents > 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", | |
| " white-space: nowrap;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary > em {\n", | |
| " font-weight: normal;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-span-grid {\n", | |
| " grid-column-end: -1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary > span {\n", | |
| " display: inline-block;\n", | |
| " padding-left: 0.3em;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label > span {\n", | |
| " display: inline-block;\n", | |
| " padding-left: 0.6em;\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", | |
| ".xr-group-box-contents > label {\n", | |
| " padding-top: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-inline-details {\n", | |
| " grid-column: 2 / -1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-details {\n", | |
| " grid-column: 1 / -1;\n", | |
| " margin-top: 4px;\n", | |
| " margin-bottom: 5px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary-in ~ .xr-section-details {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary-in:checked ~ .xr-section-details {\n", | |
| " display: contents;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-children {\n", | |
| " display: inline-grid;\n", | |
| " grid-template-columns: 100%;\n", | |
| " grid-column: 1 / -1;\n", | |
| " padding-top: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box {\n", | |
| " display: inline-grid;\n", | |
| " grid-template-columns: 0px 30px auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-vline {\n", | |
| " grid-column-start: 1;\n", | |
| " border-right: 0.2em solid;\n", | |
| " border-color: var(--xr-border-color);\n", | |
| " width: 0px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-hline {\n", | |
| " grid-column-start: 2;\n", | |
| " grid-row-start: 1;\n", | |
| " height: 1em;\n", | |
| " width: 26px;\n", | |
| " border-bottom: 0.2em solid;\n", | |
| " border-color: var(--xr-border-color);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents {\n", | |
| " grid-column-start: 3;\n", | |
| " padding-bottom: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > label::before {\n", | |
| " content: \"📂\";\n", | |
| " padding-right: 0.3em;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label::before {\n", | |
| " content: \"📁\";\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label {\n", | |
| " padding-bottom: 0px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked ~ .xr-sections {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input + label > span {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-ellipsis {\n", | |
| " font-size: 1.4em;\n", | |
| " font-weight: 900;\n", | |
| " color: var(--xr-font-color2);\n", | |
| " letter-spacing: 0.15em;\n", | |
| " cursor: default;\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", | |
| " border-color: var(--xr-background-color-row-odd);\n", | |
| " margin-bottom: 0;\n", | |
| " padding-top: 2px;\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", | |
| " border-color: var(--xr-background-color-row-even);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name {\n", | |
| " grid-column: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-dims {\n", | |
| " grid-column: 2;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-dtype {\n", | |
| " grid-column: 3;\n", | |
| " text-align: right;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-preview {\n", | |
| " grid-column: 4;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-index-preview {\n", | |
| " grid-column: 2 / 5;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name,\n", | |
| ".xr-var-dims,\n", | |
| ".xr-var-dtype,\n", | |
| ".xr-preview,\n", | |
| ".xr-attrs dt {\n", | |
| " white-space: nowrap;\n", | |
| " overflow: hidden;\n", | |
| " text-overflow: ellipsis;\n", | |
| " padding-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name:hover,\n", | |
| ".xr-var-dims:hover,\n", | |
| ".xr-var-dtype:hover,\n", | |
| ".xr-attrs dt:hover {\n", | |
| " overflow: visible;\n", | |
| " width: auto;\n", | |
| " z-index: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-data {\n", | |
| " display: none;\n", | |
| " border-top: 2px dotted var(--xr-background-color);\n", | |
| " padding-bottom: 20px !important;\n", | |
| " padding-top: 10px !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in + label,\n", | |
| ".xr-var-data-in + label,\n", | |
| ".xr-index-data-in + label {\n", | |
| " padding: 0 1px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in:checked ~ .xr-var-attrs,\n", | |
| ".xr-var-data-in:checked ~ .xr-var-data,\n", | |
| ".xr-index-data-in:checked ~ .xr-index-data {\n", | |
| " display: block;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-data > table {\n", | |
| " float: right;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-data > pre,\n", | |
| ".xr-index-data > pre,\n", | |
| ".xr-var-data > table > tbody > tr {\n", | |
| " background-color: transparent !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name span,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-name div,\n", | |
| ".xr-index-data,\n", | |
| ".xr-attrs {\n", | |
| " padding-left: 25px !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs,\n", | |
| ".xr-var-attrs,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-data {\n", | |
| " grid-column: 1 / -1;\n", | |
| "}\n", | |
| "\n", | |
| "dl.xr-attrs {\n", | |
| " padding: 0;\n", | |
| " margin: 0;\n", | |
| " display: grid;\n", | |
| " grid-template-columns: 125px auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt,\n", | |
| ".xr-attrs dd {\n", | |
| " padding: 0;\n", | |
| " margin: 0;\n", | |
| " float: left;\n", | |
| " padding-right: 10px;\n", | |
| " width: auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt {\n", | |
| " font-weight: normal;\n", | |
| " grid-column: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt:hover span {\n", | |
| " display: inline-block;\n", | |
| " background: var(--xr-background-color);\n", | |
| " padding-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dd {\n", | |
| " grid-column: 2;\n", | |
| " white-space: pre-wrap;\n", | |
| " word-break: break-all;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-icon-database,\n", | |
| ".xr-icon-file-text2,\n", | |
| ".xr-no-icon {\n", | |
| " display: inline-block;\n", | |
| " vertical-align: middle;\n", | |
| " width: 1em;\n", | |
| " height: 1.5em !important;\n", | |
| " stroke-width: 0;\n", | |
| " stroke: currentColor;\n", | |
| " fill: currentColor;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in:checked + label > .xr-icon-file-text2,\n", | |
| ".xr-var-data-in:checked + label > .xr-icon-database,\n", | |
| ".xr-index-data-in:checked + label > .xr-icon-database {\n", | |
| " color: var(--xr-font-color0);\n", | |
| " filter: drop-shadow(1px 1px 5px var(--xr-font-color2));\n", | |
| " stroke-width: 0.8px;\n", | |
| "}\n", | |
| "</style><pre class='xr-text-repr-fallback'><xarray.Dataset> Size: 1TB\n", | |
| "Dimensions: (time: 432, cell: 14886338, lev: 1,\n", | |
| " depth: 1, edge: 22375924, nc: 2,\n", | |
| " vertex: 7487687,\n", | |
| " max_stored_decompositions: 4, ne: 6,\n", | |
| " no: 4, nv: 3, max_chdom: 1,\n", | |
| " cell_grf: 14, edge_grf: 24,\n", | |
| " vert_grf: 13, two_grf: 2)\n", | |
| "Coordinates:\n", | |
| " * time (time) datetime64[ns] 3kB 2015-01-31...\n", | |
| " lat (cell) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " lon (cell) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " clat (cell) float64 119MB ...\n", | |
| " clon (cell) float64 119MB ...\n", | |
| " * lev (lev) float64 8B 0.0\n", | |
| " * depth (depth) float64 8B 1.0\n", | |
| " elat (edge) float64 179MB ...\n", | |
| " elon (edge) float64 179MB ...\n", | |
| " vlat (vertex) float64 60MB ...\n", | |
| " vlon (vertex) float64 60MB ...\n", | |
| "Dimensions without coordinates: cell, edge, nc, vertex,\n", | |
| " max_stored_decompositions, ne, no, nv,\n", | |
| " max_chdom, cell_grf, edge_grf, vert_grf, two_grf\n", | |
| "Data variables: (12/131)\n", | |
| " FrshFlux_IceSalt (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " FrshFlux_TotalIce (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " Qbot (time, lev, cell) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Qtop (time, lev, cell) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Wind_Speed_10m (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " atmos_fluxes_FrshFlux_Evaporation (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " ... ...\n", | |
| " vertex_of_cell (nv, cell) float64 357MB ...\n", | |
| " vertices_of_vertex (ne, vertex) float64 359MB ...\n", | |
| " vlat_vertices (vertex, ne) float64 359MB ...\n", | |
| " vlon_vertices (vertex, ne) float64 359MB ...\n", | |
| " zonal_normal_dual_edge (edge) float64 179MB ...\n", | |
| " zonal_normal_primal_edge (edge) float64 179MB ...\n", | |
| "Attributes: (12/31)\n", | |
| " Conventions: CF-1.7 CMIP-6.2\n", | |
| " activity_id: HighResMIP\n", | |
| " contact: juergen.kroeger@mpimet.mpg.de\n", | |
| " creation_date: 2025-07-08T10:51:45\n", | |
| " data_specs_version: 01.00.32\n", | |
| " experiment: coupled future 2015-2050 using a scenario as close...\n", | |
| " ... ...\n", | |
| " source_id: ICON-ESM-ER\n", | |
| " source_type: AOGCM\n", | |
| " sub_experiment: none\n", | |
| " sub_experiment_id: none\n", | |
| " variant_label: r1i1p1f1\n", | |
| " version_id: v20240618</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-7fe14cd1-3099-4a60-a114-f59e7d518d59' class='xr-section-summary-in' type='checkbox' disabled /><label for='section-7fe14cd1-3099-4a60-a114-f59e7d518d59' class='xr-section-summary'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 432</li><li><span>cell</span>: 14886338</li><li><span class='xr-has-index'>lev</span>: 1</li><li><span class='xr-has-index'>depth</span>: 1</li><li><span>edge</span>: 22375924</li><li><span>nc</span>: 2</li><li><span>vertex</span>: 7487687</li><li><span>max_stored_decompositions</span>: 4</li><li><span>ne</span>: 6</li><li><span>no</span>: 4</li><li><span>nv</span>: 3</li><li><span>max_chdom</span>: 1</li><li><span>cell_grf</span>: 14</li><li><span>edge_grf</span>: 24</li><li><span>vert_grf</span>: 13</li><li><span>two_grf</span>: 2</li></ul></div></li><li class='xr-section-item'><input id='section-9ce3919a-d4bb-4913-ad7e-7bd0c37a0787' class='xr-section-summary-in' type='checkbox' checked /><label for='section-9ce3919a-d4bb-4913-ad7e-7bd0c37a0787' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(11)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>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'>2015-01-31T23:59:59 ... 2050-12-...</div><input id='attrs-cbb34f05-96c6-4bd6-88e6-3756f8cbb250' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-cbb34f05-96c6-4bd6-88e6-3756f8cbb250' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-78fe5973-8424-4e22-8274-f025eaf8e074' class='xr-var-data-in' type='checkbox'><label for='data-78fe5973-8424-4e22-8274-f025eaf8e074' 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(['2015-01-31T23:59:59.000000000', '2015-02-28T23:59:59.000000000',\n", | |
| " '2015-03-31T23:59:59.000000000', ..., '2050-10-31T23:59:59.000000000',\n", | |
| " '2050-11-30T23:59:59.000000000', '2050-12-31T23:59:59.000000000'],\n", | |
| " shape=(432,), dtype='datetime64[ns]')</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(14886338,), meta=np.ndarray></div><input id='attrs-e7d29d81-20b1-424e-b14a-cbc093f576e3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e7d29d81-20b1-424e-b14a-cbc093f576e3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d32485b9-8a61-4282-92f2-cbffd9ccd9ce' class='xr-var-data-in' type='checkbox'><label for='data-d32485b9-8a61-4282-92f2-cbffd9ccd9ce' 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>center latitude</dd><dt><span>units :</span></dt><dd>radian</dd><dt><span>standard_name :</span></dt><dd>grid_latitude</dd><dt><span>bounds :</span></dt><dd>clat_vertices</dd><dt><span>dtype :</span></dt><dd>float64</dd><dt><span>zlib :</span></dt><dd>False</dd><dt><span>szip :</span></dt><dd>False</dd><dt><span>zstd :</span></dt><dd>False</dd><dt><span>bzip2 :</span></dt><dd>False</dd><dt><span>blosc :</span></dt><dd>False</dd><dt><span>shuffle :</span></dt><dd>False</dd><dt><span>complevel :</span></dt><dd>0</dd><dt><span>fletcher32 :</span></dt><dd>False</dd><dt><span>contiguous :</span></dt><dd>True</dd><dt><span>chunksizes :</span></dt><dd>None</dd><dt><span>source :</span></dt><dd>/work/bm1344/DKRZ/kerchunks_batched/erc2002/icon_grid_0016_R02B09_O.nc</dd><dt><span>original_shape :</span></dt><dd>[14886338]</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (14886338,) </td>\n", | |
| " <td> (14886338,) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float64 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.0,12.706308257291242)\">1</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(14886338,), meta=np.ndarray></div><input id='attrs-4b4c1941-72bc-4951-9674-5262b3074932' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4b4c1941-72bc-4951-9674-5262b3074932' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-10c5ae4a-0e81-487b-b6f7-0a0a5b47543c' class='xr-var-data-in' type='checkbox'><label for='data-10c5ae4a-0e81-487b-b6f7-0a0a5b47543c' 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>center longitude</dd><dt><span>units :</span></dt><dd>radian</dd><dt><span>standard_name :</span></dt><dd>grid_longitude</dd><dt><span>bounds :</span></dt><dd>clon_vertices</dd><dt><span>dtype :</span></dt><dd>float64</dd><dt><span>zlib :</span></dt><dd>False</dd><dt><span>szip :</span></dt><dd>False</dd><dt><span>zstd :</span></dt><dd>False</dd><dt><span>bzip2 :</span></dt><dd>False</dd><dt><span>blosc :</span></dt><dd>False</dd><dt><span>shuffle :</span></dt><dd>False</dd><dt><span>complevel :</span></dt><dd>0</dd><dt><span>fletcher32 :</span></dt><dd>False</dd><dt><span>contiguous :</span></dt><dd>True</dd><dt><span>chunksizes :</span></dt><dd>None</dd><dt><span>source :</span></dt><dd>/work/bm1344/DKRZ/kerchunks_batched/erc2002/icon_grid_0016_R02B09_O.nc</dd><dt><span>original_shape :</span></dt><dd>[14886338]</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (14886338,) </td>\n", | |
| " <td> (14886338,) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 1 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float64 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.0,12.706308257291242)\">1</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>clat</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-878135e0-7834-4f13-8a3d-4bbe15c33ab4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-878135e0-7834-4f13-8a3d-4bbe15c33ab4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f7267d83-e873-42a4-8d4a-c7987f3473b5' class='xr-var-data-in' type='checkbox'><label for='data-f7267d83-e873-42a4-8d4a-c7987f3473b5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>clat_vertices</dd><dt><span>long_name :</span></dt><dd>center latitude</dd><dt><span>standard_name :</span></dt><dd>grid_latitude</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>clon</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6e2f0996-def9-4110-8041-1674ff6baeea' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6e2f0996-def9-4110-8041-1674ff6baeea' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-04987f01-0b40-4761-8eb9-73f3fa19a9bb' class='xr-var-data-in' type='checkbox'><label for='data-04987f01-0b40-4761-8eb9-73f3fa19a9bb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>clon_vertices</dd><dt><span>long_name :</span></dt><dd>center longitude</dd><dt><span>standard_name :</span></dt><dd>grid_longitude</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>lev</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0</div><input id='attrs-ff6665c0-c70d-4eda-80eb-a735af58cc2e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ff6665c0-c70d-4eda-80eb-a735af58cc2e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d72d1bcb-ebd4-4da5-a0fe-393412937564' class='xr-var-data-in' type='checkbox'><label for='data-d72d1bcb-ebd4-4da5-a0fe-393412937564' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Z</dd></dl></div><div class='xr-var-data'><pre>array([0.])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>depth</span></div><div class='xr-var-dims'>(depth)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>1.0</div><input id='attrs-5ace136c-8a2d-4a51-bbd2-99628207a20b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5ace136c-8a2d-4a51-bbd2-99628207a20b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e1bcfbe0-b418-4b9f-869b-a955110d2d57' class='xr-var-data-in' type='checkbox'><label for='data-e1bcfbe0-b418-4b9f-869b-a955110d2d57' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Z</dd><dt><span>long_name :</span></dt><dd>depth_below_sea</dd><dt><span>positive :</span></dt><dd>down</dd><dt><span>standard_name :</span></dt><dd>depth</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>array([1.])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elat</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-14546829-3598-44d3-8be7-9c3eb1e60add' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-14546829-3598-44d3-8be7-9c3eb1e60add' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7067385d-43fa-4cf6-bcdb-8ac7d6023b86' class='xr-var-data-in' type='checkbox'><label for='data-7067385d-43fa-4cf6-bcdb-8ac7d6023b86' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>elat_vertices</dd><dt><span>long_name :</span></dt><dd>edge midpoint latitude</dd><dt><span>standard_name :</span></dt><dd>grid_latitude</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elon</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a34f7932-8109-4767-8a14-0e567f3227d7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a34f7932-8109-4767-8a14-0e567f3227d7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3c686220-d85f-4dbf-876c-5e6825534316' class='xr-var-data-in' type='checkbox'><label for='data-3c686220-d85f-4dbf-876c-5e6825534316' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>elon_vertices</dd><dt><span>long_name :</span></dt><dd>edge midpoint longitude</dd><dt><span>standard_name :</span></dt><dd>grid_longitude</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vlat</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4faa2fe2-ca35-4144-a83a-8d657e1d2727' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4faa2fe2-ca35-4144-a83a-8d657e1d2727' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8da5d402-ad52-4249-9864-c6621963e626' class='xr-var-data-in' type='checkbox'><label for='data-8da5d402-ad52-4249-9864-c6621963e626' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>vlat_vertices</dd><dt><span>long_name :</span></dt><dd>vertex latitude</dd><dt><span>standard_name :</span></dt><dd>grid_latitude</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vlon</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b02ec81c-b98a-431b-918d-09f78d1d6324' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b02ec81c-b98a-431b-918d-09f78d1d6324' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-eca63884-5e89-4b89-b9ac-f1871301efc3' class='xr-var-data-in' type='checkbox'><label for='data-eca63884-5e89-4b89-b9ac-f1871301efc3' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>vlon_vertices</dd><dt><span>long_name :</span></dt><dd>vertex longitude</dd><dt><span>standard_name :</span></dt><dd>grid_longitude</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-53509377-15f0-476a-bfce-af1a31e97941' class='xr-section-summary-in' type='checkbox' /><label for='section-53509377-15f0-476a-bfce-af1a31e97941' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(131)</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>FrshFlux_IceSalt</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-5208ef8a-9e97-446d-b5fa-6bd50110ef66' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5208ef8a-9e97-446d-b5fa-6bd50110ef66' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7497dbc6-2495-451f-87ea-b407b66d5904' class='xr-var-data-in' type='checkbox'><label for='data-7497dbc6-2495-451f-87ea-b407b66d5904' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Salt volume flux due to sea ice change</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>FrshFlux_IceSalt</dd><dt><span>units :</span></dt><dd>psu m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>FrshFlux_TotalIce</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-cb8037cc-00e5-42cd-8e07-e559118357d2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cb8037cc-00e5-42cd-8e07-e559118357d2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-29b04a6e-2593-4bc9-b27f-8321d4e804c8' class='xr-var-data-in' type='checkbox'><label for='data-29b04a6e-2593-4bc9-b27f-8321d4e804c8' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Freshwater Flux due to Sea Ice Change</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>FrshFlux_TotalIce</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Qbot</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-cee1770b-2118-46b6-9146-e6f77d493dc0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cee1770b-2118-46b6-9146-e6f77d493dc0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d261ca72-6655-4eb0-a57e-d5961e3e7247' class='xr-var-data-in' type='checkbox'><label for='data-d261ca72-6655-4eb0-a57e-d5961e3e7247' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Conductive heat flux at ice-ocean interface</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>Qbot</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Qtop</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-587afc95-3155-4a2a-afe6-6255ed2476cc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-587afc95-3155-4a2a-afe6-6255ed2476cc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e8081d60-de38-4380-ad1b-7d13b621f2a7' class='xr-var-data-in' type='checkbox'><label for='data-e8081d60-de38-4380-ad1b-7d13b621f2a7' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Energy flux available for surface melting</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>Qtop</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Wind_Speed_10m</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-1b4d3c18-bd12-49fa-9391-e7f2a91970c4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1b4d3c18-bd12-49fa-9391-e7f2a91970c4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e93d5eae-28b4-47f6-98f8-36f2becc5772' class='xr-var-data-in' type='checkbox'><label for='data-e93d5eae-28b4-47f6-98f8-36f2becc5772' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Wind Speed at 10m height</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>wind_speed</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Evaporation</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-7422e8f5-a871-4fb9-ac3b-c9b929748276' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7422e8f5-a871-4fb9-ac3b-c9b929748276' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-796de356-2259-48e2-9e8e-75d7e5ac0770' class='xr-var-data-in' type='checkbox'><label for='data-796de356-2259-48e2-9e8e-75d7e5ac0770' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Evaporation</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Evaporation</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Precipitation</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-bf970327-4713-4546-a777-35d8f2f20e2e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bf970327-4713-4546-a777-35d8f2f20e2e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8ca1984c-a3a6-4dd9-9e66-463480c0ac9b' class='xr-var-data-in' type='checkbox'><label for='data-8ca1984c-a3a6-4dd9-9e66-463480c0ac9b' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Precipitation</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Precipitation</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Runoff</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-bbbbc5d4-2c46-491b-a7a2-f2fa27e04aa4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bbbbc5d4-2c46-491b-a7a2-f2fa27e04aa4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-efac1864-b53b-4eec-9716-df75913dea29' class='xr-var-data-in' type='checkbox'><label for='data-efac1864-b53b-4eec-9716-df75913dea29' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Runoff</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Runoff</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_SnowFall</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-730ffdb3-3f25-4449-bc55-bdc0d7cc7049' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-730ffdb3-3f25-4449-bc55-bdc0d7cc7049' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d1e7a7bd-2aa6-45c6-ad88-4a22652e74de' class='xr-var-data-in' type='checkbox'><label for='data-d1e7a7bd-2aa6-45c6-ad88-4a22652e74de' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_SnowFall</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_SnowFall</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Latent</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-24d31f59-3556-4853-88ec-2f64119ebf0a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-24d31f59-3556-4853-88ec-2f64119ebf0a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-50fbf9a8-e3f8-4a29-905c-774e5d9a3d9b' class='xr-var-data-in' type='checkbox'><label for='data-50fbf9a8-e3f8-4a29-905c-774e5d9a3d9b' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Latent</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Latent</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_LongWave</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-4eda5d2d-0623-4143-ae54-37c5cd3da548' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4eda5d2d-0623-4143-ae54-37c5cd3da548' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-42b2aad1-8ebc-4dd6-9f5b-6496f71551b5' class='xr-var-data-in' type='checkbox'><label for='data-42b2aad1-8ebc-4dd6-9f5b-6496f71551b5' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_LongWave</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_LongWave</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Sensible</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-a73c6c53-74c3-45b8-8a30-51a3e9232207' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a73c6c53-74c3-45b8-8a30-51a3e9232207' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-425280fe-df1e-49d4-b395-12b95b8e1d36' class='xr-var-data-in' type='checkbox'><label for='data-425280fe-df1e-49d4-b395-12b95b8e1d36' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Sensible</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Sensible</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_ShortWave</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-faa448d3-8b10-4325-a22b-9a2c9f42fcfd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-faa448d3-8b10-4325-a22b-9a2c9f42fcfd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-113c43a3-62e1-4380-ad47-5583080f6fa9' class='xr-var-data-in' type='checkbox'><label for='data-113c43a3-62e1-4380-ad47-5583080f6fa9' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_ShortWave</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_ShortWave</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Total</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-9d8bfd3b-cafd-4928-bd69-341e6e4b6e61' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9d8bfd3b-cafd-4928-bd69-341e6e4b6e61' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d93b1f2b-e01b-4da2-b83f-61409d5300c8' class='xr-var-data-in' type='checkbox'><label for='data-d93b1f2b-e01b-4da2-b83f-61409d5300c8' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Total</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Total</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_x</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-1e56fc52-cae9-4dbb-b75a-2eae4dbb9315' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1e56fc52-cae9-4dbb-b75a-2eae4dbb9315' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-31f1b08c-26f9-47bd-9093-a714ae485ad5' class='xr-var-data-in' type='checkbox'><label for='data-31f1b08c-26f9-47bd-9093-a714ae485ad5' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_x</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_eastward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_xw</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-a90484a8-a627-4be1-b463-56cf0f870a64' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a90484a8-a627-4be1-b463-56cf0f870a64' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-57e4177c-d829-48f4-9b1c-a675c9ddae16' class='xr-var-data-in' type='checkbox'><label for='data-57e4177c-d829-48f4-9b1c-a675c9ddae16' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_xw</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_eastward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_y</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-edab07d8-f2cb-4ba7-88a2-1bd6829604b4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-edab07d8-f2cb-4ba7-88a2-1bd6829604b4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-27e2382f-6b67-4a98-b718-1f3c4a8aee94' class='xr-var-data-in' type='checkbox'><label for='data-27e2382f-6b67-4a98-b718-1f3c4a8aee94' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_y</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_northward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_yw</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-f306a8e4-82be-4157-9c8c-3ab2321f1f79' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f306a8e4-82be-4157-9c8c-3ab2321f1f79' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a71acac5-d83e-44ff-949d-38349f32d23d' class='xr-var-data-in' type='checkbox'><label for='data-a71acac5-d83e-44ff-949d-38349f32d23d' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_yw</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_northward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>conc</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-1377927b-51ed-4438-a3ab-5fbc8fb8e80c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1377927b-51ed-4438-a3ab-5fbc8fb8e80c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-70ebdb26-c155-466e-8155-7c94a7d9534c' class='xr-var-data-in' type='checkbox'><label for='data-70ebdb26-c155-466e-8155-7c94a7d9534c' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>ice concentration in each ice class</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>0.2.10</dd><dt><span>standard_name :</span></dt><dd>conc</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>delhi</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-f9740274-4b90-4e91-9015-c53fd6e9f899' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f9740274-4b90-4e91-9015-c53fd6e9f899' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8b87693f-5d53-44ef-8c3a-bf2feea8481a' class='xr-var-data-in' type='checkbox'><label for='data-8b87693f-5d53-44ef-8c3a-bf2feea8481a' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>Change in ice mean thickness due to thermodynamic effects</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>6.2.10</dd><dt><span>standard_name :</span></dt><dd>delhi</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>delhs</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-ba859852-d2d3-4acb-bb33-07fe9f52b23c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ba859852-d2d3-4acb-bb33-07fe9f52b23c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c15080c3-23f6-41b0-823d-381b12f12ed0' class='xr-var-data-in' type='checkbox'><label for='data-c15080c3-23f6-41b0-823d-381b12f12ed0' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Change in mean snow thickness due to thermodynamic melting</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>delhs</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heatOceI</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-93d7a8de-378b-4149-b310-38e05a78b493' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-93d7a8de-378b-4149-b310-38e05a78b493' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-98d338fc-4e68-4402-806a-232dded1327c' class='xr-var-data-in' type='checkbox'><label for='data-98d338fc-4e68-4402-806a-232dded1327c' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Heat flux to ocean from the ice growth</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heatOceI</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heatOceW</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-b9e6a237-d136-45ce-a22f-6e09224e7c03' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b9e6a237-d136-45ce-a22f-6e09224e7c03' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-326d3485-14b5-4f2b-947e-332647369858' class='xr-var-data-in' type='checkbox'><label for='data-326d3485-14b5-4f2b-947e-332647369858' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Heat flux to ocean from the atmosphere</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heatOceW</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_seaice</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-6da7036d-1945-428b-bdcc-ea0e4218fcd7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6da7036d-1945-428b-bdcc-ea0e4218fcd7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-abe0b2eb-00fd-4039-a3a2-a18f7a5d218c' class='xr-var-data-in' type='checkbox'><label for='data-abe0b2eb-00fd-4039-a3a2-a18f7a5d218c' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_content_seaice</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_seaice</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_snow</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-619f7d3f-378d-4dae-85da-ee7fb758df77' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-619f7d3f-378d-4dae-85da-ee7fb758df77' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7c986d34-0990-47c3-b143-4afa02bbebea' class='xr-var-data-in' type='checkbox'><label for='data-7c986d34-0990-47c3-b143-4afa02bbebea' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_conten_snow</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_snow</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_total</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-403dc939-e585-44de-ad9a-8493de653b87' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-403dc939-e585-44de-ad9a-8493de653b87' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3a08b44c-225f-468f-8b66-7a6e3b382afb' class='xr-var-data-in' type='checkbox'><label for='data-3a08b44c-225f-468f-8b66-7a6e3b382afb' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_content_total</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_total</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>hi</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-e685b93a-6c9f-4e33-9a49-0caa5ba3022f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e685b93a-6c9f-4e33-9a49-0caa5ba3022f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-06a42724-269c-45e9-805e-6920f96f1949' class='xr-var-data-in' type='checkbox'><label for='data-06a42724-269c-45e9-805e-6920f96f1949' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>ice thickness</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>1.2.10</dd><dt><span>standard_name :</span></dt><dd>hi</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>hs</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-928ab3b5-9dc1-4dec-960c-619591a4da2c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-928ab3b5-9dc1-4dec-960c-619591a4da2c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4d302f46-8ca4-45b6-899c-5326d78fef84' class='xr-var-data-in' type='checkbox'><label for='data-4d302f46-8ca4-45b6-899c-5326d78fef84' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>snow thickness</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>192.2.10</dd><dt><span>standard_name :</span></dt><dd>hs</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ice_u</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-0d18e33f-c8f4-4b66-9c5a-7292c01e5769' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0d18e33f-c8f4-4b66-9c5a-7292c01e5769' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bdd95438-ff0c-41dc-af35-36f9d7ae1412' class='xr-var-data-in' type='checkbox'><label for='data-bdd95438-ff0c-41dc-af35-36f9d7ae1412' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>zonal velocity</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>4.2.10</dd><dt><span>standard_name :</span></dt><dd>ice_u</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ice_v</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-45983d83-3f2d-4018-8c3b-9fd79f4b0da8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-45983d83-3f2d-4018-8c3b-9fd79f4b0da8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a2209a75-760e-4637-887e-ab74f8ce537b' class='xr-var-data-in' type='checkbox'><label for='data-a2209a75-760e-4637-887e-ab74f8ce537b' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>meridional velocity</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>5.2.10</dd><dt><span>standard_name :</span></dt><dd>ice_v</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>mlotst</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-44de5cef-553a-4ac1-a1be-c3dda8dbbafe' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-44de5cef-553a-4ac1-a1be-c3dda8dbbafe' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f4ddd083-8085-49ca-8df4-ec5a02ff8bf0' class='xr-var-data-in' type='checkbox'><label for='data-f4ddd083-8085-49ca-8df4-ec5a02ff8bf0' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>mlotst10</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-d9b298b9-d8ab-4444-9c91-91ea7f72568a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d9b298b9-d8ab-4444-9c91-91ea7f72568a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-784e9049-da18-4601-8a69-9ef7e2a1e9db' class='xr-var-data-in' type='checkbox'><label for='data-784e9049-da18-4601-8a69-9ef7e2a1e9db' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t_10m</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>mlotst10</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>newice</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-4cb5b366-7383-48e1-be34-f400cd541fee' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4cb5b366-7383-48e1-be34-f400cd541fee' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ccd4bd72-47e9-4026-9cc6-0debc1b52840' class='xr-var-data-in' type='checkbox'><label for='data-ccd4bd72-47e9-4026-9cc6-0debc1b52840' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>new ice growth in open water</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>newice</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sea_level_pressure</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-a5300367-8cad-48c8-bcae-9d79bb2629b3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a5300367-8cad-48c8-bcae-9d79bb2629b3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-82893ba5-7164-4f2d-b49d-f9dd6d67d3d6' class='xr-var-data-in' type='checkbox'><label for='data-82893ba5-7164-4f2d-b49d-f9dd6d67d3d6' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Sea Level Pressure</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>air_pressure_at_mean_sea_level</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>snow_to_ice</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-ca066697-c9b9-4aea-aec7-204e7ce7f288' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ca066697-c9b9-4aea-aec7-204e7ce7f288' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-50bbf8c0-9a65-40e4-8d64-edadbb235445' class='xr-var-data-in' type='checkbox'><label for='data-50bbf8c0-9a65-40e4-8d64-edadbb235445' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>amount of snow that is transformed to ice</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>snow_to_ice</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>so</span></div><div class='xr-var-dims'>(time, depth, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-b8a8f70f-ae5e-4665-83ee-2cb398f6b620' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b8a8f70f-ae5e-4665-83ee-2cb398f6b620' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7213c68a-1c82-4532-a0ea-1a301d98a5f0' class='xr-var-data-in' type='checkbox'><label for='data-7213c68a-1c82-4532-a0ea-1a301d98a5f0' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>sea water salinity</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>21.4.10</dd><dt><span>standard_name :</span></dt><dd>sea_water_salinity</dd><dt><span>units :</span></dt><dd>psu</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ssh</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-072d9b1b-f3bb-4009-b994-8682a437861b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-072d9b1b-f3bb-4009-b994-8682a437861b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7ddb41f2-50f3-4d19-8b90-2b680f3988b3' class='xr-var-data-in' type='checkbox'><label for='data-7ddb41f2-50f3-4d19-8b90-2b680f3988b3' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>surface elevation at cell center</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>1.3.10</dd><dt><span>standard_name :</span></dt><dd>ssh</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>stretch_c</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-07181b8a-34e4-4087-b620-9b8cab21c653' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-07181b8a-34e4-4087-b620-9b8cab21c653' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-92208959-7a44-4319-bdb5-bd755194f858' class='xr-var-data-in' type='checkbox'><label for='data-92208959-7a44-4319-bdb5-bd755194f858' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>1</dd><dt><span>long_name :</span></dt><dd>zstar surface stretch at cell center</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>stretch_c.TL3</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>to</span></div><div class='xr-var-dims'>(time, depth, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-65b0a5f8-939f-451c-89c2-71e4930636a5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-65b0a5f8-939f-451c-89c2-71e4930636a5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-abc1c470-7111-4014-a9dc-3f305098df62' class='xr-var-data-in' type='checkbox'><label for='data-abc1c470-7111-4014-a9dc-3f305098df62' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>sea water potential temperature</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>sea_water_potential_temperature</dd><dt><span>units :</span></dt><dd>C</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>verticallyTotal_mass_flux_e</span></div><div class='xr-var-dims'>(time, edge)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-d44e6c44-1366-43f2-af63-039893a6bd8d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d44e6c44-1366-43f2-af63-039893a6bd8d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dd0fc824-6e41-42c6-98f9-fe4a5d796275' class='xr-var-data-in' type='checkbox'><label for='data-dd0fc824-6e41-42c6-98f9-fe4a5d796275' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>vertically integrated mass flux at edges</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>3</dd><dt><span>standard_name :</span></dt><dd>verticallyTotal_mass_flux_e</dd><dt><span>units :</span></dt><dd>kg s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 36.01 GiB </td>\n", | |
| " <td> 94.42 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 22375924) </td>\n", | |
| " <td> (2, 12375924) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"53\" y1=\"0\" x2=\"53\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >22375924</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>adjacent_cell_of_edge</span></div><div class='xr-var-dims'>(nc, edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-eb450352-20f4-4166-b9fc-9a02ea5cd6f2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-eb450352-20f4-4166-b9fc-9a02ea5cd6f2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cf6ea264-0ac7-4f92-84c0-1cc7e3410f43' class='xr-var-data-in' type='checkbox'><label for='data-cf6ea264-0ac7-4f92-84c0-1cc7e3410f43' 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>cells adjacent to each edge</dd></dl></div><div class='xr-var-data'><pre>[44751848 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cartesian_x_vertices</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5dc3a645-4302-408c-b76e-871cee075432' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5dc3a645-4302-408c-b76e-871cee075432' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7aa06cee-a56c-42ee-810e-d1aec837bbe4' class='xr-var-data-in' type='checkbox'><label for='data-7aa06cee-a56c-42ee-810e-d1aec837bbe4' 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>vertex cartesian coordinate x on unit sp</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cartesian_y_vertices</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7e669a8d-96be-4e17-9c43-e2672455d520' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7e669a8d-96be-4e17-9c43-e2672455d520' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-08d03a24-5c25-4d23-9566-4c7c487051dc' class='xr-var-data-in' type='checkbox'><label for='data-08d03a24-5c25-4d23-9566-4c7c487051dc' 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>vertex cartesian coordinate y on unit sp</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cartesian_z_vertices</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-172ace1b-73eb-4e4b-a86a-0f1e2746afff' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-172ace1b-73eb-4e4b-a86a-0f1e2746afff' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fab19779-d6d0-4454-be78-cda9127faa67' class='xr-var-data-in' type='checkbox'><label for='data-fab19779-d6d0-4454-be78-cda9127faa67' 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>vertex cartesian coordinate z on unit sp</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_area</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f694d76f-fd58-4069-8d8e-76c0a54f32b1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f694d76f-fd58-4069-8d8e-76c0a54f32b1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-21a2b44d-d4d5-4822-8ee9-af4ad67e8c91' class='xr-var-data-in' type='checkbox'><label for='data-21a2b44d-d4d5-4822-8ee9-af4ad67e8c91' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>area of grid cell</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>area</dd><dt><span>units :</span></dt><dd>m2</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_area_p</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-bc70156b-3d91-469e-8ea5-be48fa194b25' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bc70156b-3d91-469e-8ea5-be48fa194b25' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f4b9a6ce-1cf4-42eb-a213-8d28f4776a20' class='xr-var-data-in' type='checkbox'><label for='data-f4b9a6ce-1cf4-42eb-a213-8d28f4776a20' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>area of grid cell</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>units :</span></dt><dd>m2</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_circumcenter_cartesian_x</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a626a9ff-3fa4-45c1-914b-2ef96e8ac18e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a626a9ff-3fa4-45c1-914b-2ef96e8ac18e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dd80b5f1-1f18-42ad-8f3c-aa7edf0667fb' class='xr-var-data-in' type='checkbox'><label for='data-dd80b5f1-1f18-42ad-8f3c-aa7edf0667fb' 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>cartesian position of the prime cell circumcenter on the unit sphere, coordinate x</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_circumcenter_cartesian_y</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d3fdc884-ce1c-4fd8-95f0-b1071fb00292' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d3fdc884-ce1c-4fd8-95f0-b1071fb00292' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-91e877ab-e3c8-4fc9-bbd9-628d293ce0e1' class='xr-var-data-in' type='checkbox'><label for='data-91e877ab-e3c8-4fc9-bbd9-628d293ce0e1' 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>cartesian position of the prime cell circumcenter on the unit sphere, coordinate y</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_circumcenter_cartesian_z</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d90a1094-907d-46d0-ace3-c3197bf44f65' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d90a1094-907d-46d0-ace3-c3197bf44f65' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6aad8d39-c7f8-4f67-931a-53382df0d859' class='xr-var-data-in' type='checkbox'><label for='data-6aad8d39-c7f8-4f67-931a-53382df0d859' 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>cartesian position of the prime cell circumcenter on the unit sphere, coordinate z</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_domain_id</span></div><div class='xr-var-dims'>(cell, max_stored_decompositions)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9b64b947-992b-4762-8097-66675476214a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9b64b947-992b-4762-8097-66675476214a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e3cf3243-114b-48ab-9c4a-cf4982f651f7' class='xr-var-data-in' type='checkbox'><label for='data-e3cf3243-114b-48ab-9c4a-cf4982f651f7' 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>cell domain id for decomposition</dd></dl></div><div class='xr-var-data'><pre>[59545352 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_elevation</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d66e9864-c7b1-48c0-bb9d-7b5c188a1a94' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d66e9864-c7b1-48c0-bb9d-7b5c188a1a94' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-93cab38f-f6b0-4581-b6a7-7ab3957fccb5' class='xr-var-data-in' type='checkbox'><label for='data-93cab38f-f6b0-4581-b6a7-7ab3957fccb5' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>elevation at the cell centers</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_index</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c8ac8e8e-ef12-4bae-9079-0c1c334e236d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c8ac8e8e-ef12-4bae-9079-0c1c334e236d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-483bd7c9-d328-429e-8054-e1da04b7b74c' class='xr-var-data-in' type='checkbox'><label for='data-483bd7c9-d328-429e-8054-e1da04b7b74c' 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>cell index</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_no_of_domains</span></div><div class='xr-var-dims'>(max_stored_decompositions)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8fa4a5b8-ff43-4f14-a6b2-517014825f82' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8fa4a5b8-ff43-4f14-a6b2-517014825f82' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5f7e662b-f1df-438f-a05e-8a817a287647' class='xr-var-data-in' type='checkbox'><label for='data-5f7e662b-f1df-438f-a05e-8a817a287647' 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>number of domains for each decomposition</dd></dl></div><div class='xr-var-data'><pre>[4 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cell_sea_land_mask</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-487b8b85-9969-4120-8b2a-b320eff95126' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-487b8b85-9969-4120-8b2a-b320eff95126' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c0b4d593-d33c-40b9-a2ca-8755298df9e3' class='xr-var-data-in' type='checkbox'><label for='data-c0b4d593-d33c-40b9-a2ca-8755298df9e3' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>sea (-2 inner, -1 boundary) land (2 inner, 1 boundary) mask for the cell</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>units :</span></dt><dd>2,1,-1,-</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>cells_of_vertex</span></div><div class='xr-var-dims'>(ne, vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-62dffca4-eaa2-4db1-ad6c-d802e43a3468' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-62dffca4-eaa2-4db1-ad6c-d802e43a3468' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e9e8a92b-54f7-49eb-86de-367c392672d8' class='xr-var-data-in' type='checkbox'><label for='data-e9e8a92b-54f7-49eb-86de-367c392672d8' 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>cells around each vertex</dd></dl></div><div class='xr-var-data'><pre>[44926122 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>child_cell_id</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0bf50a48-9902-4e21-8006-e800c258cd67' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0bf50a48-9902-4e21-8006-e800c258cd67' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d43d1931-e81a-4f21-9293-0e9f51ad660c' class='xr-var-data-in' type='checkbox'><label for='data-d43d1931-e81a-4f21-9293-0e9f51ad660c' 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>domain ID of child cell</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>child_cell_index</span></div><div class='xr-var-dims'>(no, cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-70367158-cd5e-4d01-9881-ccfeedaebbf4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-70367158-cd5e-4d01-9881-ccfeedaebbf4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ce9c3ef3-026c-489f-a3a5-5a64072b5b90' class='xr-var-data-in' type='checkbox'><label for='data-ce9c3ef3-026c-489f-a3a5-5a64072b5b90' 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>child cell index</dd></dl></div><div class='xr-var-data'><pre>[59545352 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>child_edge_id</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b462d9e6-24ae-42e4-8a61-f8928b1412ec' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b462d9e6-24ae-42e4-8a61-f8928b1412ec' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a183b420-97a8-46a8-b2a8-4845dbe1b078' class='xr-var-data-in' type='checkbox'><label for='data-a183b420-97a8-46a8-b2a8-4845dbe1b078' 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>domain ID of child edge</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>child_edge_index</span></div><div class='xr-var-dims'>(no, edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-59436970-62ef-4b5f-abd7-59f28ad6686c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-59436970-62ef-4b5f-abd7-59f28ad6686c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-938d7fd0-1a70-49be-a91a-b9feac4ad264' class='xr-var-data-in' type='checkbox'><label for='data-938d7fd0-1a70-49be-a91a-b9feac4ad264' 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>child edge index</dd></dl></div><div class='xr-var-data'><pre>[89503696 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>clat_vertices</span></div><div class='xr-var-dims'>(cell, nv)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c1f3e16d-8f3b-456f-86b1-916d0b6b9c5c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c1f3e16d-8f3b-456f-86b1-916d0b6b9c5c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e173968a-1d9b-484a-b34f-18fe95e20f51' class='xr-var-data-in' type='checkbox'><label for='data-e173968a-1d9b-484a-b34f-18fe95e20f51' 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>radian</dd></dl></div><div class='xr-var-data'><pre>[44659014 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>clon_vertices</span></div><div class='xr-var-dims'>(cell, nv)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e67c01ae-9087-461d-a642-23316c8937c7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e67c01ae-9087-461d-a642-23316c8937c7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3493d80a-5ea4-4920-a508-647947572e52' class='xr-var-data-in' type='checkbox'><label for='data-3493d80a-5ea4-4920-a508-647947572e52' 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>radian</dd></dl></div><div class='xr-var-data'><pre>[44659014 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>dual_area</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8548cd7e-54e1-433f-9e27-e4936ad26bea' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8548cd7e-54e1-433f-9e27-e4936ad26bea' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b11e4127-7f4c-4c4c-847a-a3e0c56fcaa0' class='xr-var-data-in' type='checkbox'><label for='data-b11e4127-7f4c-4c4c-847a-a3e0c56fcaa0' 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>areas of dual hexagonal/pentagonal cells</dd><dt><span>standard_name :</span></dt><dd>area</dd><dt><span>units :</span></dt><dd>m2</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>dual_area_p</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a369da81-ef16-45f7-b7a5-1fb97020dba7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a369da81-ef16-45f7-b7a5-1fb97020dba7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ef9b103a-74bb-4c68-af9d-7d25d08d1c99' class='xr-var-data-in' type='checkbox'><label for='data-ef9b103a-74bb-4c68-af9d-7d25d08d1c99' 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>areas of dual hexagonal/pentagonal cells</dd><dt><span>units :</span></dt><dd>m2</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>dual_edge_length</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-242d7fdb-12d9-4e7d-9f6b-2fdbb78f742f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-242d7fdb-12d9-4e7d-9f6b-2fdbb78f742f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f220b167-a173-40c6-bced-a9bd48dc29d5' class='xr-var-data-in' type='checkbox'><label for='data-f220b167-a173-40c6-bced-a9bd48dc29d5' 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>lengths of dual edges (distances between triangular cell circumcenters)</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_cell_distance</span></div><div class='xr-var-dims'>(nc, edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c3f32502-be52-4b71-b42c-faef8273acea' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c3f32502-be52-4b71-b42c-faef8273acea' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5ccb5c66-c628-4175-9baf-822b1434332a' class='xr-var-data-in' type='checkbox'><label for='data-5ccb5c66-c628-4175-9baf-822b1434332a' 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>distances between edge midpoint and adjacent triangle midpoints</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>[44751848 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_dual_middle_cartesian_x</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0dbf3e7c-11d5-440d-be57-51f5c8b0f725' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0dbf3e7c-11d5-440d-be57-51f5c8b0f725' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1d2fcb95-05ca-4eaf-89e9-df6a8217a242' class='xr-var-data-in' type='checkbox'><label for='data-1d2fcb95-05ca-4eaf-89e9-df6a8217a242' 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>dual edge center cartesian coordinate x on unit sphere</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_dual_middle_cartesian_y</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fce831e0-7f43-4622-ac31-0406b2350eb2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fce831e0-7f43-4622-ac31-0406b2350eb2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-462e883e-025c-466d-b3a6-692bbcf281b1' class='xr-var-data-in' type='checkbox'><label for='data-462e883e-025c-466d-b3a6-692bbcf281b1' 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>dual edge center cartesian coordinate y on unit sphere</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_dual_middle_cartesian_z</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e270f220-31c9-4c30-837e-03a61d568015' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e270f220-31c9-4c30-837e-03a61d568015' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f07ca269-0229-4c89-86b0-80183665f297' class='xr-var-data-in' type='checkbox'><label for='data-f07ca269-0229-4c89-86b0-80183665f297' 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>dual edge center cartesian coordinate z on unit sphere</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_dual_normal_cartesian_x</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a969c4a6-ac76-4343-9ecd-761ad65cd4a7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a969c4a6-ac76-4343-9ecd-761ad65cd4a7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0e51ba98-26a7-4e08-96f6-bcc977796803' class='xr-var-data-in' type='checkbox'><label for='data-0e51ba98-26a7-4e08-96f6-bcc977796803' 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>unit normal to the dual edge 3D vector, coordinate x</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_dual_normal_cartesian_y</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f9a43893-2896-4b96-8a0a-b0c5b16a032f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f9a43893-2896-4b96-8a0a-b0c5b16a032f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-95290f15-cc3e-45c2-8bdf-c0975aeeb061' class='xr-var-data-in' type='checkbox'><label for='data-95290f15-cc3e-45c2-8bdf-c0975aeeb061' 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>unit normal to the dual edge 3D vector, coordinate y</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_dual_normal_cartesian_z</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-67822098-4c3b-4943-86d2-d634a013017c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-67822098-4c3b-4943-86d2-d634a013017c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c1998aa8-4e52-4a4c-ba5f-b83ebc1762d4' class='xr-var-data-in' type='checkbox'><label for='data-c1998aa8-4e52-4a4c-ba5f-b83ebc1762d4' 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>unit normal to the dual edge 3D vector, coordinate z</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_elevation</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-73ccacd5-c58c-4c4e-9447-6e991518b5d6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-73ccacd5-c58c-4c4e-9447-6e991518b5d6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-056cc576-af43-475d-a693-81be7663f019' class='xr-var-data-in' type='checkbox'><label for='data-056cc576-af43-475d-a693-81be7663f019' 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>elevation at the edge centers</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_index</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-84022376-6686-46dc-ba46-b9bb77d8eb8c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-84022376-6686-46dc-ba46-b9bb77d8eb8c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a91195d3-52e6-4dcf-ae19-fc79cff158c5' class='xr-var-data-in' type='checkbox'><label for='data-a91195d3-52e6-4dcf-ae19-fc79cff158c5' 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>edge index</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_length</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ad7c5415-2b5b-4864-b36f-a406b3562314' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ad7c5415-2b5b-4864-b36f-a406b3562314' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-814f57ae-7703-42ee-9943-e410d9049a80' class='xr-var-data-in' type='checkbox'><label for='data-814f57ae-7703-42ee-9943-e410d9049a80' 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>lengths of edges of triangular cells</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_middle_cartesian_x</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9a0fec37-895f-425d-b5f3-5abca4cd0c43' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9a0fec37-895f-425d-b5f3-5abca4cd0c43' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-144e43bc-46b0-43c1-b942-4633a851005e' class='xr-var-data-in' type='checkbox'><label for='data-144e43bc-46b0-43c1-b942-4633a851005e' 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>prime edge center cartesian coordinate x on unit sphere</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_middle_cartesian_y</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-11fbcb2a-4a1d-4cb9-a71b-411b2dde63a5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-11fbcb2a-4a1d-4cb9-a71b-411b2dde63a5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cf331faf-b36b-4575-881a-d70c32951906' class='xr-var-data-in' type='checkbox'><label for='data-cf331faf-b36b-4575-881a-d70c32951906' 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>prime edge center cartesian coordinate y on unit sphere</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_middle_cartesian_z</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-55b99665-b87f-42bf-a165-9af6c0c211ae' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-55b99665-b87f-42bf-a165-9af6c0c211ae' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8b050d28-da7e-47b8-930e-0732447290f6' class='xr-var-data-in' type='checkbox'><label for='data-8b050d28-da7e-47b8-930e-0732447290f6' 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>prime edge center cartesian coordinate z on unit sphere</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_of_cell</span></div><div class='xr-var-dims'>(nv, cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d3c7ad51-c463-4367-ba77-50dd9d5ffeb0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d3c7ad51-c463-4367-ba77-50dd9d5ffeb0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e1bc2f71-9212-41fc-82da-181589df15d8' class='xr-var-data-in' type='checkbox'><label for='data-e1bc2f71-9212-41fc-82da-181589df15d8' 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>edges of each cell</dd></dl></div><div class='xr-var-data'><pre>[44659014 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_orientation</span></div><div class='xr-var-dims'>(ne, vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-14f8af64-aa2f-4e04-9310-b9531bba72a9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-14f8af64-aa2f-4e04-9310-b9531bba72a9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7e339284-f8ff-4361-9f14-0714086a9833' class='xr-var-data-in' type='checkbox'><label for='data-7e339284-f8ff-4361-9f14-0714086a9833' 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>edge orientation</dd></dl></div><div class='xr-var-data'><pre>[44926122 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_parent_type</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e4065d78-9349-4de2-bc34-e6afdb5953d6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e4065d78-9349-4de2-bc34-e6afdb5953d6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e9fcf7db-a48a-47b4-b299-7ca2c010fec7' class='xr-var-data-in' type='checkbox'><label for='data-e9fcf7db-a48a-47b4-b299-7ca2c010fec7' 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>edge paren</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_primal_normal_cartesian_x</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-36a5cc2e-09f3-4a46-b7ee-5d74391cf0ed' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-36a5cc2e-09f3-4a46-b7ee-5d74391cf0ed' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4619e0cb-dab0-4459-b5e2-65d8c657fd28' class='xr-var-data-in' type='checkbox'><label for='data-4619e0cb-dab0-4459-b5e2-65d8c657fd28' 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>unit normal to the prime edge 3D vector, coordinate x</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_primal_normal_cartesian_y</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-43fd01c3-dfaa-41a3-a7f1-1c9cfdfb5ad2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-43fd01c3-dfaa-41a3-a7f1-1c9cfdfb5ad2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3f96cc30-6269-4685-a4b5-09d9beee8659' class='xr-var-data-in' type='checkbox'><label for='data-3f96cc30-6269-4685-a4b5-09d9beee8659' 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>unit normal to the prime edge 3D vector, coordinate y</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_primal_normal_cartesian_z</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ef079f4c-81d4-4864-9a54-f6c4896f8629' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ef079f4c-81d4-4864-9a54-f6c4896f8629' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9d03344c-fefa-4209-89f9-f544b4f94fd5' class='xr-var-data-in' type='checkbox'><label for='data-9d03344c-fefa-4209-89f9-f544b4f94fd5' 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>unit normal to the prime edge 3D vector, coordinate z</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_sea_land_mask</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4c5eee9b-b2b8-4b14-ac66-2cb0e47dcb9a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4c5eee9b-b2b8-4b14-ac66-2cb0e47dcb9a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1accb59b-f1a5-4494-af92-fbacec16fa51' class='xr-var-data-in' type='checkbox'><label for='data-1accb59b-f1a5-4494-af92-fbacec16fa51' 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>sea (-2 inner, -1 boundary) land (2 inner, 1 boundary) mask for the cell</dd><dt><span>units :</span></dt><dd>2,1,-1,-</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_system_orientation</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d3d998f8-7cb5-4809-af14-97491aa56e57' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d3d998f8-7cb5-4809-af14-97491aa56e57' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f1bb1e3f-244e-41cb-8f6a-88a1f1bee1c4' class='xr-var-data-in' type='checkbox'><label for='data-f1bb1e3f-244e-41cb-8f6a-88a1f1bee1c4' 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>edge system orientation</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_vert_distance</span></div><div class='xr-var-dims'>(nc, edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1aed2849-e336-47b4-90e5-5b58a9a7a9d7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1aed2849-e336-47b4-90e5-5b58a9a7a9d7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1109dbb5-37e6-46aa-85a2-bb1614279950' class='xr-var-data-in' type='checkbox'><label for='data-1109dbb5-37e6-46aa-85a2-bb1614279950' 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>distances between edge midpoint and vertices of that edge</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>[44751848 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edge_vertices</span></div><div class='xr-var-dims'>(nc, edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-40da3096-c0e3-4406-afbe-900f26f8f054' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-40da3096-c0e3-4406-afbe-900f26f8f054' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4e846f02-7b0f-4c4a-b45e-2114e7721d9e' class='xr-var-data-in' type='checkbox'><label for='data-4e846f02-7b0f-4c4a-b45e-2114e7721d9e' 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>vertices at the end of of each edge</dd></dl></div><div class='xr-var-data'><pre>[44751848 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edgequad_area</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-426a60a8-e8f5-4cf6-b8c3-14eda9be3048' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-426a60a8-e8f5-4cf6-b8c3-14eda9be3048' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3ed60692-8467-4787-bb66-3b4eabe91c54' class='xr-var-data-in' type='checkbox'><label for='data-3ed60692-8467-4787-bb66-3b4eabe91c54' 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>area around the edge formed by the two adjacent triangles</dd><dt><span>units :</span></dt><dd>m2</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>edges_of_vertex</span></div><div class='xr-var-dims'>(ne, vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f0990798-8e80-49be-8250-52717915c180' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f0990798-8e80-49be-8250-52717915c180' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-eebd7c30-1c24-4776-be8f-21301192b93b' class='xr-var-data-in' type='checkbox'><label for='data-eebd7c30-1c24-4776-be8f-21301192b93b' 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>edges around each vertex</dd></dl></div><div class='xr-var-data'><pre>[44926122 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elat_vertices</span></div><div class='xr-var-dims'>(edge, no)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-cb906d9d-9c2f-486a-a78b-e9cc97370595' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cb906d9d-9c2f-486a-a78b-e9cc97370595' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-517c3c56-35ae-4e6b-b797-22c374e21c55' class='xr-var-data-in' type='checkbox'><label for='data-517c3c56-35ae-4e6b-b797-22c374e21c55' 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>radian</dd></dl></div><div class='xr-var-data'><pre>[89503696 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elon_vertices</span></div><div class='xr-var-dims'>(edge, no)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2f2fd9da-9812-4734-ae9a-6abee809c10f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2f2fd9da-9812-4734-ae9a-6abee809c10f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e830ebeb-c2e2-4d94-81cc-fa4b8714e1d4' class='xr-var-data-in' type='checkbox'><label for='data-e830ebeb-c2e2-4d94-81cc-fa4b8714e1d4' 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>radian</dd></dl></div><div class='xr-var-data'><pre>[89503696 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>end_idx_c</span></div><div class='xr-var-dims'>(max_chdom, cell_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-dd287922-4a6d-48ab-abdf-f3279002aca8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dd287922-4a6d-48ab-abdf-f3279002aca8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-931996b9-12a2-4d16-9e39-66f1a2679e1f' class='xr-var-data-in' type='checkbox'><label for='data-931996b9-12a2-4d16-9e39-66f1a2679e1f' 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>list of end indices for each refinement control level for cells</dd></dl></div><div class='xr-var-data'><pre>[14 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>end_idx_e</span></div><div class='xr-var-dims'>(max_chdom, edge_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e4967a19-01fa-4a07-924c-26fed2ad0839' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e4967a19-01fa-4a07-924c-26fed2ad0839' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d026de2b-14f0-4aee-8c32-8e963bae7aad' class='xr-var-data-in' type='checkbox'><label for='data-d026de2b-14f0-4aee-8c32-8e963bae7aad' 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>list of end indices for each refinement control level for edges</dd></dl></div><div class='xr-var-data'><pre>[24 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>end_idx_v</span></div><div class='xr-var-dims'>(max_chdom, vert_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ff601f32-6ccb-4e70-9d23-85f7cf55b9b6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ff601f32-6ccb-4e70-9d23-85f7cf55b9b6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-81b23811-9241-4024-b899-dd71cd415c4d' class='xr-var-data-in' type='checkbox'><label for='data-81b23811-9241-4024-b899-dd71cd415c4d' 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>list of end indices for each refinement control level for vertices</dd></dl></div><div class='xr-var-data'><pre>[13 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ifs2icon_cell_grid</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-34efd6ba-2444-493b-8297-bdb90a0ed139' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-34efd6ba-2444-493b-8297-bdb90a0ed139' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a9dfb239-f44b-4159-ba74-d123add649cf' class='xr-var-data-in' type='checkbox'><label for='data-a9dfb239-f44b-4159-ba74-d123add649cf' 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>ifs to icon cells</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ifs2icon_edge_grid</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-bef4c704-8206-4b53-8245-cda1dfdad49e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bef4c704-8206-4b53-8245-cda1dfdad49e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3a3d093b-5b72-4e92-9244-c087ef6290e8' class='xr-var-data-in' type='checkbox'><label for='data-3a3d093b-5b72-4e92-9244-c087ef6290e8' 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>ifs to icon edge</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ifs2icon_vertex_grid</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-55efd03b-0d33-4d56-bcae-ffe4909e0d00' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-55efd03b-0d33-4d56-bcae-ffe4909e0d00' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-84c7463c-8728-44fd-8904-5f0364b587b9' class='xr-var-data-in' type='checkbox'><label for='data-84c7463c-8728-44fd-8904-5f0364b587b9' 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>ifs to icon vertex</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>index_c_list</span></div><div class='xr-var-dims'>(two_grf, cell_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1691aad9-1760-43f5-919a-2abc839bcf74' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1691aad9-1760-43f5-919a-2abc839bcf74' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7a980a9f-37bc-46ea-8b75-7cbb53a79891' class='xr-var-data-in' type='checkbox'><label for='data-7a980a9f-37bc-46ea-8b75-7cbb53a79891' 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>list of start and end indices for each refinement control level for cells</dd></dl></div><div class='xr-var-data'><pre>[28 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>index_e_list</span></div><div class='xr-var-dims'>(two_grf, edge_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-149421e8-bcf7-459d-acad-ed9ecec0e841' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-149421e8-bcf7-459d-acad-ed9ecec0e841' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-69faee65-107e-4b53-97a8-7f5fe7266c18' class='xr-var-data-in' type='checkbox'><label for='data-69faee65-107e-4b53-97a8-7f5fe7266c18' 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>list of start and end indices for each refinement control level for edges</dd></dl></div><div class='xr-var-data'><pre>[48 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>index_v_list</span></div><div class='xr-var-dims'>(two_grf, vert_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-22cebbea-1742-4c5a-8194-7a71f7f3a071' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-22cebbea-1742-4c5a-8194-7a71f7f3a071' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-74b9e99c-5dbb-4bc4-bdca-e4032a478b79' class='xr-var-data-in' type='checkbox'><label for='data-74b9e99c-5dbb-4bc4-bdca-e4032a478b79' 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>list of start and end indices for each refinement control level for vertices</dd></dl></div><div class='xr-var-data'><pre>[26 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat_cell_barycenter</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0656b71a-a996-4258-b3bf-f8177c75402e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0656b71a-a996-4258-b3bf-f8177c75402e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-96397a12-8862-465c-842f-f1a08d115217' class='xr-var-data-in' type='checkbox'><label for='data-96397a12-8862-465c-842f-f1a08d115217' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>latitude of cell barycenter</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat_cell_centre</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5a5f3bfc-2616-49fe-98dd-72782f593805' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5a5f3bfc-2616-49fe-98dd-72782f593805' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e0852687-d8e9-4a72-9d03-64d3ce0e8a94' class='xr-var-data-in' type='checkbox'><label for='data-e0852687-d8e9-4a72-9d03-64d3ce0e8a94' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>latitude of cell centre</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat_edge_centre</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1806c4d7-823e-4228-99c0-17b6bc671a29' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1806c4d7-823e-4228-99c0-17b6bc671a29' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-85c1903f-208a-486f-a55b-bf46803b1f49' class='xr-var-data-in' type='checkbox'><label for='data-85c1903f-208a-486f-a55b-bf46803b1f49' 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>latitudes of edge midpoints</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude_vertices</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f3dbd5f9-90ac-48d6-9413-6d66a0b9d89e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f3dbd5f9-90ac-48d6-9413-6d66a0b9d89e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1f9cb92d-0e55-46c2-a1fa-fd7dd225d3cf' class='xr-var-data-in' type='checkbox'><label for='data-1f9cb92d-0e55-46c2-a1fa-fd7dd225d3cf' 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>latitude of vertices</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon_cell_barycenter</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3cca8d50-96cf-4b35-a912-7afadd7592f9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3cca8d50-96cf-4b35-a912-7afadd7592f9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4c1dbf51-3f49-42fd-891f-74cd17166688' class='xr-var-data-in' type='checkbox'><label for='data-4c1dbf51-3f49-42fd-891f-74cd17166688' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>longitude of cell barycenter</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon_cell_centre</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-44995296-9174-433c-9fc6-1872a4c2102f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-44995296-9174-433c-9fc6-1872a4c2102f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-100d871a-cbc3-4095-8831-c56feb77d99a' class='xr-var-data-in' type='checkbox'><label for='data-100d871a-cbc3-4095-8831-c56feb77d99a' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>longitude of cell centre</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon_edge_centre</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-91495bb4-f6c7-4243-99fc-13071427694d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-91495bb4-f6c7-4243-99fc-13071427694d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7a7cc72b-895e-4889-9456-b32b0c370c05' class='xr-var-data-in' type='checkbox'><label for='data-7a7cc72b-895e-4889-9456-b32b0c370c05' 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>longitudes of edge midpoints</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude_vertices</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4ffe45d3-80b4-455a-a97e-741b1d837217' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4ffe45d3-80b4-455a-a97e-741b1d837217' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c9b3d975-042c-48e1-a279-652e27ff2040' class='xr-var-data-in' type='checkbox'><label for='data-c9b3d975-042c-48e1-a279-652e27ff2040' 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>longitude of vertices</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>meridional_normal_dual_edge</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ae9d66ac-980c-4044-a314-56ef1947a999' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ae9d66ac-980c-4044-a314-56ef1947a999' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-847b71cb-9e5b-4180-9af3-388af9a185fc' class='xr-var-data-in' type='checkbox'><label for='data-847b71cb-9e5b-4180-9af3-388af9a185fc' 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>meridional component of normal to dual edge</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>meridional_normal_primal_edge</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a29337ef-e474-4666-a4e3-53d377160b55' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a29337ef-e474-4666-a4e3-53d377160b55' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a57b00b2-2089-47cd-9f15-bf2d1679a3a2' class='xr-var-data-in' type='checkbox'><label for='data-a57b00b2-2089-47cd-9f15-bf2d1679a3a2' 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>meridional component of normal to primal edge</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>neighbor_cell_index</span></div><div class='xr-var-dims'>(nv, cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-934d6178-acf8-4f07-85c5-98b92b6c9530' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-934d6178-acf8-4f07-85c5-98b92b6c9530' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8dded39a-6649-4589-a2f6-f7be5dc3c539' class='xr-var-data-in' type='checkbox'><label for='data-8dded39a-6649-4589-a2f6-f7be5dc3c539' 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>cell neighbor index</dd></dl></div><div class='xr-var-data'><pre>[44659014 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>orientation_of_normal</span></div><div class='xr-var-dims'>(nv, cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c410214a-5bcf-4c1a-9799-3e2bef93855e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c410214a-5bcf-4c1a-9799-3e2bef93855e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-67456d5a-74a8-4908-ade2-57c56cf11b43' class='xr-var-data-in' type='checkbox'><label for='data-67456d5a-74a8-4908-ade2-57c56cf11b43' 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>orientations of normals to triangular cell edges</dd></dl></div><div class='xr-var-data'><pre>[44659014 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>parent_cell_index</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-721145c8-3bbd-4726-a9c9-4950428a5169' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-721145c8-3bbd-4726-a9c9-4950428a5169' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e58ca0e2-db0c-4a98-81cd-c06a6393557c' class='xr-var-data-in' type='checkbox'><label for='data-e58ca0e2-db0c-4a98-81cd-c06a6393557c' 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>parent cell index</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>parent_cell_type</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2ae61e17-5b18-47ee-bf66-a0e6d04c34d5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2ae61e17-5b18-47ee-bf66-a0e6d04c34d5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4e2590c6-e51c-4270-807c-244391ffd215' class='xr-var-data-in' type='checkbox'><label for='data-4e2590c6-e51c-4270-807c-244391ffd215' 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>parent cell type</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>parent_edge_index</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1bec08f1-e389-4edd-aec3-fa087585fa63' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1bec08f1-e389-4edd-aec3-fa087585fa63' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-eb2a8f59-6a75-4337-891b-acc740dfe904' class='xr-var-data-in' type='checkbox'><label for='data-eb2a8f59-6a75-4337-891b-acc740dfe904' 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>parent edge index</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>parent_vertex_index</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-444a5ab7-ad05-4e72-aada-2e4b1228915b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-444a5ab7-ad05-4e72-aada-2e4b1228915b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6076a299-3bc8-456a-8361-90f1ba15ac8b' class='xr-var-data-in' type='checkbox'><label for='data-6076a299-3bc8-456a-8361-90f1ba15ac8b' 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>parent vertex index</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>phys_cell_id</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b8d4b5d8-b4d5-4f03-b46f-dfddacb280bd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b8d4b5d8-b4d5-4f03-b46f-dfddacb280bd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a0b270ef-f084-4de4-82d6-8286c7c5f4a8' class='xr-var-data-in' type='checkbox'><label for='data-a0b270ef-f084-4de4-82d6-8286c7c5f4a8' 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>grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>physical domain ID of cell</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>phys_edge_id</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5f4d6bfb-994f-4072-b484-0cb262749aca' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5f4d6bfb-994f-4072-b484-0cb262749aca' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-15c43fb6-c769-43a0-972c-b569ec7fdd7d' class='xr-var-data-in' type='checkbox'><label for='data-15c43fb6-c769-43a0-972c-b569ec7fdd7d' 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>physical domain ID of edge</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>refin_c_ctrl</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b7fcb40e-1eb5-4b4c-a31e-22edf8889fb5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b7fcb40e-1eb5-4b4c-a31e-22edf8889fb5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dab7fc95-204c-4f53-a588-cf3aa1c94a0d' class='xr-var-data-in' type='checkbox'><label for='data-dab7fc95-204c-4f53-a588-cf3aa1c94a0d' 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>refinement control flag for cells</dd></dl></div><div class='xr-var-data'><pre>[14886338 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>refin_e_ctrl</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-070d3f3f-d46e-47fd-8167-8972cd418238' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-070d3f3f-d46e-47fd-8167-8972cd418238' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cd99cefd-ddef-43a9-888f-ea02067cf1cb' class='xr-var-data-in' type='checkbox'><label for='data-cd99cefd-ddef-43a9-888f-ea02067cf1cb' 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>refinement control flag for edges</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>refin_v_ctrl</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-23a04992-0b10-4422-b839-801ae0b93a7a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-23a04992-0b10-4422-b839-801ae0b93a7a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-64bbf206-c03a-4018-9567-c6886bec93ad' class='xr-var-data-in' type='checkbox'><label for='data-64bbf206-c03a-4018-9567-c6886bec93ad' 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>refinement control flag for vertices</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>start_idx_c</span></div><div class='xr-var-dims'>(max_chdom, cell_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b6cb41d5-a232-4ed5-b246-f95545dce104' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b6cb41d5-a232-4ed5-b246-f95545dce104' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0c0351e7-d8a5-4fe5-a5ef-de34a3c86ce5' class='xr-var-data-in' type='checkbox'><label for='data-0c0351e7-d8a5-4fe5-a5ef-de34a3c86ce5' 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>list of start indices for each refinement control level for cells</dd></dl></div><div class='xr-var-data'><pre>[14 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>start_idx_e</span></div><div class='xr-var-dims'>(max_chdom, edge_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9740ca1c-342f-46e4-a279-2aaae23d31d5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9740ca1c-342f-46e4-a279-2aaae23d31d5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0e29bce6-d6f2-45a4-b960-8a74be12628e' class='xr-var-data-in' type='checkbox'><label for='data-0e29bce6-d6f2-45a4-b960-8a74be12628e' 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>list of start indices for each refinement control level for edges</dd></dl></div><div class='xr-var-data'><pre>[24 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>start_idx_v</span></div><div class='xr-var-dims'>(max_chdom, vert_grf)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d3d2255b-0d93-4157-9758-6cff51f710dc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d3d2255b-0d93-4157-9758-6cff51f710dc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5b53d0a2-2d9b-4597-9c46-d70659e3ec4d' class='xr-var-data-in' type='checkbox'><label for='data-5b53d0a2-2d9b-4597-9c46-d70659e3ec4d' 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>list of start indices for each refinement control level for vertices</dd></dl></div><div class='xr-var-data'><pre>[13 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vertex_index</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5e774c90-73e8-46cb-91e0-54b91ac1f1f6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5e774c90-73e8-46cb-91e0-54b91ac1f1f6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-878a4ba4-5632-435d-a0a8-f6793e818f52' class='xr-var-data-in' type='checkbox'><label for='data-878a4ba4-5632-435d-a0a8-f6793e818f52' 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>vertices index</dd></dl></div><div class='xr-var-data'><pre>[7487687 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vertex_of_cell</span></div><div class='xr-var-dims'>(nv, cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8578fc1e-ccf5-40dd-bb4b-de25847c8c62' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8578fc1e-ccf5-40dd-bb4b-de25847c8c62' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-53fe51c9-06c6-4af8-a3de-65038044e2db' class='xr-var-data-in' type='checkbox'><label for='data-53fe51c9-06c6-4af8-a3de-65038044e2db' 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>vertices of each cell</dd></dl></div><div class='xr-var-data'><pre>[44659014 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vertices_of_vertex</span></div><div class='xr-var-dims'>(ne, vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7dcf242f-f830-4ee2-a076-49c63db68317' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7dcf242f-f830-4ee2-a076-49c63db68317' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-333be651-766b-4ee9-ab5a-a2bdbbecb6b3' class='xr-var-data-in' type='checkbox'><label for='data-333be651-766b-4ee9-ab5a-a2bdbbecb6b3' 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>vertices around each vertex</dd></dl></div><div class='xr-var-data'><pre>[44926122 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vlat_vertices</span></div><div class='xr-var-dims'>(vertex, ne)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4d13020b-11ad-4f26-869e-5b528eb7f61c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4d13020b-11ad-4f26-869e-5b528eb7f61c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ca8ddad2-d81d-4b54-b7c4-5cbe8881dacb' class='xr-var-data-in' type='checkbox'><label for='data-ca8ddad2-d81d-4b54-b7c4-5cbe8881dacb' 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>radian</dd></dl></div><div class='xr-var-data'><pre>[44926122 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vlon_vertices</span></div><div class='xr-var-dims'>(vertex, ne)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-939c4a35-be9f-417c-a475-d675d8edf5a0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-939c4a35-be9f-417c-a475-d675d8edf5a0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0e648803-2309-4b4c-8a84-3ad4c50b2e51' class='xr-var-data-in' type='checkbox'><label for='data-0e648803-2309-4b4c-8a84-3ad4c50b2e51' 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>radian</dd></dl></div><div class='xr-var-data'><pre>[44926122 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>zonal_normal_dual_edge</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6609a97e-63d6-44ea-92ef-01a99ee73db2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6609a97e-63d6-44ea-92ef-01a99ee73db2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d25e8dc1-b962-4ebb-9c65-098e3c063513' class='xr-var-data-in' type='checkbox'><label for='data-d25e8dc1-b962-4ebb-9c65-098e3c063513' 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>zonal component of normal to dual edge</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>zonal_normal_primal_edge</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-271d02dc-99f0-4e12-afc5-0daf0c5d8d6a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-271d02dc-99f0-4e12-afc5-0daf0c5d8d6a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-64ff6bdb-3eba-4d75-8854-61def144490a' class='xr-var-data-in' type='checkbox'><label for='data-64ff6bdb-3eba-4d75-8854-61def144490a' 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>zonal component of normal to primal edge</dd><dt><span>units :</span></dt><dd>radian</dd></dl></div><div class='xr-var-data'><pre>[22375924 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-4eaff2c9-646a-4d25-9a12-220fd499ee1a' class='xr-section-summary-in' type='checkbox' /><label for='section-4eaff2c9-646a-4d25-9a12-220fd499ee1a' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(31)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>Conventions :</span></dt><dd>CF-1.7 CMIP-6.2</dd><dt><span>activity_id :</span></dt><dd>HighResMIP</dd><dt><span>contact :</span></dt><dd>juergen.kroeger@mpimet.mpg.de</dd><dt><span>creation_date :</span></dt><dd>2025-07-08T10:51:45</dd><dt><span>data_specs_version :</span></dt><dd>01.00.32</dd><dt><span>experiment :</span></dt><dd>coupled future 2015-2050 using a scenario as close to CMIP6 ssp245 as possible</dd><dt><span>experiment_id :</span></dt><dd>highres-future-ssp245</dd><dt><span>forcing_index :</span></dt><dd>1</dd><dt><span>grid :</span></dt><dd>native</dd><dt><span>grid_label :</span></dt><dd>gn</dd><dt><span>initialization_index :</span></dt><dd>1</dd><dt><span>institution :</span></dt><dd>Max Planck Institute for Meteorology, Hamburg 20146, Germany</dd><dt><span>institution_id :</span></dt><dd>MPI-M</dd><dt><span>license :</span></dt><dd>EERIE model data produced by MPI-M is licensed under a Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. </dd><dt><span>mip_era :</span></dt><dd>EERIE</dd><dt><span>nominal_resolution :</span></dt><dd>5 km</dd><dt><span>parent_activity_id :</span></dt><dd>HighResMIP</dd><dt><span>parent_experiment_id :</span></dt><dd>hist-1950</dd><dt><span>physics_index :</span></dt><dd>1</dd><dt><span>product :</span></dt><dd>model-output</dd><dt><span>project_id :</span></dt><dd>EERIE</dd><dt><span>realization_index :</span></dt><dd>1</dd><dt><span>realm :</span></dt><dd>ocean</dd><dt><span>references :</span></dt><dd>Hohenegger et al., ICON-Sapphire: simulating the components of the Earth system and their interactions at kilometer and subkilometer scales. Geosci. Model Dev., 16, 779–811, 2023, https://doi.org/10.5194/gmd-16-779-2023</dd><dt><span>source :</span></dt><dd>ICON-ESM-ER (2023): \n", | |
| "aerosol: none, prescribed MACv2-SP\n", | |
| "atmos: ICON-A (icosahedral/triangles; 10 km; 90 levels; top level 80 km)\n", | |
| "atmosChem: none\n", | |
| "land: JSBACH4.20\n", | |
| "landIce: none/prescribed\n", | |
| "ocean: ICON-O (icosahedral/triangles; 5 km; 72 levels; top grid cell 0-2 m)\n", | |
| "ocnBgchem: none\n", | |
| "seaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)</dd><dt><span>source_id :</span></dt><dd>ICON-ESM-ER</dd><dt><span>source_type :</span></dt><dd>AOGCM</dd><dt><span>sub_experiment :</span></dt><dd>none</dd><dt><span>sub_experiment_id :</span></dt><dd>none</dd><dt><span>variant_label :</span></dt><dd>r1i1p1f1</dd><dt><span>version_id :</span></dt><dd>v20240618</dd></dl></div></li></ul></div></div>" | |
| ], | |
| "text/plain": [ | |
| "<xarray.Dataset> Size: 1TB\n", | |
| "Dimensions: (time: 432, cell: 14886338, lev: 1,\n", | |
| " depth: 1, edge: 22375924, nc: 2,\n", | |
| " vertex: 7487687,\n", | |
| " max_stored_decompositions: 4, ne: 6,\n", | |
| " no: 4, nv: 3, max_chdom: 1,\n", | |
| " cell_grf: 14, edge_grf: 24,\n", | |
| " vert_grf: 13, two_grf: 2)\n", | |
| "Coordinates:\n", | |
| " * time (time) datetime64[ns] 3kB 2015-01-31...\n", | |
| " lat (cell) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " lon (cell) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " clat (cell) float64 119MB ...\n", | |
| " clon (cell) float64 119MB ...\n", | |
| " * lev (lev) float64 8B 0.0\n", | |
| " * depth (depth) float64 8B 1.0\n", | |
| " elat (edge) float64 179MB ...\n", | |
| " elon (edge) float64 179MB ...\n", | |
| " vlat (vertex) float64 60MB ...\n", | |
| " vlon (vertex) float64 60MB ...\n", | |
| "Dimensions without coordinates: cell, edge, nc, vertex,\n", | |
| " max_stored_decompositions, ne, no, nv,\n", | |
| " max_chdom, cell_grf, edge_grf, vert_grf, two_grf\n", | |
| "Data variables: (12/131)\n", | |
| " FrshFlux_IceSalt (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " FrshFlux_TotalIce (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " Qbot (time, lev, cell) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Qtop (time, lev, cell) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Wind_Speed_10m (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " atmos_fluxes_FrshFlux_Evaporation (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " ... ...\n", | |
| " vertex_of_cell (nv, cell) float64 357MB ...\n", | |
| " vertices_of_vertex (ne, vertex) float64 359MB ...\n", | |
| " vlat_vertices (vertex, ne) float64 359MB ...\n", | |
| " vlon_vertices (vertex, ne) float64 359MB ...\n", | |
| " zonal_normal_dual_edge (edge) float64 179MB ...\n", | |
| " zonal_normal_primal_edge (edge) float64 179MB ...\n", | |
| "Attributes: (12/31)\n", | |
| " Conventions: CF-1.7 CMIP-6.2\n", | |
| " activity_id: HighResMIP\n", | |
| " contact: juergen.kroeger@mpimet.mpg.de\n", | |
| " creation_date: 2025-07-08T10:51:45\n", | |
| " data_specs_version: 01.00.32\n", | |
| " experiment: coupled future 2015-2050 using a scenario as close...\n", | |
| " ... ...\n", | |
| " source_id: ICON-ESM-ER\n", | |
| " source_type: AOGCM\n", | |
| " sub_experiment: none\n", | |
| " sub_experiment_id: none\n", | |
| " variant_label: r1i1p1f1\n", | |
| " version_id: v20240618" | |
| ] | |
| }, | |
| "execution_count": 8, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "ds" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 9, | |
| "id": "0f13125b-d46e-488e-b24d-2699a14cf47c", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "def enforce_icon_ugrid_compliance(ds: xr.Dataset, mesh_name: str = \"IconGrid\") -> xr.Dataset:\n", | |
| " \"\"\"\n", | |
| " 1. Converts (lon/lat) variables to degrees.\n", | |
| " 2. Transposes connectivity to (n_cells, 3).\n", | |
| " 3. Sets spatial variables as Coordinates.\n", | |
| " 4. Adds UGRID topology attributes.\n", | |
| " \"\"\"\n", | |
| " ds = ds.copy()\n", | |
| " \n", | |
| " # ---------------------------------------------------------\n", | |
| " # 1. Strict Radian-to-Degree Conversion\n", | |
| " # ---------------------------------------------------------\n", | |
| " for var_name in ds.variables:\n", | |
| " attrs = ds[var_name].attrs\n", | |
| " units = attrs.get(\"units\", \"\").lower()\n", | |
| " \n", | |
| " if \"radian\" in units and var_name.lower() in ['lon', 'lat', 'clon', 'clat', 'vlon', 'vlat', 'elon', 'elat'] :\n", | |
| "\n", | |
| " if \"lon\" in var_name.lower():\n", | |
| " with xr.set_options(keep_attrs=True):\n", | |
| " ds[var_name] = np.rad2deg(ds[var_name])\n", | |
| " ds[var_name].attrs.update({\"units\": \"degrees_east\", \"standard_name\": \"longitude\"})\n", | |
| " \n", | |
| " elif \"lat\" in var_name.lower():\n", | |
| " with xr.set_options(keep_attrs=True):\n", | |
| " ds[var_name] = np.rad2deg(ds[var_name])\n", | |
| " ds[var_name].attrs.update({\"units\": \"degrees_north\", \"standard_name\": \"latitude\"})\n", | |
| "\n", | |
| " # ---------------------------------------------------------\n", | |
| " # 2. Transpose Connectivity\n", | |
| " # ---------------------------------------------------------\n", | |
| " connect_var = \"vertex_of_cell\"\n", | |
| " if connect_var in ds:\n", | |
| " if ds[connect_var].shape[0] == 3 and ds[connect_var].ndim == 2:\n", | |
| " ds[connect_var] = ds[connect_var].transpose()\n", | |
| "\n", | |
| " # ---------------------------------------------------------\n", | |
| " # 3. Set Coordinates (The step you asked about)\n", | |
| " # ---------------------------------------------------------\n", | |
| " # We look for standard ICON names.\n", | |
| " # 'vlon/vlat' are Node coordinates. 'clon/clat' are Face coordinates.\n", | |
| " potential_coords = [\"vlon\", \"vlat\", \"clon\", \"clat\"]\n", | |
| " \n", | |
| " # Only set them if they exist in the dataset\n", | |
| " existing_coords = [c for c in potential_coords if c in ds.variables]\n", | |
| " ds = ds.set_coords(existing_coords)\n", | |
| "\n", | |
| " # ---------------------------------------------------------\n", | |
| " # 4. UGRID Topology Logic\n", | |
| " # ---------------------------------------------------------\n", | |
| " face_dim = \"ncells\"\n", | |
| " node_dim = \"nvertices\"\n", | |
| " \n", | |
| " ds[mesh_name] = xr.DataArray(0, attrs={\n", | |
| " \"cf_role\": \"mesh_topology\",\n", | |
| " \"topology_dimension\": 2,\n", | |
| " \"node_coordinates\": \"vlon vlat\",\n", | |
| " \"face_coordinates\": \"clon clat\",\n", | |
| " \"face_node_connectivity\": connect_var\n", | |
| " })\n", | |
| "\n", | |
| " if connect_var in ds:\n", | |
| " ds[connect_var].attrs.update({\n", | |
| " \"cf_role\": \"face_node_connectivity\",\n", | |
| " \"start_index\": 1,\n", | |
| " \"_FillValue\": -1\n", | |
| " })\n", | |
| "\n", | |
| " for var_name, da in ds.data_vars.items():\n", | |
| " if var_name == mesh_name:\n", | |
| " continue\n", | |
| " \n", | |
| " if face_dim in da.dims:\n", | |
| " ds[var_name].attrs.update({\"mesh\": mesh_name, \"location\": \"face\", \"coordinates\": \"clon clat\"})\n", | |
| " elif node_dim in da.dims:\n", | |
| " ds[var_name].attrs.update({\"mesh\": mesh_name, \"location\": \"node\", \"coordinates\": \"vlon vlat\"})\n", | |
| "\n", | |
| " return ds" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 10, | |
| "id": "0320c7b5-f785-4bfc-9a52-0daba120f387", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "CPU times: user 1.48 s, sys: 2.38 s, total: 3.87 s\n", | |
| "Wall time: 11.6 s\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "%%time\n", | |
| "ds_ugrid = enforce_icon_ugrid_compliance(ds)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 11, | |
| "id": "e0d4fcff-2577-418b-8232-4b42b75e7dc5", | |
| "metadata": { | |
| "scrolled": true | |
| }, | |
| "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 notebooks */\n", | |
| "\n", | |
| ":root {\n", | |
| " --xr-font-color0: var(\n", | |
| " --jp-content-font-color0,\n", | |
| " var(--pst-color-text-base rgba(0, 0, 0, 1))\n", | |
| " );\n", | |
| " --xr-font-color2: var(\n", | |
| " --jp-content-font-color2,\n", | |
| " var(--pst-color-text-base, rgba(0, 0, 0, 0.54))\n", | |
| " );\n", | |
| " --xr-font-color3: var(\n", | |
| " --jp-content-font-color3,\n", | |
| " var(--pst-color-text-base, rgba(0, 0, 0, 0.38))\n", | |
| " );\n", | |
| " --xr-border-color: var(\n", | |
| " --jp-border-color2,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 10))\n", | |
| " );\n", | |
| " --xr-disabled-color: var(\n", | |
| " --jp-layout-color3,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 40))\n", | |
| " );\n", | |
| " --xr-background-color: var(\n", | |
| " --jp-layout-color0,\n", | |
| " var(--pst-color-on-background, white)\n", | |
| " );\n", | |
| " --xr-background-color-row-even: var(\n", | |
| " --jp-layout-color1,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 5))\n", | |
| " );\n", | |
| " --xr-background-color-row-odd: var(\n", | |
| " --jp-layout-color2,\n", | |
| " hsl(from var(--pst-color-on-background, white) h s calc(l - 15))\n", | |
| " );\n", | |
| "}\n", | |
| "\n", | |
| "html[theme=\"dark\"],\n", | |
| "html[data-theme=\"dark\"],\n", | |
| "body[data-theme=\"dark\"],\n", | |
| "body.vscode-dark {\n", | |
| " --xr-font-color0: var(\n", | |
| " --jp-content-font-color0,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 1))\n", | |
| " );\n", | |
| " --xr-font-color2: var(\n", | |
| " --jp-content-font-color2,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 0.54))\n", | |
| " );\n", | |
| " --xr-font-color3: var(\n", | |
| " --jp-content-font-color3,\n", | |
| " var(--pst-color-text-base, rgba(255, 255, 255, 0.38))\n", | |
| " );\n", | |
| " --xr-border-color: var(\n", | |
| " --jp-border-color2,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 10))\n", | |
| " );\n", | |
| " --xr-disabled-color: var(\n", | |
| " --jp-layout-color3,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 40))\n", | |
| " );\n", | |
| " --xr-background-color: var(\n", | |
| " --jp-layout-color0,\n", | |
| " var(--pst-color-on-background, #111111)\n", | |
| " );\n", | |
| " --xr-background-color-row-even: var(\n", | |
| " --jp-layout-color1,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 5))\n", | |
| " );\n", | |
| " --xr-background-color-row-odd: var(\n", | |
| " --jp-layout-color2,\n", | |
| " hsl(from var(--pst-color-on-background, #111111) h s calc(l + 15))\n", | |
| " );\n", | |
| "}\n", | |
| "\n", | |
| ".xr-wrap {\n", | |
| " display: block !important;\n", | |
| " min-width: 300px;\n", | |
| " max-width: 700px;\n", | |
| " line-height: 1.6;\n", | |
| " padding-bottom: 4px;\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", | |
| "}\n", | |
| "\n", | |
| ".xr-header {\n", | |
| " border-bottom: solid 1px var(--xr-border-color);\n", | |
| " margin-bottom: 4px;\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-obj-name {\n", | |
| " margin-left: 2px;\n", | |
| " margin-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-obj-type,\n", | |
| ".xr-group-box-contents > label {\n", | |
| " color: var(--xr-font-color2);\n", | |
| " display: block;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-sections {\n", | |
| " padding-left: 0 !important;\n", | |
| " display: grid;\n", | |
| " grid-template-columns: 150px auto auto 1fr 0 20px 0 20px;\n", | |
| " margin-block-start: 0;\n", | |
| " margin-block-end: 0;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item {\n", | |
| " display: contents;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input,\n", | |
| ".xr-group-box-contents > input,\n", | |
| ".xr-array-wrap > input {\n", | |
| " display: block;\n", | |
| " opacity: 0;\n", | |
| " height: 0;\n", | |
| " margin: 0;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input + label,\n", | |
| ".xr-var-item > input + label {\n", | |
| " color: var(--xr-disabled-color);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:enabled + label,\n", | |
| ".xr-var-item > input:enabled + label,\n", | |
| ".xr-array-wrap > input:enabled + label,\n", | |
| ".xr-group-box-contents > input:enabled + label {\n", | |
| " cursor: pointer;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:focus-visible + label,\n", | |
| ".xr-var-item > input:focus-visible + label,\n", | |
| ".xr-array-wrap > input:focus-visible + label,\n", | |
| ".xr-group-box-contents > input:focus-visible + label {\n", | |
| " outline: auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-item > input:enabled + label:hover,\n", | |
| ".xr-var-item > input:enabled + label:hover,\n", | |
| ".xr-array-wrap > input:enabled + label:hover,\n", | |
| ".xr-group-box-contents > 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", | |
| " white-space: nowrap;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary > em {\n", | |
| " font-weight: normal;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-span-grid {\n", | |
| " grid-column-end: -1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary > span {\n", | |
| " display: inline-block;\n", | |
| " padding-left: 0.3em;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label > span {\n", | |
| " display: inline-block;\n", | |
| " padding-left: 0.6em;\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", | |
| ".xr-group-box-contents > label {\n", | |
| " padding-top: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-inline-details {\n", | |
| " grid-column: 2 / -1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-details {\n", | |
| " grid-column: 1 / -1;\n", | |
| " margin-top: 4px;\n", | |
| " margin-bottom: 5px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary-in ~ .xr-section-details {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-section-summary-in:checked ~ .xr-section-details {\n", | |
| " display: contents;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-children {\n", | |
| " display: inline-grid;\n", | |
| " grid-template-columns: 100%;\n", | |
| " grid-column: 1 / -1;\n", | |
| " padding-top: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box {\n", | |
| " display: inline-grid;\n", | |
| " grid-template-columns: 0px 30px auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-vline {\n", | |
| " grid-column-start: 1;\n", | |
| " border-right: 0.2em solid;\n", | |
| " border-color: var(--xr-border-color);\n", | |
| " width: 0px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-hline {\n", | |
| " grid-column-start: 2;\n", | |
| " grid-row-start: 1;\n", | |
| " height: 1em;\n", | |
| " width: 26px;\n", | |
| " border-bottom: 0.2em solid;\n", | |
| " border-color: var(--xr-border-color);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents {\n", | |
| " grid-column-start: 3;\n", | |
| " padding-bottom: 4px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > label::before {\n", | |
| " content: \"📂\";\n", | |
| " padding-right: 0.3em;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label::before {\n", | |
| " content: \"📁\";\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked + label {\n", | |
| " padding-bottom: 0px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input:checked ~ .xr-sections {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-contents > input + label > span {\n", | |
| " display: none;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-group-box-ellipsis {\n", | |
| " font-size: 1.4em;\n", | |
| " font-weight: 900;\n", | |
| " color: var(--xr-font-color2);\n", | |
| " letter-spacing: 0.15em;\n", | |
| " cursor: default;\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", | |
| " border-color: var(--xr-background-color-row-odd);\n", | |
| " margin-bottom: 0;\n", | |
| " padding-top: 2px;\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", | |
| " border-color: var(--xr-background-color-row-even);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name {\n", | |
| " grid-column: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-dims {\n", | |
| " grid-column: 2;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-dtype {\n", | |
| " grid-column: 3;\n", | |
| " text-align: right;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-preview {\n", | |
| " grid-column: 4;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-index-preview {\n", | |
| " grid-column: 2 / 5;\n", | |
| " color: var(--xr-font-color2);\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name,\n", | |
| ".xr-var-dims,\n", | |
| ".xr-var-dtype,\n", | |
| ".xr-preview,\n", | |
| ".xr-attrs dt {\n", | |
| " white-space: nowrap;\n", | |
| " overflow: hidden;\n", | |
| " text-overflow: ellipsis;\n", | |
| " padding-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name:hover,\n", | |
| ".xr-var-dims:hover,\n", | |
| ".xr-var-dtype:hover,\n", | |
| ".xr-attrs dt:hover {\n", | |
| " overflow: visible;\n", | |
| " width: auto;\n", | |
| " z-index: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-data {\n", | |
| " display: none;\n", | |
| " border-top: 2px dotted var(--xr-background-color);\n", | |
| " padding-bottom: 20px !important;\n", | |
| " padding-top: 10px !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in + label,\n", | |
| ".xr-var-data-in + label,\n", | |
| ".xr-index-data-in + label {\n", | |
| " padding: 0 1px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in:checked ~ .xr-var-attrs,\n", | |
| ".xr-var-data-in:checked ~ .xr-var-data,\n", | |
| ".xr-index-data-in:checked ~ .xr-index-data {\n", | |
| " display: block;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-data > table {\n", | |
| " float: right;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-data > pre,\n", | |
| ".xr-index-data > pre,\n", | |
| ".xr-var-data > table > tbody > tr {\n", | |
| " background-color: transparent !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-name span,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-name div,\n", | |
| ".xr-index-data,\n", | |
| ".xr-attrs {\n", | |
| " padding-left: 25px !important;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs,\n", | |
| ".xr-var-attrs,\n", | |
| ".xr-var-data,\n", | |
| ".xr-index-data {\n", | |
| " grid-column: 1 / -1;\n", | |
| "}\n", | |
| "\n", | |
| "dl.xr-attrs {\n", | |
| " padding: 0;\n", | |
| " margin: 0;\n", | |
| " display: grid;\n", | |
| " grid-template-columns: 125px auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt,\n", | |
| ".xr-attrs dd {\n", | |
| " padding: 0;\n", | |
| " margin: 0;\n", | |
| " float: left;\n", | |
| " padding-right: 10px;\n", | |
| " width: auto;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt {\n", | |
| " font-weight: normal;\n", | |
| " grid-column: 1;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dt:hover span {\n", | |
| " display: inline-block;\n", | |
| " background: var(--xr-background-color);\n", | |
| " padding-right: 10px;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-attrs dd {\n", | |
| " grid-column: 2;\n", | |
| " white-space: pre-wrap;\n", | |
| " word-break: break-all;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-icon-database,\n", | |
| ".xr-icon-file-text2,\n", | |
| ".xr-no-icon {\n", | |
| " display: inline-block;\n", | |
| " vertical-align: middle;\n", | |
| " width: 1em;\n", | |
| " height: 1.5em !important;\n", | |
| " stroke-width: 0;\n", | |
| " stroke: currentColor;\n", | |
| " fill: currentColor;\n", | |
| "}\n", | |
| "\n", | |
| ".xr-var-attrs-in:checked + label > .xr-icon-file-text2,\n", | |
| ".xr-var-data-in:checked + label > .xr-icon-database,\n", | |
| ".xr-index-data-in:checked + label > .xr-icon-database {\n", | |
| " color: var(--xr-font-color0);\n", | |
| " filter: drop-shadow(1px 1px 5px var(--xr-font-color2));\n", | |
| " stroke-width: 0.8px;\n", | |
| "}\n", | |
| "</style><pre class='xr-text-repr-fallback'><xarray.Dataset> Size: 1TB\n", | |
| "Dimensions: (time: 432, cell: 14886338, lev: 1,\n", | |
| " depth: 1, edge: 22375924, nc: 2,\n", | |
| " vertex: 7487687,\n", | |
| " max_stored_decompositions: 4, ne: 6,\n", | |
| " no: 4, nv: 3, max_chdom: 1,\n", | |
| " cell_grf: 14, edge_grf: 24,\n", | |
| " vert_grf: 13, two_grf: 2)\n", | |
| "Coordinates:\n", | |
| " * time (time) datetime64[ns] 3kB 2015-01-31...\n", | |
| " lat (cell) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " lon (cell) float64 119MB dask.array<chunksize=(14886338,), meta=np.ndarray>\n", | |
| " clat (cell) float64 119MB 72.14 ... -45.23\n", | |
| " clon (cell) float64 119MB 73.0 ... 76.45\n", | |
| " * lev (lev) float64 8B 0.0\n", | |
| " * depth (depth) float64 8B 1.0\n", | |
| " elat (edge) float64 179MB 72.13 ... -45.22\n", | |
| " elon (edge) float64 179MB 73.06 ... 76.47\n", | |
| " vlat (vertex) float64 60MB 72.16 ... -45.19\n", | |
| " vlon (vertex) float64 60MB 73.12 ... 76.45\n", | |
| "Dimensions without coordinates: cell, edge, nc, vertex,\n", | |
| " max_stored_decompositions, ne, no, nv,\n", | |
| " max_chdom, cell_grf, edge_grf, vert_grf, two_grf\n", | |
| "Data variables: (12/132)\n", | |
| " FrshFlux_IceSalt (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " FrshFlux_TotalIce (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " Qbot (time, lev, cell) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Qtop (time, lev, cell) float32 26GB dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray>\n", | |
| " Wind_Speed_10m (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " atmos_fluxes_FrshFlux_Evaporation (time, cell) float32 26GB dask.array<chunksize=(2, 10000000), meta=np.ndarray>\n", | |
| " ... ...\n", | |
| " vertices_of_vertex (ne, vertex) float64 359MB ...\n", | |
| " vlat_vertices (vertex, ne) float64 359MB ...\n", | |
| " vlon_vertices (vertex, ne) float64 359MB ...\n", | |
| " zonal_normal_dual_edge (edge) float64 179MB ...\n", | |
| " zonal_normal_primal_edge (edge) float64 179MB ...\n", | |
| " IconGrid int64 8B 0\n", | |
| "Attributes: (12/31)\n", | |
| " Conventions: CF-1.7 CMIP-6.2\n", | |
| " activity_id: HighResMIP\n", | |
| " contact: juergen.kroeger@mpimet.mpg.de\n", | |
| " creation_date: 2025-07-08T10:51:45\n", | |
| " data_specs_version: 01.00.32\n", | |
| " experiment: coupled future 2015-2050 using a scenario as close...\n", | |
| " ... ...\n", | |
| " source_id: ICON-ESM-ER\n", | |
| " source_type: AOGCM\n", | |
| " sub_experiment: none\n", | |
| " sub_experiment_id: none\n", | |
| " variant_label: r1i1p1f1\n", | |
| " version_id: v20240618</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-ec42720a-b3a0-4b33-ad98-f3775d87df01' class='xr-section-summary-in' type='checkbox' disabled /><label for='section-ec42720a-b3a0-4b33-ad98-f3775d87df01' class='xr-section-summary'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 432</li><li><span>cell</span>: 14886338</li><li><span class='xr-has-index'>lev</span>: 1</li><li><span class='xr-has-index'>depth</span>: 1</li><li><span>edge</span>: 22375924</li><li><span>nc</span>: 2</li><li><span>vertex</span>: 7487687</li><li><span>max_stored_decompositions</span>: 4</li><li><span>ne</span>: 6</li><li><span>no</span>: 4</li><li><span>nv</span>: 3</li><li><span>max_chdom</span>: 1</li><li><span>cell_grf</span>: 14</li><li><span>edge_grf</span>: 24</li><li><span>vert_grf</span>: 13</li><li><span>two_grf</span>: 2</li></ul></div></li><li class='xr-section-item'><input id='section-89913ab5-1219-40aa-b625-6c3971c77d69' class='xr-section-summary-in' type='checkbox' checked /><label for='section-89913ab5-1219-40aa-b625-6c3971c77d69' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(11)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>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'>2015-01-31T23:59:59 ... 2050-12-...</div><input id='attrs-d1ef3bd0-2809-4c7b-9eb3-3c7458334760' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-d1ef3bd0-2809-4c7b-9eb3-3c7458334760' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-63e2de22-5856-4dfb-9a98-61b10c0d5853' class='xr-var-data-in' type='checkbox'><label for='data-63e2de22-5856-4dfb-9a98-61b10c0d5853' 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(['2015-01-31T23:59:59.000000000', '2015-02-28T23:59:59.000000000',\n", | |
| " '2015-03-31T23:59:59.000000000', ..., '2050-10-31T23:59:59.000000000',\n", | |
| " '2050-11-30T23:59:59.000000000', '2050-12-31T23:59:59.000000000'],\n", | |
| " shape=(432,), dtype='datetime64[ns]')</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(14886338,), meta=np.ndarray></div><input id='attrs-893c934d-8cd2-48ae-a0a3-7ae4444e81e5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-893c934d-8cd2-48ae-a0a3-7ae4444e81e5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-faceee2d-d4ad-480f-a7f0-54354212e270' class='xr-var-data-in' type='checkbox'><label for='data-faceee2d-d4ad-480f-a7f0-54354212e270' 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>center latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>bounds :</span></dt><dd>clat_vertices</dd><dt><span>dtype :</span></dt><dd>float64</dd><dt><span>zlib :</span></dt><dd>False</dd><dt><span>szip :</span></dt><dd>False</dd><dt><span>zstd :</span></dt><dd>False</dd><dt><span>bzip2 :</span></dt><dd>False</dd><dt><span>blosc :</span></dt><dd>False</dd><dt><span>shuffle :</span></dt><dd>False</dd><dt><span>complevel :</span></dt><dd>0</dd><dt><span>fletcher32 :</span></dt><dd>False</dd><dt><span>contiguous :</span></dt><dd>True</dd><dt><span>chunksizes :</span></dt><dd>None</dd><dt><span>source :</span></dt><dd>/work/bm1344/DKRZ/kerchunks_batched/erc2002/icon_grid_0016_R02B09_O.nc</dd><dt><span>original_shape :</span></dt><dd>[14886338]</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (14886338,) </td>\n", | |
| " <td> (14886338,) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 1 chunks in 3 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float64 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.0,12.706308257291242)\">1</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(14886338,), meta=np.ndarray></div><input id='attrs-a1cd8990-dd09-4e85-aa99-c53e54cf8460' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a1cd8990-dd09-4e85-aa99-c53e54cf8460' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2a4f8e45-8b89-4d8f-821d-741b6fad7c03' class='xr-var-data-in' type='checkbox'><label for='data-2a4f8e45-8b89-4d8f-821d-741b6fad7c03' 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>center longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>bounds :</span></dt><dd>clon_vertices</dd><dt><span>dtype :</span></dt><dd>float64</dd><dt><span>zlib :</span></dt><dd>False</dd><dt><span>szip :</span></dt><dd>False</dd><dt><span>zstd :</span></dt><dd>False</dd><dt><span>bzip2 :</span></dt><dd>False</dd><dt><span>blosc :</span></dt><dd>False</dd><dt><span>shuffle :</span></dt><dd>False</dd><dt><span>complevel :</span></dt><dd>0</dd><dt><span>fletcher32 :</span></dt><dd>False</dd><dt><span>contiguous :</span></dt><dd>True</dd><dt><span>chunksizes :</span></dt><dd>None</dd><dt><span>source :</span></dt><dd>/work/bm1344/DKRZ/kerchunks_batched/erc2002/icon_grid_0016_R02B09_O.nc</dd><dt><span>original_shape :</span></dt><dd>[14886338]</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " <td> 113.57 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (14886338,) </td>\n", | |
| " <td> (14886338,) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 1 chunks in 3 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float64 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.0,12.706308257291242)\">1</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>clat</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>72.14 72.12 72.17 ... -45.23 -45.23</div><input id='attrs-18c90a3e-39ac-45e1-9510-52f908572ce8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-18c90a3e-39ac-45e1-9510-52f908572ce8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6eb23562-cd52-47d4-be1b-7ab1c8c8b21e' class='xr-var-data-in' type='checkbox'><label for='data-6eb23562-cd52-47d4-be1b-7ab1c8c8b21e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>clat_vertices</dd><dt><span>long_name :</span></dt><dd>center latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd></dl></div><div class='xr-var-data'><pre>array([ 72.14153539, 72.11842828, 72.17353504, ..., -45.17171677,\n", | |
| " -45.23138792, -45.23383705], shape=(14886338,))</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>clon</span></div><div class='xr-var-dims'>(cell)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>73.0 73.12 73.0 ... 76.54 76.45</div><input id='attrs-8be65bd2-e836-400e-a779-67662f1a24c0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8be65bd2-e836-400e-a779-67662f1a24c0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-572959df-4c06-4924-9ee5-d7c58cf71e6e' class='xr-var-data-in' type='checkbox'><label for='data-572959df-4c06-4924-9ee5-d7c58cf71e6e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>clon_vertices</dd><dt><span>long_name :</span></dt><dd>center longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd></dl></div><div class='xr-var-data'><pre>array([73. , 73.11610713, 73. , ..., 76.49297292,\n", | |
| " 76.54481611, 76.4503828 ], shape=(14886338,))</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>lev</span></div><div class='xr-var-dims'>(lev)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0</div><input id='attrs-f4ada590-282a-43f2-bba3-57e9cb6e4d27' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f4ada590-282a-43f2-bba3-57e9cb6e4d27' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-82567320-979a-4d2e-9f1f-b2b3f1b684c4' class='xr-var-data-in' type='checkbox'><label for='data-82567320-979a-4d2e-9f1f-b2b3f1b684c4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Z</dd></dl></div><div class='xr-var-data'><pre>array([0.])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>depth</span></div><div class='xr-var-dims'>(depth)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>1.0</div><input id='attrs-4f5826d9-ed62-42c6-a78b-c271a0614d51' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4f5826d9-ed62-42c6-a78b-c271a0614d51' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ca6b492f-912b-4e85-a1e6-2d6366930cbd' class='xr-var-data-in' type='checkbox'><label for='data-ca6b492f-912b-4e85-a1e6-2d6366930cbd' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>axis :</span></dt><dd>Z</dd><dt><span>long_name :</span></dt><dd>depth_below_sea</dd><dt><span>positive :</span></dt><dd>down</dd><dt><span>standard_name :</span></dt><dd>depth</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><pre>array([1.])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elat</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>72.13 72.16 72.13 ... -45.22 -45.22</div><input id='attrs-8c71bd47-7fcd-4ed4-90be-89da75eb3244' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8c71bd47-7fcd-4ed4-90be-89da75eb3244' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4f7952b3-84c8-4805-aa67-935b6e25f29a' class='xr-var-data-in' type='checkbox'><label for='data-4f7952b3-84c8-4805-aa67-935b6e25f29a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>elat_vertices</dd><dt><span>long_name :</span></dt><dd>edge midpoint latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd></dl></div><div class='xr-var-data'><pre>array([ 72.12998848, 72.15754452, 72.12998848, ..., -45.19313089,\n", | |
| " -45.22296188, -45.22418511], shape=(22375924,))</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elon</span></div><div class='xr-var-dims'>(edge)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>73.06 73.0 72.94 ... 76.52 76.47</div><input id='attrs-6d3a8c4d-2ed7-43f8-a839-075f9380b897' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6d3a8c4d-2ed7-43f8-a839-075f9380b897' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ed260ed5-9a39-423e-bf69-67a814367a8a' class='xr-var-data-in' type='checkbox'><label for='data-ed260ed5-9a39-423e-bf69-67a814367a8a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>elon_vertices</dd><dt><span>long_name :</span></dt><dd>edge midpoint longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd></dl></div><div class='xr-var-data'><pre>array([73.05809965, 73. , 72.94190035, ..., 76.49408981,\n", | |
| " 76.52000087, 76.47280625], shape=(22375924,))</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vlat</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>72.16 72.16 72.1 ... -45.13 -45.19</div><input id='attrs-ef83aa83-25b1-4d25-ae90-1e940ee4c0e0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ef83aa83-25b1-4d25-ae90-1e940ee4c0e0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ab8d094e-5a1f-42aa-b6bc-7d485fea44af' class='xr-var-data-in' type='checkbox'><label for='data-ab8d094e-5a1f-42aa-b6bc-7d485fea44af' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>vlat_vertices</dd><dt><span>long_name :</span></dt><dd>vertex latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd></dl></div><div class='xr-var-data'><pre>array([ 72.15751005, 72.15751005, 72.10244965, ..., -45.19672195,\n", | |
| " -45.13463111, -45.19434345], shape=(7487687,))</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vlon</span></div><div class='xr-var-dims'>(vertex)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>73.12 72.88 73.0 ... 76.4 76.45</div><input id='attrs-c37a4d0f-39ec-4d64-89ed-4fef3d839b23' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c37a4d0f-39ec-4d64-89ed-4fef3d839b23' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-29d70ff8-772c-4744-a4fb-1f9bd6cc1fa0' class='xr-var-data-in' type='checkbox'><label for='data-29d70ff8-772c-4744-a4fb-1f9bd6cc1fa0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>bounds :</span></dt><dd>vlon_vertices</dd><dt><span>long_name :</span></dt><dd>vertex longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd></dl></div><div class='xr-var-data'><pre>array([73.11637273, 72.88362727, 73. , ..., 76.35257292,\n", | |
| " 76.39525432, 76.4469194 ], shape=(7487687,))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-fbea2a41-b1a6-4954-be81-409fb28147a5' class='xr-section-summary-in' type='checkbox' /><label for='section-fbea2a41-b1a6-4954-be81-409fb28147a5' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(132)</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>FrshFlux_IceSalt</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-daca17ba-4031-43ee-b761-e983e35c1269' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-daca17ba-4031-43ee-b761-e983e35c1269' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f0c99f1b-962a-479f-9ee3-9bc05e9fe8a9' class='xr-var-data-in' type='checkbox'><label for='data-f0c99f1b-962a-479f-9ee3-9bc05e9fe8a9' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Salt volume flux due to sea ice change</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>FrshFlux_IceSalt</dd><dt><span>units :</span></dt><dd>psu m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>FrshFlux_TotalIce</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-bd80d930-8c8b-4172-80fb-14565101fdbe' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bd80d930-8c8b-4172-80fb-14565101fdbe' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-039bf3bd-9d3d-45f1-96f2-76e0639d9e3e' class='xr-var-data-in' type='checkbox'><label for='data-039bf3bd-9d3d-45f1-96f2-76e0639d9e3e' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Freshwater Flux due to Sea Ice Change</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>FrshFlux_TotalIce</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Qbot</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-74e4a089-cdbc-4d72-bddc-618e3f7f4fa9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-74e4a089-cdbc-4d72-bddc-618e3f7f4fa9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e6128a72-5d18-4139-9146-d2c4549382ac' class='xr-var-data-in' type='checkbox'><label for='data-e6128a72-5d18-4139-9146-d2c4549382ac' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Conductive heat flux at ice-ocean interface</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>Qbot</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Qtop</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-6a3fe5e2-cd57-4015-a875-b03c387d4742' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6a3fe5e2-cd57-4015-a875-b03c387d4742' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4b0f1efe-d28b-49c5-b265-5cc4b9afdd79' class='xr-var-data-in' type='checkbox'><label for='data-4b0f1efe-d28b-49c5-b265-5cc4b9afdd79' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Energy flux available for surface melting</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>Qtop</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Wind_Speed_10m</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-d69d513d-e49e-4b0b-88c8-7c4d9806f725' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d69d513d-e49e-4b0b-88c8-7c4d9806f725' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6ed7b2c3-ff57-4b6c-8791-08badcc508fe' class='xr-var-data-in' type='checkbox'><label for='data-6ed7b2c3-ff57-4b6c-8791-08badcc508fe' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Wind Speed at 10m height</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>wind_speed</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Evaporation</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-b0830bdb-6acb-4368-969a-9a24c94f6e1b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b0830bdb-6acb-4368-969a-9a24c94f6e1b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-33492569-9ca2-498d-98af-4a8e9a7fa2c0' class='xr-var-data-in' type='checkbox'><label for='data-33492569-9ca2-498d-98af-4a8e9a7fa2c0' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Evaporation</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Evaporation</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Precipitation</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-e8340a75-1a3f-4b12-a57b-0a7dffd950c8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e8340a75-1a3f-4b12-a57b-0a7dffd950c8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d7e0ffa6-e9a1-4d6f-9550-861fdf757e7a' class='xr-var-data-in' type='checkbox'><label for='data-d7e0ffa6-e9a1-4d6f-9550-861fdf757e7a' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Precipitation</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Precipitation</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_Runoff</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-5d1b5bef-e67d-467f-9049-c7cae5a391d8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5d1b5bef-e67d-467f-9049-c7cae5a391d8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9072954d-4c2f-4ccb-b662-86d7ce685324' class='xr-var-data-in' type='checkbox'><label for='data-9072954d-4c2f-4ccb-b662-86d7ce685324' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_Runoff</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_Runoff</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_FrshFlux_SnowFall</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-dbcddfb4-3ea1-4ebb-88f5-2fba06732c41' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dbcddfb4-3ea1-4ebb-88f5-2fba06732c41' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8efead72-c628-490d-8a9b-b7a21bc0f080' class='xr-var-data-in' type='checkbox'><label for='data-8efead72-c628-490d-8a9b-b7a21bc0f080' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_FrshFlux_SnowFall</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_FrshFlux_SnowFall</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Latent</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-90e8fcad-e104-485b-94d2-fa8debdd4ee4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-90e8fcad-e104-485b-94d2-fa8debdd4ee4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b09faa44-9471-41ce-bb52-0295f86a010a' class='xr-var-data-in' type='checkbox'><label for='data-b09faa44-9471-41ce-bb52-0295f86a010a' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Latent</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Latent</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_LongWave</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-37413f46-2f4d-432e-b125-f299d0aefe2e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-37413f46-2f4d-432e-b125-f299d0aefe2e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c5883aaa-4bcf-46ae-bcd3-ad96dde6fe04' class='xr-var-data-in' type='checkbox'><label for='data-c5883aaa-4bcf-46ae-bcd3-ad96dde6fe04' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_LongWave</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_LongWave</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Sensible</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-134b15dc-b536-47ef-8cfe-3badaa215825' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-134b15dc-b536-47ef-8cfe-3badaa215825' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-99257487-e398-47e7-ae83-35525cdcc65c' class='xr-var-data-in' type='checkbox'><label for='data-99257487-e398-47e7-ae83-35525cdcc65c' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Sensible</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Sensible</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_ShortWave</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-03add216-a4cd-4d2b-85f6-cf744286aa81' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-03add216-a4cd-4d2b-85f6-cf744286aa81' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-61663349-7503-4b3e-a168-607d7bbaa4ff' class='xr-var-data-in' type='checkbox'><label for='data-61663349-7503-4b3e-a168-607d7bbaa4ff' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_ShortWave</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_ShortWave</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_HeatFlux_Total</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-30e3f65e-23b2-46fb-92f0-8fac4cf398c2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-30e3f65e-23b2-46fb-92f0-8fac4cf398c2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6605b2f4-f9bc-4de6-978c-d9a75384f075' class='xr-var-data-in' type='checkbox'><label for='data-6605b2f4-f9bc-4de6-978c-d9a75384f075' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_HeatFlux_Total</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>atmos_fluxes_HeatFlux_Total</dd><dt><span>units :</span></dt><dd>W m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_x</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-38ad0488-5415-4055-a060-8cb1417d81ba' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-38ad0488-5415-4055-a060-8cb1417d81ba' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0526169c-fe5e-44b0-b920-2091d4ec4def' class='xr-var-data-in' type='checkbox'><label for='data-0526169c-fe5e-44b0-b920-2091d4ec4def' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_x</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_eastward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_xw</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-81200793-fa15-4d45-ae8a-4c46e9d2e953' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-81200793-fa15-4d45-ae8a-4c46e9d2e953' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9bc1c3e9-27ae-4005-ae2e-de6aa65219f9' class='xr-var-data-in' type='checkbox'><label for='data-9bc1c3e9-27ae-4005-ae2e-de6aa65219f9' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_xw</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_eastward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_y</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-57bb9a18-368b-443c-a9cc-8485d7c72143' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-57bb9a18-368b-443c-a9cc-8485d7c72143' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8ad1e287-684f-4e5f-a140-536678e83f87' class='xr-var-data-in' type='checkbox'><label for='data-8ad1e287-684f-4e5f-a140-536678e83f87' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_y</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_northward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>atmos_fluxes_stress_yw</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-397f1f83-ab96-46fb-8bc3-646d7c6b209f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-397f1f83-ab96-46fb-8bc3-646d7c6b209f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0ef5daec-151c-48c8-bd1e-4521d1268b06' class='xr-var-data-in' type='checkbox'><label for='data-0ef5daec-151c-48c8-bd1e-4521d1268b06' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>atmos_fluxes_stress_yw</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>surface_downward_northward_stress</dd><dt><span>units :</span></dt><dd>Pa</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>conc</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-09c2760f-1516-4725-9e50-2ba6b1c1e36a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-09c2760f-1516-4725-9e50-2ba6b1c1e36a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7fa6f972-c444-41e9-a194-bc4309efe533' class='xr-var-data-in' type='checkbox'><label for='data-7fa6f972-c444-41e9-a194-bc4309efe533' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>ice concentration in each ice class</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>0.2.10</dd><dt><span>standard_name :</span></dt><dd>conc</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>delhi</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-b2ff3338-a52b-478b-bd55-12f278cde5b4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b2ff3338-a52b-478b-bd55-12f278cde5b4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2952a21c-49ea-40ee-ab3e-371eec73a2a7' class='xr-var-data-in' type='checkbox'><label for='data-2952a21c-49ea-40ee-ab3e-371eec73a2a7' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>Change in ice mean thickness due to thermodynamic effects</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>6.2.10</dd><dt><span>standard_name :</span></dt><dd>delhi</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>delhs</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-04133adb-203c-46be-87d7-c1c18d77b4bb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-04133adb-203c-46be-87d7-c1c18d77b4bb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9ad234a3-ea29-4bdb-bae3-08e7ce3a964a' class='xr-var-data-in' type='checkbox'><label for='data-9ad234a3-ea29-4bdb-bae3-08e7ce3a964a' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Change in mean snow thickness due to thermodynamic melting</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>delhs</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heatOceI</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-8e4d73ee-5c96-4585-9cce-9dac45f48990' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8e4d73ee-5c96-4585-9cce-9dac45f48990' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-51545f41-e516-46fb-9d14-dbd419023d95' class='xr-var-data-in' type='checkbox'><label for='data-51545f41-e516-46fb-9d14-dbd419023d95' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Heat flux to ocean from the ice growth</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heatOceI</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heatOceW</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-2ed6b3ed-14bf-4474-ae43-4fb9c8a1bef7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2ed6b3ed-14bf-4474-ae43-4fb9c8a1bef7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8dc404e9-5331-4f3f-bb5e-90a61bf49d73' class='xr-var-data-in' type='checkbox'><label for='data-8dc404e9-5331-4f3f-bb5e-90a61bf49d73' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>Heat flux to ocean from the atmosphere</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heatOceW</dd><dt><span>units :</span></dt><dd>W/m^2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_seaice</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-eb9d6d5d-97e9-4e2a-ad99-0b3289195c98' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-eb9d6d5d-97e9-4e2a-ad99-0b3289195c98' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e5946542-4390-4928-b25f-7414b0f31826' class='xr-var-data-in' type='checkbox'><label for='data-e5946542-4390-4928-b25f-7414b0f31826' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_content_seaice</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_seaice</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_snow</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-71168ca5-4a3d-4b1d-b36d-3c11b5b7c4a4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-71168ca5-4a3d-4b1d-b36d-3c11b5b7c4a4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4a65b1d3-1611-414b-9e1f-61828291d969' class='xr-var-data-in' type='checkbox'><label for='data-4a65b1d3-1611-414b-9e1f-61828291d969' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_conten_snow</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_snow</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>heat_content_total</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-47149478-1a7b-4f7b-b3f3-8eeb0719e78f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-47149478-1a7b-4f7b-b3f3-8eeb0719e78f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6914bdd9-c97b-4de8-80b0-26b63e2fd373' class='xr-var-data-in' type='checkbox'><label for='data-6914bdd9-c97b-4de8-80b0-26b63e2fd373' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>heat_content_total</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>heat_content_total</dd><dt><span>units :</span></dt><dd>J m-2</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>hi</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-2a1ce902-6ff4-43dc-9952-09c3dd4f2fe6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2a1ce902-6ff4-43dc-9952-09c3dd4f2fe6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7c03730b-a29a-454f-81e7-6c8851e9a05f' class='xr-var-data-in' type='checkbox'><label for='data-7c03730b-a29a-454f-81e7-6c8851e9a05f' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>ice thickness</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>1.2.10</dd><dt><span>standard_name :</span></dt><dd>hi</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>hs</span></div><div class='xr-var-dims'>(time, lev, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 1, 10000000), meta=np.ndarray></div><input id='attrs-0007ae85-b4c9-4e42-a909-3bc2592b6f87' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0007ae85-b4c9-4e42-a909-3bc2592b6f87' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a343c9ff-07ae-4568-9cf8-805e6020276a' class='xr-var-data-in' type='checkbox'><label for='data-a343c9ff-07ae-4568-9cf8-805e6020276a' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>snow thickness</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>192.2.10</dd><dt><span>standard_name :</span></dt><dd>hs</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 1, 14886338) </td>\n", | |
| " <td> (2, 1, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"194\" height=\"90\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"25\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"26\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"26\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"27\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"28\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"30\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"30\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"31\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"33\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"34\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"34\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"35\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"37\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"37\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"38\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"39\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,40.36121446433689 10.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n", | |
| " <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n", | |
| " <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n", | |
| " <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n", | |
| " <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n", | |
| " <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n", | |
| " <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n", | |
| " <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n", | |
| " <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n", | |
| " <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n", | |
| " <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"90\" y1=\"0\" x2=\"105\" y2=\"14\" />\n", | |
| " <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"24\" y1=\"40\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"105\" y1=\"14\" x2=\"105\" y2=\"40\" />\n", | |
| " <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"40\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,40.36121446433689 24.9485979497544,40.36121446433689\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"84.9485979497544\" y=\"60.36121446433689\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"164.9485979497544\" y=\"27.654906207045645\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,164.9485979497544,27.654906207045645)\">1</text>\n", | |
| " <text x=\"7.4742989748772\" y=\"52.88691548945969\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.4742989748772,52.88691548945969)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ice_u</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-f10a8b6c-bc32-4dee-956e-5c6b20d5e017' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f10a8b6c-bc32-4dee-956e-5c6b20d5e017' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6f86f6d6-ac0a-4338-8c83-418089f7447d' class='xr-var-data-in' type='checkbox'><label for='data-6f86f6d6-ac0a-4338-8c83-418089f7447d' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>zonal velocity</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>4.2.10</dd><dt><span>standard_name :</span></dt><dd>ice_u</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>ice_v</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-f8756fd8-1e16-4c9b-9123-3b206059d748' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f8756fd8-1e16-4c9b-9123-3b206059d748' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-49e269f2-2b1b-46ed-8be8-a0afd5c9774d' class='xr-var-data-in' type='checkbox'><label for='data-49e269f2-2b1b-46ed-8be8-a0afd5c9774d' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>long_name :</span></dt><dd>meridional velocity</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>param :</span></dt><dd>5.2.10</dd><dt><span>standard_name :</span></dt><dd>ice_v</dd><dt><span>units :</span></dt><dd>m s-1</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>mlotst</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-f174fb7e-519e-4ac8-bbe5-1030e9f1a7d7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f174fb7e-519e-4ac8-bbe5-1030e9f1a7d7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-af345ef8-c350-4e34-8fb7-4e7367504d60' class='xr-var-data-in' type='checkbox'><label for='data-af345ef8-c350-4e34-8fb7-4e7367504d60' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>mlotst10</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-bb893b54-a137-4427-9834-ad5541e9231c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bb893b54-a137-4427-9834-ad5541e9231c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-48d751bd-7513-4e7c-a859-0a10327bdac1' class='xr-var-data-in' type='checkbox'><label for='data-48d751bd-7513-4e7c-a859-0a10327bdac1' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>ocean_mixed_layer_thickness_defined_by_sigma_t_10m</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>mlotst10</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>newice</span></div><div class='xr-var-dims'>(time, cell)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(2, 10000000), meta=np.ndarray></div><input id='attrs-24a8ba5c-28dc-45ce-9b0c-196582d5dfb4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-24a8ba5c-28dc-45ce-9b0c-196582d5dfb4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b6939e01-44ef-4a81-a21d-2d931a9a43f8' class='xr-var-data-in' type='checkbox'><label for='data-b6939e01-44ef-4a81-a21d-2d931a9a43f8' 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>CDI_grid_type :</span></dt><dd>unstructured</dd><dt><span>code :</span></dt><dd>255</dd><dt><span>long_name :</span></dt><dd>new ice growth in open water</dd><dt><span>number_of_grid_in_reference :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>newice</dd><dt><span>units :</span></dt><dd>m</dd></dl></div><div class='xr-var-data'><table>\n", | |
| " <tr>\n", | |
| " <td>\n", | |
| " <table style=\"border-collapse: collapse;\">\n", | |
| " <thead>\n", | |
| " <tr>\n", | |
| " <td> </td>\n", | |
| " <th> Array </th>\n", | |
| " <th> Chunk </th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Bytes </th>\n", | |
| " <td> 23.96 GiB </td>\n", | |
| " <td> 76.29 MiB </td>\n", | |
| " </tr>\n", | |
| " \n", | |
| " <tr>\n", | |
| " <th> Shape </th>\n", | |
| " <td> (432, 14886338) </td>\n", | |
| " <td> (2, 10000000) </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Dask graph </th>\n", | |
| " <td colspan=\"2\"> 432 chunks in 2 graph layers </td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th> Data type </th>\n", | |
| " <td colspan=\"2\"> float32 numpy.ndarray </td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| " </table>\n", | |
| " </td>\n", | |
| " <td>\n", | |
| " <svg width=\"170\" height=\"75\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
| "\n", | |
| " <!-- Horizontal lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"120\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"0\" y1=\"1\" x2=\"120\" y2=\"1\" />\n", | |
| " <line x1=\"0\" y1=\"2\" x2=\"120\" y2=\"2\" />\n", | |
| " <line x1=\"0\" y1=\"4\" x2=\"120\" y2=\"4\" />\n", | |
| " <line x1=\"0\" y1=\"5\" x2=\"120\" y2=\"5\" />\n", | |
| " <line x1=\"0\" y1=\"6\" x2=\"120\" y2=\"6\" />\n", | |
| " <line x1=\"0\" y1=\"8\" x2=\"120\" y2=\"8\" />\n", | |
| " <line x1=\"0\" y1=\"9\" x2=\"120\" y2=\"9\" />\n", | |
| " <line x1=\"0\" y1=\"10\" x2=\"120\" y2=\"10\" />\n", | |
| " <line x1=\"0\" y1=\"12\" x2=\"120\" y2=\"12\" />\n", | |
| " <line x1=\"0\" y1=\"13\" x2=\"120\" y2=\"13\" />\n", | |
| " <line x1=\"0\" y1=\"14\" x2=\"120\" y2=\"14\" />\n", | |
| " <line x1=\"0\" y1=\"16\" x2=\"120\" y2=\"16\" />\n", | |
| " <line x1=\"0\" y1=\"17\" x2=\"120\" y2=\"17\" />\n", | |
| " <line x1=\"0\" y1=\"18\" x2=\"120\" y2=\"18\" />\n", | |
| " <line x1=\"0\" y1=\"20\" x2=\"120\" y2=\"20\" />\n", | |
| " <line x1=\"0\" y1=\"21\" x2=\"120\" y2=\"21\" />\n", | |
| " <line x1=\"0\" y1=\"22\" x2=\"120\" y2=\"22\" />\n", | |
| " <line x1=\"0\" y1=\"24\" x2=\"120\" y2=\"24\" />\n", | |
| " <line x1=\"0\" y1=\"25\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Vertical lines -->\n", | |
| " <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| " <line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"25\" />\n", | |
| " <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"25\" style=\"stroke-width:2\" />\n", | |
| "\n", | |
| " <!-- Colored Rectangle -->\n", | |
| " <polygon points=\"0.0,0.0 120.0,0.0 120.0,25.412616514582485 0.0,25.412616514582485\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n", | |
| "\n", | |
| " <!-- Text -->\n", | |
| " <text x=\"60.0\" y=\"45.41261651458248\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >14886338</text>\n", | |
| " <text x=\"140.0\" y=\"12.706308257291242\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,140.0,12.706308257291242)\">432</text>\n", | |
| "</svg>\n", | |
| " </td>\n", | |
| " </tr>\n", | |
| "</table></div></li><li class='xr-var- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment