Created
April 15, 2022 10:40
-
-
Save rsignell-usgs/afeb1991ad5899fab85e09b8ea2d9c55 to your computer and use it in GitHub Desktop.
harmonie_kerchunk.ipynb
This file contains 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": "cde65ca7-664e-4f2b-96fe-fea335304b4f", | |
"metadata": {}, | |
"source": [ | |
"# Explore Kerchunking Harmonie data\n", | |
"Explore zipped test data from:\n", | |
"https://stackoverflow.com/questions/70952226/how-to-merge-different-shaped-netcdf4-files" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"id": "d7cb9a56-0b18-479c-b141-c0efd223913a", | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"import fsspec\n", | |
"import xarray as xr\n", | |
"from kerchunk.hdf import SingleHdf5ToZarr \n", | |
"from pathlib import Path\n", | |
"import ujson" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"id": "04447c0d-5e30-4098-86f2-a15ab53b7110", | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"fs = fsspec.filesystem('file')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 3, | |
"id": "fc78c714-baf5-466f-8d4f-4231a9cb4828", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"['/shared/users/rsignell/notebooks/testing/data/test_data_stackoverflow/harmonie_knmi_2021_03_20_18_30_18.nc',\n", | |
" '/shared/users/rsignell/notebooks/testing/data/test_data_stackoverflow/harmonie_knmi_2021_03_20_18_30_19.nc',\n", | |
" '/shared/users/rsignell/notebooks/testing/data/test_data_stackoverflow/harmonie_knmi_2021_03_20_18_30_20.nc',\n", | |
" '/shared/users/rsignell/notebooks/testing/data/test_data_stackoverflow/harmonie_knmi_2021_03_20_18_30_21.nc',\n", | |
" '/shared/users/rsignell/notebooks/testing/data/test_data_stackoverflow/harmonie_knmi_2021_03_20_18_30_22.nc']" | |
] | |
}, | |
"execution_count": 3, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"flist = fs.glob('data/test_data_stackoverflow/*.nc')\n", | |
"flist[:5]" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 4, | |
"id": "4de70622-7302-4294-8195-e97ff48ad457", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"'/shared/users/rsignell/notebooks/testing/data/test_data_stackoverflow/harmonie_knmi_2021_03_20_18_30_18.nc'" | |
] | |
}, | |
"execution_count": 4, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"flist[0]" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 5, | |
"id": "c4458615-6ccc-4aef-95fd-777d0f0a21b4", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n", | |
"[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n", | |
" 24 25 26 27 28 29 30]\n" | |
] | |
} | |
], | |
"source": [ | |
"for f in flist:\n", | |
" print(xr.open_dataset(flist[0]).x.values)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 6, | |
"id": "e695d569-fd36-4177-b1bd-394ad66d174b", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n", | |
"2021-03-20T18:00:00.000000000\n" | |
] | |
} | |
], | |
"source": [ | |
"for f in flist:\n", | |
" print(xr.open_dataset(flist[0]).dt_calc.values)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 7, | |
"id": "24277fcf-41ad-4dd3-8dbe-0a2798b4b6f7", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n", | |
"1616263200000000000\n" | |
] | |
} | |
], | |
"source": [ | |
"for f in flist:\n", | |
" print(xr.open_dataset(flist[0]).dt_fore[0].values)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 8, | |
"id": "c9dc3c3f-c232-44b3-adaf-ed180eb92311", | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"json_dir = 'jsons'" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 9, | |
"id": "427aeefe-585f-4c28-a86a-576cc5049a27", | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"#generate a json from a netCDF\n", | |
"def gen_json(u):\n", | |
" #open the file (u) with desiganted parameters (so), call it infile\n", | |
" with fs.open(u, **so) as infile:\n", | |
" #inline_threshold: chunks smaller than 300 (I'm guessing mb?) are included in output\n", | |
" h5chunks = SingleHdf5ToZarr(infile, u, inline_threshold=300)\n", | |
" #Path().stem is from the pathlib library; returns the file name w/o the extension\n", | |
" fstem = Path(u).stem\n", | |
" #here we create the output file path\n", | |
" outf = f'{json_dir}/{fstem}.json'\n", | |
" #print(outf)\n", | |
" #wb: write binary file\n", | |
" with fs.open(outf, 'wb') as f:\n", | |
" #create json file and write it to the path specified above (f)\n", | |
" #dumps: dictionary to string\n", | |
" #translate: translate contents of HDF5 to Zarr\n", | |
" f.write(ujson.dumps(h5chunks.translate()).encode());" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 10, | |
"id": "79fcb3a0-3fa7-48e3-9fe0-6ccc3bd516d9", | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"so = dict(mode='rb')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 11, | |
"id": "bbd9033b-72b7-4611-9714-9842515312d4", | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"#loop through list of netCDFs and put them through our function for generating jsons\n", | |
"for f in flist:\n", | |
" gen_json(f)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 12, | |
"id": "401f1a0b-2456-4e2f-8e73-4fe1fd1e2461", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"['/shared/users/rsignell/notebooks/testing/jsons/harmonie_knmi_2021_03_20_18_30_18.json',\n", | |
" '/shared/users/rsignell/notebooks/testing/jsons/harmonie_knmi_2021_03_20_18_30_19.json',\n", | |
" '/shared/users/rsignell/notebooks/testing/jsons/harmonie_knmi_2021_03_20_18_30_20.json',\n", | |
" '/shared/users/rsignell/notebooks/testing/jsons/harmonie_knmi_2021_03_20_18_30_21.json',\n", | |
" '/shared/users/rsignell/notebooks/testing/jsons/harmonie_knmi_2021_03_20_18_30_22.json']" | |
] | |
}, | |
"execution_count": 12, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"#create and view a sorted list of all jsons created in the previous step\n", | |
"json_list = fs.glob(f'{json_dir}/*.json')\n", | |
"json_list[:5]" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 13, | |
"id": "8d577f59-3a84-4d88-bbaf-ac392a183822", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n", | |
"<defs>\n", | |
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n", | |
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n", | |
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n", | |
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n", | |
"</symbol>\n", | |
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n", | |
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n", | |
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n", | |
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n", | |
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n", | |
"</symbol>\n", | |
"</defs>\n", | |
"</svg>\n", | |
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n", | |
" *\n", | |
" */\n", | |
"\n", | |
":root {\n", | |
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n", | |
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n", | |
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n", | |
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n", | |
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n", | |
" --xr-background-color: var(--jp-layout-color0, white);\n", | |
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n", | |
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n", | |
"}\n", | |
"\n", | |
"html[theme=dark],\n", | |
"body.vscode-dark {\n", | |
" --xr-font-color0: rgba(255, 255, 255, 1);\n", | |
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n", | |
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n", | |
" --xr-border-color: #1F1F1F;\n", | |
" --xr-disabled-color: #515151;\n", | |
" --xr-background-color: #111111;\n", | |
" --xr-background-color-row-even: #111111;\n", | |
" --xr-background-color-row-odd: #313131;\n", | |
"}\n", | |
"\n", | |
".xr-wrap {\n", | |
" display: block !important;\n", | |
" min-width: 300px;\n", | |
" max-width: 700px;\n", | |
"}\n", | |
"\n", | |
".xr-text-repr-fallback {\n", | |
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n", | |
" display: none;\n", | |
"}\n", | |
"\n", | |
".xr-header {\n", | |
" padding-top: 6px;\n", | |
" padding-bottom: 6px;\n", | |
" margin-bottom: 4px;\n", | |
" border-bottom: solid 1px var(--xr-border-color);\n", | |
"}\n", | |
"\n", | |
".xr-header > div,\n", | |
".xr-header > ul {\n", | |
" display: inline;\n", | |
" margin-top: 0;\n", | |
" margin-bottom: 0;\n", | |
"}\n", | |
"\n", | |
".xr-obj-type,\n", | |
".xr-array-name {\n", | |
" margin-left: 2px;\n", | |
" margin-right: 10px;\n", | |
"}\n", | |
"\n", | |
".xr-obj-type {\n", | |
" color: var(--xr-font-color2);\n", | |
"}\n", | |
"\n", | |
".xr-sections {\n", | |
" padding-left: 0 !important;\n", | |
" display: grid;\n", | |
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n", | |
"}\n", | |
"\n", | |
".xr-section-item {\n", | |
" display: contents;\n", | |
"}\n", | |
"\n", | |
".xr-section-item input {\n", | |
" display: none;\n", | |
"}\n", | |
"\n", | |
".xr-section-item input + label {\n", | |
" color: var(--xr-disabled-color);\n", | |
"}\n", | |
"\n", | |
".xr-section-item input:enabled + label {\n", | |
" cursor: pointer;\n", | |
" color: var(--xr-font-color2);\n", | |
"}\n", | |
"\n", | |
".xr-section-item input:enabled + label:hover {\n", | |
" color: var(--xr-font-color0);\n", | |
"}\n", | |
"\n", | |
".xr-section-summary {\n", | |
" grid-column: 1;\n", | |
" color: var(--xr-font-color2);\n", | |
" font-weight: 500;\n", | |
"}\n", | |
"\n", | |
".xr-section-summary > span {\n", | |
" display: inline-block;\n", | |
" padding-left: 0.5em;\n", | |
"}\n", | |
"\n", | |
".xr-section-summary-in:disabled + label {\n", | |
" color: var(--xr-font-color2);\n", | |
"}\n", | |
"\n", | |
".xr-section-summary-in + label:before {\n", | |
" display: inline-block;\n", | |
" content: '►';\n", | |
" font-size: 11px;\n", | |
" width: 15px;\n", | |
" text-align: center;\n", | |
"}\n", | |
"\n", | |
".xr-section-summary-in:disabled + label:before {\n", | |
" color: var(--xr-disabled-color);\n", | |
"}\n", | |
"\n", | |
".xr-section-summary-in:checked + label:before {\n", | |
" content: '▼';\n", | |
"}\n", | |
"\n", | |
".xr-section-summary-in:checked + label > span {\n", | |
" display: none;\n", | |
"}\n", | |
"\n", | |
".xr-section-summary,\n", | |
".xr-section-inline-details {\n", | |
" padding-top: 4px;\n", | |
" padding-bottom: 4px;\n", | |
"}\n", | |
"\n", | |
".xr-section-inline-details {\n", | |
" grid-column: 2 / -1;\n", | |
"}\n", | |
"\n", | |
".xr-section-details {\n", | |
" display: none;\n", | |
" grid-column: 1 / -1;\n", | |
" margin-bottom: 5px;\n", | |
"}\n", | |
"\n", | |
".xr-section-summary-in:checked ~ .xr-section-details {\n", | |
" display: contents;\n", | |
"}\n", | |
"\n", | |
".xr-array-wrap {\n", | |
" grid-column: 1 / -1;\n", | |
" display: grid;\n", | |
" grid-template-columns: 20px auto;\n", | |
"}\n", | |
"\n", | |
".xr-array-wrap > label {\n", | |
" grid-column: 1;\n", | |
" vertical-align: top;\n", | |
"}\n", | |
"\n", | |
".xr-preview {\n", | |
" color: var(--xr-font-color3);\n", | |
"}\n", | |
"\n", | |
".xr-array-preview,\n", | |
".xr-array-data {\n", | |
" padding: 0 5px !important;\n", | |
" grid-column: 2;\n", | |
"}\n", | |
"\n", | |
".xr-array-data,\n", | |
".xr-array-in:checked ~ .xr-array-preview {\n", | |
" display: none;\n", | |
"}\n", | |
"\n", | |
".xr-array-in:checked ~ .xr-array-data,\n", | |
".xr-array-preview {\n", | |
" display: inline-block;\n", | |
"}\n", | |
"\n", | |
".xr-dim-list {\n", | |
" display: inline-block !important;\n", | |
" list-style: none;\n", | |
" padding: 0 !important;\n", | |
" margin: 0;\n", | |
"}\n", | |
"\n", | |
".xr-dim-list li {\n", | |
" display: inline-block;\n", | |
" padding: 0;\n", | |
" margin: 0;\n", | |
"}\n", | |
"\n", | |
".xr-dim-list:before {\n", | |
" content: '(';\n", | |
"}\n", | |
"\n", | |
".xr-dim-list:after {\n", | |
" content: ')';\n", | |
"}\n", | |
"\n", | |
".xr-dim-list li:not(:last-child):after {\n", | |
" content: ',';\n", | |
" padding-right: 5px;\n", | |
"}\n", | |
"\n", | |
".xr-has-index {\n", | |
" font-weight: bold;\n", | |
"}\n", | |
"\n", | |
".xr-var-list,\n", | |
".xr-var-item {\n", | |
" display: contents;\n", | |
"}\n", | |
"\n", | |
".xr-var-item > div,\n", | |
".xr-var-item label,\n", | |
".xr-var-item > .xr-var-name span {\n", | |
" background-color: var(--xr-background-color-row-even);\n", | |
" margin-bottom: 0;\n", | |
"}\n", | |
"\n", | |
".xr-var-item > .xr-var-name:hover span {\n", | |
" padding-right: 5px;\n", | |
"}\n", | |
"\n", | |
".xr-var-list > li:nth-child(odd) > div,\n", | |
".xr-var-list > li:nth-child(odd) > label,\n", | |
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n", | |
" background-color: var(--xr-background-color-row-odd);\n", | |
"}\n", | |
"\n", | |
".xr-var-name {\n", | |
" grid-column: 1;\n", | |
"}\n", | |
"\n", | |
".xr-var-dims {\n", | |
" grid-column: 2;\n", | |
"}\n", | |
"\n", | |
".xr-var-dtype {\n", | |
" grid-column: 3;\n", | |
" text-align: right;\n", | |
" color: var(--xr-font-color2);\n", | |
"}\n", | |
"\n", | |
".xr-var-preview {\n", | |
" grid-column: 4;\n", | |
"}\n", | |
"\n", | |
".xr-var-name,\n", | |
".xr-var-dims,\n", | |
".xr-var-dtype,\n", | |
".xr-preview,\n", | |
".xr-attrs dt {\n", | |
" white-space: nowrap;\n", | |
" overflow: hidden;\n", | |
" text-overflow: ellipsis;\n", | |
" padding-right: 10px;\n", | |
"}\n", | |
"\n", | |
".xr-var-name:hover,\n", | |
".xr-var-dims:hover,\n", | |
".xr-var-dtype:hover,\n", | |
".xr-attrs dt:hover {\n", | |
" overflow: visible;\n", | |
" width: auto;\n", | |
" z-index: 1;\n", | |
"}\n", | |
"\n", | |
".xr-var-attrs,\n", | |
".xr-var-data {\n", | |
" display: none;\n", | |
" background-color: var(--xr-background-color) !important;\n", | |
" padding-bottom: 5px !important;\n", | |
"}\n", | |
"\n", | |
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n", | |
".xr-var-data-in:checked ~ .xr-var-data {\n", | |
" display: block;\n", | |
"}\n", | |
"\n", | |
".xr-var-data > table {\n", | |
" float: right;\n", | |
"}\n", | |
"\n", | |
".xr-var-name span,\n", | |
".xr-var-data,\n", | |
".xr-attrs {\n", | |
" padding-left: 25px !important;\n", | |
"}\n", | |
"\n", | |
".xr-attrs,\n", | |
".xr-var-attrs,\n", | |
".xr-var-data {\n", | |
" grid-column: 1 / -1;\n", | |
"}\n", | |
"\n", | |
"dl.xr-attrs {\n", | |
" padding: 0;\n", | |
" margin: 0;\n", | |
" display: grid;\n", | |
" grid-template-columns: 125px auto;\n", | |
"}\n", | |
"\n", | |
".xr-attrs dt,\n", | |
".xr-attrs dd {\n", | |
" padding: 0;\n", | |
" margin: 0;\n", | |
" float: left;\n", | |
" padding-right: 10px;\n", | |
" width: auto;\n", | |
"}\n", | |
"\n", | |
".xr-attrs dt {\n", | |
" font-weight: normal;\n", | |
" grid-column: 1;\n", | |
"}\n", | |
"\n", | |
".xr-attrs dt:hover span {\n", | |
" display: inline-block;\n", | |
" background: var(--xr-background-color);\n", | |
" padding-right: 10px;\n", | |
"}\n", | |
"\n", | |
".xr-attrs dd {\n", | |
" grid-column: 2;\n", | |
" white-space: pre-wrap;\n", | |
" word-break: break-all;\n", | |
"}\n", | |
"\n", | |
".xr-icon-database,\n", | |
".xr-icon-file-text2 {\n", | |
" display: inline-block;\n", | |
" vertical-align: middle;\n", | |
" width: 1em;\n", | |
" height: 1.5em !important;\n", | |
" stroke-width: 0;\n", | |
" stroke: currentColor;\n", | |
" fill: currentColor;\n", | |
"}\n", | |
"</style><pre class='xr-text-repr-fallback'><xarray.Dataset>\n", | |
"Dimensions: (dt_fore: 49, x: 31, y: 54)\n", | |
"Coordinates:\n", | |
" dt_calc datetime64[ns] ...\n", | |
" * dt_fore (dt_fore) float64 1.616e+18 ... 1.616e+18\n", | |
" lat (x, y) float64 dask.array<chunksize=(31, 54), meta=np.ndarray>\n", | |
" lon (x, y) float64 dask.array<chunksize=(31, 54), meta=np.ndarray>\n", | |
"Dimensions without coordinates: x, y\n", | |
"Data variables: (12/27)\n", | |
" air_temperature_2m (dt_fore, x, y) float16 dask.array<chunksize=(13, 16, 27), meta=np.ndarray>\n", | |
" air_temperature_500 (dt_fore, x, y) float16 dask.array<chunksize=(13, 16, 27), meta=np.ndarray>\n", | |
" air_temperature_850 (dt_fore, x, y) float16 dask.array<chunksize=(13, 16, 27), meta=np.ndarray>\n", | |
" dewpoint_2m (dt_fore, x, y) float16 dask.array<chunksize=(13, 16, 27), meta=np.ndarray>\n", | |
" geopotential_height_500 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" geopotential_height_850 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" ... ...\n", | |
" wind_direction_50 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_10 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_100 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_200 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_300 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_50 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray></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-749cbfd6-4c7a-48d0-a99a-ea26408f15f2' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-749cbfd6-4c7a-48d0-a99a-ea26408f15f2' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>dt_fore</span>: 49</li><li><span>x</span>: 31</li><li><span>y</span>: 54</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-90c9c617-f73a-4b11-865b-2e5143f72e87' class='xr-section-summary-in' type='checkbox' checked><label for='section-90c9c617-f73a-4b11-865b-2e5143f72e87' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>dt_calc</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4ec9af14-0f66-421d-8a97-3b9787dce697' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-4ec9af14-0f66-421d-8a97-3b9787dce697' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ddac5279-58f6-4a58-a373-1cc58c616939' class='xr-var-data-in' type='checkbox'><label for='data-ddac5279-58f6-4a58-a373-1cc58c616939' title='Show/Hide data 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('2021-03-20T18:00:00.000000000', dtype='datetime64[ns]')</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>dt_fore</span></div><div class='xr-var-dims'>(dt_fore)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>1.616e+18 1.616e+18 ... 1.616e+18</div><input id='attrs-c9a94a79-c347-4632-ab8a-154b9c9a2a90' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c9a94a79-c347-4632-ab8a-154b9c9a2a90' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-305677bd-5945-4d4a-b313-1fed31b1caeb' class='xr-var-data-in' type='checkbox'><label for='data-305677bd-5945-4d4a-b313-1fed31b1caeb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([1.616263e+18, 1.616267e+18, 1.616270e+18, 1.616274e+18, 1.616278e+18,\n", | |
" 1.616281e+18, 1.616285e+18, 1.616288e+18, 1.616292e+18, 1.616296e+18,\n", | |
" 1.616299e+18, 1.616303e+18, 1.616306e+18, 1.616310e+18, 1.616314e+18,\n", | |
" 1.616317e+18, 1.616321e+18, 1.616324e+18, 1.616328e+18, 1.616332e+18,\n", | |
" 1.616335e+18, 1.616339e+18, 1.616342e+18, 1.616346e+18, 1.616350e+18,\n", | |
" 1.616353e+18, 1.616357e+18, 1.616360e+18, 1.616364e+18, 1.616368e+18,\n", | |
" 1.616371e+18, 1.616375e+18, 1.616378e+18, 1.616382e+18, 1.616386e+18,\n", | |
" 1.616389e+18, 1.616393e+18, 1.616396e+18, 1.616400e+18, 1.616404e+18,\n", | |
" 1.616407e+18, 1.616411e+18, 1.616414e+18, 1.616418e+18, 1.616422e+18,\n", | |
" 1.616425e+18, 1.616429e+18, 1.616432e+18, 1.616436e+18])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lat</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(31, 54), meta=np.ndarray></div><input id='attrs-ea0fb1e5-0498-4834-85bd-561a50f430a6' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ea0fb1e5-0498-4834-85bd-561a50f430a6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cf9dc326-c795-443c-bc8f-b22a916afc94' class='xr-var-data-in' type='checkbox'><label for='data-cf9dc326-c795-443c-bc8f-b22a916afc94' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 13.08 kiB </td> <td> 13.08 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (31, 54) </td> <td> (31, 54) </td></tr>\n", | |
" <tr><th> Count </th><td> 2 Tasks </td><td> 1 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"170\" height=\"118\" 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=\"68\" x2=\"120\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,68.88888888888889 0.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"60.000000\" y=\"88.888889\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"140.000000\" y=\"34.444444\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,34.444444)\">31</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>lon</span></div><div class='xr-var-dims'>(x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(31, 54), meta=np.ndarray></div><input id='attrs-593670fc-29f8-4372-b68a-85029092d820' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-593670fc-29f8-4372-b68a-85029092d820' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2e8f94b7-9368-4200-b32c-02819872d8e9' class='xr-var-data-in' type='checkbox'><label for='data-2e8f94b7-9368-4200-b32c-02819872d8e9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 13.08 kiB </td> <td> 13.08 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (31, 54) </td> <td> (31, 54) </td></tr>\n", | |
" <tr><th> Count </th><td> 2 Tasks </td><td> 1 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"170\" height=\"118\" 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=\"68\" x2=\"120\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"120\" y1=\"0\" x2=\"120\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"0.0,0.0 120.0,0.0 120.0,68.88888888888889 0.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"60.000000\" y=\"88.888889\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"140.000000\" y=\"34.444444\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,140.000000,34.444444)\">31</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-50580616-912f-481f-8f98-837f9031f887' class='xr-section-summary-in' type='checkbox' ><label for='section-50580616-912f-481f-8f98-837f9031f887' class='xr-section-summary' >Data variables: <span>(27)</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>air_temperature_2m</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float16</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 16, 27), meta=np.ndarray></div><input id='attrs-d6f3c909-416e-4841-9afa-68c5641f036f' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-d6f3c909-416e-4841-9afa-68c5641f036f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0912a136-3b85-4733-88ac-ac876c6b026c' class='xr-var-data-in' type='checkbox'><label for='data-0912a136-3b85-4733-88ac-ac876c6b026c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 160.21 kiB </td> <td> 10.97 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 16, 27) </td></tr>\n", | |
" <tr><th> Count </th><td> 17 Tasks </td><td> 16 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float16 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"70\" y1=\"0\" x2=\"134\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"134\" y1=\"64\" x2=\"134\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>air_temperature_500</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float16</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 16, 27), meta=np.ndarray></div><input id='attrs-93e011ac-7971-46ea-ae3a-9dd5def04e9c' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-93e011ac-7971-46ea-ae3a-9dd5def04e9c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e7553f09-4cac-443a-b93a-b1d53608c32b' class='xr-var-data-in' type='checkbox'><label for='data-e7553f09-4cac-443a-b93a-b1d53608c32b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 160.21 kiB </td> <td> 10.97 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 16, 27) </td></tr>\n", | |
" <tr><th> Count </th><td> 17 Tasks </td><td> 16 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float16 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"70\" y1=\"0\" x2=\"134\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"134\" y1=\"64\" x2=\"134\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>air_temperature_850</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float16</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 16, 27), meta=np.ndarray></div><input id='attrs-386cbfbc-a03b-4807-b399-5ce13afc3059' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-386cbfbc-a03b-4807-b399-5ce13afc3059' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-13382a0c-0f43-4284-8d8b-5ff3d8e75f63' class='xr-var-data-in' type='checkbox'><label for='data-13382a0c-0f43-4284-8d8b-5ff3d8e75f63' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 160.21 kiB </td> <td> 10.97 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 16, 27) </td></tr>\n", | |
" <tr><th> Count </th><td> 17 Tasks </td><td> 16 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float16 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"70\" y1=\"0\" x2=\"134\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"134\" y1=\"64\" x2=\"134\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>dewpoint_2m</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float16</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 16, 27), meta=np.ndarray></div><input id='attrs-8398c267-3792-4fd9-b81d-9c6709c26718' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8398c267-3792-4fd9-b81d-9c6709c26718' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c9bf3db7-ab6c-4f72-8517-b41e561ca146' class='xr-var-data-in' type='checkbox'><label for='data-c9bf3db7-ab6c-4f72-8517-b41e561ca146' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 160.21 kiB </td> <td> 10.97 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 16, 27) </td></tr>\n", | |
" <tr><th> Count </th><td> 17 Tasks </td><td> 16 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float16 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"70\" y1=\"0\" x2=\"134\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"134\" y1=\"64\" x2=\"134\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>geopotential_height_500</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-8b71247f-25fa-47a2-b77b-a95c8bfd1ffc' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8b71247f-25fa-47a2-b77b-a95c8bfd1ffc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-478fbf54-b2d2-4689-be59-aa3f243ab8b3' class='xr-var-data-in' type='checkbox'><label for='data-478fbf54-b2d2-4689-be59-aa3f243ab8b3' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>geopotential_height_850</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-39c1d09d-7bb8-4f72-95e7-86016cf8134a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-39c1d09d-7bb8-4f72-95e7-86016cf8134a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-578dcf59-efe7-433d-90d3-949285821faa' class='xr-var-data-in' type='checkbox'><label for='data-578dcf59-efe7-433d-90d3-949285821faa' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>global_horizontal_irradiance</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-541b9a49-3b65-4afe-bb16-c9db23a134e2' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-541b9a49-3b65-4afe-bb16-c9db23a134e2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4c000d7c-b2d4-4655-9190-a76459030700' class='xr-var-data-in' type='checkbox'><label for='data-4c000d7c-b2d4-4655-9190-a76459030700' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>high_level_clouds</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-fb7c2991-ae8e-4a34-9b67-b25d434541a8' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-fb7c2991-ae8e-4a34-9b67-b25d434541a8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bf8d0385-ab44-493d-983e-edc7cdde8394' class='xr-var-data-in' type='checkbox'><label for='data-bf8d0385-ab44-493d-983e-edc7cdde8394' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>low_level_clouds</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-9322d674-36ca-44e2-9362-7987142bb803' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-9322d674-36ca-44e2-9362-7987142bb803' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-423b207d-4564-47d2-a242-9ae65b7be558' class='xr-var-data-in' type='checkbox'><label for='data-423b207d-4564-47d2-a242-9ae65b7be558' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>max_wind_gust_10m</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-ce497724-7cf3-4815-b907-e0651deb3059' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ce497724-7cf3-4815-b907-e0651deb3059' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e5d0da5a-e87b-4776-81ab-f266a38b8be0' class='xr-var-data-in' type='checkbox'><label for='data-e5d0da5a-e87b-4776-81ab-f266a38b8be0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>medium_level_clouds</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-eff44d54-cd76-4deb-9ac8-28def6259401' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-eff44d54-cd76-4deb-9ac8-28def6259401' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ad0feb19-a2a0-4474-a375-53ca2a2e3471' class='xr-var-data-in' type='checkbox'><label for='data-ad0feb19-a2a0-4474-a375-53ca2a2e3471' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pressure_mean_sea_level</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-57212bfa-351d-462a-b42e-008842fb0466' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-57212bfa-351d-462a-b42e-008842fb0466' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-17664e01-e6f8-42cc-8ccf-70748a500a76' class='xr-var-data-in' type='checkbox'><label for='data-17664e01-e6f8-42cc-8ccf-70748a500a76' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>relative_humidity_2m</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-088bfef6-60c8-43b1-a456-36fa9eef4358' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-088bfef6-60c8-43b1-a456-36fa9eef4358' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4ca00d6e-9525-4ae3-99a0-f50b94a13301' class='xr-var-data-in' type='checkbox'><label for='data-4ca00d6e-9525-4ae3-99a0-f50b94a13301' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>snow_depth</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float16</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 16, 27), meta=np.ndarray></div><input id='attrs-3e455969-f054-4afd-96b2-235e99b5a6c0' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-3e455969-f054-4afd-96b2-235e99b5a6c0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cb36d1cc-f200-4d52-baea-b81733ecb29e' class='xr-var-data-in' type='checkbox'><label for='data-cb36d1cc-f200-4d52-baea-b81733ecb29e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 160.21 kiB </td> <td> 10.97 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 16, 27) </td></tr>\n", | |
" <tr><th> Count </th><td> 17 Tasks </td><td> 16 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float16 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"70\" y1=\"0\" x2=\"134\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"134\" y1=\"64\" x2=\"134\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>surface_temperature</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float16</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 16, 27), meta=np.ndarray></div><input id='attrs-902410f1-4b75-4acb-a743-4743c84d473a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-902410f1-4b75-4acb-a743-4743c84d473a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1cd17c48-ac23-4b95-9d3e-c92c26b7aa2a' class='xr-var-data-in' type='checkbox'><label for='data-1cd17c48-ac23-4b95-9d3e-c92c26b7aa2a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 160.21 kiB </td> <td> 10.97 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 16, 27) </td></tr>\n", | |
" <tr><th> Count </th><td> 17 Tasks </td><td> 16 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float16 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"70\" y1=\"0\" x2=\"134\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"134\" y1=\"64\" x2=\"134\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>total_cloud_cover</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-1ae39ed1-3a11-46e0-a7e7-872240b1f749' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-1ae39ed1-3a11-46e0-a7e7-872240b1f749' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1d5f352d-caad-47db-9a5a-b2119ba47648' class='xr-var-data-in' type='checkbox'><label for='data-1d5f352d-caad-47db-9a5a-b2119ba47648' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>total_precipitation</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float16</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 16, 27), meta=np.ndarray></div><input id='attrs-34053087-8245-48a0-8d72-552365ffad13' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-34053087-8245-48a0-8d72-552365ffad13' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a5314db0-b747-4c36-9734-5130a0c10e6c' class='xr-var-data-in' type='checkbox'><label for='data-a5314db0-b747-4c36-9734-5130a0c10e6c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 160.21 kiB </td> <td> 10.97 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 16, 27) </td></tr>\n", | |
" <tr><th> Count </th><td> 17 Tasks </td><td> 16 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float16 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"70\" y1=\"0\" x2=\"134\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"134\" y1=\"64\" x2=\"134\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_direction_10</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-ec6f67f8-28a8-42b2-bbbc-c8c62d355d44' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ec6f67f8-28a8-42b2-bbbc-c8c62d355d44' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-38404db4-3ba9-4f47-89b3-9e0851e9dfee' class='xr-var-data-in' type='checkbox'><label for='data-38404db4-3ba9-4f47-89b3-9e0851e9dfee' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_direction_100</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-6b30124b-4137-4b78-81ba-fb825a822af3' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-6b30124b-4137-4b78-81ba-fb825a822af3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7cc19b49-407b-4d22-9b27-e7222e10448d' class='xr-var-data-in' type='checkbox'><label for='data-7cc19b49-407b-4d22-9b27-e7222e10448d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_direction_200</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-47587ead-748f-4f5d-83a5-4706d70dfc95' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-47587ead-748f-4f5d-83a5-4706d70dfc95' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3fef5f14-1340-48bb-aa85-27b088106cf7' class='xr-var-data-in' type='checkbox'><label for='data-3fef5f14-1340-48bb-aa85-27b088106cf7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_direction_300</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-a93f5722-0a89-4d0a-b7a8-15ab5a9fe8c4' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-a93f5722-0a89-4d0a-b7a8-15ab5a9fe8c4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9a0013dc-143f-4172-9407-128d845a899b' class='xr-var-data-in' type='checkbox'><label for='data-9a0013dc-143f-4172-9407-128d845a899b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_direction_50</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-b3545fda-3ed7-43b2-883e-3c833c42b051' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-b3545fda-3ed7-43b2-883e-3c833c42b051' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2a1fc509-1baa-484b-9b88-15ee19eae3a8' class='xr-var-data-in' type='checkbox'><label for='data-2a1fc509-1baa-484b-9b88-15ee19eae3a8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_speed_10</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-eb6b9a7e-101b-4dfd-b37a-737e179e677e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-eb6b9a7e-101b-4dfd-b37a-737e179e677e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-71ef348d-3998-4561-b996-5030b40be91f' class='xr-var-data-in' type='checkbox'><label for='data-71ef348d-3998-4561-b996-5030b40be91f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_speed_100</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-dfbf0f4e-ef54-4a13-870f-c176390298f4' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-dfbf0f4e-ef54-4a13-870f-c176390298f4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-96821e41-20ec-413b-bca6-64e3c6c8cc04' class='xr-var-data-in' type='checkbox'><label for='data-96821e41-20ec-413b-bca6-64e3c6c8cc04' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_speed_200</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-8e618412-132f-431c-ab66-ddda6befcabd' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8e618412-132f-431c-ab66-ddda6befcabd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-67885442-8497-4d34-8526-e1b47fa4f46e' class='xr-var-data-in' type='checkbox'><label for='data-67885442-8497-4d34-8526-e1b47fa4f46e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_speed_300</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-b19dfb31-2327-426d-a0eb-3f4932f50834' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-b19dfb31-2327-426d-a0eb-3f4932f50834' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-69c7f923-7a17-4bf6-8732-6109ad3b4054' class='xr-var-data-in' type='checkbox'><label for='data-69c7f923-7a17-4bf6-8732-6109ad3b4054' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_speed_50</span></div><div class='xr-var-dims'>(dt_fore, x, y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(13, 8, 14), meta=np.ndarray></div><input id='attrs-f3d8acb9-ac47-4977-b9ba-ceeb8c1e8ba4' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-f3d8acb9-ac47-4977-b9ba-ceeb8c1e8ba4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-11cad10f-4167-4ca5-8a68-a97d629c66be' class='xr-var-data-in' type='checkbox'><label for='data-11cad10f-4167-4ca5-8a68-a97d629c66be' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n", | |
"<tr>\n", | |
"<td>\n", | |
"<table>\n", | |
" <thead>\n", | |
" <tr><td> </td><th> Array </th><th> Chunk </th></tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr><th> Bytes </th><td> 640.83 kiB </td> <td> 11.38 kiB </td></tr>\n", | |
" <tr><th> Shape </th><td> (49, 31, 54) </td> <td> (13, 8, 14) </td></tr>\n", | |
" <tr><th> Count </th><td> 65 Tasks </td><td> 64 Chunks </td></tr>\n", | |
" <tr><th> Type </th><td> float64 </td><td> numpy.ndarray </td></tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</td>\n", | |
"<td>\n", | |
"<svg width=\"244\" height=\"182\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"10\" y1=\"17\" x2=\"74\" y2=\"81\" />\n", | |
" <line x1=\"10\" y1=\"35\" x2=\"74\" y2=\"99\" />\n", | |
" <line x1=\"10\" y1=\"53\" x2=\"74\" y2=\"117\" />\n", | |
" <line x1=\"10\" y1=\"68\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"68\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"85\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"102\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"60\" y2=\"119\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 74.05228758169935,64.05228758169935 74.05228758169935,132.94117647058823 10.0,68.88888888888889\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" />\n", | |
" <line x1=\"43\" y1=\"33\" x2=\"163\" y2=\"33\" />\n", | |
" <line x1=\"60\" y1=\"50\" x2=\"180\" y2=\"50\" />\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"10\" y1=\"0\" x2=\"74\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"41\" y1=\"0\" x2=\"105\" y2=\"64\" />\n", | |
" <line x1=\"72\" y1=\"0\" x2=\"136\" y2=\"64\" />\n", | |
" <line x1=\"103\" y1=\"0\" x2=\"167\" y2=\"64\" />\n", | |
" <line x1=\"130\" y1=\"0\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"10.0,0.0 130.0,0.0 194.05228758169935,64.05228758169935 74.05228758169935,64.05228758169935\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Horizontal lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"194\" y2=\"64\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"74\" y1=\"81\" x2=\"194\" y2=\"81\" />\n", | |
" <line x1=\"74\" y1=\"99\" x2=\"194\" y2=\"99\" />\n", | |
" <line x1=\"74\" y1=\"117\" x2=\"194\" y2=\"117\" />\n", | |
" <line x1=\"74\" y1=\"132\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Vertical lines -->\n", | |
" <line x1=\"74\" y1=\"64\" x2=\"74\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
" <line x1=\"105\" y1=\"64\" x2=\"105\" y2=\"132\" />\n", | |
" <line x1=\"136\" y1=\"64\" x2=\"136\" y2=\"132\" />\n", | |
" <line x1=\"167\" y1=\"64\" x2=\"167\" y2=\"132\" />\n", | |
" <line x1=\"194\" y1=\"64\" x2=\"194\" y2=\"132\" style=\"stroke-width:2\" />\n", | |
"\n", | |
" <!-- Colored Rectangle -->\n", | |
" <polygon points=\"74.05228758169935,64.05228758169935 194.05228758169935,64.05228758169935 194.05228758169935,132.94117647058823 74.05228758169935,132.94117647058823\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n", | |
"\n", | |
" <!-- Text -->\n", | |
" <text x=\"134.052288\" y=\"152.941176\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >54</text>\n", | |
" <text x=\"214.052288\" y=\"98.496732\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(0,214.052288,98.496732)\">31</text>\n", | |
" <text x=\"32.026144\" y=\"120.915033\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,32.026144,120.915033)\">49</text>\n", | |
"</svg>\n", | |
"</td>\n", | |
"</tr>\n", | |
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-e8ab383e-4581-4c85-b40b-5717d8b65056' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-e8ab383e-4581-4c85-b40b-5717d8b65056' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div>" | |
], | |
"text/plain": [ | |
"<xarray.Dataset>\n", | |
"Dimensions: (dt_fore: 49, x: 31, y: 54)\n", | |
"Coordinates:\n", | |
" dt_calc datetime64[ns] ...\n", | |
" * dt_fore (dt_fore) float64 1.616e+18 ... 1.616e+18\n", | |
" lat (x, y) float64 dask.array<chunksize=(31, 54), meta=np.ndarray>\n", | |
" lon (x, y) float64 dask.array<chunksize=(31, 54), meta=np.ndarray>\n", | |
"Dimensions without coordinates: x, y\n", | |
"Data variables: (12/27)\n", | |
" air_temperature_2m (dt_fore, x, y) float16 dask.array<chunksize=(13, 16, 27), meta=np.ndarray>\n", | |
" air_temperature_500 (dt_fore, x, y) float16 dask.array<chunksize=(13, 16, 27), meta=np.ndarray>\n", | |
" air_temperature_850 (dt_fore, x, y) float16 dask.array<chunksize=(13, 16, 27), meta=np.ndarray>\n", | |
" dewpoint_2m (dt_fore, x, y) float16 dask.array<chunksize=(13, 16, 27), meta=np.ndarray>\n", | |
" geopotential_height_500 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" geopotential_height_850 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" ... ...\n", | |
" wind_direction_50 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_10 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_100 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_200 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_300 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>\n", | |
" wind_speed_50 (dt_fore, x, y) float64 dask.array<chunksize=(13, 8, 14), meta=np.ndarray>" | |
] | |
}, | |
"execution_count": 13, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"rpath = json_list[0]\n", | |
"fs3 = fsspec.filesystem(\"reference\", fo=rpath)\n", | |
"\n", | |
"m = fs3.get_mapper(\"\")\n", | |
"ds = xr.open_dataset(m, engine=\"zarr\",chunks={}, backend_kwargs={'consolidated':False})\n", | |
"\n", | |
"ds" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "default-pangeo", | |
"language": "python", | |
"name": "conda-env-default-pangeo-py" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 3 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython3", | |
"version": "3.9.12" | |
}, | |
"widgets": { | |
"application/vnd.jupyter.widget-state+json": { | |
"state": {}, | |
"version_major": 2, | |
"version_minor": 0 | |
} | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 5 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment