Skip to content

Instantly share code, notes, and snippets.

@rsignell
Created January 23, 2026 18:20
Show Gist options
  • Select an option

  • Save rsignell/3e3d39399152a230d51d8297f8bfcbcc to your computer and use it in GitHub Desktop.

Select an option

Save rsignell/3e3d39399152a230d51d8297f8bfcbcc to your computer and use it in GitHub Desktop.
noaa-hrrr-gfs-analysis-compare.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "f5fda874",
"metadata": {},
"source": [
"# Quickstart: Compare NOAA HRRR and GFS analysis at a point - dynamical.org \n",
"\n",
"Dataset documentation: \n",
"* https://dynamical.org/catalog/noaa-hrrr-analysis/\n",
"* https://dynamical.org/catalog/noaa-gfs-analysis-hourly/"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "1",
"metadata": {},
"outputs": [],
"source": [
"# If running locally, follow README.md for simple dependency installation.\n",
"# If using Google Colab, run this cell and then restart the notebook.\n",
"#%pip install \"xarray[complete]>=2025.1.2\" \"zarr>=3.0.8\" icechunk rioxarray pyproj hvplot \n",
"# rioxarray and pyproj are used here for working with map projections\n",
"# hvplot for interactive visualization"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "869adb81-a44a-4cb1-8c93-d0e1d2b632df",
"metadata": {},
"outputs": [],
"source": [
"# 180 County Rd, Bourne, MA\n",
"lon_point = -70.603846\n",
"lat_point = 41.729479 \n",
"start = \"2020-08-01\"\n",
"stop = \"2020-08-30\""
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "2",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"<script type=\"esms-options\">{\"shimMode\": true}</script><style>*[data-root-id],\n",
"*[data-root-id] > * {\n",
" box-sizing: border-box;\n",
" font-family: var(--jp-ui-font-family);\n",
" font-size: var(--jp-ui-font-size1);\n",
" color: var(--vscode-editor-foreground, var(--jp-ui-font-color1));\n",
"}\n",
"\n",
"/* Override VSCode background color */\n",
".cell-output-ipywidget-background:has(\n",
" > .cell-output-ipywidget-background > .lm-Widget > *[data-root-id]\n",
"),\n",
".cell-output-ipywidget-background:has(> .lm-Widget > *[data-root-id]) {\n",
" background-color: transparent !important;\n",
"}\n",
"</style>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/javascript": [
"(function(root) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
"\n",
" const force = true;\n",
" const py_version = '3.7.3'.replace('rc', '-rc.').replace('.dev', '-dev.');\n",
" const reloading = false;\n",
" const Bokeh = root.Bokeh;\n",
"\n",
" // Set a timeout for this load but only if we are not already initializing\n",
" if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n",
" root._bokeh_timeout = Date.now() + 5000;\n",
" root._bokeh_failed_load = false;\n",
" }\n",
"\n",
" function run_callbacks() {\n",
" try {\n",
" root._bokeh_onload_callbacks.forEach(function(callback) {\n",
" if (callback != null)\n",
" callback();\n",
" });\n",
" } finally {\n",
" delete root._bokeh_onload_callbacks;\n",
" }\n",
" console.debug(\"Bokeh: all callbacks have finished\");\n",
" }\n",
"\n",
" function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n",
" if (css_urls == null) css_urls = [];\n",
" if (js_urls == null) js_urls = [];\n",
" if (js_modules == null) js_modules = [];\n",
" if (js_exports == null) js_exports = {};\n",
"\n",
" root._bokeh_onload_callbacks.push(callback);\n",
"\n",
" if (root._bokeh_is_loading > 0) {\n",
" // Don't load bokeh if it is still initializing\n",
" console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n",
" // There is nothing to load\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
"\n",
" function on_load() {\n",
" root._bokeh_is_loading--;\n",
" if (root._bokeh_is_loading === 0) {\n",
" console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
" run_callbacks()\n",
" }\n",
" }\n",
" window._bokeh_on_load = on_load\n",
"\n",
" function on_error(e) {\n",
" const src_el = e.srcElement\n",
" console.error(\"failed to load \" + (src_el.href || src_el.src));\n",
" }\n",
"\n",
" const skip = [];\n",
" if (window.requirejs) {\n",
" window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n",
" root._bokeh_is_loading = css_urls.length + 0;\n",
" } else {\n",
" root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n",
" }\n",
"\n",
" const existing_stylesheets = []\n",
" const links = document.getElementsByTagName('link')\n",
" for (let i = 0; i < links.length; i++) {\n",
" const link = links[i]\n",
" if (link.href != null) {\n",
" existing_stylesheets.push(link.href)\n",
" }\n",
" }\n",
" for (let i = 0; i < css_urls.length; i++) {\n",
" const url = css_urls[i];\n",
" const escaped = encodeURI(url)\n",
" if (existing_stylesheets.indexOf(escaped) !== -1) {\n",
" on_load()\n",
" continue;\n",
" }\n",
" const element = document.createElement(\"link\");\n",
" element.onload = on_load;\n",
" element.onerror = on_error;\n",
" element.rel = \"stylesheet\";\n",
" element.type = \"text/css\";\n",
" element.href = url;\n",
" console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
" document.body.appendChild(element);\n",
" } var existing_scripts = []\n",
" const scripts = document.getElementsByTagName('script')\n",
" for (let i = 0; i < scripts.length; i++) {\n",
" var script = scripts[i]\n",
" if (script.src != null) {\n",
" existing_scripts.push(script.src)\n",
" }\n",
" }\n",
" for (let i = 0; i < js_urls.length; i++) {\n",
" const url = js_urls[i];\n",
" const escaped = encodeURI(url)\n",
" if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n",
" if (!window.requirejs) {\n",
" on_load();\n",
" }\n",
" continue;\n",
" }\n",
" const element = document.createElement('script');\n",
" element.onload = on_load;\n",
" element.onerror = on_error;\n",
" element.async = false;\n",
" element.src = url;\n",
" console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.head.appendChild(element);\n",
" }\n",
" for (let i = 0; i < js_modules.length; i++) {\n",
" const url = js_modules[i];\n",
" const escaped = encodeURI(url)\n",
" if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n",
" if (!window.requirejs) {\n",
" on_load();\n",
" }\n",
" continue;\n",
" }\n",
" var element = document.createElement('script');\n",
" element.onload = on_load;\n",
" element.onerror = on_error;\n",
" element.async = false;\n",
" element.src = url;\n",
" element.type = \"module\";\n",
" console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.head.appendChild(element);\n",
" }\n",
" for (const name in js_exports) {\n",
" const url = js_exports[name];\n",
" const escaped = encodeURI(url)\n",
" if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n",
" if (!window.requirejs) {\n",
" on_load();\n",
" }\n",
" continue;\n",
" }\n",
" var element = document.createElement('script');\n",
" element.onerror = on_error;\n",
" element.async = false;\n",
" element.type = \"module\";\n",
" console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" element.textContent = `\n",
" import ${name} from \"${url}\"\n",
" window.${name} = ${name}\n",
" window._bokeh_on_load()\n",
" `\n",
" document.head.appendChild(element);\n",
" }\n",
" if (!js_urls.length && !js_modules.length) {\n",
" on_load()\n",
" }\n",
" };\n",
"\n",
" function inject_raw_css(css) {\n",
" const element = document.createElement(\"style\");\n",
" element.appendChild(document.createTextNode(css));\n",
" document.body.appendChild(element);\n",
" }\n",
"\n",
" const js_urls = [\"https://cdn.holoviz.org/panel/1.7.5/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.7.3.min.js\", \"https://cdn.holoviz.org/panel/1.7.5/dist/panel.min.js\"];\n",
" const js_modules = [];\n",
" const js_exports = {};\n",
" const css_urls = [];\n",
" const inline_js = [ function(Bokeh) {\n",
" Bokeh.set_log_level(\"info\");\n",
" },\n",
"function(Bokeh) {} // ensure no trailing comma for IE\n",
" ];\n",
"\n",
" function run_inline_js() {\n",
" if ((root.Bokeh !== undefined) || (force === true)) {\n",
" for (let i = 0; i < inline_js.length; i++) {\n",
" try {\n",
" inline_js[i].call(root, root.Bokeh);\n",
" } catch(e) {\n",
" if (!reloading) {\n",
" throw e;\n",
" }\n",
" }\n",
" }\n",
" // Cache old bokeh versions\n",
" if (Bokeh != undefined && !reloading) {\n",
" var NewBokeh = root.Bokeh;\n",
" if (Bokeh.versions === undefined) {\n",
" Bokeh.versions = new Map();\n",
" }\n",
" if (NewBokeh.version !== Bokeh.version) {\n",
" Bokeh.versions.set(NewBokeh.version, NewBokeh)\n",
" }\n",
" root.Bokeh = Bokeh;\n",
" }\n",
" } else if (Date.now() < root._bokeh_timeout) {\n",
" setTimeout(run_inline_js, 100);\n",
" } else if (!root._bokeh_failed_load) {\n",
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
" root._bokeh_failed_load = true;\n",
" }\n",
" root._bokeh_is_initializing = false\n",
" }\n",
"\n",
" function load_or_wait() {\n",
" // Implement a backoff loop that tries to ensure we do not load multiple\n",
" // versions of Bokeh and its dependencies at the same time.\n",
" // In recent versions we use the root._bokeh_is_initializing flag\n",
" // to determine whether there is an ongoing attempt to initialize\n",
" // bokeh, however for backward compatibility we also try to ensure\n",
" // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n",
" // before older versions are fully initialized.\n",
" if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n",
" // If the timeout and bokeh was not successfully loaded we reset\n",
" // everything and try loading again\n",
" root._bokeh_timeout = Date.now() + 5000;\n",
" root._bokeh_is_initializing = false;\n",
" root._bokeh_onload_callbacks = undefined;\n",
" root._bokeh_is_loading = 0\n",
" console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n",
" load_or_wait();\n",
" } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n",
" setTimeout(load_or_wait, 100);\n",
" } else {\n",
" root._bokeh_is_initializing = true\n",
" root._bokeh_onload_callbacks = []\n",
" const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n",
" if (!reloading && !bokeh_loaded) {\n",
" if (root.Bokeh) {\n",
" root.Bokeh = undefined;\n",
" }\n",
" console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" }\n",
" load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n",
" console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }\n",
" // Give older versions of the autoload script a head-start to ensure\n",
" // they initialize before we start loading newer version.\n",
" setTimeout(load_or_wait, 100)\n",
"}(window));"
],
"application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n const py_version = '3.7.3'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = false;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.7.5/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.7.3.min.js\", \"https://cdn.holoviz.org/panel/1.7.5/dist/panel.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));"
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/javascript": [
"\n",
"if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n",
" window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n",
"}\n",
"\n",
"\n",
" function JupyterCommManager() {\n",
" }\n",
"\n",
" JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n",
" if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
" var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
" comm_manager.register_target(comm_id, function(comm) {\n",
" comm.on_msg(msg_handler);\n",
" });\n",
" } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
" window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n",
" comm.onMsg = msg_handler;\n",
" });\n",
" } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
" google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n",
" var messages = comm.messages[Symbol.asyncIterator]();\n",
" function processIteratorResult(result) {\n",
" var message = result.value;\n",
" var content = {data: message.data, comm_id};\n",
" var buffers = []\n",
" for (var buffer of message.buffers || []) {\n",
" buffers.push(new DataView(buffer))\n",
" }\n",
" var metadata = message.metadata || {};\n",
" var msg = {content, buffers, metadata}\n",
" msg_handler(msg);\n",
" return messages.next().then(processIteratorResult);\n",
" }\n",
" return messages.next().then(processIteratorResult);\n",
" })\n",
" }\n",
" }\n",
"\n",
" JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n",
" if (comm_id in window.PyViz.comms) {\n",
" return window.PyViz.comms[comm_id];\n",
" } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
" var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
" var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n",
" if (msg_handler) {\n",
" comm.on_msg(msg_handler);\n",
" }\n",
" } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
" var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n",
" let retries = 0;\n",
" const open = () => {\n",
" if (comm.active) {\n",
" comm.open();\n",
" } else if (retries > 3) {\n",
" console.warn('Comm target never activated')\n",
" } else {\n",
" retries += 1\n",
" setTimeout(open, 500)\n",
" }\n",
" }\n",
" if (comm.active) {\n",
" comm.open();\n",
" } else {\n",
" setTimeout(open, 500)\n",
" }\n",
" if (msg_handler) {\n",
" comm.onMsg = msg_handler;\n",
" }\n",
" } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
" var comm_promise = google.colab.kernel.comms.open(comm_id)\n",
" comm_promise.then((comm) => {\n",
" window.PyViz.comms[comm_id] = comm;\n",
" if (msg_handler) {\n",
" var messages = comm.messages[Symbol.asyncIterator]();\n",
" function processIteratorResult(result) {\n",
" var message = result.value;\n",
" var content = {data: message.data};\n",
" var metadata = message.metadata || {comm_id};\n",
" var msg = {content, metadata}\n",
" msg_handler(msg);\n",
" return messages.next().then(processIteratorResult);\n",
" }\n",
" return messages.next().then(processIteratorResult);\n",
" }\n",
" })\n",
" var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n",
" return comm_promise.then((comm) => {\n",
" comm.send(data, metadata, buffers, disposeOnDone);\n",
" });\n",
" };\n",
" var comm = {\n",
" send: sendClosure\n",
" };\n",
" }\n",
" window.PyViz.comms[comm_id] = comm;\n",
" return comm;\n",
" }\n",
" window.PyViz.comm_manager = new JupyterCommManager();\n",
" \n",
"\n",
"\n",
"var JS_MIME_TYPE = 'application/javascript';\n",
"var HTML_MIME_TYPE = 'text/html';\n",
"var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n",
"var CLASS_NAME = 'output';\n",
"\n",
"/**\n",
" * Render data to the DOM node\n",
" */\n",
"function render(props, node) {\n",
" var div = document.createElement(\"div\");\n",
" var script = document.createElement(\"script\");\n",
" node.appendChild(div);\n",
" node.appendChild(script);\n",
"}\n",
"\n",
"/**\n",
" * Handle when a new output is added\n",
" */\n",
"function handle_add_output(event, handle) {\n",
" var output_area = handle.output_area;\n",
" var output = handle.output;\n",
" if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n",
" return\n",
" }\n",
" var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
" var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
" if (id !== undefined) {\n",
" var nchildren = toinsert.length;\n",
" var html_node = toinsert[nchildren-1].children[0];\n",
" html_node.innerHTML = output.data[HTML_MIME_TYPE];\n",
" var scripts = [];\n",
" var nodelist = html_node.querySelectorAll(\"script\");\n",
" for (var i in nodelist) {\n",
" if (nodelist.hasOwnProperty(i)) {\n",
" scripts.push(nodelist[i])\n",
" }\n",
" }\n",
"\n",
" scripts.forEach( function (oldScript) {\n",
" var newScript = document.createElement(\"script\");\n",
" var attrs = [];\n",
" var nodemap = oldScript.attributes;\n",
" for (var j in nodemap) {\n",
" if (nodemap.hasOwnProperty(j)) {\n",
" attrs.push(nodemap[j])\n",
" }\n",
" }\n",
" attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n",
" newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n",
" oldScript.parentNode.replaceChild(newScript, oldScript);\n",
" });\n",
" if (JS_MIME_TYPE in output.data) {\n",
" toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n",
" }\n",
" output_area._hv_plot_id = id;\n",
" if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n",
" window.PyViz.plot_index[id] = Bokeh.index[id];\n",
" } else {\n",
" window.PyViz.plot_index[id] = null;\n",
" }\n",
" } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
" var bk_div = document.createElement(\"div\");\n",
" bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
" var script_attrs = bk_div.children[0].attributes;\n",
" for (var i = 0; i < script_attrs.length; i++) {\n",
" toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
" }\n",
" // store reference to server id on output_area\n",
" output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
" }\n",
"}\n",
"\n",
"/**\n",
" * Handle when an output is cleared or removed\n",
" */\n",
"function handle_clear_output(event, handle) {\n",
" var id = handle.cell.output_area._hv_plot_id;\n",
" var server_id = handle.cell.output_area._bokeh_server_id;\n",
" if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n",
" var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n",
" if (server_id !== null) {\n",
" comm.send({event_type: 'server_delete', 'id': server_id});\n",
" return;\n",
" } else if (comm !== null) {\n",
" comm.send({event_type: 'delete', 'id': id});\n",
" }\n",
" delete PyViz.plot_index[id];\n",
" if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n",
" var doc = window.Bokeh.index[id].model.document\n",
" doc.clear();\n",
" const i = window.Bokeh.documents.indexOf(doc);\n",
" if (i > -1) {\n",
" window.Bokeh.documents.splice(i, 1);\n",
" }\n",
" }\n",
"}\n",
"\n",
"/**\n",
" * Handle kernel restart event\n",
" */\n",
"function handle_kernel_cleanup(event, handle) {\n",
" delete PyViz.comms[\"hv-extension-comm\"];\n",
" window.PyViz.plot_index = {}\n",
"}\n",
"\n",
"/**\n",
" * Handle update_display_data messages\n",
" */\n",
"function handle_update_output(event, handle) {\n",
" handle_clear_output(event, {cell: {output_area: handle.output_area}})\n",
" handle_add_output(event, handle)\n",
"}\n",
"\n",
"function register_renderer(events, OutputArea) {\n",
" function append_mime(data, metadata, element) {\n",
" // create a DOM node to render to\n",
" var toinsert = this.create_output_subarea(\n",
" metadata,\n",
" CLASS_NAME,\n",
" EXEC_MIME_TYPE\n",
" );\n",
" this.keyboard_manager.register_events(toinsert);\n",
" // Render to node\n",
" var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
" render(props, toinsert[0]);\n",
" element.append(toinsert);\n",
" return toinsert\n",
" }\n",
"\n",
" events.on('output_added.OutputArea', handle_add_output);\n",
" events.on('output_updated.OutputArea', handle_update_output);\n",
" events.on('clear_output.CodeCell', handle_clear_output);\n",
" events.on('delete.Cell', handle_clear_output);\n",
" events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n",
"\n",
" OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
" safe: true,\n",
" index: 0\n",
" });\n",
"}\n",
"\n",
"if (window.Jupyter !== undefined) {\n",
" try {\n",
" var events = require('base/js/events');\n",
" var OutputArea = require('notebook/js/outputarea').OutputArea;\n",
" if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
" register_renderer(events, OutputArea);\n",
" }\n",
" } catch(err) {\n",
" }\n",
"}\n"
],
"application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n let retries = 0;\n const open = () => {\n if (comm.active) {\n comm.open();\n } else if (retries > 3) {\n console.warn('Comm target never activated')\n } else {\n retries += 1\n setTimeout(open, 500)\n }\n }\n if (comm.active) {\n comm.open();\n } else {\n setTimeout(open, 500)\n }\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n })\n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n"
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.holoviews_exec.v0+json": "",
"text/html": [
"<div id='3dc93c62-fd2f-4a17-93b6-fcf536e9d93d'>\n",
" <div id=\"eab4c5d9-8403-4588-9c36-7c87f7b7c015\" data-root-id=\"3dc93c62-fd2f-4a17-93b6-fcf536e9d93d\" style=\"display: contents;\"></div>\n",
"</div>\n",
"<script type=\"application/javascript\">(function(root) {\n",
" var docs_json = {\"53f2bb3a-e720-4d3f-afa0-33ace0462364\":{\"version\":\"3.7.3\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"panel.models.browser.BrowserInfo\",\"id\":\"3dc93c62-fd2f-4a17-93b6-fcf536e9d93d\"},{\"type\":\"object\",\"name\":\"panel.models.comm_manager.CommManager\",\"id\":\"ac0fc1c6-2b48-4e44-8bc1-e13322a70479\",\"attributes\":{\"plot_id\":\"3dc93c62-fd2f-4a17-93b6-fcf536e9d93d\",\"comm_id\":\"f59c0789f5e04d37ae1adffdf96ef777\",\"client_comm_id\":\"4f4fd4d04b17477db2fbbff7ee6fc4be\"}}],\"defs\":[{\"type\":\"model\",\"name\":\"ReactiveHTML1\"},{\"type\":\"model\",\"name\":\"FlexBox1\",\"properties\":[{\"name\":\"align_content\",\"kind\":\"Any\",\"default\":\"flex-start\"},{\"name\":\"align_items\",\"kind\":\"Any\",\"default\":\"flex-start\"},{\"name\":\"flex_direction\",\"kind\":\"Any\",\"default\":\"row\"},{\"name\":\"flex_wrap\",\"kind\":\"Any\",\"default\":\"wrap\"},{\"name\":\"gap\",\"kind\":\"Any\",\"default\":\"\"},{\"name\":\"justify_content\",\"kind\":\"Any\",\"default\":\"flex-start\"}]},{\"type\":\"model\",\"name\":\"FloatPanel1\",\"properties\":[{\"name\":\"config\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}},{\"name\":\"contained\",\"kind\":\"Any\",\"default\":true},{\"name\":\"position\",\"kind\":\"Any\",\"default\":\"right-top\"},{\"name\":\"offsetx\",\"kind\":\"Any\",\"default\":null},{\"name\":\"offsety\",\"kind\":\"Any\",\"default\":null},{\"name\":\"theme\",\"kind\":\"Any\",\"default\":\"primary\"},{\"name\":\"status\",\"kind\":\"Any\",\"default\":\"normalized\"}]},{\"type\":\"model\",\"name\":\"GridStack1\",\"properties\":[{\"name\":\"ncols\",\"kind\":\"Any\",\"default\":null},{\"name\":\"nrows\",\"kind\":\"Any\",\"default\":null},{\"name\":\"allow_resize\",\"kind\":\"Any\",\"default\":true},{\"name\":\"allow_drag\",\"kind\":\"Any\",\"default\":true},{\"name\":\"state\",\"kind\":\"Any\",\"default\":[]}]},{\"type\":\"model\",\"name\":\"drag1\",\"properties\":[{\"name\":\"slider_width\",\"kind\":\"Any\",\"default\":5},{\"name\":\"slider_color\",\"kind\":\"Any\",\"default\":\"black\"},{\"name\":\"value\",\"kind\":\"Any\",\"default\":50}]},{\"type\":\"model\",\"name\":\"click1\",\"properties\":[{\"name\":\"terminal_output\",\"kind\":\"Any\",\"default\":\"\"},{\"name\":\"debug_name\",\"kind\":\"Any\",\"default\":\"\"},{\"name\":\"clears\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"ReactiveESM1\",\"properties\":[{\"name\":\"esm_constants\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}}]},{\"type\":\"model\",\"name\":\"JSComponent1\",\"properties\":[{\"name\":\"esm_constants\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}}]},{\"type\":\"model\",\"name\":\"ReactComponent1\",\"properties\":[{\"name\":\"use_shadow_dom\",\"kind\":\"Any\",\"default\":true},{\"name\":\"esm_constants\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}}]},{\"type\":\"model\",\"name\":\"AnyWidgetComponent1\",\"properties\":[{\"name\":\"use_shadow_dom\",\"kind\":\"Any\",\"default\":true},{\"name\":\"esm_constants\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}}]},{\"type\":\"model\",\"name\":\"FastWrapper1\",\"properties\":[{\"name\":\"object\",\"kind\":\"Any\",\"default\":null},{\"name\":\"style\",\"kind\":\"Any\",\"default\":null}]},{\"type\":\"model\",\"name\":\"NotificationArea1\",\"properties\":[{\"name\":\"js_events\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}},{\"name\":\"max_notifications\",\"kind\":\"Any\",\"default\":5},{\"name\":\"notifications\",\"kind\":\"Any\",\"default\":[]},{\"name\":\"position\",\"kind\":\"Any\",\"default\":\"bottom-right\"},{\"name\":\"_clear\",\"kind\":\"Any\",\"default\":0},{\"name\":\"types\",\"kind\":\"Any\",\"default\":[{\"type\":\"map\",\"entries\":[[\"type\",\"warning\"],[\"background\",\"#ffc107\"],[\"icon\",{\"type\":\"map\",\"entries\":[[\"className\",\"fas fa-exclamation-triangle\"],[\"tagName\",\"i\"],[\"color\",\"white\"]]}]]},{\"type\":\"map\",\"entries\":[[\"type\",\"info\"],[\"background\",\"#007bff\"],[\"icon\",{\"type\":\"map\",\"entries\":[[\"className\",\"fas fa-info-circle\"],[\"tagName\",\"i\"],[\"color\",\"white\"]]}]]}]}]},{\"type\":\"model\",\"name\":\"Notification\",\"properties\":[{\"name\":\"background\",\"kind\":\"Any\",\"default\":null},{\"name\":\"duration\",\"kind\":\"Any\",\"default\":3000},{\"name\":\"icon\",\"kind\":\"Any\",\"default\":null},{\"name\":\"message\",\"kind\":\"Any\",\"default\":\"\"},{\"name\":\"notification_type\",\"kind\":\"Any\",\"default\":null},{\"name\":\"_rendered\",\"kind\":\"Any\",\"default\":false},{\"name\":\"_destroyed\",\"kind\":\"Any\",\"default\":false}]},{\"type\":\"model\",\"name\":\"TemplateActions1\",\"properties\":[{\"name\":\"open_modal\",\"kind\":\"Any\",\"default\":0},{\"name\":\"close_modal\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"BootstrapTemplateActions1\",\"properties\":[{\"name\":\"open_modal\",\"kind\":\"Any\",\"default\":0},{\"name\":\"close_modal\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"TemplateEditor1\",\"properties\":[{\"name\":\"layout\",\"kind\":\"Any\",\"default\":[]}]},{\"type\":\"model\",\"name\":\"MaterialTemplateActions1\",\"properties\":[{\"name\":\"open_modal\",\"kind\":\"Any\",\"default\":0},{\"name\":\"close_modal\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"request_value1\",\"properties\":[{\"name\":\"fill\",\"kind\":\"Any\",\"default\":\"none\"},{\"name\":\"_synced\",\"kind\":\"Any\",\"default\":null},{\"name\":\"_request_sync\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"holoviews.plotting.bokeh.raster.HoverModel\",\"properties\":[{\"name\":\"xy\",\"kind\":\"Any\",\"default\":null},{\"name\":\"data\",\"kind\":\"Any\",\"default\":null}]}]}};\n",
" var render_items = [{\"docid\":\"53f2bb3a-e720-4d3f-afa0-33ace0462364\",\"roots\":{\"3dc93c62-fd2f-4a17-93b6-fcf536e9d93d\":\"eab4c5d9-8403-4588-9c36-7c87f7b7c015\"},\"root_ids\":[\"3dc93c62-fd2f-4a17-93b6-fcf536e9d93d\"]}];\n",
" var docs = Object.values(docs_json)\n",
" if (!docs) {\n",
" return\n",
" }\n",
" const py_version = docs[0].version.replace('rc', '-rc.').replace('.dev', '-dev.')\n",
" async function embed_document(root) {\n",
" var Bokeh = get_bokeh(root)\n",
" await Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
" for (const render_item of render_items) {\n",
" for (const root_id of render_item.root_ids) {\n",
"\tconst id_el = document.getElementById(root_id)\n",
"\tif (id_el.children.length && id_el.children[0].hasAttribute('data-root-id')) {\n",
"\t const root_el = id_el.children[0]\n",
"\t root_el.id = root_el.id + '-rendered'\n",
"\t for (const child of root_el.children) {\n",
" // Ensure JupyterLab does not capture keyboard shortcuts\n",
" // see: https://jupyterlab.readthedocs.io/en/4.1.x/extension/notebook.html#keyboard-interaction-model\n",
"\t child.setAttribute('data-lm-suppress-shortcuts', 'true')\n",
"\t }\n",
"\t}\n",
" }\n",
" }\n",
" }\n",
" function get_bokeh(root) {\n",
" if (root.Bokeh === undefined) {\n",
" return null\n",
" } else if (root.Bokeh.version !== py_version) {\n",
" if (root.Bokeh.versions === undefined || !root.Bokeh.versions.has(py_version)) {\n",
"\treturn null\n",
" }\n",
" return root.Bokeh.versions.get(py_version);\n",
" } else if (root.Bokeh.version === py_version) {\n",
" return root.Bokeh\n",
" }\n",
" return null\n",
" }\n",
" function is_loaded(root) {\n",
" var Bokeh = get_bokeh(root)\n",
" return (Bokeh != null && Bokeh.Panel !== undefined)\n",
" }\n",
" if (is_loaded(root)) {\n",
" embed_document(root);\n",
" } else {\n",
" var attempts = 0;\n",
" var timer = setInterval(function(root) {\n",
" if (is_loaded(root)) {\n",
" clearInterval(timer);\n",
" embed_document(root);\n",
" } else if (document.readyState == \"complete\") {\n",
" attempts++;\n",
" if (attempts > 200) {\n",
" clearInterval(timer);\n",
"\t var Bokeh = get_bokeh(root)\n",
"\t if (Bokeh == null || Bokeh.Panel == null) {\n",
" console.warn(\"Panel: ERROR: Unable to run Panel code because Bokeh or Panel library is missing\");\n",
"\t } else {\n",
"\t console.warn(\"Panel: WARNING: Attempting to render but not all required libraries could be resolved.\")\n",
"\t embed_document(root)\n",
"\t }\n",
" }\n",
" }\n",
" }, 25, root)\n",
" }\n",
"})(window);</script>"
]
},
"metadata": {
"application/vnd.holoviews_exec.v0+json": {
"id": "3dc93c62-fd2f-4a17-93b6-fcf536e9d93d"
}
},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(\n",
" --jp-content-font-color0,\n",
" var(--pst-color-text-base rgba(0, 0, 0, 1))\n",
" );\n",
" --xr-font-color2: var(\n",
" --jp-content-font-color2,\n",
" var(--pst-color-text-base, rgba(0, 0, 0, 0.54))\n",
" );\n",
" --xr-font-color3: var(\n",
" --jp-content-font-color3,\n",
" var(--pst-color-text-base, rgba(0, 0, 0, 0.38))\n",
" );\n",
" --xr-border-color: var(\n",
" --jp-border-color2,\n",
" hsl(from var(--pst-color-on-background, white) h s calc(l - 10))\n",
" );\n",
" --xr-disabled-color: var(\n",
" --jp-layout-color3,\n",
" hsl(from var(--pst-color-on-background, white) h s calc(l - 40))\n",
" );\n",
" --xr-background-color: var(\n",
" --jp-layout-color0,\n",
" var(--pst-color-on-background, white)\n",
" );\n",
" --xr-background-color-row-even: var(\n",
" --jp-layout-color1,\n",
" hsl(from var(--pst-color-on-background, white) h s calc(l - 5))\n",
" );\n",
" --xr-background-color-row-odd: var(\n",
" --jp-layout-color2,\n",
" hsl(from var(--pst-color-on-background, white) h s calc(l - 15))\n",
" );\n",
"}\n",
"\n",
"html[theme=\"dark\"],\n",
"html[data-theme=\"dark\"],\n",
"body[data-theme=\"dark\"],\n",
"body.vscode-dark {\n",
" --xr-font-color0: var(\n",
" --jp-content-font-color0,\n",
" var(--pst-color-text-base, rgba(255, 255, 255, 1))\n",
" );\n",
" --xr-font-color2: var(\n",
" --jp-content-font-color2,\n",
" var(--pst-color-text-base, rgba(255, 255, 255, 0.54))\n",
" );\n",
" --xr-font-color3: var(\n",
" --jp-content-font-color3,\n",
" var(--pst-color-text-base, rgba(255, 255, 255, 0.38))\n",
" );\n",
" --xr-border-color: var(\n",
" --jp-border-color2,\n",
" hsl(from var(--pst-color-on-background, #111111) h s calc(l + 10))\n",
" );\n",
" --xr-disabled-color: var(\n",
" --jp-layout-color3,\n",
" hsl(from var(--pst-color-on-background, #111111) h s calc(l + 40))\n",
" );\n",
" --xr-background-color: var(\n",
" --jp-layout-color0,\n",
" var(--pst-color-on-background, #111111)\n",
" );\n",
" --xr-background-color-row-even: var(\n",
" --jp-layout-color1,\n",
" hsl(from var(--pst-color-on-background, #111111) h s calc(l + 5))\n",
" );\n",
" --xr-background-color-row-odd: var(\n",
" --jp-layout-color2,\n",
" hsl(from var(--pst-color-on-background, #111111) h s calc(l + 15))\n",
" );\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\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 0 20px 0 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: inline-block;\n",
" opacity: 0;\n",
" height: 0;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
" border: 2px solid transparent !important;\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:focus + label {\n",
" border: 2px solid var(--xr-font-color0) !important;\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",
" border-color: var(--xr-background-color-row-odd);\n",
" margin-bottom: 0;\n",
" padding-top: 2px;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
" border-color: var(--xr-background-color-row-even);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" border-top: 2px dotted var(--xr-background-color);\n",
" padding-bottom: 20px !important;\n",
" padding-top: 10px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in + label,\n",
".xr-var-data-in + label,\n",
".xr-index-data-in + label {\n",
" padding: 0 1px;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-data > pre,\n",
".xr-index-data > pre,\n",
".xr-var-data > table > tbody > tr {\n",
" background-color: transparent !important;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked + label > .xr-icon-file-text2,\n",
".xr-var-data-in:checked + label > .xr-icon-database,\n",
".xr-index-data-in:checked + label > .xr-icon-database {\n",
" color: var(--xr-font-color0);\n",
" filter: drop-shadow(1px 1px 5px var(--xr-font-color2));\n",
" stroke-width: 0.8px;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.Dataset&gt; Size: 10TB\n",
"Dimensions: (time: 64479, y: 1059, x: 1799)\n",
"Coordinates:\n",
" longitude (y, x) float32 8MB ...\n",
" latitude (y, x) float32 8MB ...\n",
" * time (time) datetime64[ns] 516kB 2...\n",
" spatial_ref int64 8B ...\n",
" * x (x) float64 14kB -2.698e+06 ....\n",
" * y (y) float64 8kB 1.587e+06 ......\n",
"Data variables: (12/20)\n",
" downward_short_wave_radiation_flux_surface (time, y, x) float32 491GB ...\n",
" downward_long_wave_radiation_flux_surface (time, y, x) float32 491GB ...\n",
" categorical_rain_surface (time, y, x) float32 491GB ...\n",
" categorical_snow_surface (time, y, x) float32 491GB ...\n",
" geopotential_height_cloud_ceiling (time, y, x) float32 491GB ...\n",
" categorical_freezing_rain_surface (time, y, x) float32 491GB ...\n",
" ... ...\n",
" wind_v_80m (time, y, x) float32 491GB ...\n",
" total_cloud_cover_atmosphere (time, y, x) float32 491GB ...\n",
" wind_v_10m (time, y, x) float32 491GB ...\n",
" relative_humidity_2m (time, y, x) float32 491GB ...\n",
" wind_u_10m (time, y, x) float32 491GB ...\n",
" temperature_2m (time, y, x) float32 491GB ...\n",
"Attributes:\n",
" dataset_id: noaa-hrrr-analysis\n",
" dataset_version: 0.1.0\n",
" name: NOAA HRRR analysis\n",
" description: Analysis data from the High-Resolution Rapid Refresh...\n",
" attribution: NOAA NWS NCEP HRRR data processed by dynamical.org f...\n",
" spatial_domain: Continental United States\n",
" spatial_resolution: 3 km\n",
" time_domain: 2018-09-16 00:00:00 UTC to Present\n",
" time_resolution: 1 hour</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-c2154331-6486-4235-afad-2c6ba123d49f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-c2154331-6486-4235-afad-2c6ba123d49f' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 64479</li><li><span class='xr-has-index'>y</span>: 1059</li><li><span class='xr-has-index'>x</span>: 1799</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-def39420-8f38-4e44-9a8f-2774c8d35cba' class='xr-section-summary-in' type='checkbox' checked><label for='section-def39420-8f38-4e44-9a8f-2774c8d35cba' class='xr-section-summary' >Coordinates: <span>(6)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>(y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ee4888d9-0bc7-4f2e-a01b-70ab564fa60a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ee4888d9-0bc7-4f2e-a01b-70ab564fa60a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1a6a0ff1-20f1-4171-846f-9441b7970d92' class='xr-var-data-in' type='checkbox'><label for='data-1a6a0ff1-20f1-4171-846f-9441b7970d92' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>units :</span></dt><dd>degree_east</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;min&#x27;: -134.09548, &#x27;max&#x27;: -60.917192}</dd></dl></div><div class='xr-var-data'><pre>[1905141 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>(y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f9de07de-c3b4-4ca0-86c5-914d1eecc23f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f9de07de-c3b4-4ca0-86c5-914d1eecc23f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e54faee4-2cf6-40bc-aa3e-ff9654a149bc' class='xr-var-data-in' type='checkbox'><label for='data-e54faee4-2cf6-40bc-aa3e-ff9654a149bc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>units :</span></dt><dd>degree_north</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;min&#x27;: 21.138123, &#x27;max&#x27;: 52.615653}</dd></dl></div><div class='xr-var-data'><pre>[1905141 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2018-09-16 ... 2026-01-23T14:00:00</div><input id='attrs-96f45c35-61eb-4f5d-8381-8b3861298d6a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-96f45c35-61eb-4f5d-8381-8b3861298d6a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-42375b28-c5c6-444f-9ee9-f38cf1117e3c' class='xr-var-data-in' type='checkbox'><label for='data-42375b28-c5c6-444f-9ee9-f38cf1117e3c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Time</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>axis :</span></dt><dd>T</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;min&#x27;: &#x27;2018-09-16T00:00:00&#x27;, &#x27;max&#x27;: &#x27;Present&#x27;}</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2018-09-16T00:00:00.000000000&#x27;, &#x27;2018-09-16T01:00:00.000000000&#x27;,\n",
" &#x27;2018-09-16T02:00:00.000000000&#x27;, ..., &#x27;2026-01-23T12:00:00.000000000&#x27;,\n",
" &#x27;2026-01-23T13:00:00.000000000&#x27;, &#x27;2026-01-23T14:00:00.000000000&#x27;],\n",
" shape=(64479,), dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spatial_ref</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ada4d70d-9748-440c-b87c-b30dd6e266bd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ada4d70d-9748-440c-b87c-b30dd6e266bd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6fc8c693-6f70-4fba-a1eb-21cf5a55b7dc' class='xr-var-data-in' type='checkbox'><label for='data-6fc8c693-6f70-4fba-a1eb-21cf5a55b7dc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>crs_wkt :</span></dt><dd>PROJCS[&quot;unnamed&quot;,GEOGCS[&quot;Coordinate System imported from GRIB file&quot;,DATUM[&quot;unnamed&quot;,SPHEROID[&quot;Sphere&quot;,6371229,0]],PRIMEM[&quot;Greenwich&quot;,0],UNIT[&quot;degree&quot;,0.0174532925199433,AUTHORITY[&quot;EPSG&quot;,&quot;9122&quot;]]],PROJECTION[&quot;Lambert_Conformal_Conic_2SP&quot;],PARAMETER[&quot;latitude_of_origin&quot;,38.5],PARAMETER[&quot;central_meridian&quot;,-97.5],PARAMETER[&quot;standard_parallel_1&quot;,38.5],PARAMETER[&quot;standard_parallel_2&quot;,38.5],PARAMETER[&quot;false_easting&quot;,0],PARAMETER[&quot;false_northing&quot;,0],UNIT[&quot;Metre&quot;,1],AXIS[&quot;Easting&quot;,EAST],AXIS[&quot;Northing&quot;,NORTH]]</dd><dt><span>semi_major_axis :</span></dt><dd>6371229.0</dd><dt><span>semi_minor_axis :</span></dt><dd>6371229.0</dd><dt><span>inverse_flattening :</span></dt><dd>0.0</dd><dt><span>reference_ellipsoid_name :</span></dt><dd>Sphere</dd><dt><span>longitude_of_prime_meridian :</span></dt><dd>0.0</dd><dt><span>prime_meridian_name :</span></dt><dd>Greenwich</dd><dt><span>geographic_crs_name :</span></dt><dd>Coordinate System imported from GRIB file</dd><dt><span>horizontal_datum_name :</span></dt><dd>unnamed</dd><dt><span>grid_mapping_name :</span></dt><dd>lambert_conformal_conic</dd><dt><span>spatial_ref :</span></dt><dd>PROJCS[&quot;unnamed&quot;,GEOGCS[&quot;Coordinate System imported from GRIB file&quot;,DATUM[&quot;unnamed&quot;,SPHEROID[&quot;Sphere&quot;,6371229,0]],PRIMEM[&quot;Greenwich&quot;,0],UNIT[&quot;degree&quot;,0.0174532925199433,AUTHORITY[&quot;EPSG&quot;,&quot;9122&quot;]]],PROJECTION[&quot;Lambert_Conformal_Conic_2SP&quot;],PARAMETER[&quot;latitude_of_origin&quot;,38.5],PARAMETER[&quot;central_meridian&quot;,-97.5],PARAMETER[&quot;standard_parallel_1&quot;,38.5],PARAMETER[&quot;standard_parallel_2&quot;,38.5],PARAMETER[&quot;false_easting&quot;,0],PARAMETER[&quot;false_northing&quot;,0],UNIT[&quot;Metre&quot;,1],AXIS[&quot;Easting&quot;,EAST],AXIS[&quot;Northing&quot;,NORTH]]</dd><dt><span>GeoTransform :</span></dt><dd>-2699020.142521929 3000.0 0.0 1588193.847443335 0.0 -3000.0</dd><dt><span>false_easting :</span></dt><dd>0.0</dd><dt><span>false_northing :</span></dt><dd>0.0</dd><dt><span>latitude_of_projection_origin :</span></dt><dd>38.5</dd><dt><span>longitude_of_central_meridian :</span></dt><dd>-97.5</dd><dt><span>projected_crs_name :</span></dt><dd>unnamed</dd><dt><span>standard_parallel :</span></dt><dd>[38.5, 38.5]</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>x</span></div><div class='xr-var-dims'>(x)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-2.698e+06 -2.695e+06 ... 2.696e+06</div><input id='attrs-56231807-d604-42ae-a776-7885f321ae74' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-56231807-d604-42ae-a776-7885f321ae74' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9ea9c0b2-f6e6-4ce0-8c16-e68d3054f250' class='xr-var-data-in' type='checkbox'><label for='data-9ea9c0b2-f6e6-4ce0-8c16-e68d3054f250' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>X coordinate of projection</dd><dt><span>standard_name :</span></dt><dd>projection_x_coordinate</dd><dt><span>axis :</span></dt><dd>X</dd><dt><span>units :</span></dt><dd>m</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;min&#x27;: -2700000.0, &#x27;max&#x27;: 2700000.0}</dd></dl></div><div class='xr-var-data'><pre>array([-2697520.142522, -2694520.142522, -2691520.142522, ..., 2690479.857478,\n",
" 2693479.857478, 2696479.857478], shape=(1799,))</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>y</span></div><div class='xr-var-dims'>(y)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>1.587e+06 1.584e+06 ... -1.587e+06</div><input id='attrs-1df9d51b-5691-40e1-a6a6-dea00d7d16cd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1df9d51b-5691-40e1-a6a6-dea00d7d16cd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f485b988-6d0e-42bb-9858-f70186745fb5' class='xr-var-data-in' type='checkbox'><label for='data-f485b988-6d0e-42bb-9858-f70186745fb5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Y coordinate of projection</dd><dt><span>standard_name :</span></dt><dd>projection_y_coordinate</dd><dt><span>axis :</span></dt><dd>Y</dd><dt><span>units :</span></dt><dd>m</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;min&#x27;: -1600000.0, &#x27;max&#x27;: 1600000.0}</dd></dl></div><div class='xr-var-data'><pre>array([ 1586693.847443, 1583693.847443, 1580693.847443, ..., -1581306.152557,\n",
" -1584306.152557, -1587306.152557], shape=(1059,))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-694a6178-cf7b-4653-8375-ba507f5eb028' class='xr-section-summary-in' type='checkbox' ><label for='section-694a6178-cf7b-4653-8375-ba507f5eb028' class='xr-section-summary' >Data variables: <span>(20)</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>downward_short_wave_radiation_flux_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8170e4b2-f7e0-4273-9c7f-e4de05ad453c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8170e4b2-f7e0-4273-9c7f-e4de05ad453c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1c33f8a6-be8a-4db9-b842-7eb2b808ff37' class='xr-var-data-in' type='checkbox'><label for='data-1c33f8a6-be8a-4db9-b842-7eb2b808ff37' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Surface downward short-wave radiation flux</dd><dt><span>short_name :</span></dt><dd>sdswrf</dd><dt><span>standard_name :</span></dt><dd>surface_downwelling_shortwave_flux_in_air</dd><dt><span>units :</span></dt><dd>W m-2</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>downward_long_wave_radiation_flux_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d6770783-59ed-4b29-9785-662eaa187698' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d6770783-59ed-4b29-9785-662eaa187698' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-377ddb5c-28e3-4c6b-9b64-959273f29cfc' class='xr-var-data-in' type='checkbox'><label for='data-377ddb5c-28e3-4c6b-9b64-959273f29cfc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Surface downward long-wave radiation flux</dd><dt><span>short_name :</span></dt><dd>sdlwrf</dd><dt><span>standard_name :</span></dt><dd>surface_downwelling_longwave_flux_in_air</dd><dt><span>units :</span></dt><dd>W m-2</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>categorical_rain_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-77211e94-67fc-4555-8857-4e1f66c3032b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-77211e94-67fc-4555-8857-4e1f66c3032b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d2b6c0c3-7285-4f81-8dc7-0a603a8713e0' class='xr-var-data-in' type='checkbox'><label for='data-d2b6c0c3-7285-4f81-8dc7-0a603a8713e0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Categorical rain</dd><dt><span>short_name :</span></dt><dd>crain</dd><dt><span>units :</span></dt><dd>1</dd><dt><span>comment :</span></dt><dd>0=no; 1=yes</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>categorical_snow_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7634342d-d7db-46f5-88c1-7d3755fbc2f4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7634342d-d7db-46f5-88c1-7d3755fbc2f4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-69472020-5434-4095-8e29-53a50bae61cb' class='xr-var-data-in' type='checkbox'><label for='data-69472020-5434-4095-8e29-53a50bae61cb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Categorical snow</dd><dt><span>short_name :</span></dt><dd>csnow</dd><dt><span>units :</span></dt><dd>1</dd><dt><span>comment :</span></dt><dd>0=no; 1=yes</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>geopotential_height_cloud_ceiling</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b98f6a52-a7ec-4601-ac32-c2b9d648526b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b98f6a52-a7ec-4601-ac32-c2b9d648526b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0b4ebb7e-2fd0-439b-91ff-6044534ac1ef' class='xr-var-data-in' type='checkbox'><label for='data-0b4ebb7e-2fd0-439b-91ff-6044534ac1ef' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Geopotential height</dd><dt><span>short_name :</span></dt><dd>gh</dd><dt><span>standard_name :</span></dt><dd>geopotential_height</dd><dt><span>units :</span></dt><dd>m</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>categorical_freezing_rain_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f527d759-0cef-4d6a-88a0-208e1286a49e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f527d759-0cef-4d6a-88a0-208e1286a49e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-48aa3385-68ae-439d-8d5b-cd39f1f1c753' class='xr-var-data-in' type='checkbox'><label for='data-48aa3385-68ae-439d-8d5b-cd39f1f1c753' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Categorical freezing rain</dd><dt><span>short_name :</span></dt><dd>cfrzr</dd><dt><span>units :</span></dt><dd>1</dd><dt><span>comment :</span></dt><dd>0=no; 1=yes</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>composite_reflectivity</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-79426e23-6881-4c21-ab3e-9934cafd7f11' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-79426e23-6881-4c21-ab3e-9934cafd7f11' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7b976680-28e5-4a6d-b7f2-b7cb3592c373' class='xr-var-data-in' type='checkbox'><label for='data-7b976680-28e5-4a6d-b7f2-b7cb3592c373' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Maximum/Composite radar reflectivity</dd><dt><span>short_name :</span></dt><dd>refc</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>percent_frozen_precipitation_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6aaf571a-6f1c-45e1-9535-a84d3547c87c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6aaf571a-6f1c-45e1-9535-a84d3547c87c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-59200c29-69c9-4a5c-b297-0f9e63f3011d' class='xr-var-data-in' type='checkbox'><label for='data-59200c29-69c9-4a5c-b297-0f9e63f3011d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Percent frozen precipitation</dd><dt><span>short_name :</span></dt><dd>cpofp</dd><dt><span>units :</span></dt><dd>percent</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>categorical_ice_pellets_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9395a238-cbe3-42fa-b37c-0d7f78e1ba2b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9395a238-cbe3-42fa-b37c-0d7f78e1ba2b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6ab5df02-2263-458f-a5d2-3ce81c2731f9' class='xr-var-data-in' type='checkbox'><label for='data-6ab5df02-2263-458f-a5d2-3ce81c2731f9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Categorical ice pellets</dd><dt><span>short_name :</span></dt><dd>cicep</dd><dt><span>units :</span></dt><dd>1</dd><dt><span>comment :</span></dt><dd>0=no; 1=yes</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>precipitation_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1e137bc1-a9f2-4f08-80f5-ee6ae837f1ca' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1e137bc1-a9f2-4f08-80f5-ee6ae837f1ca' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-95880692-e409-4540-b2e1-0abe77893819' class='xr-var-data-in' type='checkbox'><label for='data-95880692-e409-4540-b2e1-0abe77893819' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Precipitation rate</dd><dt><span>short_name :</span></dt><dd>prate</dd><dt><span>standard_name :</span></dt><dd>precipitation_flux</dd><dt><span>units :</span></dt><dd>kg m-2 s-1</dd><dt><span>comment :</span></dt><dd>Average precipitation rate since the previous forecast step. Units equivalent to mm/s.</dd><dt><span>step_type :</span></dt><dd>avg</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pressure_reduced_to_mean_sea_level</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a394358f-4104-4046-9795-e519a605dfea' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a394358f-4104-4046-9795-e519a605dfea' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-59fa8ca4-879f-442a-9f5b-dba4f5b805de' class='xr-var-data-in' type='checkbox'><label for='data-59fa8ca4-879f-442a-9f5b-dba4f5b805de' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pressure reduced to MSL</dd><dt><span>short_name :</span></dt><dd>prmsl</dd><dt><span>standard_name :</span></dt><dd>air_pressure_at_mean_sea_level</dd><dt><span>units :</span></dt><dd>Pa</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>precipitable_water_atmosphere</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-078db3eb-f529-4b1f-9489-602c8922321f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-078db3eb-f529-4b1f-9489-602c8922321f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cf2f3aa7-1051-4818-8dc5-e3758b27c1c1' class='xr-var-data-in' type='checkbox'><label for='data-cf2f3aa7-1051-4818-8dc5-e3758b27c1c1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Precipitable water</dd><dt><span>short_name :</span></dt><dd>pwat</dd><dt><span>standard_name :</span></dt><dd>atmosphere_mass_content_of_water_vapor</dd><dt><span>units :</span></dt><dd>kg m-2</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pressure_surface</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3f09bd3c-4fa1-4efb-b2ff-6ec458018bec' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3f09bd3c-4fa1-4efb-b2ff-6ec458018bec' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1bfb2133-43b7-4986-807b-cbffeb297a58' class='xr-var-data-in' type='checkbox'><label for='data-1bfb2133-43b7-4986-807b-cbffeb297a58' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Surface pressure</dd><dt><span>short_name :</span></dt><dd>sp</dd><dt><span>standard_name :</span></dt><dd>surface_air_pressure</dd><dt><span>units :</span></dt><dd>Pa</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_u_80m</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-837b2b61-c7e2-460b-aa4c-b42c7d14d141' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-837b2b61-c7e2-460b-aa4c-b42c7d14d141' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9d90554f-ef5b-42a7-8e64-e4d996f8af38' class='xr-var-data-in' type='checkbox'><label for='data-9d90554f-ef5b-42a7-8e64-e4d996f8af38' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>80 metre U wind component</dd><dt><span>short_name :</span></dt><dd>80u</dd><dt><span>standard_name :</span></dt><dd>eastward_wind</dd><dt><span>units :</span></dt><dd>m s-1</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_v_80m</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3d6546e6-9fac-4dd5-b0bc-27d1e27cac42' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3d6546e6-9fac-4dd5-b0bc-27d1e27cac42' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8529f7dc-5b16-4961-9e95-36a6da0373d9' class='xr-var-data-in' type='checkbox'><label for='data-8529f7dc-5b16-4961-9e95-36a6da0373d9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>80 metre V wind component</dd><dt><span>short_name :</span></dt><dd>80v</dd><dt><span>standard_name :</span></dt><dd>northward_wind</dd><dt><span>units :</span></dt><dd>m s-1</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>total_cloud_cover_atmosphere</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ebd709c6-7194-4a97-bea1-aa8fd7246899' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ebd709c6-7194-4a97-bea1-aa8fd7246899' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9ebdbab6-e7fa-4877-bacd-a99d33c804e9' class='xr-var-data-in' type='checkbox'><label for='data-9ebdbab6-e7fa-4877-bacd-a99d33c804e9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Total Cloud Cover</dd><dt><span>short_name :</span></dt><dd>tcc</dd><dt><span>standard_name :</span></dt><dd>cloud_area_fraction</dd><dt><span>units :</span></dt><dd>percent</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_v_10m</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-675caed0-b6e2-4110-93bf-ff972550981d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-675caed0-b6e2-4110-93bf-ff972550981d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-894dabde-73d5-4baa-b0b5-828abff60f9e' class='xr-var-data-in' type='checkbox'><label for='data-894dabde-73d5-4baa-b0b5-828abff60f9e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>10 metre V wind component</dd><dt><span>short_name :</span></dt><dd>10v</dd><dt><span>standard_name :</span></dt><dd>northward_wind</dd><dt><span>units :</span></dt><dd>m s-1</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>relative_humidity_2m</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-97f8f0c2-9d2f-4a08-92a5-4c9943424688' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-97f8f0c2-9d2f-4a08-92a5-4c9943424688' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fb1e41e4-8ddb-42ea-8ecd-f619d868b04f' class='xr-var-data-in' type='checkbox'><label for='data-fb1e41e4-8ddb-42ea-8ecd-f619d868b04f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>2 metre relative humidity</dd><dt><span>short_name :</span></dt><dd>2r</dd><dt><span>standard_name :</span></dt><dd>relative_humidity</dd><dt><span>units :</span></dt><dd>percent</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_u_10m</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4b3aba3c-f02e-43ab-b506-d3a80b6b879e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4b3aba3c-f02e-43ab-b506-d3a80b6b879e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0009ec50-f50f-40ea-bb4f-25d5eb909497' class='xr-var-data-in' type='checkbox'><label for='data-0009ec50-f50f-40ea-bb4f-25d5eb909497' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>10 metre U wind component</dd><dt><span>short_name :</span></dt><dd>10u</dd><dt><span>standard_name :</span></dt><dd>eastward_wind</dd><dt><span>units :</span></dt><dd>m s-1</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>temperature_2m</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-41bfdee4-c5ff-4eaa-a061-f0f5983de610' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-41bfdee4-c5ff-4eaa-a061-f0f5983de610' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c3c21e7f-d3b9-4581-aa15-a01a18885ed1' class='xr-var-data-in' type='checkbox'><label for='data-c3c21e7f-d3b9-4581-aa15-a01a18885ed1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>2 metre temperature</dd><dt><span>short_name :</span></dt><dd>2t</dd><dt><span>standard_name :</span></dt><dd>air_temperature</dd><dt><span>units :</span></dt><dd>degree_Celsius</dd><dt><span>step_type :</span></dt><dd>instant</dd></dl></div><div class='xr-var-data'><pre>[122841586539 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-c0a879d3-b1f0-456f-97a7-9015195354b1' class='xr-section-summary-in' type='checkbox' ><label for='section-c0a879d3-b1f0-456f-97a7-9015195354b1' class='xr-section-summary' >Indexes: <span>(3)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-index-name'><div>time</div></div><div class='xr-index-preview'>PandasIndex</div><input type='checkbox' disabled/><label></label><input id='index-764cd5c6-010c-4644-a816-721529e1d8c1' class='xr-index-data-in' type='checkbox'/><label for='index-764cd5c6-010c-4644-a816-721529e1d8c1' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(DatetimeIndex([&#x27;2018-09-16 00:00:00&#x27;, &#x27;2018-09-16 01:00:00&#x27;,\n",
" &#x27;2018-09-16 02:00:00&#x27;, &#x27;2018-09-16 03:00:00&#x27;,\n",
" &#x27;2018-09-16 04:00:00&#x27;, &#x27;2018-09-16 05:00:00&#x27;,\n",
" &#x27;2018-09-16 06:00:00&#x27;, &#x27;2018-09-16 07:00:00&#x27;,\n",
" &#x27;2018-09-16 08:00:00&#x27;, &#x27;2018-09-16 09:00:00&#x27;,\n",
" ...\n",
" &#x27;2026-01-23 05:00:00&#x27;, &#x27;2026-01-23 06:00:00&#x27;,\n",
" &#x27;2026-01-23 07:00:00&#x27;, &#x27;2026-01-23 08:00:00&#x27;,\n",
" &#x27;2026-01-23 09:00:00&#x27;, &#x27;2026-01-23 10:00:00&#x27;,\n",
" &#x27;2026-01-23 11:00:00&#x27;, &#x27;2026-01-23 12:00:00&#x27;,\n",
" &#x27;2026-01-23 13:00:00&#x27;, &#x27;2026-01-23 14:00:00&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;, name=&#x27;time&#x27;, length=64479, freq=None))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>x</div></div><div class='xr-index-preview'>PandasIndex</div><input type='checkbox' disabled/><label></label><input id='index-5a8cd516-b6d8-402c-9e0a-43cf801833a7' class='xr-index-data-in' type='checkbox'/><label for='index-5a8cd516-b6d8-402c-9e0a-43cf801833a7' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([-2697520.142521929, -2694520.142521929, -2691520.142521929,\n",
" -2688520.142521929, -2685520.142521929, -2682520.142521929,\n",
" -2679520.142521929, -2676520.142521929, -2673520.142521929,\n",
" -2670520.142521929,\n",
" ...\n",
" 2669479.857478071, 2672479.857478071, 2675479.857478071,\n",
" 2678479.857478071, 2681479.857478071, 2684479.857478071,\n",
" 2687479.857478071, 2690479.857478071, 2693479.857478071,\n",
" 2696479.857478071],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;x&#x27;, length=1799))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>y</div></div><div class='xr-index-preview'>PandasIndex</div><input type='checkbox' disabled/><label></label><input id='index-0f7fc7a0-fa0b-4c85-b0eb-28cddbf4d306' class='xr-index-data-in' type='checkbox'/><label for='index-0f7fc7a0-fa0b-4c85-b0eb-28cddbf4d306' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([ 1586693.847443335, 1583693.847443335, 1580693.847443335,\n",
" 1577693.847443335, 1574693.847443335, 1571693.847443335,\n",
" 1568693.847443335, 1565693.847443335, 1562693.847443335,\n",
" 1559693.847443335,\n",
" ...\n",
" -1560306.152556665, -1563306.152556665, -1566306.152556665,\n",
" -1569306.152556665, -1572306.152556665, -1575306.152556665,\n",
" -1578306.152556665, -1581306.152556665, -1584306.152556665,\n",
" -1587306.152556665],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;y&#x27;, length=1059))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-07a8d666-6de9-4db5-8590-9b7d38dccf3f' class='xr-section-summary-in' type='checkbox' checked><label for='section-07a8d666-6de9-4db5-8590-9b7d38dccf3f' class='xr-section-summary' >Attributes: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>dataset_id :</span></dt><dd>noaa-hrrr-analysis</dd><dt><span>dataset_version :</span></dt><dd>0.1.0</dd><dt><span>name :</span></dt><dd>NOAA HRRR analysis</dd><dt><span>description :</span></dt><dd>Analysis data from the High-Resolution Rapid Refresh (HRRR) model operated by NOAA NWS NCEP.</dd><dt><span>attribution :</span></dt><dd>NOAA NWS NCEP HRRR data processed by dynamical.org from NOAA Open Data Dissemination archives.</dd><dt><span>spatial_domain :</span></dt><dd>Continental United States</dd><dt><span>spatial_resolution :</span></dt><dd>3 km</dd><dt><span>time_domain :</span></dt><dd>2018-09-16 00:00:00 UTC to Present</dd><dt><span>time_resolution :</span></dt><dd>1 hour</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset> Size: 10TB\n",
"Dimensions: (time: 64479, y: 1059, x: 1799)\n",
"Coordinates:\n",
" longitude (y, x) float32 8MB ...\n",
" latitude (y, x) float32 8MB ...\n",
" * time (time) datetime64[ns] 516kB 2...\n",
" spatial_ref int64 8B ...\n",
" * x (x) float64 14kB -2.698e+06 ....\n",
" * y (y) float64 8kB 1.587e+06 ......\n",
"Data variables: (12/20)\n",
" downward_short_wave_radiation_flux_surface (time, y, x) float32 491GB ...\n",
" downward_long_wave_radiation_flux_surface (time, y, x) float32 491GB ...\n",
" categorical_rain_surface (time, y, x) float32 491GB ...\n",
" categorical_snow_surface (time, y, x) float32 491GB ...\n",
" geopotential_height_cloud_ceiling (time, y, x) float32 491GB ...\n",
" categorical_freezing_rain_surface (time, y, x) float32 491GB ...\n",
" ... ...\n",
" wind_v_80m (time, y, x) float32 491GB ...\n",
" total_cloud_cover_atmosphere (time, y, x) float32 491GB ...\n",
" wind_v_10m (time, y, x) float32 491GB ...\n",
" relative_humidity_2m (time, y, x) float32 491GB ...\n",
" wind_u_10m (time, y, x) float32 491GB ...\n",
" temperature_2m (time, y, x) float32 491GB ...\n",
"Attributes:\n",
" dataset_id: noaa-hrrr-analysis\n",
" dataset_version: 0.1.0\n",
" name: NOAA HRRR analysis\n",
" description: Analysis data from the High-Resolution Rapid Refresh...\n",
" attribution: NOAA NWS NCEP HRRR data processed by dynamical.org f...\n",
" spatial_domain: Continental United States\n",
" spatial_resolution: 3 km\n",
" time_domain: 2018-09-16 00:00:00 UTC to Present\n",
" time_resolution: 1 hour"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import icechunk\n",
"import xarray as xr\n",
"import hvplot.xarray\n",
"\n",
"storage = icechunk.s3_storage(bucket=\"dynamical-noaa-hrrr\", prefix=\"noaa-hrrr-analysis/v0.1.0.icechunk/\", region=\"us-west-2\", anonymous=True)\n",
"repo = icechunk.Repository.open(storage)\n",
"session = repo.readonly_session(\"main\")\n",
"ds_hrrr = xr.open_zarr(session.store, chunks=None)\n",
"ds_hrrr"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "4",
"metadata": {},
"outputs": [],
"source": [
"# HRRR data is distributed in a projected coordinate reference system and\n",
"# we include its details in the dataset metadata (e.g. ds.rio.crs, ds.rio.transform()).\n",
"\n",
"# Use pyproj to transform the longitude and latitude of Chicago, IL into dataset x, y coordinates\n",
"from pyproj import Transformer\n",
"\n",
"lon_lat_to_ds = Transformer.from_crs(\"EPSG:4326\", ds_hrrr.rio.crs, always_xy=True)\n",
"x, y = lon_lat_to_ds.transform(lon_point, lat_point ) # 180 county rd, bourne, ma\n",
"\n",
"var = 'wind_v_10m'\n",
"da_hrrr = ds_hrrr[var].sel(x=x, y=y, method=\"nearest\").sel(time=slice(start,stop )).load()"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "163dd98f-850e-407d-9d7d-458f10833ff1",
"metadata": {},
"outputs": [],
"source": [
"hrrr_viz = da_hrrr.hvplot(x='time', grid=True, label='HRRR')"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "3df53f1f-6f1d-450f-8033-4396783ee9bb",
"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(\n",
" --jp-content-font-color0,\n",
" var(--pst-color-text-base rgba(0, 0, 0, 1))\n",
" );\n",
" --xr-font-color2: var(\n",
" --jp-content-font-color2,\n",
" var(--pst-color-text-base, rgba(0, 0, 0, 0.54))\n",
" );\n",
" --xr-font-color3: var(\n",
" --jp-content-font-color3,\n",
" var(--pst-color-text-base, rgba(0, 0, 0, 0.38))\n",
" );\n",
" --xr-border-color: var(\n",
" --jp-border-color2,\n",
" hsl(from var(--pst-color-on-background, white) h s calc(l - 10))\n",
" );\n",
" --xr-disabled-color: var(\n",
" --jp-layout-color3,\n",
" hsl(from var(--pst-color-on-background, white) h s calc(l - 40))\n",
" );\n",
" --xr-background-color: var(\n",
" --jp-layout-color0,\n",
" var(--pst-color-on-background, white)\n",
" );\n",
" --xr-background-color-row-even: var(\n",
" --jp-layout-color1,\n",
" hsl(from var(--pst-color-on-background, white) h s calc(l - 5))\n",
" );\n",
" --xr-background-color-row-odd: var(\n",
" --jp-layout-color2,\n",
" hsl(from var(--pst-color-on-background, white) h s calc(l - 15))\n",
" );\n",
"}\n",
"\n",
"html[theme=\"dark\"],\n",
"html[data-theme=\"dark\"],\n",
"body[data-theme=\"dark\"],\n",
"body.vscode-dark {\n",
" --xr-font-color0: var(\n",
" --jp-content-font-color0,\n",
" var(--pst-color-text-base, rgba(255, 255, 255, 1))\n",
" );\n",
" --xr-font-color2: var(\n",
" --jp-content-font-color2,\n",
" var(--pst-color-text-base, rgba(255, 255, 255, 0.54))\n",
" );\n",
" --xr-font-color3: var(\n",
" --jp-content-font-color3,\n",
" var(--pst-color-text-base, rgba(255, 255, 255, 0.38))\n",
" );\n",
" --xr-border-color: var(\n",
" --jp-border-color2,\n",
" hsl(from var(--pst-color-on-background, #111111) h s calc(l + 10))\n",
" );\n",
" --xr-disabled-color: var(\n",
" --jp-layout-color3,\n",
" hsl(from var(--pst-color-on-background, #111111) h s calc(l + 40))\n",
" );\n",
" --xr-background-color: var(\n",
" --jp-layout-color0,\n",
" var(--pst-color-on-background, #111111)\n",
" );\n",
" --xr-background-color-row-even: var(\n",
" --jp-layout-color1,\n",
" hsl(from var(--pst-color-on-background, #111111) h s calc(l + 5))\n",
" );\n",
" --xr-background-color-row-odd: var(\n",
" --jp-layout-color2,\n",
" hsl(from var(--pst-color-on-background, #111111) h s calc(l + 15))\n",
" );\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\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 0 20px 0 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: inline-block;\n",
" opacity: 0;\n",
" height: 0;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
" border: 2px solid transparent !important;\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:focus + label {\n",
" border: 2px solid var(--xr-font-color0) !important;\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",
" border-color: var(--xr-background-color-row-odd);\n",
" margin-bottom: 0;\n",
" padding-top: 2px;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
" border-color: var(--xr-background-color-row-even);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" border-top: 2px dotted var(--xr-background-color);\n",
" padding-bottom: 20px !important;\n",
" padding-top: 10px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in + label,\n",
".xr-var-data-in + label,\n",
".xr-index-data-in + label {\n",
" padding: 0 1px;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-data > pre,\n",
".xr-index-data > pre,\n",
".xr-var-data > table > tbody > tr {\n",
" background-color: transparent !important;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked + label > .xr-icon-file-text2,\n",
".xr-var-data-in:checked + label > .xr-icon-database,\n",
".xr-index-data-in:checked + label > .xr-icon-database {\n",
" color: var(--xr-font-color0);\n",
" filter: drop-shadow(1px 1px 5px var(--xr-font-color2));\n",
" stroke-width: 0.8px;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.Dataset&gt; Size: 1TB\n",
"Dimensions: (time: 82920, latitude: 721, longitude: 1440)\n",
"Coordinates:\n",
" * latitude (latitude) float64 6kB 90.0 89.75 ... -89.75 -90.0\n",
" * longitude (longitude) float64 12kB -180.0 -179.8 ... 179.8\n",
" spatial_ref int64 8B ...\n",
" * time (time) datetime64[ns] 663kB 2015-01-15 ... 2024-06...\n",
"Data variables:\n",
" precipitation_surface (time, latitude, longitude) float32 344GB dask.array&lt;chunksize=(160, 145, 144), meta=np.ndarray&gt;\n",
" temperature_2m (time, latitude, longitude) float32 344GB dask.array&lt;chunksize=(160, 145, 144), meta=np.ndarray&gt;\n",
" wind_u_10m (time, latitude, longitude) float32 344GB dask.array&lt;chunksize=(160, 145, 144), meta=np.ndarray&gt;\n",
" wind_v_10m (time, latitude, longitude) float32 344GB dask.array&lt;chunksize=(160, 145, 144), meta=np.ndarray&gt;\n",
"Attributes:\n",
" attribution: NOAA NCEP GFS data processed by dynamical.org from N...\n",
" description: Historical weather data from the Global Forecast Sys...\n",
" id: noaa-gfs-analysis-hourly\n",
" name: NOAA GFS analysis, hourly\n",
" spatial_domain: Global\n",
" spatial_resolution: 0.25 degrees (~20km)\n",
" time_domain: 2015-01-15 00:00:00 UTC to 2024-07-01 00:00:00 UTC\n",
" time_resolution: 1 hour</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-76b291d1-b1a9-4ec7-a6fa-5a55d3e01a7a' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-76b291d1-b1a9-4ec7-a6fa-5a55d3e01a7a' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 82920</li><li><span class='xr-has-index'>latitude</span>: 721</li><li><span class='xr-has-index'>longitude</span>: 1440</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-1c76f57d-a1fe-4826-9bab-e3ebf07697e2' class='xr-section-summary-in' type='checkbox' checked><label for='section-1c76f57d-a1fe-4826-9bab-e3ebf07697e2' 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 class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>90.0 89.75 89.5 ... -89.75 -90.0</div><input id='attrs-afb34ef3-83d3-4929-b983-ec11e8427fdc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-afb34ef3-83d3-4929-b983-ec11e8427fdc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-28c29b07-cb22-48ee-88d8-ff5168457062' class='xr-var-data-in' type='checkbox'><label for='data-28c29b07-cb22-48ee-88d8-ff5168457062' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;max&#x27;: 90.0, &#x27;mean&#x27;: 0.0, &#x27;min&#x27;: -90.0}</dd><dt><span>units :</span></dt><dd>decimal degrees</dd></dl></div><div class='xr-var-data'><pre>array([ 90. , 89.75, 89.5 , ..., -89.5 , -89.75, -90. ], shape=(721,))</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>-180.0 -179.8 ... 179.5 179.8</div><input id='attrs-4bdfed13-c7bf-44d5-a112-d39bd9cee993' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4bdfed13-c7bf-44d5-a112-d39bd9cee993' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7a98a604-84c8-4b6b-8e5d-4a63b4730446' class='xr-var-data-in' type='checkbox'><label for='data-7a98a604-84c8-4b6b-8e5d-4a63b4730446' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;max&#x27;: 179.75, &#x27;mean&#x27;: -0.125, &#x27;min&#x27;: -180.0}</dd><dt><span>units :</span></dt><dd>decimal degrees</dd></dl></div><div class='xr-var-data'><pre>array([-180. , -179.75, -179.5 , ..., 179.25, 179.5 , 179.75],\n",
" shape=(1440,))</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spatial_ref</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d6164e2f-6fc6-4d84-a54a-59e20bd4c4f2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d6164e2f-6fc6-4d84-a54a-59e20bd4c4f2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6f7ce4a5-8cef-4e54-8696-313544f68c59' class='xr-var-data-in' type='checkbox'><label for='data-6f7ce4a5-8cef-4e54-8696-313544f68c59' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>crs_wkt :</span></dt><dd>GEOGCS[&quot;WGS 84&quot;,DATUM[&quot;WGS_1984&quot;,SPHEROID[&quot;WGS 84&quot;,6378137,298.257223563,AUTHORITY[&quot;EPSG&quot;,&quot;7030&quot;]],AUTHORITY[&quot;EPSG&quot;,&quot;6326&quot;]],PRIMEM[&quot;Greenwich&quot;,0,AUTHORITY[&quot;EPSG&quot;,&quot;8901&quot;]],UNIT[&quot;degree&quot;,0.0174532925199433,AUTHORITY[&quot;EPSG&quot;,&quot;9122&quot;]],AXIS[&quot;Latitude&quot;,NORTH],AXIS[&quot;Longitude&quot;,EAST],AUTHORITY[&quot;EPSG&quot;,&quot;4326&quot;]]</dd><dt><span>geographic_crs_name :</span></dt><dd>WGS 84</dd><dt><span>grid_mapping_name :</span></dt><dd>latitude_longitude</dd><dt><span>horizontal_datum_name :</span></dt><dd>World Geodetic System 1984</dd><dt><span>inverse_flattening :</span></dt><dd>298.257223563</dd><dt><span>longitude_of_prime_meridian :</span></dt><dd>0.0</dd><dt><span>prime_meridian_name :</span></dt><dd>Greenwich</dd><dt><span>reference_ellipsoid_name :</span></dt><dd>WGS 84</dd><dt><span>semi_major_axis :</span></dt><dd>6378137.0</dd><dt><span>semi_minor_axis :</span></dt><dd>6356752.314245179</dd><dt><span>spatial_ref :</span></dt><dd>GEOGCS[&quot;WGS 84&quot;,DATUM[&quot;WGS_1984&quot;,SPHEROID[&quot;WGS 84&quot;,6378137,298.257223563,AUTHORITY[&quot;EPSG&quot;,&quot;7030&quot;]],AUTHORITY[&quot;EPSG&quot;,&quot;6326&quot;]],PRIMEM[&quot;Greenwich&quot;,0,AUTHORITY[&quot;EPSG&quot;,&quot;8901&quot;]],UNIT[&quot;degree&quot;,0.0174532925199433,AUTHORITY[&quot;EPSG&quot;,&quot;9122&quot;]],AXIS[&quot;Latitude&quot;,NORTH],AXIS[&quot;Longitude&quot;,EAST],AUTHORITY[&quot;EPSG&quot;,&quot;4326&quot;]]</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2015-01-15 ... 2024-06-30T23:00:00</div><input id='attrs-2faef8d5-63e0-434c-b875-4c0fa96f5851' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2faef8d5-63e0-434c-b875-4c0fa96f5851' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dfb2026a-26b2-437d-bda0-080f86c94f1c' class='xr-var-data-in' type='checkbox'><label for='data-dfb2026a-26b2-437d-bda0-080f86c94f1c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Time</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;max&#x27;: &#x27;2024-06-30 23:00:00 UTC&#x27;, &#x27;mean&#x27;: &#x27;2019-10-08 11:30:00 UTC&#x27;, &#x27;min&#x27;: &#x27;2015-01-15 00:00:00 UTC&#x27;}</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2015-01-15T00:00:00.000000000&#x27;, &#x27;2015-01-15T01:00:00.000000000&#x27;,\n",
" &#x27;2015-01-15T02:00:00.000000000&#x27;, ..., &#x27;2024-06-30T21:00:00.000000000&#x27;,\n",
" &#x27;2024-06-30T22:00:00.000000000&#x27;, &#x27;2024-06-30T23:00:00.000000000&#x27;],\n",
" shape=(82920,), dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-7c9b2fb1-b526-462f-a7c9-39e9ef852e05' class='xr-section-summary-in' type='checkbox' checked><label for='section-7c9b2fb1-b526-462f-a7c9-39e9ef852e05' class='xr-section-summary' >Data variables: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>precipitation_surface</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(160, 145, 144), meta=np.ndarray&gt;</div><input id='attrs-8432bb0a-cce6-4156-b198-c8cadf5c1167' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8432bb0a-cce6-4156-b198-c8cadf5c1167' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-76f80063-b876-42f2-b0c8-3526cbae6648' class='xr-var-data-in' type='checkbox'><label for='data-76f80063-b876-42f2-b0c8-3526cbae6648' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>grid_mapping :</span></dt><dd>spatial_ref</dd><dt><span>long_name :</span></dt><dd>Precipitation rate at earth surface</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;max&#x27;: 0.04474, &#x27;mean&#x27;: 2.911e-05, &#x27;min&#x27;: 0.0}</dd><dt><span>units :</span></dt><dd>kg/(m^2 s)</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 320.71 GiB </td>\n",
" <td> 12.74 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (82920, 721, 1440) </td>\n",
" <td> (160, 145, 144) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 25950 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"158\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"5\" x2=\"80\" y2=\"75\" />\n",
" <line x1=\"10\" y1=\"10\" x2=\"80\" y2=\"80\" />\n",
" <line x1=\"10\" y1=\"15\" x2=\"80\" y2=\"85\" />\n",
" <line x1=\"10\" y1=\"20\" x2=\"80\" y2=\"91\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"43\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"32\" y2=\"47\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"36\" y2=\"51\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"39\" y2=\"55\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"58\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"47\" y2=\"62\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"50\" y2=\"66\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"69\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"62\" y2=\"77\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"65\" y2=\"81\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"69\" y2=\"84\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"76\" y2=\"92\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,96.00085180870013 10.0,25.41261651458249\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"38\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"41\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"45\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"49\" y2=\"11\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"53\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"56\" y2=\"18\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"60\" y2=\"22\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"64\" y2=\"26\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"67\" y2=\"29\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"71\" y2=\"33\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"75\" y2=\"37\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"79\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"82\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"86\" y2=\"48\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"90\" y2=\"52\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"93\" y2=\"55\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"97\" y2=\"59\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"101\" y2=\"63\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"105\" y2=\"66\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"83\" y2=\"70\" />\n",
" <line x1=\"15\" y1=\"0\" x2=\"86\" y2=\"70\" />\n",
" <line x1=\"18\" y1=\"0\" x2=\"89\" y2=\"70\" />\n",
" <line x1=\"21\" y1=\"0\" x2=\"91\" y2=\"70\" />\n",
" <line x1=\"24\" y1=\"0\" x2=\"94\" y2=\"70\" />\n",
" <line x1=\"26\" y1=\"0\" x2=\"97\" y2=\"70\" />\n",
" <line x1=\"29\" y1=\"0\" x2=\"100\" y2=\"70\" />\n",
" <line x1=\"32\" y1=\"0\" x2=\"103\" y2=\"70\" />\n",
" <line x1=\"35\" y1=\"0\" x2=\"106\" y2=\"70\" />\n",
" <line x1=\"38\" y1=\"0\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 38.24687787339978,0.0 108.83511316751743,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"75\" x2=\"108\" y2=\"75\" />\n",
" <line x1=\"80\" y1=\"80\" x2=\"108\" y2=\"80\" />\n",
" <line x1=\"80\" y1=\"85\" x2=\"108\" y2=\"85\" />\n",
" <line x1=\"80\" y1=\"91\" x2=\"108\" y2=\"91\" />\n",
" <line x1=\"80\" y1=\"96\" x2=\"108\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"83\" y1=\"70\" x2=\"83\" y2=\"96\" />\n",
" <line x1=\"86\" y1=\"70\" x2=\"86\" y2=\"96\" />\n",
" <line x1=\"89\" y1=\"70\" x2=\"89\" y2=\"96\" />\n",
" <line x1=\"91\" y1=\"70\" x2=\"91\" y2=\"96\" />\n",
" <line x1=\"94\" y1=\"70\" x2=\"94\" y2=\"96\" />\n",
" <line x1=\"97\" y1=\"70\" x2=\"97\" y2=\"96\" />\n",
" <line x1=\"100\" y1=\"70\" x2=\"100\" y2=\"96\" />\n",
" <line x1=\"103\" y1=\"70\" x2=\"103\" y2=\"96\" />\n",
" <line x1=\"106\" y1=\"70\" x2=\"106\" y2=\"96\" />\n",
" <line x1=\"108\" y1=\"70\" x2=\"108\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 108.83511316751743,70.58823529411765 108.83511316751743,96.00085180870013 80.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"94.711674\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1440</text>\n",
" <text x=\"128.835113\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,128.835113,83.294544)\">721</text>\n",
" <text x=\"35.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,80.706734)\">82920</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>temperature_2m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(160, 145, 144), meta=np.ndarray&gt;</div><input id='attrs-9c22f1c4-b9d5-4594-8ed3-7051bf98b2e5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9c22f1c4-b9d5-4594-8ed3-7051bf98b2e5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ef94dd05-cbfc-49f8-9991-d3539bd2788c' class='xr-var-data-in' type='checkbox'><label for='data-ef94dd05-cbfc-49f8-9991-d3539bd2788c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>grid_mapping :</span></dt><dd>spatial_ref</dd><dt><span>long_name :</span></dt><dd>Temperature 2 meters above earth surface</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;max&#x27;: 53.25, &#x27;mean&#x27;: 6.041, &#x27;min&#x27;: -79.5}</dd><dt><span>units :</span></dt><dd>C</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 320.71 GiB </td>\n",
" <td> 12.74 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (82920, 721, 1440) </td>\n",
" <td> (160, 145, 144) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 25950 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"158\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"5\" x2=\"80\" y2=\"75\" />\n",
" <line x1=\"10\" y1=\"10\" x2=\"80\" y2=\"80\" />\n",
" <line x1=\"10\" y1=\"15\" x2=\"80\" y2=\"85\" />\n",
" <line x1=\"10\" y1=\"20\" x2=\"80\" y2=\"91\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"43\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"32\" y2=\"47\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"36\" y2=\"51\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"39\" y2=\"55\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"58\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"47\" y2=\"62\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"50\" y2=\"66\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"69\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"62\" y2=\"77\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"65\" y2=\"81\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"69\" y2=\"84\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"76\" y2=\"92\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,96.00085180870013 10.0,25.41261651458249\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"38\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"41\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"45\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"49\" y2=\"11\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"53\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"56\" y2=\"18\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"60\" y2=\"22\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"64\" y2=\"26\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"67\" y2=\"29\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"71\" y2=\"33\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"75\" y2=\"37\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"79\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"82\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"86\" y2=\"48\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"90\" y2=\"52\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"93\" y2=\"55\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"97\" y2=\"59\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"101\" y2=\"63\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"105\" y2=\"66\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"83\" y2=\"70\" />\n",
" <line x1=\"15\" y1=\"0\" x2=\"86\" y2=\"70\" />\n",
" <line x1=\"18\" y1=\"0\" x2=\"89\" y2=\"70\" />\n",
" <line x1=\"21\" y1=\"0\" x2=\"91\" y2=\"70\" />\n",
" <line x1=\"24\" y1=\"0\" x2=\"94\" y2=\"70\" />\n",
" <line x1=\"26\" y1=\"0\" x2=\"97\" y2=\"70\" />\n",
" <line x1=\"29\" y1=\"0\" x2=\"100\" y2=\"70\" />\n",
" <line x1=\"32\" y1=\"0\" x2=\"103\" y2=\"70\" />\n",
" <line x1=\"35\" y1=\"0\" x2=\"106\" y2=\"70\" />\n",
" <line x1=\"38\" y1=\"0\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 38.24687787339978,0.0 108.83511316751743,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"75\" x2=\"108\" y2=\"75\" />\n",
" <line x1=\"80\" y1=\"80\" x2=\"108\" y2=\"80\" />\n",
" <line x1=\"80\" y1=\"85\" x2=\"108\" y2=\"85\" />\n",
" <line x1=\"80\" y1=\"91\" x2=\"108\" y2=\"91\" />\n",
" <line x1=\"80\" y1=\"96\" x2=\"108\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"83\" y1=\"70\" x2=\"83\" y2=\"96\" />\n",
" <line x1=\"86\" y1=\"70\" x2=\"86\" y2=\"96\" />\n",
" <line x1=\"89\" y1=\"70\" x2=\"89\" y2=\"96\" />\n",
" <line x1=\"91\" y1=\"70\" x2=\"91\" y2=\"96\" />\n",
" <line x1=\"94\" y1=\"70\" x2=\"94\" y2=\"96\" />\n",
" <line x1=\"97\" y1=\"70\" x2=\"97\" y2=\"96\" />\n",
" <line x1=\"100\" y1=\"70\" x2=\"100\" y2=\"96\" />\n",
" <line x1=\"103\" y1=\"70\" x2=\"103\" y2=\"96\" />\n",
" <line x1=\"106\" y1=\"70\" x2=\"106\" y2=\"96\" />\n",
" <line x1=\"108\" y1=\"70\" x2=\"108\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 108.83511316751743,70.58823529411765 108.83511316751743,96.00085180870013 80.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"94.711674\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1440</text>\n",
" <text x=\"128.835113\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,128.835113,83.294544)\">721</text>\n",
" <text x=\"35.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,80.706734)\">82920</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_u_10m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(160, 145, 144), meta=np.ndarray&gt;</div><input id='attrs-fd99592a-500b-4762-8d8d-57110745caa9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fd99592a-500b-4762-8d8d-57110745caa9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3d436950-af44-44cc-bd13-46039f10c8a5' class='xr-var-data-in' type='checkbox'><label for='data-3d436950-af44-44cc-bd13-46039f10c8a5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>grid_mapping :</span></dt><dd>spatial_ref</dd><dt><span>long_name :</span></dt><dd>Wind speed u-component 10 meters above earth surface</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;max&#x27;: 87.5, &#x27;mean&#x27;: -0.00644, &#x27;min&#x27;: -96.88}</dd><dt><span>units :</span></dt><dd>m/s</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 320.71 GiB </td>\n",
" <td> 12.74 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (82920, 721, 1440) </td>\n",
" <td> (160, 145, 144) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 25950 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"158\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"5\" x2=\"80\" y2=\"75\" />\n",
" <line x1=\"10\" y1=\"10\" x2=\"80\" y2=\"80\" />\n",
" <line x1=\"10\" y1=\"15\" x2=\"80\" y2=\"85\" />\n",
" <line x1=\"10\" y1=\"20\" x2=\"80\" y2=\"91\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"43\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"32\" y2=\"47\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"36\" y2=\"51\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"39\" y2=\"55\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"58\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"47\" y2=\"62\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"50\" y2=\"66\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"69\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"62\" y2=\"77\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"65\" y2=\"81\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"69\" y2=\"84\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"76\" y2=\"92\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,96.00085180870013 10.0,25.41261651458249\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"38\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"41\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"45\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"49\" y2=\"11\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"53\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"56\" y2=\"18\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"60\" y2=\"22\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"64\" y2=\"26\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"67\" y2=\"29\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"71\" y2=\"33\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"75\" y2=\"37\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"79\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"82\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"86\" y2=\"48\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"90\" y2=\"52\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"93\" y2=\"55\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"97\" y2=\"59\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"101\" y2=\"63\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"105\" y2=\"66\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"83\" y2=\"70\" />\n",
" <line x1=\"15\" y1=\"0\" x2=\"86\" y2=\"70\" />\n",
" <line x1=\"18\" y1=\"0\" x2=\"89\" y2=\"70\" />\n",
" <line x1=\"21\" y1=\"0\" x2=\"91\" y2=\"70\" />\n",
" <line x1=\"24\" y1=\"0\" x2=\"94\" y2=\"70\" />\n",
" <line x1=\"26\" y1=\"0\" x2=\"97\" y2=\"70\" />\n",
" <line x1=\"29\" y1=\"0\" x2=\"100\" y2=\"70\" />\n",
" <line x1=\"32\" y1=\"0\" x2=\"103\" y2=\"70\" />\n",
" <line x1=\"35\" y1=\"0\" x2=\"106\" y2=\"70\" />\n",
" <line x1=\"38\" y1=\"0\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 38.24687787339978,0.0 108.83511316751743,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"75\" x2=\"108\" y2=\"75\" />\n",
" <line x1=\"80\" y1=\"80\" x2=\"108\" y2=\"80\" />\n",
" <line x1=\"80\" y1=\"85\" x2=\"108\" y2=\"85\" />\n",
" <line x1=\"80\" y1=\"91\" x2=\"108\" y2=\"91\" />\n",
" <line x1=\"80\" y1=\"96\" x2=\"108\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"83\" y1=\"70\" x2=\"83\" y2=\"96\" />\n",
" <line x1=\"86\" y1=\"70\" x2=\"86\" y2=\"96\" />\n",
" <line x1=\"89\" y1=\"70\" x2=\"89\" y2=\"96\" />\n",
" <line x1=\"91\" y1=\"70\" x2=\"91\" y2=\"96\" />\n",
" <line x1=\"94\" y1=\"70\" x2=\"94\" y2=\"96\" />\n",
" <line x1=\"97\" y1=\"70\" x2=\"97\" y2=\"96\" />\n",
" <line x1=\"100\" y1=\"70\" x2=\"100\" y2=\"96\" />\n",
" <line x1=\"103\" y1=\"70\" x2=\"103\" y2=\"96\" />\n",
" <line x1=\"106\" y1=\"70\" x2=\"106\" y2=\"96\" />\n",
" <line x1=\"108\" y1=\"70\" x2=\"108\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 108.83511316751743,70.58823529411765 108.83511316751743,96.00085180870013 80.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"94.711674\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1440</text>\n",
" <text x=\"128.835113\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,128.835113,83.294544)\">721</text>\n",
" <text x=\"35.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,80.706734)\">82920</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>wind_v_10m</span></div><div class='xr-var-dims'>(time, latitude, longitude)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array&lt;chunksize=(160, 145, 144), meta=np.ndarray&gt;</div><input id='attrs-c8644c4f-e013-46ea-879b-ba0900199a84' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c8644c4f-e013-46ea-879b-ba0900199a84' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b892aa84-c9fe-4fbd-81d2-aa348aefa217' class='xr-var-data-in' type='checkbox'><label for='data-b892aa84-c9fe-4fbd-81d2-aa348aefa217' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>grid_mapping :</span></dt><dd>spatial_ref</dd><dt><span>long_name :</span></dt><dd>Wind speed v-component 10 meters above earth surface</dd><dt><span>statistics_approximate :</span></dt><dd>{&#x27;max&#x27;: 89.0, &#x27;mean&#x27;: 0.1571, &#x27;min&#x27;: -87.88}</dd><dt><span>units :</span></dt><dd>m/s</dd></dl></div><div class='xr-var-data'><table>\n",
" <tr>\n",
" <td>\n",
" <table style=\"border-collapse: collapse;\">\n",
" <thead>\n",
" <tr>\n",
" <td> </td>\n",
" <th> Array </th>\n",
" <th> Chunk </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" \n",
" <tr>\n",
" <th> Bytes </th>\n",
" <td> 320.71 GiB </td>\n",
" <td> 12.74 MiB </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <th> Shape </th>\n",
" <td> (82920, 721, 1440) </td>\n",
" <td> (160, 145, 144) </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Dask graph </th>\n",
" <td colspan=\"2\"> 25950 chunks in 2 graph layers </td>\n",
" </tr>\n",
" <tr>\n",
" <th> Data type </th>\n",
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
" </td>\n",
" <td>\n",
" <svg width=\"158\" height=\"146\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"10\" y1=\"5\" x2=\"80\" y2=\"75\" />\n",
" <line x1=\"10\" y1=\"10\" x2=\"80\" y2=\"80\" />\n",
" <line x1=\"10\" y1=\"15\" x2=\"80\" y2=\"85\" />\n",
" <line x1=\"10\" y1=\"20\" x2=\"80\" y2=\"91\" />\n",
" <line x1=\"10\" y1=\"25\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"25\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"29\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"32\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"36\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"40\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"28\" y2=\"43\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"32\" y2=\"47\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"36\" y2=\"51\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"39\" y2=\"55\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"43\" y2=\"58\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"47\" y2=\"62\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"50\" y2=\"66\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"54\" y2=\"69\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"58\" y2=\"73\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"62\" y2=\"77\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"65\" y2=\"81\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"69\" y2=\"84\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"73\" y2=\"88\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"76\" y2=\"92\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 80.58823529411765,70.58823529411765 80.58823529411765,96.00085180870013 10.0,25.41261651458249\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"38\" y2=\"0\" style=\"stroke-width:2\" />\n",
" <line x1=\"13\" y1=\"3\" x2=\"41\" y2=\"3\" />\n",
" <line x1=\"17\" y1=\"7\" x2=\"45\" y2=\"7\" />\n",
" <line x1=\"21\" y1=\"11\" x2=\"49\" y2=\"11\" />\n",
" <line x1=\"24\" y1=\"14\" x2=\"53\" y2=\"14\" />\n",
" <line x1=\"28\" y1=\"18\" x2=\"56\" y2=\"18\" />\n",
" <line x1=\"32\" y1=\"22\" x2=\"60\" y2=\"22\" />\n",
" <line x1=\"36\" y1=\"26\" x2=\"64\" y2=\"26\" />\n",
" <line x1=\"39\" y1=\"29\" x2=\"67\" y2=\"29\" />\n",
" <line x1=\"43\" y1=\"33\" x2=\"71\" y2=\"33\" />\n",
" <line x1=\"47\" y1=\"37\" x2=\"75\" y2=\"37\" />\n",
" <line x1=\"50\" y1=\"40\" x2=\"79\" y2=\"40\" />\n",
" <line x1=\"54\" y1=\"44\" x2=\"82\" y2=\"44\" />\n",
" <line x1=\"58\" y1=\"48\" x2=\"86\" y2=\"48\" />\n",
" <line x1=\"62\" y1=\"52\" x2=\"90\" y2=\"52\" />\n",
" <line x1=\"65\" y1=\"55\" x2=\"93\" y2=\"55\" />\n",
" <line x1=\"69\" y1=\"59\" x2=\"97\" y2=\"59\" />\n",
" <line x1=\"73\" y1=\"63\" x2=\"101\" y2=\"63\" />\n",
" <line x1=\"76\" y1=\"66\" x2=\"105\" y2=\"66\" />\n",
" <line x1=\"80\" y1=\"70\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"10\" y1=\"0\" x2=\"80\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"12\" y1=\"0\" x2=\"83\" y2=\"70\" />\n",
" <line x1=\"15\" y1=\"0\" x2=\"86\" y2=\"70\" />\n",
" <line x1=\"18\" y1=\"0\" x2=\"89\" y2=\"70\" />\n",
" <line x1=\"21\" y1=\"0\" x2=\"91\" y2=\"70\" />\n",
" <line x1=\"24\" y1=\"0\" x2=\"94\" y2=\"70\" />\n",
" <line x1=\"26\" y1=\"0\" x2=\"97\" y2=\"70\" />\n",
" <line x1=\"29\" y1=\"0\" x2=\"100\" y2=\"70\" />\n",
" <line x1=\"32\" y1=\"0\" x2=\"103\" y2=\"70\" />\n",
" <line x1=\"35\" y1=\"0\" x2=\"106\" y2=\"70\" />\n",
" <line x1=\"38\" y1=\"0\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"10.0,0.0 38.24687787339978,0.0 108.83511316751743,70.58823529411765 80.58823529411765,70.58823529411765\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
"\n",
" <!-- Horizontal lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"108\" y2=\"70\" style=\"stroke-width:2\" />\n",
" <line x1=\"80\" y1=\"75\" x2=\"108\" y2=\"75\" />\n",
" <line x1=\"80\" y1=\"80\" x2=\"108\" y2=\"80\" />\n",
" <line x1=\"80\" y1=\"85\" x2=\"108\" y2=\"85\" />\n",
" <line x1=\"80\" y1=\"91\" x2=\"108\" y2=\"91\" />\n",
" <line x1=\"80\" y1=\"96\" x2=\"108\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Vertical lines -->\n",
" <line x1=\"80\" y1=\"70\" x2=\"80\" y2=\"96\" style=\"stroke-width:2\" />\n",
" <line x1=\"83\" y1=\"70\" x2=\"83\" y2=\"96\" />\n",
" <line x1=\"86\" y1=\"70\" x2=\"86\" y2=\"96\" />\n",
" <line x1=\"89\" y1=\"70\" x2=\"89\" y2=\"96\" />\n",
" <line x1=\"91\" y1=\"70\" x2=\"91\" y2=\"96\" />\n",
" <line x1=\"94\" y1=\"70\" x2=\"94\" y2=\"96\" />\n",
" <line x1=\"97\" y1=\"70\" x2=\"97\" y2=\"96\" />\n",
" <line x1=\"100\" y1=\"70\" x2=\"100\" y2=\"96\" />\n",
" <line x1=\"103\" y1=\"70\" x2=\"103\" y2=\"96\" />\n",
" <line x1=\"106\" y1=\"70\" x2=\"106\" y2=\"96\" />\n",
" <line x1=\"108\" y1=\"70\" x2=\"108\" y2=\"96\" style=\"stroke-width:2\" />\n",
"\n",
" <!-- Colored Rectangle -->\n",
" <polygon points=\"80.58823529411765,70.58823529411765 108.83511316751743,70.58823529411765 108.83511316751743,96.00085180870013 80.58823529411765,96.00085180870013\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
"\n",
" <!-- Text -->\n",
" <text x=\"94.711674\" y=\"116.000852\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >1440</text>\n",
" <text x=\"128.835113\" y=\"83.294544\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,128.835113,83.294544)\">721</text>\n",
" <text x=\"35.294118\" y=\"80.706734\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,35.294118,80.706734)\">82920</text>\n",
"</svg>\n",
" </td>\n",
" </tr>\n",
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-34bd443a-5183-4582-b6cb-69aaa4be7529' class='xr-section-summary-in' type='checkbox' ><label for='section-34bd443a-5183-4582-b6cb-69aaa4be7529' class='xr-section-summary' >Indexes: <span>(3)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-index-name'><div>latitude</div></div><div class='xr-index-preview'>PandasIndex</div><input type='checkbox' disabled/><label></label><input id='index-63471b58-ca31-4382-83b5-810fc0b49425' class='xr-index-data-in' type='checkbox'/><label for='index-63471b58-ca31-4382-83b5-810fc0b49425' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([ 90.0, 89.75, 89.5, 89.25, 89.0, 88.75, 88.5, 88.25, 88.0,\n",
" 87.75,\n",
" ...\n",
" -87.75, -88.0, -88.25, -88.5, -88.75, -89.0, -89.25, -89.5, -89.75,\n",
" -90.0],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;latitude&#x27;, length=721))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>longitude</div></div><div class='xr-index-preview'>PandasIndex</div><input type='checkbox' disabled/><label></label><input id='index-cd9f8ffc-7ac2-4ec7-a108-53829a9c539a' class='xr-index-data-in' type='checkbox'/><label for='index-cd9f8ffc-7ac2-4ec7-a108-53829a9c539a' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([ -180.0, -179.75, -179.5, -179.25, -179.0, -178.75, -178.5, -178.25,\n",
" -178.0, -177.75,\n",
" ...\n",
" 177.5, 177.75, 178.0, 178.25, 178.5, 178.75, 179.0, 179.25,\n",
" 179.5, 179.75],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;longitude&#x27;, length=1440))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>time</div></div><div class='xr-index-preview'>PandasIndex</div><input type='checkbox' disabled/><label></label><input id='index-7c448796-a8f1-4115-8535-61902c7781f7' class='xr-index-data-in' type='checkbox'/><label for='index-7c448796-a8f1-4115-8535-61902c7781f7' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(DatetimeIndex([&#x27;2015-01-15 00:00:00&#x27;, &#x27;2015-01-15 01:00:00&#x27;,\n",
" &#x27;2015-01-15 02:00:00&#x27;, &#x27;2015-01-15 03:00:00&#x27;,\n",
" &#x27;2015-01-15 04:00:00&#x27;, &#x27;2015-01-15 05:00:00&#x27;,\n",
" &#x27;2015-01-15 06:00:00&#x27;, &#x27;2015-01-15 07:00:00&#x27;,\n",
" &#x27;2015-01-15 08:00:00&#x27;, &#x27;2015-01-15 09:00:00&#x27;,\n",
" ...\n",
" &#x27;2024-06-30 14:00:00&#x27;, &#x27;2024-06-30 15:00:00&#x27;,\n",
" &#x27;2024-06-30 16:00:00&#x27;, &#x27;2024-06-30 17:00:00&#x27;,\n",
" &#x27;2024-06-30 18:00:00&#x27;, &#x27;2024-06-30 19:00:00&#x27;,\n",
" &#x27;2024-06-30 20:00:00&#x27;, &#x27;2024-06-30 21:00:00&#x27;,\n",
" &#x27;2024-06-30 22:00:00&#x27;, &#x27;2024-06-30 23:00:00&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;, name=&#x27;time&#x27;, length=82920, freq=None))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-070a18be-0c37-4410-bdeb-5cdc2b4e37bd' class='xr-section-summary-in' type='checkbox' checked><label for='section-070a18be-0c37-4410-bdeb-5cdc2b4e37bd' class='xr-section-summary' >Attributes: <span>(8)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>attribution :</span></dt><dd>NOAA NCEP GFS data processed by dynamical.org from NCAR and NOAA BDP AWS archives.</dd><dt><span>description :</span></dt><dd>Historical weather data from the Global Forecast System (GFS) model operated by NOAA NCEP.</dd><dt><span>id :</span></dt><dd>noaa-gfs-analysis-hourly</dd><dt><span>name :</span></dt><dd>NOAA GFS analysis, hourly</dd><dt><span>spatial_domain :</span></dt><dd>Global</dd><dt><span>spatial_resolution :</span></dt><dd>0.25 degrees (~20km)</dd><dt><span>time_domain :</span></dt><dd>2015-01-15 00:00:00 UTC to 2024-07-01 00:00:00 UTC</dd><dt><span>time_resolution :</span></dt><dd>1 hour</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.Dataset> Size: 1TB\n",
"Dimensions: (time: 82920, latitude: 721, longitude: 1440)\n",
"Coordinates:\n",
" * latitude (latitude) float64 6kB 90.0 89.75 ... -89.75 -90.0\n",
" * longitude (longitude) float64 12kB -180.0 -179.8 ... 179.8\n",
" spatial_ref int64 8B ...\n",
" * time (time) datetime64[ns] 663kB 2015-01-15 ... 2024-06...\n",
"Data variables:\n",
" precipitation_surface (time, latitude, longitude) float32 344GB dask.array<chunksize=(160, 145, 144), meta=np.ndarray>\n",
" temperature_2m (time, latitude, longitude) float32 344GB dask.array<chunksize=(160, 145, 144), meta=np.ndarray>\n",
" wind_u_10m (time, latitude, longitude) float32 344GB dask.array<chunksize=(160, 145, 144), meta=np.ndarray>\n",
" wind_v_10m (time, latitude, longitude) float32 344GB dask.array<chunksize=(160, 145, 144), meta=np.ndarray>\n",
"Attributes:\n",
" attribution: NOAA NCEP GFS data processed by dynamical.org from N...\n",
" description: Historical weather data from the Global Forecast Sys...\n",
" id: noaa-gfs-analysis-hourly\n",
" name: NOAA GFS analysis, hourly\n",
" spatial_domain: Global\n",
" spatial_resolution: 0.25 degrees (~20km)\n",
" time_domain: 2015-01-15 00:00:00 UTC to 2024-07-01 00:00:00 UTC\n",
" time_resolution: 1 hour"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ds_gfs = xr.open_zarr(\"https://data.dynamical.org/noaa/gfs/analysis-hourly/latest.zarr?email=optional@email.com\")\n",
"ds_gfs"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "f06cb3d6-656e-4c48-85e0-0d089992bd11",
"metadata": {},
"outputs": [],
"source": [
"da_gfs = (ds_gfs[var].sel(latitude=lat_point, longitude=lon_point, method=\"nearest\")\n",
" .sel(time=slice(start, stop))).load()"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "001f4628-72cb-408f-8b70-5d59b711ab32",
"metadata": {},
"outputs": [],
"source": [
"gfs_viz = da_gfs.hvplot(x='time', grid=True, label='GFS')"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "76ebe731-5ff8-4980-8113-fccd218fd660",
"metadata": {},
"outputs": [
{
"data": {},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.holoviews_exec.v0+json": "",
"text/html": [
"<div id='1e21022e-6353-4359-b805-784d6dfa01fb'>\n",
" <div id=\"dd1fc88e-d8f4-4011-bdbe-f53bb36da093\" data-root-id=\"1e21022e-6353-4359-b805-784d6dfa01fb\" style=\"display: contents;\"></div>\n",
"</div>\n",
"<script type=\"application/javascript\">(function(root) {\n",
" var docs_json = {\"14e8a467-d61f-4692-97e0-a3d2d0aa624a\":{\"version\":\"3.7.3\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Row\",\"id\":\"1e21022e-6353-4359-b805-784d6dfa01fb\",\"attributes\":{\"name\":\"Row00353\",\"tags\":[\"embedded\"],\"stylesheets\":[\"\\n:host(.pn-loading):before, .pn-loading:before {\\n background-color: #c3c3c3;\\n mask-size: auto calc(min(50%, 400px));\\n -webkit-mask-size: auto calc(min(50%, 400px));\\n}\",{\"type\":\"object\",\"name\":\"ImportedStyleSheet\",\"id\":\"39740145-0f98-4c30-afbf-da38d3c8a2f2\",\"attributes\":{\"url\":\"https://cdn.holoviz.org/panel/1.7.5/dist/css/loading.css\"}},{\"type\":\"object\",\"name\":\"ImportedStyleSheet\",\"id\":\"ae851db6-006e-40b7-ac1d-826a434376b9\",\"attributes\":{\"url\":\"https://cdn.holoviz.org/panel/1.7.5/dist/css/listpanel.css\"}},{\"type\":\"object\",\"name\":\"ImportedStyleSheet\",\"id\":\"51debe58-e1dd-454a-8040-2463df14ebe8\",\"attributes\":{\"url\":\"https://cdn.holoviz.org/panel/1.7.5/dist/bundled/theme/default.css\"}},{\"type\":\"object\",\"name\":\"ImportedStyleSheet\",\"id\":\"c18c58c2-68fa-4bb5-a933-95a1908bec31\",\"attributes\":{\"url\":\"https://cdn.holoviz.org/panel/1.7.5/dist/bundled/theme/native.css\"}}],\"min_width\":700,\"margin\":0,\"sizing_mode\":\"stretch_width\",\"align\":\"start\",\"children\":[{\"type\":\"object\",\"name\":\"Spacer\",\"id\":\"888b5270-66a7-4be6-95da-2aee1c7d6962\",\"attributes\":{\"name\":\"HSpacer00357\",\"stylesheets\":[\"\\n:host(.pn-loading):before, .pn-loading:before {\\n background-color: #c3c3c3;\\n mask-size: auto calc(min(50%, 400px));\\n -webkit-mask-size: auto calc(min(50%, 400px));\\n}\",{\"id\":\"39740145-0f98-4c30-afbf-da38d3c8a2f2\"},{\"id\":\"51debe58-e1dd-454a-8040-2463df14ebe8\"},{\"id\":\"c18c58c2-68fa-4bb5-a933-95a1908bec31\"}],\"min_width\":0,\"margin\":0,\"sizing_mode\":\"stretch_width\",\"align\":\"start\"}},{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"272b74d4-0426-4618-ae50-32f3fddf4b8d\",\"attributes\":{\"width\":700,\"height\":300,\"margin\":[5,10],\"sizing_mode\":\"fixed\",\"align\":\"start\",\"x_range\":{\"type\":\"object\",\"name\":\"Range1d\",\"id\":\"800a498a-b314-4fba-a0ae-98c8ef4102be\",\"attributes\":{\"name\":\"time\",\"tags\":[[[\"Time\",null]],[]],\"start\":1596240000000.0,\"end\":1598828400000.0,\"reset_start\":1596240000000.0,\"reset_end\":1598828400000.0}},\"y_range\":{\"type\":\"object\",\"name\":\"Range1d\",\"id\":\"3960be46-f5b5-44a4-aca0-c5cdca4fbb93\",\"attributes\":{\"name\":\"wind_v_10m\",\"tags\":[[[\"10 metre V wind component\",\"m s-1\"]],{\"type\":\"map\",\"entries\":[[\"invert_yaxis\",false],[\"autorange\",false]]}],\"start\":-8.490625,\"end\":10.896875,\"reset_start\":-8.490625,\"reset_end\":10.896875}},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"e2d6bbf0-ce7b-4da3-80d6-803c3038645d\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"8ac1a51e-853e-4b2e-b33b-08e59c3fb025\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"a6519495-ea83-4e4f-bf86-c4a777ff158f\",\"attributes\":{\"text\":\"10m North Wind:(-70.603846, 41.729479))\",\"text_color\":\"black\",\"text_font_size\":\"12pt\"}},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"992a03e5-78cb-4adb-89c3-b94c190fa346\",\"attributes\":{\"name\":\"HRRR\",\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"1011ddbf-77a9-4d5d-8363-fcfa42a0e1a7\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"d12a17ad-a17d-49ea-b78d-fabcede965c8\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"77027db4-bb33-4451-99a1-4d8262c7336d\"},\"data\":{\"type\":\"map\",\"entries\":[[\"time\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"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\"},\"shape\":[720],\"dtype\":\"float64\",\"order\":\"little\"}],[\"wind_v_10m\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"AACWvwAADL8AAAy+AADUPQAAaL4AAGK+AADuPQAAvL4AAA6/AAAcvwAAOL8AAC6/AADIvwAA6r8AABDAAAAwwAAATMAAAGbAAABUwAAAAsAAAEBAAABiQAAAQEAAABxAAADgPwAAzj8AAN4/AADiPwAA8j8AAOQ/AADaPwAA7D8AAMY/AACQPwAAgj8AAMA/AAAwQAAAZEAAAIxAAACOQAAAmEAAAJ5AAACqQAAAskAAAJ5AAACgQAAAkEAAAJBAAACUQAAAikAAAH5AAACcQAAArEAAAKhAAACWQAAAlkAAAIpAAACaQAAAkEAAAIhAAACSQAAAqEAAALZAAADAQAAAzEAAAOpAAADyQAAA7EAAAOxAAADYQAAA1kAAAKxAAACEQAAAcEAAAFhAAAAsQAAAFEAAAH4/AACwPwAA0j8AAKw/AACoPwAAgj8AAJA/AADGPwAACEAAAEhAAAB8QAAAmEAAAKpAAACgQAAAqkAAAKBAAADiQAAACEEAAAJBAAAEQQAA7EAAAOxAAADWQAAAxkAAAJRAAACMQAAAYkAAAF5AAABAQAAAKkAAAG5AAABcQAAAjEAAAIZAAACgQAAAsEAAAMJAAADSQAAAvkAAAMBAAADCQAAAskAAAJJAAACAQAAAOEAAAB5AAAAcQAAAEEAAAL4/AABOPwAA8r4AAMC/AADGvwAA1L8AADq/AADcvwAAHsAAABTAAACIvwAA2j8AAIBAAACEQAAAgkAAAIJAAACSQAAAZEAAADBAAADGPwAA9j4AAF4/AAAoPwAACj8AABQ+AACYvAAAHD4AAEa9AACcvgAA7r4AABK/AABKvwAAhL8AAALAAAAOwAAALsAAAB7AAAC4vwAAfL8AAMi/AAAEwAAASMAAACLAAADwvwAAWL8AACi/AABWvwAARL8AAFK/AAAuvwAAXL8AAJC/AACgvwAAFL8AALi/AACovwAADMAAABrAAABUwAAAWMAAAG7AAACAwAAAUMAAAETAAAAQwAAAnL8AAEY/AADQPwAA5j8AACRAAAAsQAAAEEAAAApAAADwPwAAzj8AAMw/AADOPwAA2j8AAOA/AAAQQAAAJEAAAEZAAAB2QAAAjkAAAKZAAAC0QAAAqkAAALpAAACsQAAAhkAAAH5AAABqQAAAYEAAAEZAAABQQAAAXEAAAFpAAABUQAAASkAAAEBAAAAyQAAAHEAAAC5AAABIQAAAVkAAAG5AAACMQAAApEAAAMRAAADUQAAAvEAAAMpAAADGQAAArkAAAKBAAACMQAAAcEAAAF5AAABWQAAAZEAAAGhAAABuQAAAcEAAAGhAAABaQAAAOEAAADxAAABYQAAAhkAAAJBAAACgQAAAskAAALJAAACwQAAAvkAAAMJAAAC8QAAAsEAAAKZAAACYQAAAkEAAAJ5AAACmQAAArEAAAKBAAACUQAAAkkAAAJJAAACKQAAAakAAAHRAAABOQAAAZEAAAF5AAABOQAAAgkAAAJ5AAACsQAAAoEAAAKBAAACUQAAAjEAAAIJAAABOQAAAJkAAAChAAAAcQAAAKEAAABxAAADsPwAAXj8AAOI+AACkvgAA2L8AABTAAABqwAAARMAAAGDAAACCwAAAWMAAAFDAAABIwAAA/L8AABrAAAAowAAAxL8AAFS/AADovQAABL0AAIy8AADaPgAArj4AABQ/AAAyPwAAVL8AAE6/AADGvwAApr8AALC/AAAUwAAAfMAAAIbAAACQwAAAjMAAAKDAAACewAAApsAAAKrAAACmwAAAoMAAAHzAAABIwAAAKMAAANq/AAD4vwAADsAAAALAAADkvwAAAsAAAB7AAAAcwAAAKsAAAG7AAACGwAAAnMAAAJjAAACowAAAxMAAAKbAAAC2wAAAqMAAAJDAAACewAAAjMAAAIjAAACAwAAASMAAADDAAAD+vwAA2r8AAM6/AAB8vwAApL8AAJq/AACgvwAA5r8AAATAAAAYwAAAOsAAAFLAAAA4wAAAQMAAADLAAAAswAAAXMAAAFjAAABgwAAAVsAAAGDAAABYwAAAXsAAAELAAAAwwAAALsAAAJbAAACiwAAArsAAAJ7AAACiwAAAmsAAAJbAAACUwAAAkMAAAJDAAACawAAAjMAAAHjAAABuwAAAfsAAAGzAAABKwAAA/L8AANa+AAAaPwAAoj8AAMw/AACYPwAAtj8AAA5AAAA0QAAAHkAAAOQ/AADcPwAA9j8AAH5AAABCQAAANkAAAHBAAACMQAAAkkAAAKRAAADAQAAAoEAAANRAAAC0QAAArEAAAJBAAABCQAAAGEAAAApAAADSPwAAtj8AAMY/AACkPwAAhD8AAFw+AAAIvwAA+r0AADS/AADUvwAA7L8AAJi/AACcPQAAeD8AAARAAABKQAAAtEAAAIxAAAAeQAAANkAAAMg/AAAwPwAAGL4AAP69AACMvgAAhr4AAL4+AACGPgAAlr4AAH6/AABgvwAAqL8AACS/AAACwAAALsAAAEDAAABAwAAAOMAAAPy/AADcPgAAjkAAAIhAAACaQAAAmEAAAIhAAAA0QAAAEEAAAAZAAAAcQAAA/D8AAOI/AAD2PwAAAkAAAOo/AADIPwAAwD8AALQ/AAAWQAAAYEAAAHhAAACaQAAArEAAAMZAAADMQAAAykAAAMpAAADIQAAApkAAAJZAAACAQAAAZEAAAFBAAABkQAAAQEAAABZAAAAIQAAAzj8AANg/AADsPwAAlD8AAM4+AAASPQAACj4AAPA+AADcPwAAMEAAAIRAAACgQAAAmEAAAJhAAAAeQAAAbr8AABZAAAAIQAAABEAAANQ/AACwPwAArj8AAMg/AAAUPwAAbr8AAD6/AAAgvwAAGD0AAKA9AAAOvwAAFr4AAPo+AACUPwAAFkAAAHBAAACSQAAAqEAAAKZAAACoQAAAfkAAAABAAADMPwAAOD8AAAZAAAAWQAAAIkAAACpAAABCQAAAPkAAAPY/AABiPwAAVj8AAIo/AADcPwAAGkAAAExAAABgQAAAekAAAIxAAACgQAAAlkAAAGxAAAB8QAAAYEAAAEJAAAA8QAAAKEAAACBAAAAUQAAAEkAAADBAAAAeQAAAMkAAACRAAAAMQAAA5j8AAAhAAAAIQAAAGkAAADRAAAB2QAAAqkAAALZAAABgQAAAnkAAAOI/AACGPgAAWD8AAIg/AAC0PgAAQL8AAGTAAACGwAAAgsAAAFzAAABCwAAAJMAAAPq/AADcvwAA7L8AALC/AABAwAAASsAAAD7AAAAEwAAAzr8AAJC/AAC4vQAAHD8AAHY/AAACvgAArL4AACC+AADcvQAADr4AAGq8AADIPgAANDwAAMy+AACGvwAAeL8AACS/AACqPgAAAEAAAJA/AAAiPwAAHj8AAOI/AADwPwAATkAAAFBAAABCQAAA1j8AAOg/AACiPwAAQD8AAJI+AACsPgAATj4AAEC/AACUvgAA2D4AAE69AAB2vgAAAL0AAPq9AADSvQAAjr4AAIq+AACWvwAAQL8AAAq+AAAGPgAAiL8AAMy/AACCvwAARj8AAKRAAAC0QAAATkAAAMK/AAC2vwAAHr8AAGg/AABQPwAApD8AAJo/AACiPwAA4j8AANg/AAD+PwAACEAAADxAAAB0QAAApEAAAKhAAACmQAAAmEAAAM5AAAC+QAAAsEAAAJhAAACqQAAAokAAAJhAAACqQAAAgEAAAHpAAABeQAAAIkAAACxAAABiPwAAXr4AAIi9AAAOPgAAyD8AAM4/AAC+PwAA/D8AANA/AAC4PwAAAD8AAIS/AADOvwAA3L8AACLAAAAywAAALsAAACrA\"},\"shape\":[720],\"dtype\":\"float32\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"c6bf829b-eeb7-42f8-8d7c-da59f3c2e8b9\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"0368ce47-b2c4-4d91-a5dd-50d27510fdd0\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"df5546b4-1719-4a58-85c9-a8b19e76caa0\",\"attributes\":{\"tags\":[\"apply_ranges\"],\"x\":{\"type\":\"field\",\"field\":\"time\"},\"y\":{\"type\":\"field\",\"field\":\"wind_v_10m\"},\"line_color\":\"#30a2da\",\"line_width\":2}},\"selection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"451ce80d-8cdb-4651-a5b0-554b658b0629\",\"attributes\":{\"tags\":[\"apply_ranges\"],\"x\":{\"type\":\"field\",\"field\":\"time\"},\"y\":{\"type\":\"field\",\"field\":\"wind_v_10m\"},\"line_color\":\"#30a2da\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"5531a7e2-080c-41cf-83b1-727f9c7a0b16\",\"attributes\":{\"tags\":[\"apply_ranges\"],\"x\":{\"type\":\"field\",\"field\":\"time\"},\"y\":{\"type\":\"field\",\"field\":\"wind_v_10m\"},\"line_color\":\"#30a2da\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"c4e97859-fb37-4878-8217-5e38c817ecbb\",\"attributes\":{\"tags\":[\"apply_ranges\"],\"x\":{\"type\":\"field\",\"field\":\"time\"},\"y\":{\"type\":\"field\",\"field\":\"wind_v_10m\"},\"line_color\":\"#30a2da\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"e88c59a8-862d-4464-9038-2526a577806b\",\"attributes\":{\"name\":\"GFS\",\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"ac21b1d6-ad22-4bab-aa92-0a1fb1a3e0a1\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"6f400988-3d57-40cc-9b37-3fb7c7cd96c4\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"9a2f9ff0-1726-411f-b759-11985a90efea\"},\"data\":{\"type\":\"map\",\"entries\":[[\"time\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"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\"},\"shape\":[720],\"dtype\":\"float64\",\"order\":\"little\"}],[\"wind_v_10m\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"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\"},\"shape\":[720],\"dtype\":\"float32\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"9d746081-fd39-4bca-b348-b5fd5355d0f4\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"887a93b7-8985-42f2-8ea8-60ac8afcb5ac\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"c67982df-aa64-40df-90d5-99faca5fa9d1\",\"attributes\":{\"tags\":[\"apply_ranges\"],\"x\":{\"type\":\"field\",\"field\":\"time\"},\"y\":{\"type\":\"field\",\"field\":\"wind_v_10m\"},\"line_color\":\"#fc4f30\",\"line_width\":2}},\"selection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"a6155eb0-0a00-47f1-85de-ea12e1bfd61e\",\"attributes\":{\"tags\":[\"apply_ranges\"],\"x\":{\"type\":\"field\",\"field\":\"time\"},\"y\":{\"type\":\"field\",\"field\":\"wind_v_10m\"},\"line_color\":\"#fc4f30\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"1ee4b37e-11d2-4a19-87de-162f27e32187\",\"attributes\":{\"tags\":[\"apply_ranges\"],\"x\":{\"type\":\"field\",\"field\":\"time\"},\"y\":{\"type\":\"field\",\"field\":\"wind_v_10m\"},\"line_color\":\"#fc4f30\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"fa36fd45-9124-4d78-8405-ca49183f3b8d\",\"attributes\":{\"tags\":[\"apply_ranges\"],\"x\":{\"type\":\"field\",\"field\":\"time\"},\"y\":{\"type\":\"field\",\"field\":\"wind_v_10m\"},\"line_color\":\"#fc4f30\",\"line_alpha\":0.2,\"line_width\":2}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"42bbdb0f-f3b3-4fa4-839c-433c9c5f58b4\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"cc04686f-f309-4603-9e19-21dd58c8e65e\",\"attributes\":{\"tags\":[\"hv_created\"],\"renderers\":\"auto\",\"zoom_together\":\"none\"}},{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"9089618e-8f7d-4d90-96b7-04e5202e28d4\",\"attributes\":{\"tags\":[\"hv_created\"],\"renderers\":[{\"id\":\"992a03e5-78cb-4adb-89c3-b94c190fa346\"}],\"tooltips\":[[\"Time\",\"@{time}{%F %T}\"],[\"10 metre V wind component (m s-1)\",\"@{wind_v_10m}\"]],\"formatters\":{\"type\":\"map\",\"entries\":[[\"@{time}\",\"datetime\"]]}}},{\"type\":\"object\",\"name\":\"HoverTool\",\"id\":\"c138828f-4e59-42fd-a96e-baa28ec70962\",\"attributes\":{\"tags\":[\"hv_created\"],\"renderers\":[{\"id\":\"e88c59a8-862d-4464-9038-2526a577806b\"}],\"tooltips\":[[\"Time\",\"@{time}{%F %T}\"],[\"Wind speed v-component 10 meters above earth surface (m/s)\",\"@{wind_v_10m}\"]],\"formatters\":{\"type\":\"map\",\"entries\":[[\"@{time}\",\"datetime\"]]}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"4fb9c3e1-46fb-4eeb-850d-ef19bc991b71\"},{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"bba9d330-3c95-4da7-8e2c-abc245420e5c\"},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"f4a196b7-c97e-4685-ba7a-a75176df841b\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"bba9e227-427a-4e3f-a388-747e08eba5e6\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"ec5b54ea-c529-4643-8b7f-a8190f1da490\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"9febf232-2bf7-4b9c-b467-5aff36c86b6b\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"ed2c4c52-68f1-4bc1-880a-e8a5f861475f\"}],\"active_drag\":{\"id\":\"bba9d330-3c95-4da7-8e2c-abc245420e5c\"},\"active_scroll\":{\"id\":\"cc04686f-f309-4603-9e19-21dd58c8e65e\"}}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"5af2fddb-282d-49c2-84e6-085fc480b7a2\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"816e4a2f-b6bb-4e0d-a4e0-1f674e1585d1\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"8fa3db4e-04a7-4d3f-af32-2c492eaa1859\"},\"axis_label\":\"10 metre V wind component (m s-1)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"f7f4dbdb-08fe-4507-b866-b01b9c3bfaa9\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"DatetimeAxis\",\"id\":\"3f30086b-fe46-4c4b-8663-00fdcfacb1c1\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"DatetimeTicker\",\"id\":\"e2b3d76b-7883-46c0-9467-6ca3f0c5808b\",\"attributes\":{\"num_minor_ticks\":5,\"tickers\":[{\"type\":\"object\",\"name\":\"AdaptiveTicker\",\"id\":\"d35eae27-5dbb-4c8a-ad6a-bbc1f3252a79\",\"attributes\":{\"num_minor_ticks\":0,\"mantissas\":[1,2,5],\"max_interval\":500.0}},{\"type\":\"object\",\"name\":\"AdaptiveTicker\",\"id\":\"4ad175b6-2f3d-45e1-9201-4941674dd1ca\",\"attributes\":{\"num_minor_ticks\":0,\"base\":60,\"mantissas\":[1,2,5,10,15,20,30],\"min_interval\":1000.0,\"max_interval\":1800000.0}},{\"type\":\"object\",\"name\":\"AdaptiveTicker\",\"id\":\"0cee5d34-f00f-40d9-91e7-9f64d0af9144\",\"attributes\":{\"num_minor_ticks\":0,\"base\":24,\"mantissas\":[1,2,4,6,8,12],\"min_interval\":3600000.0,\"max_interval\":43200000.0}},{\"type\":\"object\",\"name\":\"DaysTicker\",\"id\":\"87f14307-5c9c-4bf2-8032-e20081626f13\",\"attributes\":{\"days\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]}},{\"type\":\"object\",\"name\":\"DaysTicker\",\"id\":\"edc8f26e-0220-4dfe-9a05-e6cc353de40d\",\"attributes\":{\"days\":[1,4,7,10,13,16,19,22,25,28]}},{\"type\":\"object\",\"name\":\"DaysTicker\",\"id\":\"11acc343-219e-4b36-aee4-e3466808c599\",\"attributes\":{\"days\":[1,8,15,22]}},{\"type\":\"object\",\"name\":\"DaysTicker\",\"id\":\"d025df03-5032-49ae-8243-63d52a6a4382\",\"attributes\":{\"days\":[1,15]}},{\"type\":\"object\",\"name\":\"MonthsTicker\",\"id\":\"54cdfe6e-01c7-4832-9a27-f1ce73a4ac5a\",\"attributes\":{\"months\":[0,1,2,3,4,5,6,7,8,9,10,11]}},{\"type\":\"object\",\"name\":\"MonthsTicker\",\"id\":\"d24f26c1-fb86-4023-bd41-db1b79e9b51b\",\"attributes\":{\"months\":[0,2,4,6,8,10]}},{\"type\":\"object\",\"name\":\"MonthsTicker\",\"id\":\"fe234a9b-872b-4c56-9d57-221e633ab59c\",\"attributes\":{\"months\":[0,4,8]}},{\"type\":\"object\",\"name\":\"MonthsTicker\",\"id\":\"672a2670-b0b1-4167-8986-c16fa11ffdea\",\"attributes\":{\"months\":[0,6]}},{\"type\":\"object\",\"name\":\"YearsTicker\",\"id\":\"7d0ff4a8-b8f1-43b1-abf6-9e6038e504d2\"}]}},\"formatter\":{\"type\":\"object\",\"name\":\"DatetimeTickFormatter\",\"id\":\"2027f515-7274-4bc2-9981-7e4fbab80ace\",\"attributes\":{\"seconds\":\"%T\",\"minsec\":\"%T\",\"minutes\":\"%H:%M\",\"hours\":\"%H:%M\",\"days\":\"%b %d\",\"months\":\"%b %Y\",\"strip_leading_zeros\":[\"microseconds\",\"milliseconds\",\"seconds\"],\"boundary_scaling\":false,\"context\":{\"type\":\"object\",\"name\":\"DatetimeTickFormatter\",\"id\":\"c96bc17a-d897-42b3-958e-87942aae1e07\",\"attributes\":{\"microseconds\":\"%T\",\"milliseconds\":\"%T\",\"seconds\":\"%b %d, %Y\",\"minsec\":\"%b %d, %Y\",\"minutes\":\"%b %d, %Y\",\"hourmin\":\"%b %d, %Y\",\"hours\":\"%b %d, %Y\",\"days\":\"%Y\",\"months\":\"\",\"years\":\"\",\"boundary_scaling\":false,\"hide_repeats\":true,\"context\":{\"type\":\"object\",\"name\":\"DatetimeTickFormatter\",\"id\":\"563bd86b-2388-4b92-b3ec-a0c06b300489\",\"attributes\":{\"microseconds\":\"%b %d, %Y\",\"milliseconds\":\"%b %d, %Y\",\"seconds\":\"\",\"minsec\":\"\",\"minutes\":\"\",\"hourmin\":\"\",\"hours\":\"\",\"days\":\"\",\"months\":\"\",\"years\":\"\",\"boundary_scaling\":false,\"hide_repeats\":true}},\"context_which\":\"all\"}},\"context_which\":\"all\"}},\"axis_label\":\"Time\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"2acb5cf5-4db6-4619-9a5b-2ea6326349b2\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"93f6579a-c84f-4cba-9143-a66cd81bca4a\",\"attributes\":{\"axis\":{\"id\":\"3f30086b-fe46-4c4b-8663-00fdcfacb1c1\"},\"ticker\":{\"id\":\"e2b3d76b-7883-46c0-9467-6ca3f0c5808b\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"d786f8a1-bbef-445f-9d79-2044e2506d0b\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"5af2fddb-282d-49c2-84e6-085fc480b7a2\"},\"ticker\":{\"id\":\"816e4a2f-b6bb-4e0d-a4e0-1f674e1585d1\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"b385fe45-7286-45d2-abb2-679f84cefa5c\",\"attributes\":{\"click_policy\":\"mute\",\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"f3bb4f96-c66a-4ea7-b312-c600f31f5666\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"HRRR\"},\"renderers\":[{\"id\":\"992a03e5-78cb-4adb-89c3-b94c190fa346\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"11d42ec5-83b1-4799-b89c-1fa0aeccded3\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"GFS\"},\"renderers\":[{\"id\":\"e88c59a8-862d-4464-9038-2526a577806b\"}]}}]}}],\"min_border_top\":10,\"min_border_bottom\":10,\"min_border_left\":10,\"min_border_right\":10,\"output_backend\":\"webgl\"}},{\"type\":\"object\",\"name\":\"Spacer\",\"id\":\"45a0e4ab-aa93-46ca-8a5f-376c77a02010\",\"attributes\":{\"name\":\"HSpacer00358\",\"stylesheets\":[\"\\n:host(.pn-loading):before, .pn-loading:before {\\n background-color: #c3c3c3;\\n mask-size: auto calc(min(50%, 400px));\\n -webkit-mask-size: auto calc(min(50%, 400px));\\n}\",{\"id\":\"39740145-0f98-4c30-afbf-da38d3c8a2f2\"},{\"id\":\"51debe58-e1dd-454a-8040-2463df14ebe8\"},{\"id\":\"c18c58c2-68fa-4bb5-a933-95a1908bec31\"}],\"min_width\":0,\"margin\":0,\"sizing_mode\":\"stretch_width\",\"align\":\"start\"}}]}}],\"defs\":[{\"type\":\"model\",\"name\":\"ReactiveHTML1\"},{\"type\":\"model\",\"name\":\"FlexBox1\",\"properties\":[{\"name\":\"align_content\",\"kind\":\"Any\",\"default\":\"flex-start\"},{\"name\":\"align_items\",\"kind\":\"Any\",\"default\":\"flex-start\"},{\"name\":\"flex_direction\",\"kind\":\"Any\",\"default\":\"row\"},{\"name\":\"flex_wrap\",\"kind\":\"Any\",\"default\":\"wrap\"},{\"name\":\"gap\",\"kind\":\"Any\",\"default\":\"\"},{\"name\":\"justify_content\",\"kind\":\"Any\",\"default\":\"flex-start\"}]},{\"type\":\"model\",\"name\":\"FloatPanel1\",\"properties\":[{\"name\":\"config\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}},{\"name\":\"contained\",\"kind\":\"Any\",\"default\":true},{\"name\":\"position\",\"kind\":\"Any\",\"default\":\"right-top\"},{\"name\":\"offsetx\",\"kind\":\"Any\",\"default\":null},{\"name\":\"offsety\",\"kind\":\"Any\",\"default\":null},{\"name\":\"theme\",\"kind\":\"Any\",\"default\":\"primary\"},{\"name\":\"status\",\"kind\":\"Any\",\"default\":\"normalized\"}]},{\"type\":\"model\",\"name\":\"GridStack1\",\"properties\":[{\"name\":\"ncols\",\"kind\":\"Any\",\"default\":null},{\"name\":\"nrows\",\"kind\":\"Any\",\"default\":null},{\"name\":\"allow_resize\",\"kind\":\"Any\",\"default\":true},{\"name\":\"allow_drag\",\"kind\":\"Any\",\"default\":true},{\"name\":\"state\",\"kind\":\"Any\",\"default\":[]}]},{\"type\":\"model\",\"name\":\"drag1\",\"properties\":[{\"name\":\"slider_width\",\"kind\":\"Any\",\"default\":5},{\"name\":\"slider_color\",\"kind\":\"Any\",\"default\":\"black\"},{\"name\":\"value\",\"kind\":\"Any\",\"default\":50}]},{\"type\":\"model\",\"name\":\"click1\",\"properties\":[{\"name\":\"terminal_output\",\"kind\":\"Any\",\"default\":\"\"},{\"name\":\"debug_name\",\"kind\":\"Any\",\"default\":\"\"},{\"name\":\"clears\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"ReactiveESM1\",\"properties\":[{\"name\":\"esm_constants\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}}]},{\"type\":\"model\",\"name\":\"JSComponent1\",\"properties\":[{\"name\":\"esm_constants\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}}]},{\"type\":\"model\",\"name\":\"ReactComponent1\",\"properties\":[{\"name\":\"use_shadow_dom\",\"kind\":\"Any\",\"default\":true},{\"name\":\"esm_constants\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}}]},{\"type\":\"model\",\"name\":\"AnyWidgetComponent1\",\"properties\":[{\"name\":\"use_shadow_dom\",\"kind\":\"Any\",\"default\":true},{\"name\":\"esm_constants\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}}]},{\"type\":\"model\",\"name\":\"FastWrapper1\",\"properties\":[{\"name\":\"object\",\"kind\":\"Any\",\"default\":null},{\"name\":\"style\",\"kind\":\"Any\",\"default\":null}]},{\"type\":\"model\",\"name\":\"NotificationArea1\",\"properties\":[{\"name\":\"js_events\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}},{\"name\":\"max_notifications\",\"kind\":\"Any\",\"default\":5},{\"name\":\"notifications\",\"kind\":\"Any\",\"default\":[]},{\"name\":\"position\",\"kind\":\"Any\",\"default\":\"bottom-right\"},{\"name\":\"_clear\",\"kind\":\"Any\",\"default\":0},{\"name\":\"types\",\"kind\":\"Any\",\"default\":[{\"type\":\"map\",\"entries\":[[\"type\",\"warning\"],[\"background\",\"#ffc107\"],[\"icon\",{\"type\":\"map\",\"entries\":[[\"className\",\"fas fa-exclamation-triangle\"],[\"tagName\",\"i\"],[\"color\",\"white\"]]}]]},{\"type\":\"map\",\"entries\":[[\"type\",\"info\"],[\"background\",\"#007bff\"],[\"icon\",{\"type\":\"map\",\"entries\":[[\"className\",\"fas fa-info-circle\"],[\"tagName\",\"i\"],[\"color\",\"white\"]]}]]}]}]},{\"type\":\"model\",\"name\":\"Notification\",\"properties\":[{\"name\":\"background\",\"kind\":\"Any\",\"default\":null},{\"name\":\"duration\",\"kind\":\"Any\",\"default\":3000},{\"name\":\"icon\",\"kind\":\"Any\",\"default\":null},{\"name\":\"message\",\"kind\":\"Any\",\"default\":\"\"},{\"name\":\"notification_type\",\"kind\":\"Any\",\"default\":null},{\"name\":\"_rendered\",\"kind\":\"Any\",\"default\":false},{\"name\":\"_destroyed\",\"kind\":\"Any\",\"default\":false}]},{\"type\":\"model\",\"name\":\"TemplateActions1\",\"properties\":[{\"name\":\"open_modal\",\"kind\":\"Any\",\"default\":0},{\"name\":\"close_modal\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"BootstrapTemplateActions1\",\"properties\":[{\"name\":\"open_modal\",\"kind\":\"Any\",\"default\":0},{\"name\":\"close_modal\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"TemplateEditor1\",\"properties\":[{\"name\":\"layout\",\"kind\":\"Any\",\"default\":[]}]},{\"type\":\"model\",\"name\":\"MaterialTemplateActions1\",\"properties\":[{\"name\":\"open_modal\",\"kind\":\"Any\",\"default\":0},{\"name\":\"close_modal\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"request_value1\",\"properties\":[{\"name\":\"fill\",\"kind\":\"Any\",\"default\":\"none\"},{\"name\":\"_synced\",\"kind\":\"Any\",\"default\":null},{\"name\":\"_request_sync\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"holoviews.plotting.bokeh.raster.HoverModel\",\"properties\":[{\"name\":\"xy\",\"kind\":\"Any\",\"default\":null},{\"name\":\"data\",\"kind\":\"Any\",\"default\":null}]}]}};\n",
" var render_items = [{\"docid\":\"14e8a467-d61f-4692-97e0-a3d2d0aa624a\",\"roots\":{\"1e21022e-6353-4359-b805-784d6dfa01fb\":\"dd1fc88e-d8f4-4011-bdbe-f53bb36da093\"},\"root_ids\":[\"1e21022e-6353-4359-b805-784d6dfa01fb\"]}];\n",
" var docs = Object.values(docs_json)\n",
" if (!docs) {\n",
" return\n",
" }\n",
" const py_version = docs[0].version.replace('rc', '-rc.').replace('.dev', '-dev.')\n",
" async function embed_document(root) {\n",
" var Bokeh = get_bokeh(root)\n",
" await Bokeh.embed.embed_items_notebook(docs_json, render_items);\n",
" for (const render_item of render_items) {\n",
" for (const root_id of render_item.root_ids) {\n",
"\tconst id_el = document.getElementById(root_id)\n",
"\tif (id_el.children.length && id_el.children[0].hasAttribute('data-root-id')) {\n",
"\t const root_el = id_el.children[0]\n",
"\t root_el.id = root_el.id + '-rendered'\n",
"\t for (const child of root_el.children) {\n",
" // Ensure JupyterLab does not capture keyboard shortcuts\n",
" // see: https://jupyterlab.readthedocs.io/en/4.1.x/extension/notebook.html#keyboard-interaction-model\n",
"\t child.setAttribute('data-lm-suppress-shortcuts', 'true')\n",
"\t }\n",
"\t}\n",
" }\n",
" }\n",
" }\n",
" function get_bokeh(root) {\n",
" if (root.Bokeh === undefined) {\n",
" return null\n",
" } else if (root.Bokeh.version !== py_version) {\n",
" if (root.Bokeh.versions === undefined || !root.Bokeh.versions.has(py_version)) {\n",
"\treturn null\n",
" }\n",
" return root.Bokeh.versions.get(py_version);\n",
" } else if (root.Bokeh.version === py_version) {\n",
" return root.Bokeh\n",
" }\n",
" return null\n",
" }\n",
" function is_loaded(root) {\n",
" var Bokeh = get_bokeh(root)\n",
" return (Bokeh != null && Bokeh.Panel !== undefined)\n",
" }\n",
" if (is_loaded(root)) {\n",
" embed_document(root);\n",
" } else {\n",
" var attempts = 0;\n",
" var timer = setInterval(function(root) {\n",
" if (is_loaded(root)) {\n",
" clearInterval(timer);\n",
" embed_document(root);\n",
" } else if (document.readyState == \"complete\") {\n",
" attempts++;\n",
" if (attempts > 200) {\n",
" clearInterval(timer);\n",
"\t var Bokeh = get_bokeh(root)\n",
"\t if (Bokeh == null || Bokeh.Panel == null) {\n",
" console.warn(\"Panel: ERROR: Unable to run Panel code because Bokeh or Panel library is missing\");\n",
"\t } else {\n",
"\t console.warn(\"Panel: WARNING: Attempting to render but not all required libraries could be resolved.\")\n",
"\t embed_document(root)\n",
"\t }\n",
" }\n",
" }\n",
" }, 25, root)\n",
" }\n",
"})(window);</script>"
],
"text/plain": [
":Overlay\n",
" .Curve.HRRR :Curve [time] (10 metre V wind component)\n",
" .Curve.GFS :Curve [time] (Wind speed v-component 10 meters above earth surface)"
]
},
"execution_count": 9,
"metadata": {
"application/vnd.holoviews_exec.v0+json": {
"id": "1e21022e-6353-4359-b805-784d6dfa01fb"
}
},
"output_type": "execute_result"
}
],
"source": [
"(hrrr_viz * gfs_viz).opts(title=f'10m North Wind:({lon_point}, {lat_point}))')"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda env:pangeo_z3]",
"language": "python",
"name": "conda-env-pangeo_z3-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.12.11"
},
"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