6625 lines
950 KiB
Plaintext
6625 lines
950 KiB
Plaintext
|
|
{
|
||
|
|
"cells": [
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 1,
|
||
|
|
"id": "c61a1a84-ca37-4bfb-8935-a21312c11410",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"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.5.2'.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.5.4/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.5.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.5.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.5.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.5.2.min.js\", \"https://cdn.holoviz.org/panel/1.5.4/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.5.2'.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 con
|
||
|
|
},
|
||
|
|
"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",
|
||
|
|
" console.log(message)\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",
|
||
|
|
" comm.open();\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 console.log(message)\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 comm.open();\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.creat
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"application/vnd.holoviews_exec.v0+json": "",
|
||
|
|
"text/html": [
|
||
|
|
"<div id='1a42013a-d3de-49f2-acdb-40a31e30609a'>\n",
|
||
|
|
" <div id=\"f3ad740c-e51a-4888-999a-f5687008794a\" data-root-id=\"1a42013a-d3de-49f2-acdb-40a31e30609a\" style=\"display: contents;\"></div>\n",
|
||
|
|
"</div>\n",
|
||
|
|
"<script type=\"application/javascript\">(function(root) {\n",
|
||
|
|
" var docs_json = {\"22b0e27d-bfb4-4515-b424-87b713786dbd\":{\"version\":\"3.5.2\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"panel.models.browser.BrowserInfo\",\"id\":\"1a42013a-d3de-49f2-acdb-40a31e30609a\"},{\"type\":\"object\",\"name\":\"panel.models.comm_manager.CommManager\",\"id\":\"971eac80-bcd7-4b47-8d42-858eea444c3c\",\"attributes\":{\"plot_id\":\"1a42013a-d3de-49f2-acdb-40a31e30609a\",\"comm_id\":\"c8ac3dd8f2a2455b872b858039eab00d\",\"client_comm_id\":\"32686590386a4523a1254ad1433d452b\"}}],\"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\":\"mode\",\"kind\":\"Any\",\"default\":\"warn\"},{\"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\":\"FastWrapper1\",\"properties\":[{\"name\":\"object\",\"kind\":\"Any\",\"default\":null},{\"name\":\"style\",\"kind\":\"Any\",\"default\":null}]},{\"type\":\"model\",\"name\":\"NotificationAreaBase1\",\"properties\":[{\"name\":\"js_events\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}},{\"name\":\"position\",\"kind\":\"Any\",\"default\":\"bottom-right\"},{\"name\":\"_clear\",\"kind\":\"Any\",\"default\":0}]},{\"type\":\"model\",\"name\":\"NotificationArea1\",\"properties\":[{\"name\":\"js_events\",\"kind\":\"Any\",\"default\":{\"type\":\"map\"}},{\"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\":\"_destroyed\",\"kind\":\"Any\",\"
|
||
|
|
" var render_items = [{\"docid\":\"22b0e27d-bfb4-4515-b424-87b713786dbd\",\"roots\":{\"1a42013a-d3de-49f2-acdb-40a31e30609a\":\"f3ad740c-e51a-4888-999a-f5687008794a\"},\"root_ids\":[\"1a42013a-d3de-49f2-acdb-40a31e30609a\"]}];\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": "1a42013a-d3de-49f2-acdb-40a31e30609a"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"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 = false;\n",
|
||
|
|
" const py_version = '3.5.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n",
|
||
|
|
" const reloading = true;\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.5.4/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.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 = false;\n const py_version = '3.5.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = true;\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 con
|
||
|
|
},
|
||
|
|
"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",
|
||
|
|
" console.log(message)\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",
|
||
|
|
" comm.open();\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 console.log(message)\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 comm.open();\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.creat
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"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 = false;\n",
|
||
|
|
" const py_version = '3.5.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n",
|
||
|
|
" const reloading = true;\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.5.4/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.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 = false;\n const py_version = '3.5.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = true;\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 con
|
||
|
|
},
|
||
|
|
"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",
|
||
|
|
" console.log(message)\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",
|
||
|
|
" comm.open();\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 console.log(message)\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 comm.open();\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.creat
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"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 = false;\n",
|
||
|
|
" const py_version = '3.5.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n",
|
||
|
|
" const reloading = true;\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.5.4/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.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 = false;\n const py_version = '3.5.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = true;\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 con
|
||
|
|
},
|
||
|
|
"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",
|
||
|
|
" console.log(message)\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",
|
||
|
|
" comm.open();\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 console.log(message)\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 comm.open();\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.creat
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "stdout",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"CPU times: user 13.2 s, sys: 3.27 s, total: 16.5 s\n",
|
||
|
|
"Wall time: 10.4 s\n"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"%%time\n",
|
||
|
|
"%matplotlib inline\n",
|
||
|
|
"\n",
|
||
|
|
"import importlib\n",
|
||
|
|
"import new_import \n",
|
||
|
|
"\n",
|
||
|
|
"importlib.reload(new_import)\n",
|
||
|
|
"\n",
|
||
|
|
"\n",
|
||
|
|
"from new_import import *"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 2,
|
||
|
|
"id": "2298b035-c320-4c52-a2e4-6d8084f66b92",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"name": "stdout",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"Starting new cluster.\n",
|
||
|
|
"CPU times: user 706 ms, sys: 38 ms, total: 744 ms\n",
|
||
|
|
"Wall time: 2min 56s\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/html": [
|
||
|
|
"<div>\n",
|
||
|
|
" <div style=\"width: 24px; height: 24px; background-color: #e1e1e1; border: 3px solid #9D9D9D; border-radius: 5px; position: absolute;\"> </div>\n",
|
||
|
|
" <div style=\"margin-left: 48px;\">\n",
|
||
|
|
" <h3 style=\"margin-bottom: 0px;\">Client</h3>\n",
|
||
|
|
" <p style=\"color: #9D9D9D; margin-bottom: 0px;\">Client-859375f2-c849-11ef-818f-7b2bc4b5933d</p>\n",
|
||
|
|
" <table style=\"width: 100%; text-align: left;\">\n",
|
||
|
|
"\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" \n",
|
||
|
|
" <td style=\"text-align: left;\"><strong>Connection method:</strong> Cluster object</td>\n",
|
||
|
|
" <td style=\"text-align: left;\"><strong>Cluster type:</strong> dask_gateway.GatewayCluster</td>\n",
|
||
|
|
" \n",
|
||
|
|
" </tr>\n",
|
||
|
|
"\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <td style=\"text-align: left;\">\n",
|
||
|
|
" <strong>Dashboard: </strong> <a href=\"https://hub.asia.easi-eo.solutions/services/dask-gateway/clusters/easihub.8f4044c87f8b4423883c64edb421d283/status\" target=\"_blank\">https://hub.asia.easi-eo.solutions/services/dask-gateway/clusters/easihub.8f4044c87f8b4423883c64edb421d283/status</a>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" <td style=\"text-align: left;\"></td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" \n",
|
||
|
|
"\n",
|
||
|
|
" </table>\n",
|
||
|
|
"\n",
|
||
|
|
" \n",
|
||
|
|
" <button style=\"margin-bottom: 12px;\" data-commandlinker-command=\"dask:populate-and-launch-layout\" data-commandlinker-args='{\"url\": \"https://hub.asia.easi-eo.solutions/services/dask-gateway/clusters/easihub.8f4044c87f8b4423883c64edb421d283/status\" }'>\n",
|
||
|
|
" Launch dashboard in JupyterLab\n",
|
||
|
|
" </button>\n",
|
||
|
|
" \n",
|
||
|
|
"\n",
|
||
|
|
" \n",
|
||
|
|
" <details>\n",
|
||
|
|
" <summary style=\"margin-bottom: 20px;\"><h3 style=\"display: inline;\">Cluster Info</h3></summary>\n",
|
||
|
|
" <div style='background-color: #f2f2f2; display: inline-block; padding: 10px; border: 1px solid #999999;'>\n",
|
||
|
|
" <h3>GatewayCluster</h3>\n",
|
||
|
|
" <ul>\n",
|
||
|
|
" <li><b>Name: </b>easihub.8f4044c87f8b4423883c64edb421d283\n",
|
||
|
|
" <li><b>Dashboard: </b><a href='https://hub.asia.easi-eo.solutions/services/dask-gateway/clusters/easihub.8f4044c87f8b4423883c64edb421d283/status' target='_blank'>https://hub.asia.easi-eo.solutions/services/dask-gateway/clusters/easihub.8f4044c87f8b4423883c64edb421d283/status</a>\n",
|
||
|
|
" </ul>\n",
|
||
|
|
"</div>\n",
|
||
|
|
"\n",
|
||
|
|
" </details>\n",
|
||
|
|
" \n",
|
||
|
|
"\n",
|
||
|
|
" </div>\n",
|
||
|
|
"</div>"
|
||
|
|
],
|
||
|
|
"text/plain": [
|
||
|
|
"<Client: 'tls://10.0.48.74:8786' processes=0 threads=0, memory=0 B>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"execution_count": 2,
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "execute_result"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"%%time\n",
|
||
|
|
"# Cấu hình Daskgateway\n",
|
||
|
|
"cluster, client = notebook_utils.initialize_dask(use_gateway=True, workers=(1,10))\n",
|
||
|
|
"# Khai báo 1 Datacube là dc\n",
|
||
|
|
"dc = datacube.Datacube()\n",
|
||
|
|
"\n",
|
||
|
|
"client"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 3,
|
||
|
|
"id": "c5df2663-2524-4b99-aef4-cc0c625519e4",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"date_range = ('2022-09-01', '2023-10-30')\n",
|
||
|
|
"longtitude_range = (105.5, 106.4)\n",
|
||
|
|
"latitude_range = (9.2, 10.0) \n",
|
||
|
|
"\n",
|
||
|
|
"coordinates = (longtitude_range, latitude_range)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 8,
|
||
|
|
"id": "f0422603-cca1-41bc-a12a-810d6a13e736",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/html": [
|
||
|
|
"<h4>Dataset size: 22.91 GB</h4>"
|
||
|
|
],
|
||
|
|
"text/plain": [
|
||
|
|
"<IPython.core.display.HTML object>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/html": [
|
||
|
|
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
|
||
|
|
"<defs>\n",
|
||
|
|
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
|
||
|
|
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
|
||
|
|
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
|
||
|
|
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
|
||
|
|
"</symbol>\n",
|
||
|
|
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
|
||
|
|
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
|
||
|
|
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"</symbol>\n",
|
||
|
|
"</defs>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
|
||
|
|
" *\n",
|
||
|
|
" */\n",
|
||
|
|
"\n",
|
||
|
|
":root {\n",
|
||
|
|
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
|
||
|
|
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
|
||
|
|
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
|
||
|
|
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
|
||
|
|
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
|
||
|
|
" --xr-background-color: var(--jp-layout-color0, white);\n",
|
||
|
|
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
|
||
|
|
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
"html[theme=\"dark\"],\n",
|
||
|
|
"html[data-theme=\"dark\"],\n",
|
||
|
|
"body[data-theme=\"dark\"],\n",
|
||
|
|
"body.vscode-dark {\n",
|
||
|
|
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
|
||
|
|
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
|
||
|
|
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
|
||
|
|
" --xr-border-color: #1f1f1f;\n",
|
||
|
|
" --xr-disabled-color: #515151;\n",
|
||
|
|
" --xr-background-color: #111111;\n",
|
||
|
|
" --xr-background-color-row-even: #111111;\n",
|
||
|
|
" --xr-background-color-row-odd: #313131;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-wrap {\n",
|
||
|
|
" display: block !important;\n",
|
||
|
|
" min-width: 300px;\n",
|
||
|
|
" max-width: 700px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-text-repr-fallback {\n",
|
||
|
|
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-header {\n",
|
||
|
|
" padding-top: 6px;\n",
|
||
|
|
" padding-bottom: 6px;\n",
|
||
|
|
" margin-bottom: 4px;\n",
|
||
|
|
" border-bottom: solid 1px var(--xr-border-color);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-header > div,\n",
|
||
|
|
".xr-header > ul {\n",
|
||
|
|
" display: inline;\n",
|
||
|
|
" margin-top: 0;\n",
|
||
|
|
" margin-bottom: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-obj-type,\n",
|
||
|
|
".xr-array-name {\n",
|
||
|
|
" margin-left: 2px;\n",
|
||
|
|
" margin-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-obj-type {\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-sections {\n",
|
||
|
|
" padding-left: 0 !important;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 150px auto auto 1fr 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",
|
||
|
|
"}\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);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-item input:enabled + label:hover {\n",
|
||
|
|
" color: var(--xr-font-color0);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
" font-weight: 500;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary > span {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" padding-left: 0.5em;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:disabled + label {\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in + label:before {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" content: \"►\";\n",
|
||
|
|
" font-size: 11px;\n",
|
||
|
|
" width: 15px;\n",
|
||
|
|
" text-align: center;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:disabled + label:before {\n",
|
||
|
|
" color: var(--xr-disabled-color);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked + label:before {\n",
|
||
|
|
" content: \"▼\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked + label > span {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary,\n",
|
||
|
|
".xr-section-inline-details {\n",
|
||
|
|
" padding-top: 4px;\n",
|
||
|
|
" padding-bottom: 4px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-inline-details {\n",
|
||
|
|
" grid-column: 2 / -1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-details {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
" margin-bottom: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked ~ .xr-section-details {\n",
|
||
|
|
" display: contents;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-wrap {\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 20px auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-wrap > label {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
" vertical-align: top;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-preview {\n",
|
||
|
|
" color: var(--xr-font-color3);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-preview,\n",
|
||
|
|
".xr-array-data {\n",
|
||
|
|
" padding: 0 5px !important;\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-data,\n",
|
||
|
|
".xr-array-in:checked ~ .xr-array-preview {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-in:checked ~ .xr-array-data,\n",
|
||
|
|
".xr-array-preview {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list {\n",
|
||
|
|
" display: inline-block !important;\n",
|
||
|
|
" list-style: none;\n",
|
||
|
|
" padding: 0 !important;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list li {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list:before {\n",
|
||
|
|
" content: \"(\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list:after {\n",
|
||
|
|
" content: \")\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list li:not(:last-child):after {\n",
|
||
|
|
" content: \",\";\n",
|
||
|
|
" padding-right: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-has-index {\n",
|
||
|
|
" font-weight: bold;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-list,\n",
|
||
|
|
".xr-var-item {\n",
|
||
|
|
" display: contents;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-item > div,\n",
|
||
|
|
".xr-var-item label,\n",
|
||
|
|
".xr-var-item > .xr-var-name span {\n",
|
||
|
|
" background-color: var(--xr-background-color-row-even);\n",
|
||
|
|
" margin-bottom: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-item > .xr-var-name:hover span {\n",
|
||
|
|
" padding-right: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > div,\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > label,\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
|
||
|
|
" background-color: var(--xr-background-color-row-odd);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-dims {\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-dtype {\n",
|
||
|
|
" grid-column: 3;\n",
|
||
|
|
" text-align: right;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-preview {\n",
|
||
|
|
" grid-column: 4;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-index-preview {\n",
|
||
|
|
" grid-column: 2 / 5;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name,\n",
|
||
|
|
".xr-var-dims,\n",
|
||
|
|
".xr-var-dtype,\n",
|
||
|
|
".xr-preview,\n",
|
||
|
|
".xr-attrs dt {\n",
|
||
|
|
" white-space: nowrap;\n",
|
||
|
|
" overflow: hidden;\n",
|
||
|
|
" text-overflow: ellipsis;\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name:hover,\n",
|
||
|
|
".xr-var-dims:hover,\n",
|
||
|
|
".xr-var-dtype:hover,\n",
|
||
|
|
".xr-attrs dt:hover {\n",
|
||
|
|
" overflow: visible;\n",
|
||
|
|
" width: auto;\n",
|
||
|
|
" z-index: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-attrs,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-data {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
" background-color: var(--xr-background-color) !important;\n",
|
||
|
|
" padding-bottom: 5px !important;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
|
||
|
|
".xr-var-data-in:checked ~ .xr-var-data,\n",
|
||
|
|
".xr-index-data-in:checked ~ .xr-index-data {\n",
|
||
|
|
" display: block;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-data > table {\n",
|
||
|
|
" float: right;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name span,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-name div,\n",
|
||
|
|
".xr-index-data,\n",
|
||
|
|
".xr-attrs {\n",
|
||
|
|
" padding-left: 25px !important;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs,\n",
|
||
|
|
".xr-var-attrs,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-data {\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
"dl.xr-attrs {\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 125px auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt,\n",
|
||
|
|
".xr-attrs dd {\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
" float: left;\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
" width: auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt {\n",
|
||
|
|
" font-weight: normal;\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt:hover span {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" background: var(--xr-background-color);\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dd {\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
" white-space: pre-wrap;\n",
|
||
|
|
" word-break: break-all;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-icon-database,\n",
|
||
|
|
".xr-icon-file-text2,\n",
|
||
|
|
".xr-no-icon {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" vertical-align: middle;\n",
|
||
|
|
" width: 1em;\n",
|
||
|
|
" height: 1.5em !important;\n",
|
||
|
|
" stroke-width: 0;\n",
|
||
|
|
" stroke: currentColor;\n",
|
||
|
|
" fill: currentColor;\n",
|
||
|
|
"}\n",
|
||
|
|
"</style><pre class='xr-text-repr-fallback'><xarray.Dataset> Size: 25GB\n",
|
||
|
|
"Dimensions: (time: 35, y: 8874, x: 9902)\n",
|
||
|
|
"Coordinates:\n",
|
||
|
|
" * time (time) datetime64[ns] 280B 2022-09-06T22:46:14.500000 ... 20...\n",
|
||
|
|
" * y (y) float64 71kB 1.106e+06 1.106e+06 ... 1.017e+06 1.017e+06\n",
|
||
|
|
" * x (x) float64 79kB 5.548e+05 5.548e+05 ... 6.538e+05 6.538e+05\n",
|
||
|
|
" spatial_ref int32 4B 32648\n",
|
||
|
|
"Data variables:\n",
|
||
|
|
" vv (time, y, x) float32 12GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
" vh (time, y, x) float32 12GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
"Attributes:\n",
|
||
|
|
" crs: EPSG:32648\n",
|
||
|
|
" grid_mapping: spatial_ref</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-44017514-a524-49a4-a91b-ef68959e060b' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-44017514-a524-49a4-a91b-ef68959e060b' 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>: 35</li><li><span class='xr-has-index'>y</span>: 8874</li><li><span class='xr-has-index'>x</span>: 9902</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-e318a633-1083-4e2a-9a9c-6795dbe9060d' class='xr-section-summary-in' type='checkbox' checked><label for='section-e318a633-1083-4e2a-9a9c-6795dbe9060d' 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'>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'>2022-09-06T22:46:14.500000 ... 2...</div><input id='attrs-9549c0bb-d1f4-4e71-b3ef-053608c9e45f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9549c0bb-d1f4-4e71-b3ef-053608c9e45f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f267370b-af91-4ab7-80fe-599a6c025a5c' class='xr-var-data-in' type='checkbox'><label for='data-f267370b-af91-4ab7-80fe-599a6c025a5c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>seconds since 1970-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array(['2022-09-06T22:46:14.500000000', '2022-09-18T22:46:13.500000000',\n",
|
||
|
|
" '2022-09-30T22:46:14.500000000', '2022-10-12T22:46:14.500000000',\n",
|
||
|
|
" '2022-10-24T22:46:14.500000000', '2022-11-05T22:46:14.500000000',\n",
|
||
|
|
" '2022-11-17T22:46:13.500000000', '2022-11-29T22:46:13.500000000',\n",
|
||
|
|
" '2022-12-11T22:46:13.500000000', '2022-12-23T22:46:12.500000000',\n",
|
||
|
|
" '2023-01-04T22:46:11.500000000', '2023-01-16T22:46:10.500000000',\n",
|
||
|
|
" '2023-01-28T22:46:11.500000000', '2023-02-09T22:46:10.500000000',\n",
|
||
|
|
" '2023-02-21T22:46:09.500000000', '2023-03-05T22:46:10.500000000',\n",
|
||
|
|
" '2023-03-17T22:46:10.500000000', '2023-03-29T22:46:10.500000000',\n",
|
||
|
|
" '2023-04-10T22:46:11.500000000', '2023-04-22T22:46:11.500000000',\n",
|
||
|
|
" '2023-05-04T22:46:11.500000000', '2023-05-17T11:11:32.500000000',\n",
|
||
|
|
" '2023-05-29T11:11:32.500000000', '2023-06-10T11:11:28.500000000',\n",
|
||
|
|
" '2023-06-21T22:46:13.500000000', '2023-07-04T11:11:34.500000000',\n",
|
||
|
|
" '2023-07-16T11:11:35.500000000', '2023-07-28T11:11:36.500000000',\n",
|
||
|
|
" '2023-08-08T22:46:16.500000000', '2023-08-20T22:46:17.500000000',\n",
|
||
|
|
" '2023-09-01T22:46:18.500000000', '2023-09-13T22:46:18.500000000',\n",
|
||
|
|
" '2023-09-25T22:46:19.500000000', '2023-10-07T22:46:19.500000000',\n",
|
||
|
|
" '2023-10-19T22:46:19.500000000'], dtype='datetime64[ns]')</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.106e+06 1.106e+06 ... 1.017e+06</div><input id='attrs-e8c4d1a6-7bb4-4409-bdff-eaa65ab2a8b4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e8c4d1a6-7bb4-4409-bdff-eaa65ab2a8b4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-25198736-996b-4f7c-b929-85685d939c76' class='xr-var-data-in' type='checkbox'><label for='data-25198736-996b-4f7c-b929-85685d939c76' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>metre</dd><dt><span>resolution :</span></dt><dd>-10.0</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd></dl></div><div class='xr-var-data'><pre>array([1105735., 1105725., 1105715., ..., 1017025., 1017015., 1017005.])</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'>5.548e+05 5.548e+05 ... 6.538e+05</div><input id='attrs-fd839481-7598-4637-af05-d08ff39fabfd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fd839481-7598-4637-af05-d08ff39fabfd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-478124f0-3080-429c-b020-4fbb9dd4b712' class='xr-var-data-in' type='checkbox'><label for='data-478124f0-3080-429c-b020-4fbb9dd4b712' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>metre</dd><dt><span>resolution :</span></dt><dd>10.0</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd></dl></div><div class='xr-var-data'><pre>array([554795., 554805., 554815., ..., 653785., 653795., 653805.])</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'>int32</div><div class='xr-var-preview xr-preview'>32648</div><input id='attrs-1bc1061b-3186-4e35-80ae-ba926d475f00' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1bc1061b-3186-4e35-80ae-ba926d475f00' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9131f64e-1bc1-4bfb-9d9a-16a80b6a292a' class='xr-var-data-in' type='checkbox'><label for='data-9131f64e-1bc1-4bfb-9d9a-16a80b6a292a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>spatial_ref :</span></dt><dd>PROJCS["WGS 84 / UTM zone 48N",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",105],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","32648"]]</dd><dt><span>grid_mapping_name :</span></dt><dd>transverse_mercator</dd></dl></div><div class='xr
|
||
|
|
" <tr>\n",
|
||
|
|
" <td>\n",
|
||
|
|
" <table style=\"border-collapse: collapse;\">\n",
|
||
|
|
" <thead>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <td> </td>\n",
|
||
|
|
" <th> Array </th>\n",
|
||
|
|
" <th> Chunk </th>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" </thead>\n",
|
||
|
|
" <tbody>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Bytes </th>\n",
|
||
|
|
" <td> 11.46 GiB </td>\n",
|
||
|
|
" <td> 16.00 MiB </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Shape </th>\n",
|
||
|
|
" <td> (35, 8874, 9902) </td>\n",
|
||
|
|
" <td> (1, 2048, 2048) </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Dask graph </th>\n",
|
||
|
|
" <td colspan=\"2\"> 875 chunks in 1 graph layer </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Data type </th>\n",
|
||
|
|
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" </tbody>\n",
|
||
|
|
" </table>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" <td>\n",
|
||
|
|
" <svg width=\"194\" height=\"172\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"24\" x2=\"24\" y2=\"39\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"49\" x2=\"24\" y2=\"64\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"74\" x2=\"24\" y2=\"89\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"99\" x2=\"24\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"107\" x2=\"24\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"107\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"107\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"108\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"109\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"111\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"112\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"112\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"113\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"116\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"116\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"118\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"119\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"119\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"120\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"121\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,122.49050867486044 10.0,107.54191072510604\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"34\" y1=\"0\" x2=\"49\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"59\" y1=\"0\" x2=\"74\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"84\" y1=\"0\" x2=\"99\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"109\" y1=\"0\" x2=\"124\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"39\" x2=\"144\" y2=\"39\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"64\" x2=\"144\" y2=\"64\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"89\" x2=\"144\" y2=\"89\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"114\" x2=\"144\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"122\" x2=\"144\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"49\" y1=\"14\" x2=\"49\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"74\" y1=\"14\" x2=\"74\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"99\" y1=\"14\" x2=\"99\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"124\" y1=\"14\" x2=\"124\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,122.49050867486044 24.9485979497544,122.49050867486044\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Text -->\n",
|
||
|
|
" <text x=\"84.948598\" y=\"142.490509\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >9902</text>\n",
|
||
|
|
" <text x=\"164.948598\" y=\"68.719553\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,164.948598,68.719553)\">8874</text>\n",
|
||
|
|
" <text x=\"7.474299\" y=\"135.016210\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.474299,135.016210)\">35</text>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>vh</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray></div><input id='attrs-8f9c828d-4f88-4204-a340-5cd3b673b1b0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8f9c828d-4f88-4204-a340-5cd3b673b1b0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7342235c-ccbc-448b-8503-0674d6f02ae4' class='xr-var-data-in' type='checkbox'><label for='data-7342235c-ccbc-448b-8503-0674d6f02ae4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>intensity</dd><dt><span>nodata :</span></dt><dd>nan</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd><dt><span>grid_mapping :</span></dt><dd>spatial_ref</dd></dl></div><div class='xr-var-data'><table>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <td>\n",
|
||
|
|
" <table style=\"border-collapse: collapse;\">\n",
|
||
|
|
" <thead>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <td> </td>\n",
|
||
|
|
" <th> Array </th>\n",
|
||
|
|
" <th> Chunk </th>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" </thead>\n",
|
||
|
|
" <tbody>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Bytes </th>\n",
|
||
|
|
" <td> 11.46 GiB </td>\n",
|
||
|
|
" <td> 16.00 MiB </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Shape </th>\n",
|
||
|
|
" <td> (35, 8874, 9902) </td>\n",
|
||
|
|
" <td> (1, 2048, 2048) </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Dask graph </th>\n",
|
||
|
|
" <td colspan=\"2\"> 875 chunks in 1 graph layer </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Data type </th>\n",
|
||
|
|
" <td colspan=\"2\"> float32 numpy.ndarray </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" </tbody>\n",
|
||
|
|
" </table>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" <td>\n",
|
||
|
|
" <svg width=\"194\" height=\"172\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"24\" x2=\"24\" y2=\"39\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"49\" x2=\"24\" y2=\"64\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"74\" x2=\"24\" y2=\"89\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"99\" x2=\"24\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"107\" x2=\"24\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"107\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"107\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"108\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"109\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"111\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"112\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"112\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"113\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"116\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"116\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"118\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"119\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"119\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"120\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"121\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 24.9485979497544,14.948597949754403 24.9485979497544,122.49050867486044 10.0,107.54191072510604\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"24\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"34\" y1=\"0\" x2=\"49\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"59\" y1=\"0\" x2=\"74\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"84\" y1=\"0\" x2=\"99\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"109\" y1=\"0\" x2=\"124\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"130\" y1=\"0\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 130.0,0.0 144.9485979497544,14.948597949754403 24.9485979497544,14.948597949754403\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"39\" x2=\"144\" y2=\"39\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"64\" x2=\"144\" y2=\"64\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"89\" x2=\"144\" y2=\"89\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"114\" x2=\"144\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"122\" x2=\"144\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"49\" y1=\"14\" x2=\"49\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"74\" y1=\"14\" x2=\"74\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"99\" y1=\"14\" x2=\"99\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"124\" y1=\"14\" x2=\"124\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"144\" y1=\"14\" x2=\"144\" y2=\"122\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"24.9485979497544,14.948597949754403 144.9485979497544,14.948597949754403 144.9485979497544,122.49050867486044 24.9485979497544,122.49050867486044\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Text -->\n",
|
||
|
|
" <text x=\"84.948598\" y=\"142.490509\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >9902</text>\n",
|
||
|
|
" <text x=\"164.948598\" y=\"68.719553\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,164.948598,68.719553)\">8874</text>\n",
|
||
|
|
" <text x=\"7.474299\" y=\"135.016210\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,7.474299,135.016210)\">35</text>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-15d16c32-f0ce-4bba-b36e-ef74f3a4434f' class='xr-section-summary-in' type='checkbox' ><label for='section-15d16c32-f0ce-4bba-b36e-ef74f3a4434f' 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-2520f402-7ba4-46ed-b2a6-8f381cb21734' class='xr-index-data-in' type='checkbox'/><label for='index-2520f402-7ba4-46ed-b2a6-8f381cb21734' 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(['2022-09-06 22:46:14.500000', '2022-09-18 22:46:13.500000',\n",
|
||
|
|
" '2022-09-30 22:46:14.500000', '2022-10-12 22:46:14.500000',\n",
|
||
|
|
" '2022-10-24 22:46:14.500000', '2022-11-05 22:46:14.500000',\n",
|
||
|
|
" '2022-11-17 22:46:13.500000', '2022-11-29 22:46:13.500000',\n",
|
||
|
|
" '2022-12-11 22:46:13.500000', '2022-12-23 22:46:12.500000',\n",
|
||
|
|
" '2023-01-04 22:46:11.500000', '2023-01-16 22:46:10.500000',\n",
|
||
|
|
" '2023-01-28 22:46:11.500000', '2023-02-09 22:46:10.500000',\n",
|
||
|
|
" '2023-02-21 22:46:09.500000', '2023-03-05 22:46:10.500000',\n",
|
||
|
|
" '2023-03-17 22:46:10.500000', '2023-03-29 22:46:10.500000',\n",
|
||
|
|
" '2023-04-10 22:46:11.500000', '2023-04-22 22:46:11.500000',\n",
|
||
|
|
" '2023-05-04 22:46:11.500000', '2023-05-17 11:11:32.500000',\n",
|
||
|
|
" '2023-05-29 11:11:32.500000', '2023-06-10 11:11:28.500000',\n",
|
||
|
|
" '2023-06-21 22:46:13.500000', '2023-07-04 11:11:34.500000',\n",
|
||
|
|
" '2023-07-16 11:11:35.500000', '2023-07-28 11:11:36.500000',\n",
|
||
|
|
" '2023-08-08 22:46:16.500000', '2023-08-20 22:46:17.500000',\n",
|
||
|
|
" '2023-09-01 22:46:18.500000', '2023-09-13 22:46:18.500000',\n",
|
||
|
|
" '2023-09-25 22:46:19.500000', '2023-10-07 22:46:19.500000',\n",
|
||
|
|
" '2023-10-19 22:46:19.500000'],\n",
|
||
|
|
" dtype='datetime64[ns]', name='time', freq=None))</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-2b4cee21-4f43-441c-baa3-fe64eea7fa3b' class='xr-index-data-in' type='checkbox'/><label for='index-2b4cee21-4f43-441c-baa3-fe64eea7fa3b' 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([1105735.0, 1105725.0, 1105715.0, 1105705.0, 1105695.0, 1105685.0,\n",
|
||
|
|
" 1105675.0, 1105665.0, 1105655.0, 1105645.0,\n",
|
||
|
|
" ...\n",
|
||
|
|
" 1017095.0, 1017085.0, 1017075.0, 1017065.0, 1017055.0, 1017045.0,\n",
|
||
|
|
" 1017035.0, 1017025.0, 1017015.0, 1017005.0],\n",
|
||
|
|
" dtype='float64', name='y', length=8874))</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-44465e8c-2553-4d9c-801a-e2658e80916c' class='xr-index-data-in' type='checkbox'/><label for='index-44465e8c-2553-4d9c-801a-e2658e80916c' 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([554795.0, 554805.0, 554815.0, 554825.0, 554835.0, 554845.0, 554855.0,\n",
|
||
|
|
" 554865.0, 554875.0, 554885.0,\n",
|
||
|
|
" ...\n",
|
||
|
|
" 653715.0, 653725.0, 653735.0, 653745.0, 653755.0, 653765.0, 653775.0,\n",
|
||
|
|
" 653785.0, 653795.0, 653805.0],\n",
|
||
|
|
" dtype='float64', name='x', length=9902))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-2c4f2ed5-8c14-4bb7-8d30-520aa6a6bb9b' class='xr-section-summary-in' type='checkbox' checked><label for='section-2c4f2ed5-8c14-4bb7-8d30-520aa6a6bb9b' class='xr-section-summary' >Attributes: <span>(2)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>crs :</span></dt><dd>EPSG:32648</dd><dt><span>grid_mapping :</span></dt><dd>spatial_ref</dd></dl></div></li></ul></div></div>"
|
||
|
|
],
|
||
|
|
"text/plain": [
|
||
|
|
"<xarray.Dataset> Size: 25GB\n",
|
||
|
|
"Dimensions: (time: 35, y: 8874, x: 9902)\n",
|
||
|
|
"Coordinates:\n",
|
||
|
|
" * time (time) datetime64[ns] 280B 2022-09-06T22:46:14.500000 ... 20...\n",
|
||
|
|
" * y (y) float64 71kB 1.106e+06 1.106e+06 ... 1.017e+06 1.017e+06\n",
|
||
|
|
" * x (x) float64 79kB 5.548e+05 5.548e+05 ... 6.538e+05 6.538e+05\n",
|
||
|
|
" spatial_ref int32 4B 32648\n",
|
||
|
|
"Data variables:\n",
|
||
|
|
" vv (time, y, x) float32 12GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
" vh (time, y, x) float32 12GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
"Attributes:\n",
|
||
|
|
" crs: EPSG:32648\n",
|
||
|
|
" grid_mapping: spatial_ref"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"# tải dữ liệu vh vv từ vệ tinh sentinel-1\n",
|
||
|
|
"dsvh, dsvv = load_data_sen1(dc, date_range, coordinates)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 9,
|
||
|
|
"id": "c4d11ba1-b40a-4969-b911-e70914629dc9",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"name": "stderr",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"/env/lib/python3.12/site-packages/xarray/groupers.py:487: FutureWarning: 'M' is deprecated and will be removed in a future version, please use 'ME' instead.\n",
|
||
|
|
" self.index_grouper = pd.Grouper(\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"application/vnd.jupyter.widget-view+json": {
|
||
|
|
"model_id": "4297d70c6919430cb953372fa3955139",
|
||
|
|
"version_major": 2,
|
||
|
|
"version_minor": 0
|
||
|
|
},
|
||
|
|
"text/plain": [
|
||
|
|
"VBox()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "stderr",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"2025-01-01 14:17:23,166 - tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOMainLoop object at 0x7fea76fa76e0>>, <Task finished name='Task-50' coro=<MultiProgressBar.listen() done, defined at /env/lib/python3.12/site-packages/distributed/diagnostics/progressbar.py:281> exception=OSError('Timed out trying to connect to gateway://traefik-dask-gateway.easihub:80/easihub.8f4044c87f8b4423883c64edb421d283 after 30 s')>)\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/utils.py\", line 1952, in wait_for\n",
|
||
|
|
" return await fut\n",
|
||
|
|
" ^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/dask_gateway/comm.py\", line 48, in connect\n",
|
||
|
|
" stream = await plain_stream.start_tls(\n",
|
||
|
|
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
|
||
|
|
"asyncio.exceptions.CancelledError\n",
|
||
|
|
"\n",
|
||
|
|
"The above exception was the direct cause of the following exception:\n",
|
||
|
|
"\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/comm/core.py\", line 342, in connect\n",
|
||
|
|
" comm = await wait_for(\n",
|
||
|
|
" ^^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/utils.py\", line 1951, in wait_for\n",
|
||
|
|
" async with asyncio.timeout(timeout):\n",
|
||
|
|
" ^^^^^^^^^^^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/opt/uv/python-installs/cpython-3.12.7-linux-x86_64-gnu/lib/python3.12/asyncio/timeouts.py\", line 115, in __aexit__\n",
|
||
|
|
" raise TimeoutError from exc_val\n",
|
||
|
|
"TimeoutError\n",
|
||
|
|
"\n",
|
||
|
|
"The above exception was the direct cause of the following exception:\n",
|
||
|
|
"\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/tornado/ioloop.py\", line 750, in _run_callback\n",
|
||
|
|
" ret = callback()\n",
|
||
|
|
" ^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/tornado/ioloop.py\", line 774, in _discard_future_result\n",
|
||
|
|
" future.result()\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/diagnostics/progressbar.py\", line 306, in listen\n",
|
||
|
|
" self.comm = await connect(\n",
|
||
|
|
" ^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/comm/core.py\", line 368, in connect\n",
|
||
|
|
" raise OSError(\n",
|
||
|
|
"OSError: Timed out trying to connect to gateway://traefik-dask-gateway.easihub:80/easihub.8f4044c87f8b4423883c64edb421d283 after 30 s\n"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"average_vh = calculate_max(dsvh, time_pattern='1M')\n",
|
||
|
|
"progress(average_vh)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 10,
|
||
|
|
"id": "3849455c-e4ea-4c83-9693-990a8edce2e8",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"name": "stderr",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"/env/lib/python3.12/site-packages/xarray/groupers.py:487: FutureWarning: 'M' is deprecated and will be removed in a future version, please use 'ME' instead.\n",
|
||
|
|
" self.index_grouper = pd.Grouper(\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"application/vnd.jupyter.widget-view+json": {
|
||
|
|
"model_id": "773a4f4deaea4dff857249a0c2d9be51",
|
||
|
|
"version_major": 2,
|
||
|
|
"version_minor": 0
|
||
|
|
},
|
||
|
|
"text/plain": [
|
||
|
|
"VBox()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "stderr",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"2025-01-01 14:17:23,169 - tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOMainLoop object at 0x7fea76fa76e0>>, <Task finished name='Task-53' coro=<MultiProgressBar.listen() done, defined at /env/lib/python3.12/site-packages/distributed/diagnostics/progressbar.py:281> exception=OSError('Timed out trying to connect to gateway://traefik-dask-gateway.easihub:80/easihub.8f4044c87f8b4423883c64edb421d283 after 30 s')>)\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/utils.py\", line 1952, in wait_for\n",
|
||
|
|
" return await fut\n",
|
||
|
|
" ^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/dask_gateway/comm.py\", line 48, in connect\n",
|
||
|
|
" stream = await plain_stream.start_tls(\n",
|
||
|
|
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
|
||
|
|
"asyncio.exceptions.CancelledError\n",
|
||
|
|
"\n",
|
||
|
|
"The above exception was the direct cause of the following exception:\n",
|
||
|
|
"\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/comm/core.py\", line 342, in connect\n",
|
||
|
|
" comm = await wait_for(\n",
|
||
|
|
" ^^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/utils.py\", line 1951, in wait_for\n",
|
||
|
|
" async with asyncio.timeout(timeout):\n",
|
||
|
|
" ^^^^^^^^^^^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/opt/uv/python-installs/cpython-3.12.7-linux-x86_64-gnu/lib/python3.12/asyncio/timeouts.py\", line 115, in __aexit__\n",
|
||
|
|
" raise TimeoutError from exc_val\n",
|
||
|
|
"TimeoutError\n",
|
||
|
|
"\n",
|
||
|
|
"The above exception was the direct cause of the following exception:\n",
|
||
|
|
"\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/tornado/ioloop.py\", line 750, in _run_callback\n",
|
||
|
|
" ret = callback()\n",
|
||
|
|
" ^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/tornado/ioloop.py\", line 774, in _discard_future_result\n",
|
||
|
|
" future.result()\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/diagnostics/progressbar.py\", line 306, in listen\n",
|
||
|
|
" self.comm = await connect(\n",
|
||
|
|
" ^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/comm/core.py\", line 368, in connect\n",
|
||
|
|
" raise OSError(\n",
|
||
|
|
"OSError: Timed out trying to connect to gateway://traefik-dask-gateway.easihub:80/easihub.8f4044c87f8b4423883c64edb421d283 after 30 s\n"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"average_vv = calculate_max(dsvv, time_pattern='1M')\n",
|
||
|
|
"progress(average_vv)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 11,
|
||
|
|
"id": "b6a66c55-ae30-4af9-9b8d-8d4f2152cf93",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"name": "stdout",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"CPU times: user 8.91 s, sys: 8.19 s, total: 17.1 s\n",
|
||
|
|
"Wall time: 4min 22s\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/html": [
|
||
|
|
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
|
||
|
|
"<defs>\n",
|
||
|
|
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
|
||
|
|
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
|
||
|
|
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
|
||
|
|
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
|
||
|
|
"</symbol>\n",
|
||
|
|
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
|
||
|
|
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
|
||
|
|
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"</symbol>\n",
|
||
|
|
"</defs>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
|
||
|
|
" *\n",
|
||
|
|
" */\n",
|
||
|
|
"\n",
|
||
|
|
":root {\n",
|
||
|
|
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
|
||
|
|
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
|
||
|
|
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
|
||
|
|
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
|
||
|
|
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
|
||
|
|
" --xr-background-color: var(--jp-layout-color0, white);\n",
|
||
|
|
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
|
||
|
|
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
"html[theme=\"dark\"],\n",
|
||
|
|
"html[data-theme=\"dark\"],\n",
|
||
|
|
"body[data-theme=\"dark\"],\n",
|
||
|
|
"body.vscode-dark {\n",
|
||
|
|
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
|
||
|
|
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
|
||
|
|
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
|
||
|
|
" --xr-border-color: #1f1f1f;\n",
|
||
|
|
" --xr-disabled-color: #515151;\n",
|
||
|
|
" --xr-background-color: #111111;\n",
|
||
|
|
" --xr-background-color-row-even: #111111;\n",
|
||
|
|
" --xr-background-color-row-odd: #313131;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-wrap {\n",
|
||
|
|
" display: block !important;\n",
|
||
|
|
" min-width: 300px;\n",
|
||
|
|
" max-width: 700px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-text-repr-fallback {\n",
|
||
|
|
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-header {\n",
|
||
|
|
" padding-top: 6px;\n",
|
||
|
|
" padding-bottom: 6px;\n",
|
||
|
|
" margin-bottom: 4px;\n",
|
||
|
|
" border-bottom: solid 1px var(--xr-border-color);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-header > div,\n",
|
||
|
|
".xr-header > ul {\n",
|
||
|
|
" display: inline;\n",
|
||
|
|
" margin-top: 0;\n",
|
||
|
|
" margin-bottom: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-obj-type,\n",
|
||
|
|
".xr-array-name {\n",
|
||
|
|
" margin-left: 2px;\n",
|
||
|
|
" margin-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-obj-type {\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-sections {\n",
|
||
|
|
" padding-left: 0 !important;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 150px auto auto 1fr 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",
|
||
|
|
"}\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);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-item input:enabled + label:hover {\n",
|
||
|
|
" color: var(--xr-font-color0);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
" font-weight: 500;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary > span {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" padding-left: 0.5em;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:disabled + label {\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in + label:before {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" content: \"►\";\n",
|
||
|
|
" font-size: 11px;\n",
|
||
|
|
" width: 15px;\n",
|
||
|
|
" text-align: center;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:disabled + label:before {\n",
|
||
|
|
" color: var(--xr-disabled-color);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked + label:before {\n",
|
||
|
|
" content: \"▼\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked + label > span {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary,\n",
|
||
|
|
".xr-section-inline-details {\n",
|
||
|
|
" padding-top: 4px;\n",
|
||
|
|
" padding-bottom: 4px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-inline-details {\n",
|
||
|
|
" grid-column: 2 / -1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-details {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
" margin-bottom: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked ~ .xr-section-details {\n",
|
||
|
|
" display: contents;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-wrap {\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 20px auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-wrap > label {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
" vertical-align: top;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-preview {\n",
|
||
|
|
" color: var(--xr-font-color3);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-preview,\n",
|
||
|
|
".xr-array-data {\n",
|
||
|
|
" padding: 0 5px !important;\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-data,\n",
|
||
|
|
".xr-array-in:checked ~ .xr-array-preview {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-in:checked ~ .xr-array-data,\n",
|
||
|
|
".xr-array-preview {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list {\n",
|
||
|
|
" display: inline-block !important;\n",
|
||
|
|
" list-style: none;\n",
|
||
|
|
" padding: 0 !important;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list li {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list:before {\n",
|
||
|
|
" content: \"(\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list:after {\n",
|
||
|
|
" content: \")\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list li:not(:last-child):after {\n",
|
||
|
|
" content: \",\";\n",
|
||
|
|
" padding-right: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-has-index {\n",
|
||
|
|
" font-weight: bold;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-list,\n",
|
||
|
|
".xr-var-item {\n",
|
||
|
|
" display: contents;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-item > div,\n",
|
||
|
|
".xr-var-item label,\n",
|
||
|
|
".xr-var-item > .xr-var-name span {\n",
|
||
|
|
" background-color: var(--xr-background-color-row-even);\n",
|
||
|
|
" margin-bottom: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-item > .xr-var-name:hover span {\n",
|
||
|
|
" padding-right: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > div,\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > label,\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
|
||
|
|
" background-color: var(--xr-background-color-row-odd);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-dims {\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-dtype {\n",
|
||
|
|
" grid-column: 3;\n",
|
||
|
|
" text-align: right;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-preview {\n",
|
||
|
|
" grid-column: 4;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-index-preview {\n",
|
||
|
|
" grid-column: 2 / 5;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name,\n",
|
||
|
|
".xr-var-dims,\n",
|
||
|
|
".xr-var-dtype,\n",
|
||
|
|
".xr-preview,\n",
|
||
|
|
".xr-attrs dt {\n",
|
||
|
|
" white-space: nowrap;\n",
|
||
|
|
" overflow: hidden;\n",
|
||
|
|
" text-overflow: ellipsis;\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name:hover,\n",
|
||
|
|
".xr-var-dims:hover,\n",
|
||
|
|
".xr-var-dtype:hover,\n",
|
||
|
|
".xr-attrs dt:hover {\n",
|
||
|
|
" overflow: visible;\n",
|
||
|
|
" width: auto;\n",
|
||
|
|
" z-index: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-attrs,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-data {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
" background-color: var(--xr-background-color) !important;\n",
|
||
|
|
" padding-bottom: 5px !important;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
|
||
|
|
".xr-var-data-in:checked ~ .xr-var-data,\n",
|
||
|
|
".xr-index-data-in:checked ~ .xr-index-data {\n",
|
||
|
|
" display: block;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-data > table {\n",
|
||
|
|
" float: right;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name span,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-name div,\n",
|
||
|
|
".xr-index-data,\n",
|
||
|
|
".xr-attrs {\n",
|
||
|
|
" padding-left: 25px !important;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs,\n",
|
||
|
|
".xr-var-attrs,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-data {\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
"dl.xr-attrs {\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 125px auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt,\n",
|
||
|
|
".xr-attrs dd {\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
" float: left;\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
" width: auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt {\n",
|
||
|
|
" font-weight: normal;\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt:hover span {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" background: var(--xr-background-color);\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dd {\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
" white-space: pre-wrap;\n",
|
||
|
|
" word-break: break-all;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-icon-database,\n",
|
||
|
|
".xr-icon-file-text2,\n",
|
||
|
|
".xr-no-icon {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" vertical-align: middle;\n",
|
||
|
|
" width: 1em;\n",
|
||
|
|
" height: 1.5em !important;\n",
|
||
|
|
" stroke-width: 0;\n",
|
||
|
|
" stroke: currentColor;\n",
|
||
|
|
" fill: currentColor;\n",
|
||
|
|
"}\n",
|
||
|
|
"</style><pre class='xr-text-repr-fallback'><xarray.DataArray 'vv' (time: 14, y: 8874, x: 9902)> Size: 5GB\n",
|
||
|
|
"array([[[0.11669904, 0.11758084, 0.11906392, ..., 0.28758633,\n",
|
||
|
|
" 0.28219926, 0.2772522 ],\n",
|
||
|
|
" [0.11669904, 0.11758084, 0.11906392, ..., 0.2977812 ,\n",
|
||
|
|
" 0.29101884, 0.29437637],\n",
|
||
|
|
" [0.123698 , 0.12604341, 0.1280164 , ..., 0.32462057,\n",
|
||
|
|
" 0.3412418 , 0.33167392],\n",
|
||
|
|
" ...,\n",
|
||
|
|
" [0.0860377 , 0.08814673, 0.08877262, ..., 0.07386821,\n",
|
||
|
|
" 0.07060286, 0.06853181],\n",
|
||
|
|
" [0.08429613, 0.08629276, 0.08680432, ..., 0.07478057,\n",
|
||
|
|
" 0.07110291, 0.0690233 ],\n",
|
||
|
|
" [0.08452614, 0.08514079, 0.08482596, ..., 0.07478057,\n",
|
||
|
|
" 0.07110291, 0.0690233 ]],\n",
|
||
|
|
"\n",
|
||
|
|
" [[0.01042379, 0.00980564, 0.00910663, ..., 0.2470314 ,\n",
|
||
|
|
" 0.2617413 , 0.26719323],\n",
|
||
|
|
" [0.01042379, 0.00980564, 0.00910663, ..., 0.27529654,\n",
|
||
|
|
" 0.29579878, 0.32552853],\n",
|
||
|
|
" [0.01044675, 0.00982475, 0.00910367, ..., 0.31401765,\n",
|
||
|
|
" 0.33365095, 0.39374885],\n",
|
||
|
|
"...\n",
|
||
|
|
" [0.17662166, 0.22541875, 0.20114286, ..., 0.07318421,\n",
|
||
|
|
" 0.06952109, 0.06355632],\n",
|
||
|
|
" [0.15515417, 0.18215807, 0.16962345, ..., 0.07190494,\n",
|
||
|
|
" 0.06896029, 0.06449131],\n",
|
||
|
|
" [0.13391307, 0.13972393, 0.13716471, ..., 0.07190494,\n",
|
||
|
|
" 0.06896029, 0.06449131]],\n",
|
||
|
|
"\n",
|
||
|
|
" [[0.0131518 , 0.01348239, 0.01371657, ..., 0.26908004,\n",
|
||
|
|
" 0.27120155, 0.31028602],\n",
|
||
|
|
" [0.0131518 , 0.01348239, 0.01371657, ..., 0.30983835,\n",
|
||
|
|
" 0.32544178, 0.3898932 ],\n",
|
||
|
|
" [0.01299412, 0.01317724, 0.01338189, ..., 0.35239032,\n",
|
||
|
|
" 0.3864454 , 0.42996913],\n",
|
||
|
|
" ...,\n",
|
||
|
|
" [0.08935151, 0.08881748, 0.0870014 , ..., 0.02987257,\n",
|
||
|
|
" 0.02962873, 0.03015281],\n",
|
||
|
|
" [0.09377098, 0.0899022 , 0.08724123, ..., 0.02970332,\n",
|
||
|
|
" 0.02930899, 0.02925275],\n",
|
||
|
|
" [0.10420843, 0.09353115, 0.0881807 , ..., 0.02970332,\n",
|
||
|
|
" 0.02930899, 0.02925275]]], dtype=float32)\n",
|
||
|
|
"Coordinates:\n",
|
||
|
|
" * y (y) float64 71kB 1.106e+06 1.106e+06 ... 1.017e+06 1.017e+06\n",
|
||
|
|
" * x (x) float64 79kB 5.548e+05 5.548e+05 ... 6.538e+05 6.538e+05\n",
|
||
|
|
" spatial_ref int32 4B 32648\n",
|
||
|
|
" * time (time) datetime64[ns] 112B 2022-09-30 2022-10-31 ... 2023-10-31\n",
|
||
|
|
"Attributes:\n",
|
||
|
|
" units: intensity\n",
|
||
|
|
" nodata: nan\n",
|
||
|
|
" crs: EPSG:32648\n",
|
||
|
|
" grid_mapping: spatial_ref</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>xarray.DataArray</div><div class='xr-array-name'>'vv'</div><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 14</li><li><span class='xr-has-index'>y</span>: 8874</li><li><span class='xr-has-index'>x</span>: 9902</li></ul></div><ul class='xr-sections'><li class='xr-section-item'><div class='xr-array-wrap'><input id='section-f795ae54-e0f1-4b8a-8983-f83ffd4e4d44' class='xr-array-in' type='checkbox' checked><label for='section-f795ae54-e0f1-4b8a-8983-f83ffd4e4d44' title='Show/hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-array-preview xr-preview'><span>0.1167 0.1176 0.1191 0.1191 0.1408 ... 0.03176 0.0297 0.02931 0.02925</span></div><div class='xr-array-data'><pre>array([[[0.11669904, 0.11758084, 0.11906392, ..., 0.28758633,\n",
|
||
|
|
" 0.28219926, 0.2772522 ],\n",
|
||
|
|
" [0.11669904, 0.11758084, 0.11906392, ..., 0.2977812 ,\n",
|
||
|
|
" 0.29101884, 0.29437637],\n",
|
||
|
|
" [0.123698 , 0.12604341, 0.1280164 , ..., 0.32462057,\n",
|
||
|
|
" 0.3412418 , 0.33167392],\n",
|
||
|
|
" ...,\n",
|
||
|
|
" [0.0860377 , 0.08814673, 0.08877262, ..., 0.07386821,\n",
|
||
|
|
" 0.07060286, 0.06853181],\n",
|
||
|
|
" [0.08429613, 0.08629276, 0.08680432, ..., 0.07478057,\n",
|
||
|
|
" 0.07110291, 0.0690233 ],\n",
|
||
|
|
" [0.08452614, 0.08514079, 0.08482596, ..., 0.07478057,\n",
|
||
|
|
" 0.07110291, 0.0690233 ]],\n",
|
||
|
|
"\n",
|
||
|
|
" [[0.01042379, 0.00980564, 0.00910663, ..., 0.2470314 ,\n",
|
||
|
|
" 0.2617413 , 0.26719323],\n",
|
||
|
|
" [0.01042379, 0.00980564, 0.00910663, ..., 0.27529654,\n",
|
||
|
|
" 0.29579878, 0.32552853],\n",
|
||
|
|
" [0.01044675, 0.00982475, 0.00910367, ..., 0.31401765,\n",
|
||
|
|
" 0.33365095, 0.39374885],\n",
|
||
|
|
"...\n",
|
||
|
|
" [0.17662166, 0.22541875, 0.20114286, ..., 0.07318421,\n",
|
||
|
|
" 0.06952109, 0.06355632],\n",
|
||
|
|
" [0.15515417, 0.18215807, 0.16962345, ..., 0.07190494,\n",
|
||
|
|
" 0.06896029, 0.06449131],\n",
|
||
|
|
" [0.13391307, 0.13972393, 0.13716471, ..., 0.07190494,\n",
|
||
|
|
" 0.06896029, 0.06449131]],\n",
|
||
|
|
"\n",
|
||
|
|
" [[0.0131518 , 0.01348239, 0.01371657, ..., 0.26908004,\n",
|
||
|
|
" 0.27120155, 0.31028602],\n",
|
||
|
|
" [0.0131518 , 0.01348239, 0.01371657, ..., 0.30983835,\n",
|
||
|
|
" 0.32544178, 0.3898932 ],\n",
|
||
|
|
" [0.01299412, 0.01317724, 0.01338189, ..., 0.35239032,\n",
|
||
|
|
" 0.3864454 , 0.42996913],\n",
|
||
|
|
" ...,\n",
|
||
|
|
" [0.08935151, 0.08881748, 0.0870014 , ..., 0.02987257,\n",
|
||
|
|
" 0.02962873, 0.03015281],\n",
|
||
|
|
" [0.09377098, 0.0899022 , 0.08724123, ..., 0.02970332,\n",
|
||
|
|
" 0.02930899, 0.02925275],\n",
|
||
|
|
" [0.10420843, 0.09353115, 0.0881807 , ..., 0.02970332,\n",
|
||
|
|
" 0.02930899, 0.02925275]]], dtype=float32)</pre></div></div></li><li class='xr-section-item'><input id='section-13a88cfd-8139-4ff9-bbeb-849699b0c4f2' class='xr-section-summary-in' type='checkbox' checked><label for='section-13a88cfd-8139-4ff9-bbeb-849699b0c4f2' 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'>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.106e+06 1.106e+06 ... 1.017e+06</div><input id='attrs-d841ccf1-395f-427e-b40a-b4a15d16412b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d841ccf1-395f-427e-b40a-b4a15d16412b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9c45927a-b8d2-48c5-ab80-a8b2387c0d2f' class='xr-var-data-in' type='checkbox'><label for='data-9c45927a-b8d2-48c5-ab80-a8b2387c0d2f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>metre</dd><dt><span>resolution :</span></dt><dd>-10.0</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd></dl></div><div class='xr-var-data'><pre>array([1105735., 1105725., 1105715., ..., 1017025., 1017015., 1017005.])</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'>5.548e+05 5.548e+05 ... 6.538e+05</div><input id='attrs-7fa2166c-9dfe-4b97-a420-105c9d3856b2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7fa2166c-9dfe-4b97-a420-105c9d3856b2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a3aa53a7-8322-4eae-a01c-4ebbf9c79de1' class='xr-var-data-in' type='checkbox'><label for='data-a3aa53a7-8322-4eae-a01c-4ebbf9c79de1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>metre</dd><dt><span>resolution :</span></dt><dd>10.0</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd></dl></div><div class='xr-var-data'><pre>array([554795., 554805., 554815., ..., 653785., 653795., 653805.])</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'>int32</div><div class='xr-var-preview xr-preview'>32648</div><input id='attrs-9cebfd4d-1b6b-472a-894f-33c6280924b7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9cebfd4d-1b6b-472a-894f-33c6280924b7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c7cf9960-eec2-44f3-983b-ad494ac79b92' class='xr-var-data-in' type='checkbox'><label for='data-c7cf9960-eec2-44f3-983b-ad494ac79b92' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>spatial_ref :</span></dt><dd>PROJCS["WGS 84 / UTM zone 48N",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",105],PARAMETER["scale_factor",0.9996],PARAMETER["false_eastin
|
||
|
|
" '2022-11-30T00:00:00.000000000', '2022-12-31T00:00:00.000000000',\n",
|
||
|
|
" '2023-01-31T00:00:00.000000000', '2023-02-28T00:00:00.000000000',\n",
|
||
|
|
" '2023-03-31T00:00:00.000000000', '2023-04-30T00:00:00.000000000',\n",
|
||
|
|
" '2023-05-31T00:00:00.000000000', '2023-06-30T00:00:00.000000000',\n",
|
||
|
|
" '2023-07-31T00:00:00.000000000', '2023-08-31T00:00:00.000000000',\n",
|
||
|
|
" '2023-09-30T00:00:00.000000000', '2023-10-31T00:00:00.000000000'],\n",
|
||
|
|
" dtype='datetime64[ns]')</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-2300f010-f954-4e9b-802c-cbc6e23354bd' class='xr-section-summary-in' type='checkbox' ><label for='section-2300f010-f954-4e9b-802c-cbc6e23354bd' 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>y</div></div><div class='xr-index-preview'>PandasIndex</div><input type='checkbox' disabled/><label></label><input id='index-9ace8047-1a4e-405c-8203-4e18e5782911' class='xr-index-data-in' type='checkbox'/><label for='index-9ace8047-1a4e-405c-8203-4e18e5782911' 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([1105735.0, 1105725.0, 1105715.0, 1105705.0, 1105695.0, 1105685.0,\n",
|
||
|
|
" 1105675.0, 1105665.0, 1105655.0, 1105645.0,\n",
|
||
|
|
" ...\n",
|
||
|
|
" 1017095.0, 1017085.0, 1017075.0, 1017065.0, 1017055.0, 1017045.0,\n",
|
||
|
|
" 1017035.0, 1017025.0, 1017015.0, 1017005.0],\n",
|
||
|
|
" dtype='float64', name='y', length=8874))</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-909f2c4f-e7c4-4741-b9fa-8c7d71a1d97d' class='xr-index-data-in' type='checkbox'/><label for='index-909f2c4f-e7c4-4741-b9fa-8c7d71a1d97d' 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([554795.0, 554805.0, 554815.0, 554825.0, 554835.0, 554845.0, 554855.0,\n",
|
||
|
|
" 554865.0, 554875.0, 554885.0,\n",
|
||
|
|
" ...\n",
|
||
|
|
" 653715.0, 653725.0, 653735.0, 653745.0, 653755.0, 653765.0, 653775.0,\n",
|
||
|
|
" 653785.0, 653795.0, 653805.0],\n",
|
||
|
|
" dtype='float64', name='x', length=9902))</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-4c5df8ee-0820-4985-8e12-095f84daf422' class='xr-index-data-in' type='checkbox'/><label for='index-4c5df8ee-0820-4985-8e12-095f84daf422' 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(['2022-09-30', '2022-10-31', '2022-11-30', '2022-12-31',\n",
|
||
|
|
" '2023-01-31', '2023-02-28', '2023-03-31', '2023-04-30',\n",
|
||
|
|
" '2023-05-31', '2023-06-30', '2023-07-31', '2023-08-31',\n",
|
||
|
|
" '2023-09-30', '2023-10-31'],\n",
|
||
|
|
" dtype='datetime64[ns]', name='time', freq='ME'))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-72d81e21-8c64-4c1e-8366-1fca36b9bc39' class='xr-section-summary-in' type='checkbox' checked><label for='section-72d81e21-8c64-4c1e-8366-1fca36b9bc39' class='xr-section-summary' >Attributes: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>intensity</dd><dt><span>nodata :</span></dt><dd>nan</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd><dt><span>grid_mapping :</span></dt><dd>spatial_ref</dd></dl></div></li></ul></div></div>"
|
||
|
|
],
|
||
|
|
"text/plain": [
|
||
|
|
"<xarray.DataArray 'vv' (time: 14, y: 8874, x: 9902)> Size: 5GB\n",
|
||
|
|
"array([[[0.11669904, 0.11758084, 0.11906392, ..., 0.28758633,\n",
|
||
|
|
" 0.28219926, 0.2772522 ],\n",
|
||
|
|
" [0.11669904, 0.11758084, 0.11906392, ..., 0.2977812 ,\n",
|
||
|
|
" 0.29101884, 0.29437637],\n",
|
||
|
|
" [0.123698 , 0.12604341, 0.1280164 , ..., 0.32462057,\n",
|
||
|
|
" 0.3412418 , 0.33167392],\n",
|
||
|
|
" ...,\n",
|
||
|
|
" [0.0860377 , 0.08814673, 0.08877262, ..., 0.07386821,\n",
|
||
|
|
" 0.07060286, 0.06853181],\n",
|
||
|
|
" [0.08429613, 0.08629276, 0.08680432, ..., 0.07478057,\n",
|
||
|
|
" 0.07110291, 0.0690233 ],\n",
|
||
|
|
" [0.08452614, 0.08514079, 0.08482596, ..., 0.07478057,\n",
|
||
|
|
" 0.07110291, 0.0690233 ]],\n",
|
||
|
|
"\n",
|
||
|
|
" [[0.01042379, 0.00980564, 0.00910663, ..., 0.2470314 ,\n",
|
||
|
|
" 0.2617413 , 0.26719323],\n",
|
||
|
|
" [0.01042379, 0.00980564, 0.00910663, ..., 0.27529654,\n",
|
||
|
|
" 0.29579878, 0.32552853],\n",
|
||
|
|
" [0.01044675, 0.00982475, 0.00910367, ..., 0.31401765,\n",
|
||
|
|
" 0.33365095, 0.39374885],\n",
|
||
|
|
"...\n",
|
||
|
|
" [0.17662166, 0.22541875, 0.20114286, ..., 0.07318421,\n",
|
||
|
|
" 0.06952109, 0.06355632],\n",
|
||
|
|
" [0.15515417, 0.18215807, 0.16962345, ..., 0.07190494,\n",
|
||
|
|
" 0.06896029, 0.06449131],\n",
|
||
|
|
" [0.13391307, 0.13972393, 0.13716471, ..., 0.07190494,\n",
|
||
|
|
" 0.06896029, 0.06449131]],\n",
|
||
|
|
"\n",
|
||
|
|
" [[0.0131518 , 0.01348239, 0.01371657, ..., 0.26908004,\n",
|
||
|
|
" 0.27120155, 0.31028602],\n",
|
||
|
|
" [0.0131518 , 0.01348239, 0.01371657, ..., 0.30983835,\n",
|
||
|
|
" 0.32544178, 0.3898932 ],\n",
|
||
|
|
" [0.01299412, 0.01317724, 0.01338189, ..., 0.35239032,\n",
|
||
|
|
" 0.3864454 , 0.42996913],\n",
|
||
|
|
" ...,\n",
|
||
|
|
" [0.08935151, 0.08881748, 0.0870014 , ..., 0.02987257,\n",
|
||
|
|
" 0.02962873, 0.03015281],\n",
|
||
|
|
" [0.09377098, 0.0899022 , 0.08724123, ..., 0.02970332,\n",
|
||
|
|
" 0.02930899, 0.02925275],\n",
|
||
|
|
" [0.10420843, 0.09353115, 0.0881807 , ..., 0.02970332,\n",
|
||
|
|
" 0.02930899, 0.02925275]]], dtype=float32)\n",
|
||
|
|
"Coordinates:\n",
|
||
|
|
" * y (y) float64 71kB 1.106e+06 1.106e+06 ... 1.017e+06 1.017e+06\n",
|
||
|
|
" * x (x) float64 79kB 5.548e+05 5.548e+05 ... 6.538e+05 6.538e+05\n",
|
||
|
|
" spatial_ref int32 4B 32648\n",
|
||
|
|
" * time (time) datetime64[ns] 112B 2022-09-30 2022-10-31 ... 2023-10-31\n",
|
||
|
|
"Attributes:\n",
|
||
|
|
" units: intensity\n",
|
||
|
|
" nodata: nan\n",
|
||
|
|
" crs: EPSG:32648\n",
|
||
|
|
" grid_mapping: spatial_ref"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"execution_count": 11,
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "execute_result"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"%%time\n",
|
||
|
|
"average_vh.compute()\n",
|
||
|
|
"average_vv.compute()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 12,
|
||
|
|
"id": "46f285ce-490c-42e1-9822-8154b37704f6",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"name": "stdout",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"No datasets require offset correction\n",
|
||
|
|
"The valid_data_mask and scale (no offset) have been applied to the reflectance bands\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/html": [
|
||
|
|
"<h4>Dataset size: 120.05 GB</h4>"
|
||
|
|
],
|
||
|
|
"text/plain": [
|
||
|
|
"<IPython.core.display.HTML object>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/html": [
|
||
|
|
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
|
||
|
|
"<defs>\n",
|
||
|
|
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
|
||
|
|
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
|
||
|
|
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
|
||
|
|
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
|
||
|
|
"</symbol>\n",
|
||
|
|
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
|
||
|
|
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
|
||
|
|
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"</symbol>\n",
|
||
|
|
"</defs>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
|
||
|
|
" *\n",
|
||
|
|
" */\n",
|
||
|
|
"\n",
|
||
|
|
":root {\n",
|
||
|
|
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
|
||
|
|
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
|
||
|
|
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
|
||
|
|
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
|
||
|
|
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
|
||
|
|
" --xr-background-color: var(--jp-layout-color0, white);\n",
|
||
|
|
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
|
||
|
|
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
"html[theme=\"dark\"],\n",
|
||
|
|
"html[data-theme=\"dark\"],\n",
|
||
|
|
"body[data-theme=\"dark\"],\n",
|
||
|
|
"body.vscode-dark {\n",
|
||
|
|
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
|
||
|
|
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
|
||
|
|
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
|
||
|
|
" --xr-border-color: #1f1f1f;\n",
|
||
|
|
" --xr-disabled-color: #515151;\n",
|
||
|
|
" --xr-background-color: #111111;\n",
|
||
|
|
" --xr-background-color-row-even: #111111;\n",
|
||
|
|
" --xr-background-color-row-odd: #313131;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-wrap {\n",
|
||
|
|
" display: block !important;\n",
|
||
|
|
" min-width: 300px;\n",
|
||
|
|
" max-width: 700px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-text-repr-fallback {\n",
|
||
|
|
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-header {\n",
|
||
|
|
" padding-top: 6px;\n",
|
||
|
|
" padding-bottom: 6px;\n",
|
||
|
|
" margin-bottom: 4px;\n",
|
||
|
|
" border-bottom: solid 1px var(--xr-border-color);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-header > div,\n",
|
||
|
|
".xr-header > ul {\n",
|
||
|
|
" display: inline;\n",
|
||
|
|
" margin-top: 0;\n",
|
||
|
|
" margin-bottom: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-obj-type,\n",
|
||
|
|
".xr-array-name {\n",
|
||
|
|
" margin-left: 2px;\n",
|
||
|
|
" margin-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-obj-type {\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-sections {\n",
|
||
|
|
" padding-left: 0 !important;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 150px auto auto 1fr 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",
|
||
|
|
"}\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);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-item input:enabled + label:hover {\n",
|
||
|
|
" color: var(--xr-font-color0);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
" font-weight: 500;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary > span {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" padding-left: 0.5em;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:disabled + label {\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in + label:before {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" content: \"►\";\n",
|
||
|
|
" font-size: 11px;\n",
|
||
|
|
" width: 15px;\n",
|
||
|
|
" text-align: center;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:disabled + label:before {\n",
|
||
|
|
" color: var(--xr-disabled-color);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked + label:before {\n",
|
||
|
|
" content: \"▼\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked + label > span {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary,\n",
|
||
|
|
".xr-section-inline-details {\n",
|
||
|
|
" padding-top: 4px;\n",
|
||
|
|
" padding-bottom: 4px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-inline-details {\n",
|
||
|
|
" grid-column: 2 / -1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-details {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
" margin-bottom: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked ~ .xr-section-details {\n",
|
||
|
|
" display: contents;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-wrap {\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 20px auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-wrap > label {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
" vertical-align: top;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-preview {\n",
|
||
|
|
" color: var(--xr-font-color3);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-preview,\n",
|
||
|
|
".xr-array-data {\n",
|
||
|
|
" padding: 0 5px !important;\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-data,\n",
|
||
|
|
".xr-array-in:checked ~ .xr-array-preview {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-in:checked ~ .xr-array-data,\n",
|
||
|
|
".xr-array-preview {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list {\n",
|
||
|
|
" display: inline-block !important;\n",
|
||
|
|
" list-style: none;\n",
|
||
|
|
" padding: 0 !important;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list li {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list:before {\n",
|
||
|
|
" content: \"(\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list:after {\n",
|
||
|
|
" content: \")\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list li:not(:last-child):after {\n",
|
||
|
|
" content: \",\";\n",
|
||
|
|
" padding-right: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-has-index {\n",
|
||
|
|
" font-weight: bold;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-list,\n",
|
||
|
|
".xr-var-item {\n",
|
||
|
|
" display: contents;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-item > div,\n",
|
||
|
|
".xr-var-item label,\n",
|
||
|
|
".xr-var-item > .xr-var-name span {\n",
|
||
|
|
" background-color: var(--xr-background-color-row-even);\n",
|
||
|
|
" margin-bottom: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-item > .xr-var-name:hover span {\n",
|
||
|
|
" padding-right: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > div,\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > label,\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
|
||
|
|
" background-color: var(--xr-background-color-row-odd);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-dims {\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-dtype {\n",
|
||
|
|
" grid-column: 3;\n",
|
||
|
|
" text-align: right;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-preview {\n",
|
||
|
|
" grid-column: 4;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-index-preview {\n",
|
||
|
|
" grid-column: 2 / 5;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name,\n",
|
||
|
|
".xr-var-dims,\n",
|
||
|
|
".xr-var-dtype,\n",
|
||
|
|
".xr-preview,\n",
|
||
|
|
".xr-attrs dt {\n",
|
||
|
|
" white-space: nowrap;\n",
|
||
|
|
" overflow: hidden;\n",
|
||
|
|
" text-overflow: ellipsis;\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name:hover,\n",
|
||
|
|
".xr-var-dims:hover,\n",
|
||
|
|
".xr-var-dtype:hover,\n",
|
||
|
|
".xr-attrs dt:hover {\n",
|
||
|
|
" overflow: visible;\n",
|
||
|
|
" width: auto;\n",
|
||
|
|
" z-index: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-attrs,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-data {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
" background-color: var(--xr-background-color) !important;\n",
|
||
|
|
" padding-bottom: 5px !important;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
|
||
|
|
".xr-var-data-in:checked ~ .xr-var-data,\n",
|
||
|
|
".xr-index-data-in:checked ~ .xr-index-data {\n",
|
||
|
|
" display: block;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-data > table {\n",
|
||
|
|
" float: right;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name span,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-name div,\n",
|
||
|
|
".xr-index-data,\n",
|
||
|
|
".xr-attrs {\n",
|
||
|
|
" padding-left: 25px !important;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs,\n",
|
||
|
|
".xr-var-attrs,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-data {\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
"dl.xr-attrs {\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 125px auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt,\n",
|
||
|
|
".xr-attrs dd {\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
" float: left;\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
" width: auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt {\n",
|
||
|
|
" font-weight: normal;\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt:hover span {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" background: var(--xr-background-color);\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dd {\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
" white-space: pre-wrap;\n",
|
||
|
|
" word-break: break-all;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-icon-database,\n",
|
||
|
|
".xr-icon-file-text2,\n",
|
||
|
|
".xr-no-icon {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" vertical-align: middle;\n",
|
||
|
|
" width: 1em;\n",
|
||
|
|
" height: 1.5em !important;\n",
|
||
|
|
" stroke-width: 0;\n",
|
||
|
|
" stroke: currentColor;\n",
|
||
|
|
" fill: currentColor;\n",
|
||
|
|
"}\n",
|
||
|
|
"</style><pre class='xr-text-repr-fallback'><xarray.Dataset> Size: 129GB\n",
|
||
|
|
"Dimensions: (time: 163, y: 8874, x: 9902)\n",
|
||
|
|
"Coordinates:\n",
|
||
|
|
" * time (time) datetime64[ns] 1kB 2022-09-02T03:35:23.960000 ... 202...\n",
|
||
|
|
" * y (y) float64 71kB 1.106e+06 1.106e+06 ... 1.017e+06 1.017e+06\n",
|
||
|
|
" * x (x) float64 79kB 5.548e+05 5.548e+05 ... 6.538e+05 6.538e+05\n",
|
||
|
|
" spatial_ref int32 4B 32648\n",
|
||
|
|
"Data variables:\n",
|
||
|
|
" red (time, y, x) float32 57GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
" nir (time, y, x) float32 57GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
" scl (time, y, x) uint8 14GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
"Attributes:\n",
|
||
|
|
" crs: EPSG:32648\n",
|
||
|
|
" grid_mapping: spatial_ref</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-11393fe5-35a3-4d07-944b-637af009e7c4' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-11393fe5-35a3-4d07-944b-637af009e7c4' 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>: 163</li><li><span class='xr-has-index'>y</span>: 8874</li><li><span class='xr-has-index'>x</span>: 9902</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-65509cc2-6c79-4db5-9055-a48a0d9e9bd9' class='xr-section-summary-in' type='checkbox' checked><label for='section-65509cc2-6c79-4db5-9055-a48a0d9e9bd9' 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'>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'>2022-09-02T03:35:23.960000 ... 2...</div><input id='attrs-2781aebd-8d62-4d42-a8e3-abced4ca5489' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2781aebd-8d62-4d42-a8e3-abced4ca5489' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a397d4cc-dc21-4364-b57a-7555193e77e1' class='xr-var-data-in' type='checkbox'><label for='data-a397d4cc-dc21-4364-b57a-7555193e77e1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>seconds since 1970-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array(['2022-09-02T03:35:23.960000000', '2022-09-04T03:25:18.037000000',\n",
|
||
|
|
" '2022-09-07T03:35:13.646000000', '2022-09-09T03:25:27.617000000',\n",
|
||
|
|
" '2022-09-12T03:35:22.247000000', '2022-09-14T03:25:18.529000000',\n",
|
||
|
|
" '2022-09-17T03:35:13.648000000', '2022-09-19T03:25:24.773000000',\n",
|
||
|
|
" '2022-09-22T03:35:18.931000000', '2022-09-24T03:25:17.431000000',\n",
|
||
|
|
" '2022-09-27T03:35:12.140000000', '2022-09-29T03:25:23.829000000',\n",
|
||
|
|
" '2022-10-02T03:35:19.048000000', '2022-10-07T03:35:09.133000000',\n",
|
||
|
|
" '2022-10-09T03:25:22.746000000', '2022-10-12T03:35:17.151000000',\n",
|
||
|
|
" '2022-10-14T03:25:15.533000000', '2022-10-17T03:35:11.148000000',\n",
|
||
|
|
" '2022-10-19T03:25:18.808000000', '2022-10-22T03:35:13.746000000',\n",
|
||
|
|
" '2022-10-24T03:25:15.878000000', '2022-10-27T03:35:10.923000000',\n",
|
||
|
|
" '2022-10-29T03:25:20.127000000', '2022-11-01T03:35:15.818000000',\n",
|
||
|
|
" '2022-11-03T03:25:14.204000000', '2022-11-06T03:35:10.096000000',\n",
|
||
|
|
" '2022-11-11T03:35:15.334000000', '2022-11-13T03:25:16.056000000',\n",
|
||
|
|
" '2022-11-16T03:35:11.542000000', '2022-11-18T03:25:18.155000000',\n",
|
||
|
|
" '2022-11-21T03:35:12.396000000', '2022-11-23T03:25:16.067000000',\n",
|
||
|
|
" '2022-11-26T03:35:11.063000000', '2022-11-28T03:25:16.297000000',\n",
|
||
|
|
" '2022-12-01T03:35:12.009000000', '2022-12-03T03:25:14.366000000',\n",
|
||
|
|
" '2022-12-06T03:35:10.293000000', '2022-12-08T03:25:17.072000000',\n",
|
||
|
|
" '2022-12-11T03:35:12.184000000', '2022-12-16T03:35:10.130000000',\n",
|
||
|
|
" '2022-12-18T03:25:15.584000000', '2022-12-21T03:35:09.988000000',\n",
|
||
|
|
" '2022-12-23T03:25:15.763000000', '2022-12-26T03:35:11.128000000',\n",
|
||
|
|
" '2022-12-28T03:25:15.151000000', '2022-12-31T03:35:10.753000000',\n",
|
||
|
|
" '2023-01-02T03:25:15.152000000', '2023-01-05T03:35:09.844000000',\n",
|
||
|
|
" '2023-01-07T03:25:15.343000000', '2023-01-10T03:35:10.149000000',\n",
|
||
|
|
" '2023-01-12T03:25:12.066000000', '2023-01-15T03:35:08.140000000',\n",
|
||
|
|
" '2023-01-17T03:25:12.454000000', '2023-01-20T03:35:06.593000000',\n",
|
||
|
|
" '2023-01-22T03:25:14.446000000', '2023-01-25T03:35:09.824000000',\n",
|
||
|
|
" '2023-01-27T03:25:13.987000000', '2023-01-30T03:35:09.963000000',\n",
|
||
|
|
" '2023-02-01T03:25:13.595000000', '2023-02-04T03:35:09.008000000',\n",
|
||
|
|
" '2023-02-06T03:25:15.471000000', '2023-02-09T03:35:10.646000000',\n",
|
||
|
|
" '2023-02-11T03:25:15.100000000', '2023-02-14T03:35:10.240000000',\n",
|
||
|
|
" '2023-02-16T03:25:28.099000000', '2023-02-24T03:35:12.118000000',\n",
|
||
|
|
" '2023-02-26T03:25:14.146000000', '2023-03-01T03:35:09.182000000',\n",
|
||
|
|
" '2023-03-03T03:25:17.841000000', '2023-03-06T03:35:14.717000000',\n",
|
||
|
|
" '2023-03-08T03:25:12.032000000', '2023-03-11T03:35:07.230000000',\n",
|
||
|
|
" '2023-03-13T03:25:20.837000000', '2023-03-16T03:35:15.940000000',\n",
|
||
|
|
" '2023-03-18T03:25:14.467000000', '2023-03-21T03:35:10.279000000',\n",
|
||
|
|
" '2023-03-23T03:25:18.795000000', '2023-03-26T03:35:14.570000000',\n",
|
||
|
|
" '2023-03-28T03:25:14.536000000', '2023-03-31T03:35:10.140000000',\n",
|
||
|
|
" '2023-04-02T03:25:19.945000000', '2023-04-05T03:35:14.925000000',\n",
|
||
|
|
" '2023-04-07T03:25:16.518000000', '2023-04-10T03:35:12.000000000',\n",
|
||
|
|
" '2023-04-15T03:35:12.743000000', '2023-04-20T03:35:10.328000000',\n",
|
||
|
|
" '2023-04-22T03:25:18.572000000', '2023-04-25T03:35:13.748000000',\n",
|
||
|
|
" '2023-04-27T03:25:16.567000000', '2023-04-30T03:35:12.151000000',\n",
|
||
|
|
" '2023-05-02T03:25:18.866000000', '2023-05-05T03:35:14.433000000',\n",
|
||
|
|
" '2023-05-07T03:25:16.583000000', '2023-05-10T03:35:11.284000000',\n",
|
||
|
|
" '2023-05-12T03:25:19.200000000', '2023-05-15T03:35:15.683000000',\n",
|
||
|
|
" '2023-05-17T03:25:17.911000000', '2023-05-20T03:35:14.193000000',\n",
|
||
|
|
" '2023-05-22T03:25:36.378000000', '2023-05-25T03:35:16.657000000',\n",
|
||
|
|
" '2023-05-27T03:25:20.078000000', '2023-05-30T03:35:15.642000000',\n",
|
||
|
|
" '2023-06-01T03:25:20.268000000', '2023-06-04T03:35:16.047000000',\n",
|
||
|
|
" '2023-06-06T03:25:20.180000000', '2023-06-09T03:35:15.534000000',\n",
|
||
|
|
" '2023-06-11T03:25:21.573000000', '2023-06-14T03:35:16.859000000',\n",
|
||
|
|
" '2023-06-16T03:25:20.769000000', '2023-06-19T03:35:15.908000000',\n",
|
||
|
|
" '2023-06-21T03:25:20.640000000', '2023-06-24T03:35:15.972000000',\n",
|
||
|
|
" '2023-06-26T03:25:19.927000000', '2023-06-29T03:35:15.752000000',\n",
|
||
|
|
" '2023-07-01T03:25:21.763000000', '2023-07-04T03:35:17.227000000',\n",
|
||
|
|
" '2023-07-06T03:25:21.702000000', '2023-07-09T03:35:17.102000000',\n",
|
||
|
|
" '2023-07-11T03:25:21.515000000', '2023-07-14T03:35:16.582000000',\n",
|
||
|
|
" '2023-07-16T03:25:21.326000000', '2023-07-19T03:35:16.050000000',\n",
|
||
|
|
" '2023-07-21T03:25:22.444000000', '2023-07-24T03:35:17.845000000',\n",
|
||
|
|
" '2023-07-26T03:25:21.503000000', '2023-07-29T03:35:17.083000000',\n",
|
||
|
|
" '2023-07-31T03:25:36.753000000', '2023-08-03T03:35:16.494000000',\n",
|
||
|
|
" '2023-08-05T03:25:21.570000000', '2023-08-08T03:35:16.313000000',\n",
|
||
|
|
" '2023-08-10T03:25:22.024000000', '2023-08-13T03:35:17.448000000',\n",
|
||
|
|
" '2023-08-15T03:25:22.075000000', '2023-08-18T03:35:17.812000000',\n",
|
||
|
|
" '2023-08-20T03:25:21.568000000', '2023-08-23T03:35:16.224000000',\n",
|
||
|
|
" '2023-08-25T03:25:22.592000000', '2023-08-28T03:35:17.571000000',\n",
|
||
|
|
" '2023-08-30T03:25:21.212000000', '2023-09-02T03:35:16.627000000',\n",
|
||
|
|
" '2023-09-04T03:25:21.856000000', '2023-09-07T03:35:17.134000000',\n",
|
||
|
|
" '2023-09-09T03:25:20.648000000', '2023-09-12T03:35:15.326000000',\n",
|
||
|
|
" '2023-09-14T03:25:35.755000000', '2023-09-17T03:35:15.269000000',\n",
|
||
|
|
" '2023-09-19T03:25:24.089000000', '2023-09-22T03:35:15.439000000',\n",
|
||
|
|
" '2023-09-24T03:25:18.524000000', '2023-09-27T03:35:14.112000000',\n",
|
||
|
|
" '2023-09-29T03:25:19.046000000', '2023-10-02T03:35:13.287000000',\n",
|
||
|
|
" '2023-10-04T03:25:18.057000000', '2023-10-07T03:35:12.349000000',\n",
|
||
|
|
" '2023-10-09T03:25:17.684000000', '2023-10-12T03:35:13.797000000',\n",
|
||
|
|
" '2023-10-14T03:25:14.753000000', '2023-10-17T03:35:11.016000000',\n",
|
||
|
|
" '2023-10-19T03:25:18.719000000', '2023-10-22T03:35:13.512000000',\n",
|
||
|
|
" '2023-10-24T03:25:16.597000000', '2023-10-27T03:35:11.799000000',\n",
|
||
|
|
" '2023-10-29T03:25:18.344000000'], dtype='datetime64[ns]')</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.106e+06 1.106e+06 ... 1.017e+06</div><input id='attrs-cc4d5797-9167-49b8-b237-9d53a3096b54' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cc4d5797-9167-49b8-b237-9d53a3096b54' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e9a94101-1806-460e-a551-1b6c44bc13d9' class='xr-var-data-in' type='checkbox'><label for='data-e9a94101-1806-460e-a551-1b6c44bc13d9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>metre</dd><dt><span>resolution :</span></dt><dd>-10.0</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd></dl></div><div class='xr-var-data'><pre>array([1105735., 1105725., 1105715., ..., 1017025., 1017015., 1017005.])</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'>5.548e+05 5.548e+05 ... 6.538e+05</div><input id='attrs-2c092334-20bb-4d1b-8cb7-12e748d53c5b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2c092334-20bb-4d1b-8cb7-12e748d53c5b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-65999e3f-0e01-4993-b531-699a054fdbc2' class='xr-var-data-in' type='checkbox'><label for='data-65999e3f-0e01-4993-b531-699a054fdbc2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>metre</dd><dt><span>resolution :</span></dt><dd>10.0</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd></dl></div><div class='xr-var-data'><pre>array([554795., 554805., 554815., ..., 653785., 653795., 653805.])</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'>int32</div><div class='xr-var-preview xr-preview'>32648</div><input id='attrs-a8d28f47-f5e2-43bb-bc78-3612eec9fb04' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a8d28f47-f5e2-43bb-bc78-3612eec9fb04' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5c20e113-f945-4b74-bae9-3b3c43dedd0a' class='xr-var-data-in' type='checkbox'><label for='data-5c20e113-f945-4b74-bae9-3b3c43dedd0a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>spatial_ref :</span></dt><dd>PROJCS["WGS 84 / UTM zone 48N",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",105],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","32648"]]</dd><dt><span>grid_mapping_name :</span></dt><dd>transverse_mercator</dd></dl></div><div class='xr
|
||
|
|
" <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> 53.36 GiB </td>\n",
|
||
|
|
" <td> 16.00 MiB </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Shape </th>\n",
|
||
|
|
" <td> (163, 8874, 9902) </td>\n",
|
||
|
|
" <td> (1, 2048, 2048) </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Dask graph </th>\n",
|
||
|
|
" <td colspan=\"2\"> 4075 chunks in 8 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=\"196\" height=\"173\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"26\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"24\" x2=\"26\" y2=\"41\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"49\" x2=\"26\" y2=\"66\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"74\" x2=\"26\" y2=\"90\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"99\" x2=\"26\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"107\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"107\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"108\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"109\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"111\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"112\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"113\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"116\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"118\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"119\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"120\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"121\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"25\" y1=\"15\" x2=\"25\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 26.444584894958545,16.444584894958545 26.444584894958545,123.98649562006457 10.0,107.54191072510604\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"25\" y1=\"15\" x2=\"145\" y2=\"15\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"26\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"34\" y1=\"0\" x2=\"51\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"59\" y1=\"0\" x2=\"76\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"84\" y1=\"0\" x2=\"100\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"109\" y1=\"0\" x2=\"125\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"130\" y1=\"0\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 130.0,0.0 146.44458489495855,16.444584894958545 26.444584894958545,16.444584894958545\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"41\" x2=\"146\" y2=\"41\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"66\" x2=\"146\" y2=\"66\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"90\" x2=\"146\" y2=\"90\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"115\" x2=\"146\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"123\" x2=\"146\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"51\" y1=\"16\" x2=\"51\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"76\" y1=\"16\" x2=\"76\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"100\" y1=\"16\" x2=\"100\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"125\" y1=\"16\" x2=\"125\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"146\" y1=\"16\" x2=\"146\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"26.444584894958545,16.444584894958545 146.44458489495855,16.444584894958545 146.44458489495855,123.98649562006457 26.444584894958545,123.98649562006457\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Text -->\n",
|
||
|
|
" <text x=\"86.444585\" y=\"143.986496\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >9902</text>\n",
|
||
|
|
" <text x=\"166.444585\" y=\"70.215540\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,166.444585,70.215540)\">8874</text>\n",
|
||
|
|
" <text x=\"8.222292\" y=\"135.764203\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,8.222292,135.764203)\">163</text>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nir</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray></div><input id='attrs-039ebfc8-9ff2-4500-a8f5-195be8c53683' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-039ebfc8-9ff2-4500-a8f5-195be8c53683' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ac0b0d00-98c5-4dad-886c-5f1223c9d261' class='xr-var-data-in' type='checkbox'><label for='data-ac0b0d00-98c5-4dad-886c-5f1223c9d261' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><table>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <td>\n",
|
||
|
|
" <table style=\"border-collapse: collapse;\">\n",
|
||
|
|
" <thead>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <td> </td>\n",
|
||
|
|
" <th> Array </th>\n",
|
||
|
|
" <th> Chunk </th>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" </thead>\n",
|
||
|
|
" <tbody>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Bytes </th>\n",
|
||
|
|
" <td> 53.36 GiB </td>\n",
|
||
|
|
" <td> 16.00 MiB </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Shape </th>\n",
|
||
|
|
" <td> (163, 8874, 9902) </td>\n",
|
||
|
|
" <td> (1, 2048, 2048) </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Dask graph </th>\n",
|
||
|
|
" <td colspan=\"2\"> 4075 chunks in 8 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=\"196\" height=\"173\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"26\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"24\" x2=\"26\" y2=\"41\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"49\" x2=\"26\" y2=\"66\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"74\" x2=\"26\" y2=\"90\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"99\" x2=\"26\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"107\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"107\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"108\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"109\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"111\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"112\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"113\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"116\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"118\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"119\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"120\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"121\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"25\" y1=\"15\" x2=\"25\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 26.444584894958545,16.444584894958545 26.444584894958545,123.98649562006457 10.0,107.54191072510604\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"25\" y1=\"15\" x2=\"145\" y2=\"15\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"26\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"34\" y1=\"0\" x2=\"51\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"59\" y1=\"0\" x2=\"76\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"84\" y1=\"0\" x2=\"100\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"109\" y1=\"0\" x2=\"125\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"130\" y1=\"0\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 130.0,0.0 146.44458489495855,16.444584894958545 26.444584894958545,16.444584894958545\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"41\" x2=\"146\" y2=\"41\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"66\" x2=\"146\" y2=\"66\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"90\" x2=\"146\" y2=\"90\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"115\" x2=\"146\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"123\" x2=\"146\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"51\" y1=\"16\" x2=\"51\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"76\" y1=\"16\" x2=\"76\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"100\" y1=\"16\" x2=\"100\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"125\" y1=\"16\" x2=\"125\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"146\" y1=\"16\" x2=\"146\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"26.444584894958545,16.444584894958545 146.44458489495855,16.444584894958545 146.44458489495855,123.98649562006457 26.444584894958545,123.98649562006457\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Text -->\n",
|
||
|
|
" <text x=\"86.444585\" y=\"143.986496\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >9902</text>\n",
|
||
|
|
" <text x=\"166.444585\" y=\"70.215540\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,166.444585,70.215540)\">8874</text>\n",
|
||
|
|
" <text x=\"8.222292\" y=\"135.764203\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,8.222292,135.764203)\">163</text>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
"</table></div></li><li class='xr-var-item'><div class='xr-var-name'><span>scl</span></div><div class='xr-var-dims'>(time, y, x)</div><div class='xr-var-dtype'>uint8</div><div class='xr-var-preview xr-preview'>dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray></div><input id='attrs-826c7862-0284-4b50-84fe-139f875a33e2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-826c7862-0284-4b50-84fe-139f875a33e2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-05837568-16f3-49d1-ab11-ac9f5f326d37' class='xr-var-data-in' type='checkbox'><label for='data-05837568-16f3-49d1-ab11-ac9f5f326d37' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>1</dd><dt><span>nodata :</span></dt><dd>0</dd><dt><span>flags_definition :</span></dt><dd>{'qa': {'bits': [0, 1, 2, 3, 4, 5, 6, 7], 'values': {'0': 'no data', '1': 'saturated or defective', '2': 'dark area pixels', '3': 'cloud shadows', '4': 'vegetation', '5': 'bare soils', '6': 'water', '7': 'unclassified', '8': 'cloud medium probability', '9': 'cloud high probability', '10': 'thin cirrus', '11': 'snow or ice'}, 'description': 'Sen2Cor Scene Classification'}}</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd><dt><span>grid_mapping :</span></dt><dd>spatial_ref</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> 13.34 GiB </td>\n",
|
||
|
|
" <td> 4.00 MiB </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Shape </th>\n",
|
||
|
|
" <td> (163, 8874, 9902) </td>\n",
|
||
|
|
" <td> (1, 2048, 2048) </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Dask graph </th>\n",
|
||
|
|
" <td colspan=\"2\"> 4075 chunks in 1 graph layer </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Data type </th>\n",
|
||
|
|
" <td colspan=\"2\"> uint8 numpy.ndarray </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" </tbody>\n",
|
||
|
|
" </table>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" <td>\n",
|
||
|
|
" <svg width=\"196\" height=\"173\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"26\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"24\" x2=\"26\" y2=\"41\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"49\" x2=\"26\" y2=\"66\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"74\" x2=\"26\" y2=\"90\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"99\" x2=\"26\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"107\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"107\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"108\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"109\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"111\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"112\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"113\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"116\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"118\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"119\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"120\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"121\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"25\" y1=\"15\" x2=\"25\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 26.444584894958545,16.444584894958545 26.444584894958545,123.98649562006457 10.0,107.54191072510604\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"25\" y1=\"15\" x2=\"145\" y2=\"15\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"26\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"34\" y1=\"0\" x2=\"51\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"59\" y1=\"0\" x2=\"76\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"84\" y1=\"0\" x2=\"100\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"109\" y1=\"0\" x2=\"125\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"130\" y1=\"0\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 130.0,0.0 146.44458489495855,16.444584894958545 26.444584894958545,16.444584894958545\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"41\" x2=\"146\" y2=\"41\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"66\" x2=\"146\" y2=\"66\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"90\" x2=\"146\" y2=\"90\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"115\" x2=\"146\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"123\" x2=\"146\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"51\" y1=\"16\" x2=\"51\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"76\" y1=\"16\" x2=\"76\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"100\" y1=\"16\" x2=\"100\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"125\" y1=\"16\" x2=\"125\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"146\" y1=\"16\" x2=\"146\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"26.444584894958545,16.444584894958545 146.44458489495855,16.444584894958545 146.44458489495855,123.98649562006457 26.444584894958545,123.98649562006457\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Text -->\n",
|
||
|
|
" <text x=\"86.444585\" y=\"143.986496\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >9902</text>\n",
|
||
|
|
" <text x=\"166.444585\" y=\"70.215540\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,166.444585,70.215540)\">8874</text>\n",
|
||
|
|
" <text x=\"8.222292\" y=\"135.764203\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,8.222292,135.764203)\">163</text>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
"</table></div></li></ul></div></li><li class='xr-section-item'><input id='section-b4099c2e-d087-489b-94cb-274df363f6da' class='xr-section-summary-in' type='checkbox' ><label for='section-b4099c2e-d087-489b-94cb-274df363f6da' 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-3c6e9616-abe1-4242-ae9e-46b97221da9e' class='xr-index-data-in' type='checkbox'/><label for='index-3c6e9616-abe1-4242-ae9e-46b97221da9e' 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(['2022-09-02 03:35:23.960000', '2022-09-04 03:25:18.037000',\n",
|
||
|
|
" '2022-09-07 03:35:13.646000', '2022-09-09 03:25:27.617000',\n",
|
||
|
|
" '2022-09-12 03:35:22.247000', '2022-09-14 03:25:18.529000',\n",
|
||
|
|
" '2022-09-17 03:35:13.648000', '2022-09-19 03:25:24.773000',\n",
|
||
|
|
" '2022-09-22 03:35:18.931000', '2022-09-24 03:25:17.431000',\n",
|
||
|
|
" ...\n",
|
||
|
|
" '2023-10-07 03:35:12.349000', '2023-10-09 03:25:17.684000',\n",
|
||
|
|
" '2023-10-12 03:35:13.797000', '2023-10-14 03:25:14.753000',\n",
|
||
|
|
" '2023-10-17 03:35:11.016000', '2023-10-19 03:25:18.719000',\n",
|
||
|
|
" '2023-10-22 03:35:13.512000', '2023-10-24 03:25:16.597000',\n",
|
||
|
|
" '2023-10-27 03:35:11.799000', '2023-10-29 03:25:18.344000'],\n",
|
||
|
|
" dtype='datetime64[ns]', name='time', length=163, freq=None))</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-2e16c927-06cd-4343-994c-0d322e595507' class='xr-index-data-in' type='checkbox'/><label for='index-2e16c927-06cd-4343-994c-0d322e595507' 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([1105735.0, 1105725.0, 1105715.0, 1105705.0, 1105695.0, 1105685.0,\n",
|
||
|
|
" 1105675.0, 1105665.0, 1105655.0, 1105645.0,\n",
|
||
|
|
" ...\n",
|
||
|
|
" 1017095.0, 1017085.0, 1017075.0, 1017065.0, 1017055.0, 1017045.0,\n",
|
||
|
|
" 1017035.0, 1017025.0, 1017015.0, 1017005.0],\n",
|
||
|
|
" dtype='float64', name='y', length=8874))</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-0c29a18b-b89d-499f-8d86-b35cb534ceea' class='xr-index-data-in' type='checkbox'/><label for='index-0c29a18b-b89d-499f-8d86-b35cb534ceea' 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([554795.0, 554805.0, 554815.0, 554825.0, 554835.0, 554845.0, 554855.0,\n",
|
||
|
|
" 554865.0, 554875.0, 554885.0,\n",
|
||
|
|
" ...\n",
|
||
|
|
" 653715.0, 653725.0, 653735.0, 653745.0, 653755.0, 653765.0, 653775.0,\n",
|
||
|
|
" 653785.0, 653795.0, 653805.0],\n",
|
||
|
|
" dtype='float64', name='x', length=9902))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-d95761cb-02ed-4f84-a978-96dcba3bbde1' class='xr-section-summary-in' type='checkbox' checked><label for='section-d95761cb-02ed-4f84-a978-96dcba3bbde1' class='xr-section-summary' >Attributes: <span>(2)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>crs :</span></dt><dd>EPSG:32648</dd><dt><span>grid_mapping :</span></dt><dd>spatial_ref</dd></dl></div></li></ul></div></div>"
|
||
|
|
],
|
||
|
|
"text/plain": [
|
||
|
|
"<xarray.Dataset> Size: 129GB\n",
|
||
|
|
"Dimensions: (time: 163, y: 8874, x: 9902)\n",
|
||
|
|
"Coordinates:\n",
|
||
|
|
" * time (time) datetime64[ns] 1kB 2022-09-02T03:35:23.960000 ... 202...\n",
|
||
|
|
" * y (y) float64 71kB 1.106e+06 1.106e+06 ... 1.017e+06 1.017e+06\n",
|
||
|
|
" * x (x) float64 79kB 5.548e+05 5.548e+05 ... 6.538e+05 6.538e+05\n",
|
||
|
|
" spatial_ref int32 4B 32648\n",
|
||
|
|
"Data variables:\n",
|
||
|
|
" red (time, y, x) float32 57GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
" nir (time, y, x) float32 57GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
" scl (time, y, x) uint8 14GB dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray>\n",
|
||
|
|
"Attributes:\n",
|
||
|
|
" crs: EPSG:32648\n",
|
||
|
|
" grid_mapping: spatial_ref"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"data_sen2 = load_data_sen2(dc, date_range, coordinates)\n",
|
||
|
|
"notebook_utils.heading(notebook_utils.xarray_object_size(data_sen2))\n",
|
||
|
|
"display(data_sen2)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 13,
|
||
|
|
"id": "8cb877b1-a69e-4ee8-b54c-235b5ba83084",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/plain": [
|
||
|
|
"{'0': 'no data',\n",
|
||
|
|
" '1': 'saturated or defective',\n",
|
||
|
|
" '2': 'dark area pixels',\n",
|
||
|
|
" '3': 'cloud shadows',\n",
|
||
|
|
" '4': 'vegetation',\n",
|
||
|
|
" '5': 'bare soils',\n",
|
||
|
|
" '6': 'water',\n",
|
||
|
|
" '7': 'unclassified',\n",
|
||
|
|
" '8': 'cloud medium probability',\n",
|
||
|
|
" '9': 'cloud high probability',\n",
|
||
|
|
" '10': 'thin cirrus',\n",
|
||
|
|
" '11': 'snow or ice'}"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "stdout",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"CPU times: user 966 ms, sys: 20.3 ms, total: 986 ms\n",
|
||
|
|
"Wall time: 983 ms\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"application/vnd.jupyter.widget-view+json": {
|
||
|
|
"model_id": "2a412edfddcf4d779893f43904d5e20b",
|
||
|
|
"version_major": 2,
|
||
|
|
"version_minor": 0
|
||
|
|
},
|
||
|
|
"text/plain": [
|
||
|
|
"VBox()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "stderr",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"2025-01-01 14:18:38,423 - tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOMainLoop object at 0x7fea76fa76e0>>, <Task finished name='Task-1001' coro=<MultiProgressBar.listen() done, defined at /env/lib/python3.12/site-packages/distributed/diagnostics/progressbar.py:281> exception=OSError('Timed out trying to connect to gateway://traefik-dask-gateway.easihub:80/easihub.8f4044c87f8b4423883c64edb421d283 after 30 s')>)\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/utils.py\", line 1952, in wait_for\n",
|
||
|
|
" return await fut\n",
|
||
|
|
" ^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/dask_gateway/comm.py\", line 45, in connect\n",
|
||
|
|
" plain_stream = await self.client.connect(\n",
|
||
|
|
" ^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/tornado/tcpclient.py\", line 279, in connect\n",
|
||
|
|
" af, addr, stream = await connector.start(connect_timeout=timeout)\n",
|
||
|
|
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
|
||
|
|
"asyncio.exceptions.CancelledError\n",
|
||
|
|
"\n",
|
||
|
|
"The above exception was the direct cause of the following exception:\n",
|
||
|
|
"\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/comm/core.py\", line 342, in connect\n",
|
||
|
|
" comm = await wait_for(\n",
|
||
|
|
" ^^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/utils.py\", line 1951, in wait_for\n",
|
||
|
|
" async with asyncio.timeout(timeout):\n",
|
||
|
|
" ^^^^^^^^^^^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/opt/uv/python-installs/cpython-3.12.7-linux-x86_64-gnu/lib/python3.12/asyncio/timeouts.py\", line 115, in __aexit__\n",
|
||
|
|
" raise TimeoutError from exc_val\n",
|
||
|
|
"TimeoutError\n",
|
||
|
|
"\n",
|
||
|
|
"The above exception was the direct cause of the following exception:\n",
|
||
|
|
"\n",
|
||
|
|
"Traceback (most recent call last):\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/tornado/ioloop.py\", line 750, in _run_callback\n",
|
||
|
|
" ret = callback()\n",
|
||
|
|
" ^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/tornado/ioloop.py\", line 774, in _discard_future_result\n",
|
||
|
|
" future.result()\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/diagnostics/progressbar.py\", line 306, in listen\n",
|
||
|
|
" self.comm = await connect(\n",
|
||
|
|
" ^^^^^^^^^^^^^^\n",
|
||
|
|
" File \"/env/lib/python3.12/site-packages/distributed/comm/core.py\", line 368, in connect\n",
|
||
|
|
" raise OSError(\n",
|
||
|
|
"OSError: Timed out trying to connect to gateway://traefik-dask-gateway.easihub:80/easihub.8f4044c87f8b4423883c64edb421d283 after 30 s\n"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"%%time\n",
|
||
|
|
"# Tiến hành loại bỏ các vị trí bị mây ảnh hưởng\n",
|
||
|
|
"result = mask_cloud(data_sen2)\n",
|
||
|
|
"progress(result)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 14,
|
||
|
|
"id": "325668db-040c-44d1-8cac-749f1850067d",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/html": [
|
||
|
|
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
|
||
|
|
"<defs>\n",
|
||
|
|
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
|
||
|
|
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
|
||
|
|
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
|
||
|
|
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
|
||
|
|
"</symbol>\n",
|
||
|
|
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
|
||
|
|
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
|
||
|
|
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
|
||
|
|
"</symbol>\n",
|
||
|
|
"</defs>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
|
||
|
|
" *\n",
|
||
|
|
" */\n",
|
||
|
|
"\n",
|
||
|
|
":root {\n",
|
||
|
|
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
|
||
|
|
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
|
||
|
|
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
|
||
|
|
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
|
||
|
|
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
|
||
|
|
" --xr-background-color: var(--jp-layout-color0, white);\n",
|
||
|
|
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
|
||
|
|
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
"html[theme=\"dark\"],\n",
|
||
|
|
"html[data-theme=\"dark\"],\n",
|
||
|
|
"body[data-theme=\"dark\"],\n",
|
||
|
|
"body.vscode-dark {\n",
|
||
|
|
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
|
||
|
|
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
|
||
|
|
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
|
||
|
|
" --xr-border-color: #1f1f1f;\n",
|
||
|
|
" --xr-disabled-color: #515151;\n",
|
||
|
|
" --xr-background-color: #111111;\n",
|
||
|
|
" --xr-background-color-row-even: #111111;\n",
|
||
|
|
" --xr-background-color-row-odd: #313131;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-wrap {\n",
|
||
|
|
" display: block !important;\n",
|
||
|
|
" min-width: 300px;\n",
|
||
|
|
" max-width: 700px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-text-repr-fallback {\n",
|
||
|
|
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-header {\n",
|
||
|
|
" padding-top: 6px;\n",
|
||
|
|
" padding-bottom: 6px;\n",
|
||
|
|
" margin-bottom: 4px;\n",
|
||
|
|
" border-bottom: solid 1px var(--xr-border-color);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-header > div,\n",
|
||
|
|
".xr-header > ul {\n",
|
||
|
|
" display: inline;\n",
|
||
|
|
" margin-top: 0;\n",
|
||
|
|
" margin-bottom: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-obj-type,\n",
|
||
|
|
".xr-array-name {\n",
|
||
|
|
" margin-left: 2px;\n",
|
||
|
|
" margin-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-obj-type {\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-sections {\n",
|
||
|
|
" padding-left: 0 !important;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 150px auto auto 1fr 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",
|
||
|
|
"}\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);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-item input:enabled + label:hover {\n",
|
||
|
|
" color: var(--xr-font-color0);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
" font-weight: 500;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary > span {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" padding-left: 0.5em;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:disabled + label {\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in + label:before {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" content: \"►\";\n",
|
||
|
|
" font-size: 11px;\n",
|
||
|
|
" width: 15px;\n",
|
||
|
|
" text-align: center;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:disabled + label:before {\n",
|
||
|
|
" color: var(--xr-disabled-color);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked + label:before {\n",
|
||
|
|
" content: \"▼\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked + label > span {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary,\n",
|
||
|
|
".xr-section-inline-details {\n",
|
||
|
|
" padding-top: 4px;\n",
|
||
|
|
" padding-bottom: 4px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-inline-details {\n",
|
||
|
|
" grid-column: 2 / -1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-details {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
" margin-bottom: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-section-summary-in:checked ~ .xr-section-details {\n",
|
||
|
|
" display: contents;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-wrap {\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 20px auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-wrap > label {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
" vertical-align: top;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-preview {\n",
|
||
|
|
" color: var(--xr-font-color3);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-preview,\n",
|
||
|
|
".xr-array-data {\n",
|
||
|
|
" padding: 0 5px !important;\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-data,\n",
|
||
|
|
".xr-array-in:checked ~ .xr-array-preview {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-array-in:checked ~ .xr-array-data,\n",
|
||
|
|
".xr-array-preview {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list {\n",
|
||
|
|
" display: inline-block !important;\n",
|
||
|
|
" list-style: none;\n",
|
||
|
|
" padding: 0 !important;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list li {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list:before {\n",
|
||
|
|
" content: \"(\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list:after {\n",
|
||
|
|
" content: \")\";\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-dim-list li:not(:last-child):after {\n",
|
||
|
|
" content: \",\";\n",
|
||
|
|
" padding-right: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-has-index {\n",
|
||
|
|
" font-weight: bold;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-list,\n",
|
||
|
|
".xr-var-item {\n",
|
||
|
|
" display: contents;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-item > div,\n",
|
||
|
|
".xr-var-item label,\n",
|
||
|
|
".xr-var-item > .xr-var-name span {\n",
|
||
|
|
" background-color: var(--xr-background-color-row-even);\n",
|
||
|
|
" margin-bottom: 0;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-item > .xr-var-name:hover span {\n",
|
||
|
|
" padding-right: 5px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > div,\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > label,\n",
|
||
|
|
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
|
||
|
|
" background-color: var(--xr-background-color-row-odd);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name {\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-dims {\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-dtype {\n",
|
||
|
|
" grid-column: 3;\n",
|
||
|
|
" text-align: right;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-preview {\n",
|
||
|
|
" grid-column: 4;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-index-preview {\n",
|
||
|
|
" grid-column: 2 / 5;\n",
|
||
|
|
" color: var(--xr-font-color2);\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name,\n",
|
||
|
|
".xr-var-dims,\n",
|
||
|
|
".xr-var-dtype,\n",
|
||
|
|
".xr-preview,\n",
|
||
|
|
".xr-attrs dt {\n",
|
||
|
|
" white-space: nowrap;\n",
|
||
|
|
" overflow: hidden;\n",
|
||
|
|
" text-overflow: ellipsis;\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name:hover,\n",
|
||
|
|
".xr-var-dims:hover,\n",
|
||
|
|
".xr-var-dtype:hover,\n",
|
||
|
|
".xr-attrs dt:hover {\n",
|
||
|
|
" overflow: visible;\n",
|
||
|
|
" width: auto;\n",
|
||
|
|
" z-index: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-attrs,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-data {\n",
|
||
|
|
" display: none;\n",
|
||
|
|
" background-color: var(--xr-background-color) !important;\n",
|
||
|
|
" padding-bottom: 5px !important;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
|
||
|
|
".xr-var-data-in:checked ~ .xr-var-data,\n",
|
||
|
|
".xr-index-data-in:checked ~ .xr-index-data {\n",
|
||
|
|
" display: block;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-data > table {\n",
|
||
|
|
" float: right;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-var-name span,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-name div,\n",
|
||
|
|
".xr-index-data,\n",
|
||
|
|
".xr-attrs {\n",
|
||
|
|
" padding-left: 25px !important;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs,\n",
|
||
|
|
".xr-var-attrs,\n",
|
||
|
|
".xr-var-data,\n",
|
||
|
|
".xr-index-data {\n",
|
||
|
|
" grid-column: 1 / -1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
"dl.xr-attrs {\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
" display: grid;\n",
|
||
|
|
" grid-template-columns: 125px auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt,\n",
|
||
|
|
".xr-attrs dd {\n",
|
||
|
|
" padding: 0;\n",
|
||
|
|
" margin: 0;\n",
|
||
|
|
" float: left;\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
" width: auto;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt {\n",
|
||
|
|
" font-weight: normal;\n",
|
||
|
|
" grid-column: 1;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dt:hover span {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" background: var(--xr-background-color);\n",
|
||
|
|
" padding-right: 10px;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-attrs dd {\n",
|
||
|
|
" grid-column: 2;\n",
|
||
|
|
" white-space: pre-wrap;\n",
|
||
|
|
" word-break: break-all;\n",
|
||
|
|
"}\n",
|
||
|
|
"\n",
|
||
|
|
".xr-icon-database,\n",
|
||
|
|
".xr-icon-file-text2,\n",
|
||
|
|
".xr-no-icon {\n",
|
||
|
|
" display: inline-block;\n",
|
||
|
|
" vertical-align: middle;\n",
|
||
|
|
" width: 1em;\n",
|
||
|
|
" height: 1.5em !important;\n",
|
||
|
|
" stroke-width: 0;\n",
|
||
|
|
" stroke: currentColor;\n",
|
||
|
|
" fill: currentColor;\n",
|
||
|
|
"}\n",
|
||
|
|
"</style><pre class='xr-text-repr-fallback'><xarray.DataArray 'NDVI' (time: 163, y: 8874, x: 9902)> Size: 57GB\n",
|
||
|
|
"dask.array<truediv, shape=(163, 8874, 9902), dtype=float32, chunksize=(1, 2048, 2048), chunktype=numpy.ndarray>\n",
|
||
|
|
"Coordinates:\n",
|
||
|
|
" * time (time) datetime64[ns] 1kB 2022-09-02T03:35:23.960000 ... 202...\n",
|
||
|
|
" * y (y) float64 71kB 1.106e+06 1.106e+06 ... 1.017e+06 1.017e+06\n",
|
||
|
|
" * x (x) float64 79kB 5.548e+05 5.548e+05 ... 6.538e+05 6.538e+05\n",
|
||
|
|
" spatial_ref int32 4B 32648</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>xarray.DataArray</div><div class='xr-array-name'>'NDVI'</div><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 163</li><li><span class='xr-has-index'>y</span>: 8874</li><li><span class='xr-has-index'>x</span>: 9902</li></ul></div><ul class='xr-sections'><li class='xr-section-item'><div class='xr-array-wrap'><input id='section-1812f4e3-449c-4e4f-9037-d330a63ee9cd' class='xr-array-in' type='checkbox' checked><label for='section-1812f4e3-449c-4e4f-9037-d330a63ee9cd' title='Show/hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-array-preview xr-preview'><span>dask.array<chunksize=(1, 2048, 2048), meta=np.ndarray></span></div><div class='xr-array-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> 53.36 GiB </td>\n",
|
||
|
|
" <td> 16.00 MiB </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" \n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Shape </th>\n",
|
||
|
|
" <td> (163, 8874, 9902) </td>\n",
|
||
|
|
" <td> (1, 2048, 2048) </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th> Dask graph </th>\n",
|
||
|
|
" <td colspan=\"2\"> 4075 chunks in 7 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=\"196\" height=\"173\" style=\"stroke:rgb(0,0,0);stroke-width:1\" >\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"26\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"24\" x2=\"26\" y2=\"41\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"49\" x2=\"26\" y2=\"66\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"74\" x2=\"26\" y2=\"90\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"99\" x2=\"26\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"107\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"107\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"10\" y2=\"108\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"11\" y2=\"109\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"13\" y2=\"110\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"14\" y2=\"111\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"15\" y2=\"112\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"113\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"114\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"17\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"18\" y2=\"116\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"19\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"20\" y2=\"117\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"21\" y2=\"118\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"119\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"22\" y2=\"120\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"23\" y2=\"121\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"24\" y2=\"122\" />\n",
|
||
|
|
" <line x1=\"25\" y1=\"15\" x2=\"25\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 26.444584894958545,16.444584894958545 26.444584894958545,123.98649562006457 10.0,107.54191072510604\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"130\" y2=\"0\" />\n",
|
||
|
|
" <line x1=\"11\" y1=\"1\" x2=\"131\" y2=\"1\" />\n",
|
||
|
|
" <line x1=\"12\" y1=\"2\" x2=\"132\" y2=\"2\" />\n",
|
||
|
|
" <line x1=\"13\" y1=\"3\" x2=\"133\" y2=\"3\" />\n",
|
||
|
|
" <line x1=\"14\" y1=\"4\" x2=\"134\" y2=\"4\" />\n",
|
||
|
|
" <line x1=\"15\" y1=\"5\" x2=\"135\" y2=\"5\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"16\" y1=\"6\" x2=\"136\" y2=\"6\" />\n",
|
||
|
|
" <line x1=\"17\" y1=\"7\" x2=\"137\" y2=\"7\" />\n",
|
||
|
|
" <line x1=\"18\" y1=\"8\" x2=\"138\" y2=\"8\" />\n",
|
||
|
|
" <line x1=\"19\" y1=\"9\" x2=\"139\" y2=\"9\" />\n",
|
||
|
|
" <line x1=\"20\" y1=\"10\" x2=\"140\" y2=\"10\" />\n",
|
||
|
|
" <line x1=\"21\" y1=\"11\" x2=\"141\" y2=\"11\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"22\" y1=\"12\" x2=\"142\" y2=\"12\" />\n",
|
||
|
|
" <line x1=\"23\" y1=\"13\" x2=\"143\" y2=\"13\" />\n",
|
||
|
|
" <line x1=\"24\" y1=\"14\" x2=\"144\" y2=\"14\" />\n",
|
||
|
|
" <line x1=\"25\" y1=\"15\" x2=\"145\" y2=\"15\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"10\" y1=\"0\" x2=\"26\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"34\" y1=\"0\" x2=\"51\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"59\" y1=\"0\" x2=\"76\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"84\" y1=\"0\" x2=\"100\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"109\" y1=\"0\" x2=\"125\" y2=\"16\" />\n",
|
||
|
|
" <line x1=\"130\" y1=\"0\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"10.0,0.0 130.0,0.0 146.44458489495855,16.444584894958545 26.444584894958545,16.444584894958545\" style=\"fill:#8B4903A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Horizontal lines -->\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"146\" y2=\"16\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"41\" x2=\"146\" y2=\"41\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"66\" x2=\"146\" y2=\"66\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"90\" x2=\"146\" y2=\"90\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"115\" x2=\"146\" y2=\"115\" />\n",
|
||
|
|
" <line x1=\"26\" y1=\"123\" x2=\"146\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Vertical lines -->\n",
|
||
|
|
" <line x1=\"26\" y1=\"16\" x2=\"26\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
" <line x1=\"51\" y1=\"16\" x2=\"51\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"76\" y1=\"16\" x2=\"76\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"100\" y1=\"16\" x2=\"100\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"125\" y1=\"16\" x2=\"125\" y2=\"123\" />\n",
|
||
|
|
" <line x1=\"146\" y1=\"16\" x2=\"146\" y2=\"123\" style=\"stroke-width:2\" />\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Colored Rectangle -->\n",
|
||
|
|
" <polygon points=\"26.444584894958545,16.444584894958545 146.44458489495855,16.444584894958545 146.44458489495855,123.98649562006457 26.444584894958545,123.98649562006457\" style=\"fill:#ECB172A0;stroke-width:0\"/>\n",
|
||
|
|
"\n",
|
||
|
|
" <!-- Text -->\n",
|
||
|
|
" <text x=\"86.444585\" y=\"143.986496\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" >9902</text>\n",
|
||
|
|
" <text x=\"166.444585\" y=\"70.215540\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(-90,166.444585,70.215540)\">8874</text>\n",
|
||
|
|
" <text x=\"8.222292\" y=\"135.764203\" font-size=\"1.0rem\" font-weight=\"100\" text-anchor=\"middle\" transform=\"rotate(45,8.222292,135.764203)\">163</text>\n",
|
||
|
|
"</svg>\n",
|
||
|
|
" </td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
"</table></div></div></li><li class='xr-section-item'><input id='section-3e1e2d53-4b57-4581-9818-be0eadf54a7b' class='xr-section-summary-in' type='checkbox' checked><label for='section-3e1e2d53-4b57-4581-9818-be0eadf54a7b' 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'>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'>2022-09-02T03:35:23.960000 ... 2...</div><input id='attrs-0a909c29-cffa-4eda-8aa5-c5303042536d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0a909c29-cffa-4eda-8aa5-c5303042536d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-80747dc3-26d8-4d3c-ac96-73afa2311a03' class='xr-var-data-in' type='checkbox'><label for='data-80747dc3-26d8-4d3c-ac96-73afa2311a03' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>seconds since 1970-01-01 00:00:00</dd></dl></div><div class='xr-var-data'><pre>array(['2022-09-02T03:35:23.960000000', '2022-09-04T03:25:18.037000000',\n",
|
||
|
|
" '2022-09-07T03:35:13.646000000', '2022-09-09T03:25:27.617000000',\n",
|
||
|
|
" '2022-09-12T03:35:22.247000000', '2022-09-14T03:25:18.529000000',\n",
|
||
|
|
" '2022-09-17T03:35:13.648000000', '2022-09-19T03:25:24.773000000',\n",
|
||
|
|
" '2022-09-22T03:35:18.931000000', '2022-09-24T03:25:17.431000000',\n",
|
||
|
|
" '2022-09-27T03:35:12.140000000', '2022-09-29T03:25:23.829000000',\n",
|
||
|
|
" '2022-10-02T03:35:19.048000000', '2022-10-07T03:35:09.133000000',\n",
|
||
|
|
" '2022-10-09T03:25:22.746000000', '2022-10-12T03:35:17.151000000',\n",
|
||
|
|
" '2022-10-14T03:25:15.533000000', '2022-10-17T03:35:11.148000000',\n",
|
||
|
|
" '2022-10-19T03:25:18.808000000', '2022-10-22T03:35:13.746000000',\n",
|
||
|
|
" '2022-10-24T03:25:15.878000000', '2022-10-27T03:35:10.923000000',\n",
|
||
|
|
" '2022-10-29T03:25:20.127000000', '2022-11-01T03:35:15.818000000',\n",
|
||
|
|
" '2022-11-03T03:25:14.204000000', '2022-11-06T03:35:10.096000000',\n",
|
||
|
|
" '2022-11-11T03:35:15.334000000', '2022-11-13T03:25:16.056000000',\n",
|
||
|
|
" '2022-11-16T03:35:11.542000000', '2022-11-18T03:25:18.155000000',\n",
|
||
|
|
" '2022-11-21T03:35:12.396000000', '2022-11-23T03:25:16.067000000',\n",
|
||
|
|
" '2022-11-26T03:35:11.063000000', '2022-11-28T03:25:16.297000000',\n",
|
||
|
|
" '2022-12-01T03:35:12.009000000', '2022-12-03T03:25:14.366000000',\n",
|
||
|
|
" '2022-12-06T03:35:10.293000000', '2022-12-08T03:25:17.072000000',\n",
|
||
|
|
" '2022-12-11T03:35:12.184000000', '2022-12-16T03:35:10.130000000',\n",
|
||
|
|
" '2022-12-18T03:25:15.584000000', '2022-12-21T03:35:09.988000000',\n",
|
||
|
|
" '2022-12-23T03:25:15.763000000', '2022-12-26T03:35:11.128000000',\n",
|
||
|
|
" '2022-12-28T03:25:15.151000000', '2022-12-31T03:35:10.753000000',\n",
|
||
|
|
" '2023-01-02T03:25:15.152000000', '2023-01-05T03:35:09.844000000',\n",
|
||
|
|
" '2023-01-07T03:25:15.343000000', '2023-01-10T03:35:10.149000000',\n",
|
||
|
|
" '2023-01-12T03:25:12.066000000', '2023-01-15T03:35:08.140000000',\n",
|
||
|
|
" '2023-01-17T03:25:12.454000000', '2023-01-20T03:35:06.593000000',\n",
|
||
|
|
" '2023-01-22T03:25:14.446000000', '2023-01-25T03:35:09.824000000',\n",
|
||
|
|
" '2023-01-27T03:25:13.987000000', '2023-01-30T03:35:09.963000000',\n",
|
||
|
|
" '2023-02-01T03:25:13.595000000', '2023-02-04T03:35:09.008000000',\n",
|
||
|
|
" '2023-02-06T03:25:15.471000000', '2023-02-09T03:35:10.646000000',\n",
|
||
|
|
" '2023-02-11T03:25:15.100000000', '2023-02-14T03:35:10.240000000',\n",
|
||
|
|
" '2023-02-16T03:25:28.099000000', '2023-02-24T03:35:12.118000000',\n",
|
||
|
|
" '2023-02-26T03:25:14.146000000', '2023-03-01T03:35:09.182000000',\n",
|
||
|
|
" '2023-03-03T03:25:17.841000000', '2023-03-06T03:35:14.717000000',\n",
|
||
|
|
" '2023-03-08T03:25:12.032000000', '2023-03-11T03:35:07.230000000',\n",
|
||
|
|
" '2023-03-13T03:25:20.837000000', '2023-03-16T03:35:15.940000000',\n",
|
||
|
|
" '2023-03-18T03:25:14.467000000', '2023-03-21T03:35:10.279000000',\n",
|
||
|
|
" '2023-03-23T03:25:18.795000000', '2023-03-26T03:35:14.570000000',\n",
|
||
|
|
" '2023-03-28T03:25:14.536000000', '2023-03-31T03:35:10.140000000',\n",
|
||
|
|
" '2023-04-02T03:25:19.945000000', '2023-04-05T03:35:14.925000000',\n",
|
||
|
|
" '2023-04-07T03:25:16.518000000', '2023-04-10T03:35:12.000000000',\n",
|
||
|
|
" '2023-04-15T03:35:12.743000000', '2023-04-20T03:35:10.328000000',\n",
|
||
|
|
" '2023-04-22T03:25:18.572000000', '2023-04-25T03:35:13.748000000',\n",
|
||
|
|
" '2023-04-27T03:25:16.567000000', '2023-04-30T03:35:12.151000000',\n",
|
||
|
|
" '2023-05-02T03:25:18.866000000', '2023-05-05T03:35:14.433000000',\n",
|
||
|
|
" '2023-05-07T03:25:16.583000000', '2023-05-10T03:35:11.284000000',\n",
|
||
|
|
" '2023-05-12T03:25:19.200000000', '2023-05-15T03:35:15.683000000',\n",
|
||
|
|
" '2023-05-17T03:25:17.911000000', '2023-05-20T03:35:14.193000000',\n",
|
||
|
|
" '2023-05-22T03:25:36.378000000', '2023-05-25T03:35:16.657000000',\n",
|
||
|
|
" '2023-05-27T03:25:20.078000000', '2023-05-30T03:35:15.642000000',\n",
|
||
|
|
" '2023-06-01T03:25:20.268000000', '2023-06-04T03:35:16.047000000',\n",
|
||
|
|
" '2023-06-06T03:25:20.180000000', '2023-06-09T03:35:15.534000000',\n",
|
||
|
|
" '2023-06-11T03:25:21.573000000', '2023-06-14T03:35:16.859000000',\n",
|
||
|
|
" '2023-06-16T03:25:20.769000000', '2023-06-19T03:35:15.908000000',\n",
|
||
|
|
" '2023-06-21T03:25:20.640000000', '2023-06-24T03:35:15.972000000',\n",
|
||
|
|
" '2023-06-26T03:25:19.927000000', '2023-06-29T03:35:15.752000000',\n",
|
||
|
|
" '2023-07-01T03:25:21.763000000', '2023-07-04T03:35:17.227000000',\n",
|
||
|
|
" '2023-07-06T03:25:21.702000000', '2023-07-09T03:35:17.102000000',\n",
|
||
|
|
" '2023-07-11T03:25:21.515000000', '2023-07-14T03:35:16.582000000',\n",
|
||
|
|
" '2023-07-16T03:25:21.326000000', '2023-07-19T03:35:16.050000000',\n",
|
||
|
|
" '2023-07-21T03:25:22.444000000', '2023-07-24T03:35:17.845000000',\n",
|
||
|
|
" '2023-07-26T03:25:21.503000000', '2023-07-29T03:35:17.083000000',\n",
|
||
|
|
" '2023-07-31T03:25:36.753000000', '2023-08-03T03:35:16.494000000',\n",
|
||
|
|
" '2023-08-05T03:25:21.570000000', '2023-08-08T03:35:16.313000000',\n",
|
||
|
|
" '2023-08-10T03:25:22.024000000', '2023-08-13T03:35:17.448000000',\n",
|
||
|
|
" '2023-08-15T03:25:22.075000000', '2023-08-18T03:35:17.812000000',\n",
|
||
|
|
" '2023-08-20T03:25:21.568000000', '2023-08-23T03:35:16.224000000',\n",
|
||
|
|
" '2023-08-25T03:25:22.592000000', '2023-08-28T03:35:17.571000000',\n",
|
||
|
|
" '2023-08-30T03:25:21.212000000', '2023-09-02T03:35:16.627000000',\n",
|
||
|
|
" '2023-09-04T03:25:21.856000000', '2023-09-07T03:35:17.134000000',\n",
|
||
|
|
" '2023-09-09T03:25:20.648000000', '2023-09-12T03:35:15.326000000',\n",
|
||
|
|
" '2023-09-14T03:25:35.755000000', '2023-09-17T03:35:15.269000000',\n",
|
||
|
|
" '2023-09-19T03:25:24.089000000', '2023-09-22T03:35:15.439000000',\n",
|
||
|
|
" '2023-09-24T03:25:18.524000000', '2023-09-27T03:35:14.112000000',\n",
|
||
|
|
" '2023-09-29T03:25:19.046000000', '2023-10-02T03:35:13.287000000',\n",
|
||
|
|
" '2023-10-04T03:25:18.057000000', '2023-10-07T03:35:12.349000000',\n",
|
||
|
|
" '2023-10-09T03:25:17.684000000', '2023-10-12T03:35:13.797000000',\n",
|
||
|
|
" '2023-10-14T03:25:14.753000000', '2023-10-17T03:35:11.016000000',\n",
|
||
|
|
" '2023-10-19T03:25:18.719000000', '2023-10-22T03:35:13.512000000',\n",
|
||
|
|
" '2023-10-24T03:25:16.597000000', '2023-10-27T03:35:11.799000000',\n",
|
||
|
|
" '2023-10-29T03:25:18.344000000'], dtype='datetime64[ns]')</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.106e+06 1.106e+06 ... 1.017e+06</div><input id='attrs-4d73bf2f-7c95-4e6f-ba62-5bfb2fe17037' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4d73bf2f-7c95-4e6f-ba62-5bfb2fe17037' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ebff19cc-ac6c-4dad-a68b-1ab1b3efa0a2' class='xr-var-data-in' type='checkbox'><label for='data-ebff19cc-ac6c-4dad-a68b-1ab1b3efa0a2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>metre</dd><dt><span>resolution :</span></dt><dd>-10.0</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd></dl></div><div class='xr-var-data'><pre>array([1105735., 1105725., 1105715., ..., 1017025., 1017015., 1017005.])</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'>5.548e+05 5.548e+05 ... 6.538e+05</div><input id='attrs-6bd75def-6e05-44b0-b834-a5f1ebd9b784' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6bd75def-6e05-44b0-b834-a5f1ebd9b784' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-141321b6-426d-4743-aa34-8fa3d5042704' class='xr-var-data-in' type='checkbox'><label for='data-141321b6-426d-4743-aa34-8fa3d5042704' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>metre</dd><dt><span>resolution :</span></dt><dd>10.0</dd><dt><span>crs :</span></dt><dd>EPSG:32648</dd></dl></div><div class='xr-var-data'><pre>array([554795., 554805., 554815., ..., 653785., 653795., 653805.])</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'>int32</div><div class='xr-var-preview xr-preview'>32648</div><input id='attrs-61e282fb-28ee-49a7-9133-a8bb71e79dcc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-61e282fb-28ee-49a7-9133-a8bb71e79dcc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-40a3b15f-c7e3-4f72-98ba-63b1358a2efb' class='xr-var-data-in' type='checkbox'><label for='data-40a3b15f-c7e3-4f72-98ba-63b1358a2efb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>spatial_ref :</span></dt><dd>PROJCS["WGS 84 / UTM zone 48N",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",105],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","32648"]]</dd><dt><span>grid_mapping_name :</span></dt><dd>transverse_mercator</dd></dl></div><div class='xr
|
||
|
|
" '2022-09-07 03:35:13.646000', '2022-09-09 03:25:27.617000',\n",
|
||
|
|
" '2022-09-12 03:35:22.247000', '2022-09-14 03:25:18.529000',\n",
|
||
|
|
" '2022-09-17 03:35:13.648000', '2022-09-19 03:25:24.773000',\n",
|
||
|
|
" '2022-09-22 03:35:18.931000', '2022-09-24 03:25:17.431000',\n",
|
||
|
|
" ...\n",
|
||
|
|
" '2023-10-07 03:35:12.349000', '2023-10-09 03:25:17.684000',\n",
|
||
|
|
" '2023-10-12 03:35:13.797000', '2023-10-14 03:25:14.753000',\n",
|
||
|
|
" '2023-10-17 03:35:11.016000', '2023-10-19 03:25:18.719000',\n",
|
||
|
|
" '2023-10-22 03:35:13.512000', '2023-10-24 03:25:16.597000',\n",
|
||
|
|
" '2023-10-27 03:35:11.799000', '2023-10-29 03:25:18.344000'],\n",
|
||
|
|
" dtype='datetime64[ns]', name='time', length=163, freq=None))</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-3bb036a3-7094-4b7e-8171-c2fc1832e272' class='xr-index-data-in' type='checkbox'/><label for='index-3bb036a3-7094-4b7e-8171-c2fc1832e272' 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([1105735.0, 1105725.0, 1105715.0, 1105705.0, 1105695.0, 1105685.0,\n",
|
||
|
|
" 1105675.0, 1105665.0, 1105655.0, 1105645.0,\n",
|
||
|
|
" ...\n",
|
||
|
|
" 1017095.0, 1017085.0, 1017075.0, 1017065.0, 1017055.0, 1017045.0,\n",
|
||
|
|
" 1017035.0, 1017025.0, 1017015.0, 1017005.0],\n",
|
||
|
|
" dtype='float64', name='y', length=8874))</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-b246b58c-8427-49f3-b693-72286cce4cab' class='xr-index-data-in' type='checkbox'/><label for='index-b246b58c-8427-49f3-b693-72286cce4cab' 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([554795.0, 554805.0, 554815.0, 554825.0, 554835.0, 554845.0, 554855.0,\n",
|
||
|
|
" 554865.0, 554875.0, 554885.0,\n",
|
||
|
|
" ...\n",
|
||
|
|
" 653715.0, 653725.0, 653735.0, 653745.0, 653755.0, 653765.0, 653775.0,\n",
|
||
|
|
" 653785.0, 653795.0, 653805.0],\n",
|
||
|
|
" dtype='float64', name='x', length=9902))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-c0ae5125-7b12-4c43-b600-8f0a5419b26e' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-c0ae5125-7b12-4c43-b600-8f0a5419b26e' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div>"
|
||
|
|
],
|
||
|
|
"text/plain": [
|
||
|
|
"<xarray.DataArray 'NDVI' (time: 163, y: 8874, x: 9902)> Size: 57GB\n",
|
||
|
|
"dask.array<truediv, shape=(163, 8874, 9902), dtype=float32, chunksize=(1, 2048, 2048), chunktype=numpy.ndarray>\n",
|
||
|
|
"Coordinates:\n",
|
||
|
|
" * time (time) datetime64[ns] 1kB 2022-09-02T03:35:23.960000 ... 202...\n",
|
||
|
|
" * y (y) float64 71kB 1.106e+06 1.106e+06 ... 1.017e+06 1.017e+06\n",
|
||
|
|
" * x (x) float64 79kB 5.548e+05 5.548e+05 ... 6.538e+05 6.538e+05\n",
|
||
|
|
" spatial_ref int32 4B 32648"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"# calculate NDVI\n",
|
||
|
|
"dsNDVI = calculate_indices(result, index='NDVI', satellite_mission='s2')\n",
|
||
|
|
"ndvi = dsNDVI[\"NDVI\"]\n",
|
||
|
|
"display(ndvi)\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 15,
|
||
|
|
"id": "f94969d8-d04f-4495-af63-6323d5c730ef",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"name": "stderr",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"/env/lib/python3.12/site-packages/xarray/groupers.py:487: FutureWarning: 'M' is deprecated and will be removed in a future version, please use 'ME' instead.\n",
|
||
|
|
" self.index_grouper = pd.Grouper(\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "stdout",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"CPU times: user 514 ms, sys: 844 μs, total: 515 ms\n",
|
||
|
|
"Wall time: 511 ms\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"application/vnd.jupyter.widget-view+json": {
|
||
|
|
"model_id": "02012f0b386c4940aa24b41a05c9ddce",
|
||
|
|
"version_major": 2,
|
||
|
|
"version_minor": 0
|
||
|
|
},
|
||
|
|
"text/plain": [
|
||
|
|
"VBox()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"%%time\n",
|
||
|
|
"# calculate average NDVI\n",
|
||
|
|
"average_ndvi = calculate_max(ndvi,time_pattern=\"1M\")\n",
|
||
|
|
"progress(average_ndvi)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 16,
|
||
|
|
"id": "06bd6bda-aa8b-44a0-9c8a-d17ccf5b86c3",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"average_ndvi = average_ndvi.compute()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 17,
|
||
|
|
"id": "af4fe58b-358a-42f8-b9a4-f3547d2c230b",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/plain": [
|
||
|
|
"<matplotlib.image.AxesImage at 0x7fe889695400>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"execution_count": 17,
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "execute_result"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"image/png": "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
|
||
|
|
"text/plain": [
|
||
|
|
"<Figure size 640x480 with 1 Axes>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"plt.imshow(average_ndvi.isel(time=0))"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "markdown",
|
||
|
|
"id": "edab3c39-1d85-4ef5-831c-f64070c31355",
|
||
|
|
"metadata": {},
|
||
|
|
"source": [
|
||
|
|
"#####################################################################################"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 1,
|
||
|
|
"id": "c83d666e-139c-4215-909e-32c535532b19",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"ename": "NameError",
|
||
|
|
"evalue": "name 'joblib' is not defined",
|
||
|
|
"output_type": "error",
|
||
|
|
"traceback": [
|
||
|
|
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
|
||
|
|
"\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
|
||
|
|
"Cell \u001b[0;32mIn[1], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m fill_nan_model \u001b[38;5;241m=\u001b[39m \u001b[43mjoblib\u001b[49m\u001b[38;5;241m.\u001b[39mload(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moutput/regressors/max/gb_cloud.pkl\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
|
||
|
|
"\u001b[0;31mNameError\u001b[0m: name 'joblib' is not defined"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"fill_nan_model = joblib.load('output/regressors/max/gb_cloud.pkl')"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "044303a9-e620-46e7-953f-e7f9b3ef91c6",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"mask = ~np.isnan(average_ndvi)\n",
|
||
|
|
"data = np.stack([average_vh.values[mask], average_vv.values[mask]], axis=1)\n",
|
||
|
|
"label = average_ndvi.values[mask]"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "c38dda57-604f-4705-a282-eaec22f3ea12",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"num_samples = 300\n",
|
||
|
|
"\n",
|
||
|
|
"# Generate random indices\n",
|
||
|
|
"random_indices = np.random.choice(data.shape[0], size=num_samples, replace=False)\n",
|
||
|
|
"\n",
|
||
|
|
"# Subset the data using the random indices\n",
|
||
|
|
"x = data[random_indices]\n",
|
||
|
|
"y = label[random_indices]\n",
|
||
|
|
"\n",
|
||
|
|
"# Check the new shape\n",
|
||
|
|
"print(x.shape)\n",
|
||
|
|
"print(y.shape)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "89039d87-49cf-4cac-8020-350c516d9332",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"np.savez(\"input/saved_datasets/test_aug.npz\", data=x, label=y)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "8cdc9d56-6e4a-4da9-9280-e632a1434f12",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"preds = fill_nan_model.predict(x)\n",
|
||
|
|
"mse = mean_squared_error(y, preds)\n",
|
||
|
|
"mae = mean_absolute_error(y, preds)\n",
|
||
|
|
"r2 = r2_score(y, preds)\n",
|
||
|
|
"print(f\"MSE: {mse}\")\n",
|
||
|
|
"print(f\"MAE: {mae}\")\n",
|
||
|
|
"print(f\"R^2: {r2}\")"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "859e29ca-731c-4877-ace3-033f828185f7",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "markdown",
|
||
|
|
"id": "115ac772-ced4-4671-aeb3-9ee92aeef230",
|
||
|
|
"metadata": {},
|
||
|
|
"source": [
|
||
|
|
"#####################################################################################"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 18,
|
||
|
|
"id": "1be81b66-9ee6-4b4c-b511-3a57a541be31",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/html": [
|
||
|
|
"<div>\n",
|
||
|
|
"<style scoped>\n",
|
||
|
|
" .dataframe tbody tr th:only-of-type {\n",
|
||
|
|
" vertical-align: middle;\n",
|
||
|
|
" }\n",
|
||
|
|
"\n",
|
||
|
|
" .dataframe tbody tr th {\n",
|
||
|
|
" vertical-align: top;\n",
|
||
|
|
" }\n",
|
||
|
|
"\n",
|
||
|
|
" .dataframe thead th {\n",
|
||
|
|
" text-align: right;\n",
|
||
|
|
" }\n",
|
||
|
|
"</style>\n",
|
||
|
|
"<table border=\"1\" class=\"dataframe\">\n",
|
||
|
|
" <thead>\n",
|
||
|
|
" <tr style=\"text-align: right;\">\n",
|
||
|
|
" <th></th>\n",
|
||
|
|
" <th>No</th>\n",
|
||
|
|
" <th>X</th>\n",
|
||
|
|
" <th>Y</th>\n",
|
||
|
|
" <th>LU2022</th>\n",
|
||
|
|
" <th>Hientrang</th>\n",
|
||
|
|
" <th>HT_code</th>\n",
|
||
|
|
" <th>geometry</th>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" </thead>\n",
|
||
|
|
" <tbody>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th>0</th>\n",
|
||
|
|
" <td>1.0</td>\n",
|
||
|
|
" <td>603860.819</td>\n",
|
||
|
|
" <td>1081162.862</td>\n",
|
||
|
|
" <td>Pomelo</td>\n",
|
||
|
|
" <td>CLN</td>\n",
|
||
|
|
" <td>3</td>\n",
|
||
|
|
" <td>POINT (603860.819 1081162.862)</td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th>1</th>\n",
|
||
|
|
" <td>2.0</td>\n",
|
||
|
|
" <td>601306.410</td>\n",
|
||
|
|
" <td>1082782.940</td>\n",
|
||
|
|
" <td>Pomelo</td>\n",
|
||
|
|
" <td>CLN</td>\n",
|
||
|
|
" <td>3</td>\n",
|
||
|
|
" <td>POINT (601306.41 1082782.94)</td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th>2</th>\n",
|
||
|
|
" <td>3.0</td>\n",
|
||
|
|
" <td>601084.510</td>\n",
|
||
|
|
" <td>1081351.870</td>\n",
|
||
|
|
" <td>Pomelo</td>\n",
|
||
|
|
" <td>CLN</td>\n",
|
||
|
|
" <td>3</td>\n",
|
||
|
|
" <td>POINT (601084.51 1081351.87)</td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th>3</th>\n",
|
||
|
|
" <td>4.0</td>\n",
|
||
|
|
" <td>602193.760</td>\n",
|
||
|
|
" <td>1079205.220</td>\n",
|
||
|
|
" <td>Pomelo</td>\n",
|
||
|
|
" <td>CLN</td>\n",
|
||
|
|
" <td>3</td>\n",
|
||
|
|
" <td>POINT (602193.76 1079205.22)</td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" <tr>\n",
|
||
|
|
" <th>4</th>\n",
|
||
|
|
" <td>5.0</td>\n",
|
||
|
|
" <td>602459.000</td>\n",
|
||
|
|
" <td>1080946.000</td>\n",
|
||
|
|
" <td>Pomelo</td>\n",
|
||
|
|
" <td>CLN</td>\n",
|
||
|
|
" <td>3</td>\n",
|
||
|
|
" <td>POINT (602459 1080946)</td>\n",
|
||
|
|
" </tr>\n",
|
||
|
|
" </tbody>\n",
|
||
|
|
"</table>\n",
|
||
|
|
"</div>"
|
||
|
|
],
|
||
|
|
"text/plain": [
|
||
|
|
" No X Y LU2022 Hientrang HT_code \\\n",
|
||
|
|
"0 1.0 603860.819 1081162.862 Pomelo CLN 3 \n",
|
||
|
|
"1 2.0 601306.410 1082782.940 Pomelo CLN 3 \n",
|
||
|
|
"2 3.0 601084.510 1081351.870 Pomelo CLN 3 \n",
|
||
|
|
"3 4.0 602193.760 1079205.220 Pomelo CLN 3 \n",
|
||
|
|
"4 5.0 602459.000 1080946.000 Pomelo CLN 3 \n",
|
||
|
|
"\n",
|
||
|
|
" geometry \n",
|
||
|
|
"0 POINT (603860.819 1081162.862) \n",
|
||
|
|
"1 POINT (601306.41 1082782.94) \n",
|
||
|
|
"2 POINT (601084.51 1081351.87) \n",
|
||
|
|
"3 POINT (602193.76 1079205.22) \n",
|
||
|
|
"4 POINT (602459 1080946) "
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"execution_count": 18,
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "execute_result"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"train_path = \"input/train_points/1130/ST_1130_points.shp\" \n",
|
||
|
|
"# train_path = \"train/updated_data/ThuanHoa_DKS_Kappa.shp\"\n",
|
||
|
|
"ground_points = load_data_geo(train_path)\n",
|
||
|
|
"ground_points.head()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 19,
|
||
|
|
"id": "a24a5b13-a620-4154-bf17-6d277c8d6eb8",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"name": "stderr",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"/env/lib/python3.12/site-packages/sklearn/base.py:380: InconsistentVersionWarning: Trying to unpickle estimator DecisionTreeRegressor from version 1.3.2 when using version 1.6.0. This might lead to breaking code or invalid results. Use at your own risk. For more info please refer to:\n",
|
||
|
|
"https://scikit-learn.org/stable/model_persistence.html#security-maintainability-limitations\n",
|
||
|
|
" warnings.warn(\n",
|
||
|
|
"/env/lib/python3.12/site-packages/sklearn/base.py:380: InconsistentVersionWarning: Trying to unpickle estimator RandomForestRegressor from version 1.3.2 when using version 1.6.0. This might lead to breaking code or invalid results. Use at your own risk. For more info please refer to:\n",
|
||
|
|
"https://scikit-learn.org/stable/model_persistence.html#security-maintainability-limitations\n",
|
||
|
|
" warnings.warn(\n"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"fill_nan_model = joblib.load('output/regressors/max/rf_cloud.pkl')"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 20,
|
||
|
|
"id": "fa9191d7-6784-4e1d-a1dd-69a9dab56228",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"\n",
|
||
|
|
"def extract_data_with_HTcode(ground_points, average_ndvi, dsvh, dsvv):\n",
|
||
|
|
" datasets = {}\n",
|
||
|
|
" for idx, point in ground_points.iterrows():\n",
|
||
|
|
" \n",
|
||
|
|
" # Ensure each HT_code has its own dictionary\n",
|
||
|
|
" if point.HT_code not in datasets:\n",
|
||
|
|
" datasets[point.HT_code] = {'ndvi': [], 'vh': [], 'vv': []}\n",
|
||
|
|
" # Get the data for this point\n",
|
||
|
|
" ndvi_data = average_ndvi.sel(x=point.geometry.x, y=point.geometry.y, method='nearest').values\n",
|
||
|
|
" vh_data = dsvh.sel(x=point.geometry.x, y=point.geometry.y, method='nearest').values\n",
|
||
|
|
" vv_data = dsvv.sel(x=point.geometry.x, y=point.geometry.y, method='nearest').values\n",
|
||
|
|
" \n",
|
||
|
|
" # Append the data to the lists for this HT_code\n",
|
||
|
|
" datasets[point.HT_code]['ndvi'].append(ndvi_data)\n",
|
||
|
|
" datasets[point.HT_code]['vh'].append(vh_data)\n",
|
||
|
|
" datasets[point.HT_code]['vv'].append(vv_data)\n",
|
||
|
|
" \n",
|
||
|
|
" return datasets"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 21,
|
||
|
|
"id": "069c9adb-1671-4470-93b2-abda9d855be4",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"data = extract_data_with_HTcode(ground_points, average_ndvi, average_vh, average_vv)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "markdown",
|
||
|
|
"id": "22cd678c-ff7e-43ab-9550-9f560c1d31bb",
|
||
|
|
"metadata": {},
|
||
|
|
"source": [
|
||
|
|
"*********************************************************************************************************"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "cabb6f91-ff1c-43a5-b02d-d83266e3a4c2",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"index = 0"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "0d6f0534-17c7-413a-9cdd-742c4a12b221",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"ndvi = np.concatenate(data[index]['ndvi'])\n",
|
||
|
|
"vh = np.concatenate(data[index]['vh'])\n",
|
||
|
|
"vv = np.concatenate(data[index]['vv'])\n",
|
||
|
|
"X_pred = np.stack([vh, vv], axis=1)\n",
|
||
|
|
"print(ndvi.shape, X_pred.shape)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "3d9375c0-6300-4aa5-8c8b-f36004f908eb",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"mask = ~np.isnan(ndvi)\n",
|
||
|
|
"nonan_ndvi = ndvi[mask]\n",
|
||
|
|
"nonan_ndvi.shape"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "1a191ed6-d10a-49b9-aa43-d87509a050f6",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"pred_data = X_pred[mask]\n",
|
||
|
|
"pred_data.shape"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "423a14e8-46e7-4741-bc19-4dbac6edd14d",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"pred_data = pred_data[:75]\n",
|
||
|
|
"nonan_ndvi = nonan_ndvi[:75]\n",
|
||
|
|
"pred_data.shape"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "9d0a8983-01ae-42b1-95d7-918219dcbcb3",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"preds = fill_nan_model.predict(pred_data)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "6cb5be9a-9420-43ce-aa1b-6d98aef655f0",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"# print(nonan_ndvi)\n",
|
||
|
|
"# print(preds)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "02d51159-1654-4a44-9b30-1ee3f955538c",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"mae = mean_squared_error(nonan_ndvi, preds)\n",
|
||
|
|
"r2 = r2_score(preds, nonan_ndvi)\n",
|
||
|
|
"print(\"MAE: \", mae)\n",
|
||
|
|
"print(\"R^2: \", r2)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "b6402503-4e27-483d-94c5-052121e702f6",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 96,
|
||
|
|
"id": "13737f5f-4ce3-4b49-988a-f492bf269490",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"image/png": "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
|
||
|
|
"text/plain": [
|
||
|
|
"<Figure size 1000x600 with 1 Axes>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"import matplotlib.pyplot as plt\n",
|
||
|
|
"\n",
|
||
|
|
"# Create the scatter plot\n",
|
||
|
|
"plt.figure(figsize=(10, 6))\n",
|
||
|
|
"plt.scatter(nonan_ndvi, preds, color='blue', alpha=0.7, s=10)\n",
|
||
|
|
"plt.plot([nonan_ndvi.min(), nonan_ndvi.max()], \n",
|
||
|
|
" [nonan_ndvi.min(), nonan_ndvi.max()], color='red', linestyle='--', label='y = x')\n",
|
||
|
|
"\n",
|
||
|
|
"# Set equal scaling for the axes\n",
|
||
|
|
"plt.gca().set_aspect('equal', adjustable='box')\n",
|
||
|
|
"\n",
|
||
|
|
"# Automatically adjust x and y axis limits based on data, with a margin of 0.1\n",
|
||
|
|
"x_min, x_max = nonan_ndvi.min() - 0.1, nonan_ndvi.max() + 0.1\n",
|
||
|
|
"y_min, y_max = preds.min() - 0.1, preds.max() + 0.1\n",
|
||
|
|
"plt.xlim(x_min, x_max)\n",
|
||
|
|
"plt.ylim(y_min, y_max)\n",
|
||
|
|
"\n",
|
||
|
|
"# Set minor ticks for both axes at intervals of 0.1\n",
|
||
|
|
"plt.xticks([round(i, 1) for i in np.arange(x_min, x_max, 0.1)], rotation=45)\n",
|
||
|
|
"plt.yticks([round(i, 1) for i in np.arange(y_min, y_max, 0.1)])\n",
|
||
|
|
"\n",
|
||
|
|
"plt.xlabel('Actual NDVI')\n",
|
||
|
|
"plt.ylabel('Predicted NDVI')\n",
|
||
|
|
"plt.title('Comparison between Actual and Predicted NDVI')\n",
|
||
|
|
"plt.legend()\n",
|
||
|
|
"plt.grid(True, which='both', linestyle='--', linewidth=0.5)\n",
|
||
|
|
"plt.show()\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 95,
|
||
|
|
"id": "74318d1a-6e4d-423b-ba2c-26f6f32cfd96",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAiAAAAI3CAYAAACiWuA/AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydeVhc1f24X2ZYhiVsYd8CYQuBAAECVRsTNW1alxprNS5tYqyxrVq1+alVq9GobWpro341mi5GrXVJXbtoY9uY1NpECCGAIRACgZBA2AIMYRm2Ob8/JnNlmYE7MCxDzvs88yRc7rzzOWcuZz5z7lmchBACiUQikUgkkilEM90BSCQSiUQiOfeQCYhEIpFIJJIpRyYgEolEIpFIphyZgEgkEolEIplyZAIikUgkEolkypEJiEQikUgkkilHJiASiUQikUimHJmASCQSiUQimXJkAiKRSCQSiWTKkQmIxGFwcnLi0Ucfne4wLBIdHc3ll18+3WFIpog9e/bg5OTEnj17pjsUhejoaG666abpDmNMHn30UZycnIYcm2mxW4pRYn9kAuJAVFZW8oMf/ID58+ej0+nw9vbmggsu4Nlnn6W7u3u6w5PYka6uLh599NEZ9QE3mVx77bU4OTnx05/+dNyOvXv38uijj9LW1ma/wGYhTk5OykOj0RAWFsbXv/51h7vW6urqePTRRyksLJy2GG666SacnJxITU3F0q4mTk5O3HHHHcrP1dXVQ+rfxcWFgIAAzj//fB588EFqamqGPD81NZWoqCiLbjMXXHABwcHB9Pf3K/6nnnrKfoWcRGQC4iB8+OGHLFq0iD//+c9cccUVPPfcc2zevJmoqCjuvfde7rrrrukOcdLp7u7moYcemu4wpoSuri42bdrkcB8K46G9vZ2//e1vREdH8+abb47a2I7G3r172bRpk0xAVPC1r32N1157jVdffZUf/vCHFBcXc/HFF/OPf/xjWuI5cuQIv//97216Tl1dHZs2bZrWBMTMF198wXvvvaf6/Ouvv57XXnuNl156iYcffpj58+fzzDPPkJSUxFtvvaWcd+ONN3LixAn++9//WvRUV1ezb98+Vq9ejbOz84TLMdU4XsTnIFVVVVx33XXMmzePTz75hNDQUOV3t99+OxUVFXz44YfTGOHkYTQa6e3tRafTodPppjscySTw7rvvMjAwwPbt27n44ov59NNPWbZs2XSHNatJSEjgu9/9rvLzVVddRWpqKs888wzf/OY3LT7HYDDg6uqKRmP/761ubm52d04V7u7uREZG8thjj/Htb39b1a2bjIyMIfUPcPz4cb7+9a+zdu1akpKSSEtL44YbbuCBBx7gjTfe4MILLxzhMSfsN954o93KM5XIHhAH4Fe/+hUdHR289NJLQ5IPM3FxcUN6QPr7+3n88ceJjY3Fzc2N6OhoHnzwQXp6eoY8zzxuYc+ePWRlZeHu7s6iRYuUb93vvfceixYtQqfTkZmZycGDB4c8/6abbsLLy4tjx46xcuVKPD09CQsL47HHHhvxLfapp57i/PPPZ+7cubi7u5OZmck777wzoizmLsvXX3+d5ORk3Nzc2Llzp/K7wWNAzpw5w9133010dDRubm4EBQXxta99jYKCgiHOt99+m8zMTNzd3QkICOC73/0utbW1FstSW1vLqlWr8PLyIjAwkHvuuYeBgQEr78xI/vnPf5Keno5Op2PhwoUWvxW1tbVx9913ExkZiZubG3FxcTz55JMYjUbA9K0mMDAQgE2bNindtY8++ih//etfcXJyori4WPG9++67ODk58e1vf3vI6yQlJbF69eohx/70pz8pdeHv7891113HiRMnRsSYm5vLN77xDXx8fPDw8GDZsmX873//G3KO+T55RUUFN910E76+vvj4+LBu3Tq6urpU19nrr7/O1772NS666CKSkpJ4/fXXLZ5XVlbGtddeS2BgIO7u7iQmJvKzn/1MieXee+8FICYmRqmz6upqpVv6lVdeGeEcfk0dP36c2267jcTERNzd3Zk7dy7XXHMN1dXVqsszGLW+V155BScnJ/73v/+xYcMGAgMD8fT05KqrrqKpqWnIuUIInnjiCSIiIvDw8OCiiy6ipKRkXPGZWbRoEQEBAVRVVQFfjnF56623eOihhwgPD8fDw4P29nZA3fUB8Nlnn7FkyRJ0Oh2xsbH89re/tfj6lsaAtLW18ZOf/ET5+46IiGDNmjU0NzezZ88elixZAsC6deuU93vwe2zvGK2h0Wh46KGHKC4u5v3337fpuYOZN28er7zyCr29vfzqV78CIDIykgsvvJB33nmHvr6+Ec954403iI2NJScnZ9yvO60IyYwnPDxczJ8/X/X5a9euFYD4zne+I7Zu3SrWrFkjALFq1aoh582bN08kJiaK0NBQ8eijj4qnn35ahIeHCy8vL/GnP/1JREVFiV/+8pfil7/8pfDx8RFxcXFiYGBgyOvodDoRHx8vvve974nnn39eXH755QIQDz/88JDXioiIELfddpt4/vnnxZYtW0R2drYAxN///vch5wEiKSlJBAYGik2bNomtW7eKgwcPKr975JFHlHNvuOEG4erqKjZs2CD+8Ic/iCeffFJcccUV4k9/+pNyzssvvywAsWTJEvH000+L+++/X7i7u4vo6GjR2to6oizJycni5ptvFi+++KK4+uqrBSBeeOGFMet83rx5IiEhQfj6+or7779fbNmyRSxatEhoNBrxz3/+Uzmvs7NTpKamirlz54oHH3xQbNu2TaxZs0Y4OTmJu+66SwghREdHh3jxxRcFIK666irx2muviddee00UFRWJ06dPCycnJ/Hcc88pzrvuuktoNBoRGBioHGtsbBSAeP7555VjTzzxhHBychKrV68WL7zwgti0aZMICAgYURe7du0Srq6u4rzzzhO/+c1vxNNPPy1SU1OFq6uryM3NVc575JFHBCAWL14svv3tb4sXXnhB3HLLLQIQ991335h1JoQQtbW1QqPRiNdee00IIcRjjz0m/Pz8RE9Pz5DzioqKhLe3t5g7d6544IEHxG9/+1tx3333iUWLFim/v/766wUgnn76aaXOOjo6RFVVlQDEyy+/POL1h19Tb7/9tkhLSxMbN24Uv/vd78SDDz4o/Pz8xLx580RnZ6dy3u7duwUgdu/ePWr51PrM1+nixYvFxRdfLJ577jnx//7f/xNarVZce+21Q5wPPfSQAMSll14qnn/+eXHzzTeLsLAwERAQINauXTtmnQPi9ttvH3KspaVFaLVa8ZWvfGVI+RYuXCjS09PFli1bxObNm0VnZ6fq66O4uFi4u7uLqKgosXnzZvH444+L4OBgkZqaKoZ/9MybN29I7GfOnBEpKSlCq9WK9evXixdffFE8/vjjYsmSJeLgwYOivr5ePPbYYwIQt956q/J+V1ZWCiHUX8O2xGiJtWvXCk9PT9Hf3y/i4+NFWlqaMBqNVuvafC3++te/tuqMjY0d8rf8u9/9TgDib3/725DziouLBSA2btxok38mIROQGY5erxeAuPLKK1WdX1hYKABxyy23DDl+zz33CEB88sknyrF58+YJQOzdu1c59vHHHwtAuLu7i+PHjyvHf/vb345ocM2Jzo9//GPlmNFoFJdddplwdXUVTU1NyvGurq4h8fT29oqUlBRx8cUXDzkOCI1GI0pKSkaUbfiHhY+Pz4iGdPhrBAUFiZSUFNHd3a0c//vf/z7iD9dclscee2yIY/HixSIzM9Pqa5gx1+W7776rHNPr9SI0NFQsXrxYOfb4448LT09PUV5ePuT5999/v9BqtaKmpkYIIURTU9OI8ppJTk4e8qGUkZEhrrnmGgGI0tJSIYQQ7733ngBEUVGREEKI6upqodVqxc9//vMhri+++EI4Ozsrx41Go4iPjxcrV64c0pB2dXWJmJgY8bWvfU05Zk5Abr755iHOq666SsydO3fMOhNCiKeeekq4u7uL9vZ2IYQQ5eXlAhDvv//+kPMuvPBCMWfOnCHXpDleM7/+9a8FIKqqqoacY0sCMvw6FUKIffv2CUD88Y9/VI6pTUDU+swJyIo
|
||
|
|
"text/plain": [
|
||
|
|
"<Figure size 1000x600 with 1 Axes>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"import matplotlib.pyplot as plt\n",
|
||
|
|
"\n",
|
||
|
|
"# Create the scatter plot\n",
|
||
|
|
"plt.figure(figsize=(10, 6))\n",
|
||
|
|
"plt.scatter(nonan_ndvi, preds, color='blue', alpha=0.7, s=15)\n",
|
||
|
|
"plt.plot([-1, 1], [-1, 1], color='red', linestyle='--', label='y = x')\n",
|
||
|
|
"\n",
|
||
|
|
"# Set equal scaling and adjust x and y axis limits from -1 to 1\n",
|
||
|
|
"plt.gca().set_aspect('equal', adjustable='box')\n",
|
||
|
|
"# plt.xlim(-1, 1) # Set x-axis limits from -1 to 1\n",
|
||
|
|
"# plt.ylim(-1, 1) # Set y-axis limits from -1 to 1\n",
|
||
|
|
"\n",
|
||
|
|
"# Add minor ticks at intervals of 0.1\n",
|
||
|
|
"plt.xticks([i * 0.1 for i in range(-10, 11)], rotation=45)\n",
|
||
|
|
"plt.yticks([i * 0.1 for i in range(-10, 11)])\n",
|
||
|
|
"\n",
|
||
|
|
"plt.xlabel('Actual NDVI')\n",
|
||
|
|
"plt.ylabel('Predicted NDVI')\n",
|
||
|
|
"plt.title('Comparison between Actual and Predicted NDVI')\n",
|
||
|
|
"plt.legend()\n",
|
||
|
|
"plt.grid(True, which='both', linestyle='--', linewidth=0.5)\n",
|
||
|
|
"plt.show()\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "3632b6f7-edd8-4a94-9f87-9484515465e1",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "685a99cc-10f9-4ca9-8423-074ed1de817c",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "978d596b-bc48-4491-8616-880f6661ea53",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "0a15077a-b1da-4037-b28b-1871d0446d85",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "f13c8c73-8c73-4561-82f4-6c0b0f7d7afc",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "abf0ec42-817b-4806-aae5-fd34b2e10727",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"import numpy as np\n",
|
||
|
|
"\n",
|
||
|
|
"# Function to filter out NaN values for each 'ndvi' array in each HT_code\n",
|
||
|
|
"def filter_non_nan_ndvi(data):\n",
|
||
|
|
" filtered_data = {}\n",
|
||
|
|
" \n",
|
||
|
|
" for ht_code, attributes in data.items():\n",
|
||
|
|
" # Initialize lists to store filtered arrays for 'ndvi', 'vh', and 'vv'\n",
|
||
|
|
" filtered_ndvi = []\n",
|
||
|
|
" filtered_vh = []\n",
|
||
|
|
" filtered_vv = []\n",
|
||
|
|
" \n",
|
||
|
|
" # Iterate through each set of ndvi, vh, vv arrays\n",
|
||
|
|
" for ndvi, vh, vv in zip(attributes['ndvi'], attributes['vh'], attributes['vv']):\n",
|
||
|
|
" # Create masks to filter out NaN values based on 'ndvi' array\n",
|
||
|
|
" non_nan_mask = ~np.isnan(ndvi)\n",
|
||
|
|
" \n",
|
||
|
|
" # Filter the arrays based on the mask\n",
|
||
|
|
" filtered_ndvi.append(ndvi[non_nan_mask])\n",
|
||
|
|
" filtered_vh.append(vh[non_nan_mask])\n",
|
||
|
|
" filtered_vv.append(vv[non_nan_mask])\n",
|
||
|
|
" \n",
|
||
|
|
" # Only add if there are non-empty filtered values\n",
|
||
|
|
" filtered_data[ht_code] = {\n",
|
||
|
|
" 'ndvi': filtered_ndvi,\n",
|
||
|
|
" 'vh': filtered_vh,\n",
|
||
|
|
" 'vv': filtered_vv\n",
|
||
|
|
" }\n",
|
||
|
|
" \n",
|
||
|
|
" return filtered_data\n",
|
||
|
|
"\n",
|
||
|
|
"# Example usage\n",
|
||
|
|
"filtered_datasets = filter_non_nan_ndvi(data)\n",
|
||
|
|
"\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "e9bb9522-3aec-42b0-930a-cbc647d50d8f",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"filtered_datasets"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "7b96cbbd-0b5f-4dc7-87c4-f960554409a8",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"import numpy as np\n",
|
||
|
|
"\n",
|
||
|
|
"# Set the range of indices you want to include\n",
|
||
|
|
"indices = range(0, 11) # Selects indices from 0 to 10\n",
|
||
|
|
"ht_code = 1\n",
|
||
|
|
"# Initialize empty lists to hold data for the selected range\n",
|
||
|
|
"X_list = []\n",
|
||
|
|
"y_list = []\n",
|
||
|
|
"\n",
|
||
|
|
"# Loop over the indices and collect data\n",
|
||
|
|
"for index in indices:\n",
|
||
|
|
" vh_data = filtered_datasets[ht_code]['vh'][index]\n",
|
||
|
|
" vv_data = filtered_datasets[ht_code]['vv'][index]\n",
|
||
|
|
" ndvi_data = filtered_datasets[ht_code]['ndvi'][index]\n",
|
||
|
|
" \n",
|
||
|
|
" # Stack VH and VV data for the current index\n",
|
||
|
|
" X = np.column_stack((vh_data, vv_data))\n",
|
||
|
|
" X_list.append(X)\n",
|
||
|
|
" y_list.append(ndvi_data)\n",
|
||
|
|
"\n",
|
||
|
|
"# Concatenate the lists to form the complete dataset\n",
|
||
|
|
"X_combined = np.concatenate(X_list, axis=0)\n",
|
||
|
|
"y_combined = np.concatenate(y_list, axis=0)\n",
|
||
|
|
"print(\"X shape:\", X_combined.shape)\n",
|
||
|
|
"print(\"y shape:\", y_combined.shape)\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "7508e5b2-d93c-466a-8a2b-6a01765348a2",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"preds = fill_nan_model.predict(X_combined)\n",
|
||
|
|
"mse = mean_squared_error(y_combined, preds)\n",
|
||
|
|
"mae = mean_absolute_error(y_combined, preds)\n",
|
||
|
|
"r2 = r2_score(preds, y_combined)\n",
|
||
|
|
"print(f\"MSE: {mse}\")\n",
|
||
|
|
"print(f\"MAE: {mae}\")\n",
|
||
|
|
"print(f\"R^2: {r2}\")\n",
|
||
|
|
"# print(y)\n",
|
||
|
|
"# print(preds)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "94a2344f-9a3e-41f2-980b-661d247d9719",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"import matplotlib.pyplot as plt\n",
|
||
|
|
"# Tạo biểu đồ với độ chia đồng nhất cho cả hai trục\n",
|
||
|
|
"# plt.figure(figsize=(10, 6))\n",
|
||
|
|
"plt.scatter(y_combined, preds, color='blue', alpha=0.7)\n",
|
||
|
|
"plt.plot([y_combined.min(), y_combined.max()],\n",
|
||
|
|
" [y_combined.min(), y_combined.max()], color='red', linestyle='--', label='y = x')\n",
|
||
|
|
"\n",
|
||
|
|
"# Thiết lập tỷ lệ các trục đồng nhất\n",
|
||
|
|
"plt.gca().set_aspect('equal', adjustable='box')\n",
|
||
|
|
"plt.xlim(y_combined.min() - 0.1, y_combined.max() + 0.1) # Điều chỉnh giới hạn trục x\n",
|
||
|
|
"plt.ylim(y_combined.min() - 0.1, y_combined.max() + 0.1) # Điều chỉnh giới hạn trục y\n",
|
||
|
|
"\n",
|
||
|
|
"plt.xlabel('Actual NDVI')\n",
|
||
|
|
"plt.ylabel(' predicted NDVI')\n",
|
||
|
|
"plt.title('Comparing between actual and predict NDVI')\n",
|
||
|
|
"plt.legend()\n",
|
||
|
|
"plt.grid(True)\n",
|
||
|
|
"plt.show()\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "e0a7e22b-c7bb-4b0d-b31a-f63cb2df015d",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"########################################################################################################"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "d6985c3b-1687-48d4-8322-d7b7bfa9deb2",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "7a416c4f-8c97-4069-8dd6-f17bded7783b",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "76feffb6-b842-41ab-8289-561df2be66f1",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 36,
|
||
|
|
"id": "9baa110e-4fd2-4f37-afae-b786b07a8030",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"# Assuming 'data' is the output of the function\n",
|
||
|
|
"ht_code = 0 # Replace with the specific HT code you want to extract\n",
|
||
|
|
"index = 5 # Replace with the index of the point you want to access (if multiple points are available)\n",
|
||
|
|
"\n",
|
||
|
|
"# Extract the NDVI, VH, and VV values for that HT_code\n",
|
||
|
|
"ndvi_values = data[ht_code]['ndvi'][:index]\n",
|
||
|
|
"vh_values = data[ht_code]['vh'][:index]\n",
|
||
|
|
"vv_values = data[ht_code]['vv'][:index]\n",
|
||
|
|
"\n",
|
||
|
|
"# print(\"NDVI Values:\", ndvi_values)\n",
|
||
|
|
"# print(\"VH Values:\", vh_values)\n",
|
||
|
|
"# print(\"VV Values:\", vv_values)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 37,
|
||
|
|
"id": "109e94bf-30a8-445d-b57a-6e71bb57dfa6",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"text/plain": [
|
||
|
|
"[array([ nan, nan, nan, 0.7838173 , 0.2594822 ,\n",
|
||
|
|
" nan, nan, -0.01014197, nan, nan,\n",
|
||
|
|
" nan, 0.04412892, nan, 0.41975912], dtype=float32),\n",
|
||
|
|
" array([ nan, 0.05541343, nan, nan, 0.04872111,\n",
|
||
|
|
" -0.03975514, -0.02526664, 0.06633194, -0.03085015, nan,\n",
|
||
|
|
" nan, nan, nan, 0.304978 ], dtype=float32),\n",
|
||
|
|
" array([ nan, 0.03639242, nan, -0.02970295, nan,\n",
|
||
|
|
" 0.21961932, 0.1123914 , 0.00693567, 0.02815771, nan,\n",
|
||
|
|
" nan, -0.02027068, 0.07577639, 0.14754659], dtype=float32),\n",
|
||
|
|
" array([ nan, 0.19116719, nan, 0.63182616, 0.25624552,\n",
|
||
|
|
" 0.22557077, 0.21399492, 0.2436642 , 0.12472966, nan,\n",
|
||
|
|
" nan, nan, 0.30766046, 0.17185405], dtype=float32),\n",
|
||
|
|
" array([0.03151124, nan, nan, nan, nan,\n",
|
||
|
|
" nan, 0.14684573, 0.1211228 , nan, nan,\n",
|
||
|
|
" nan, nan, 0.10493086, 0.00962011], dtype=float32)]"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"execution_count": 37,
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "execute_result"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"ndvi_values"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "eb83b856-4772-4bc1-91d0-08fe7e229d7f",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"input_data = np.column_stack((vh_values, vv_values))\n",
|
||
|
|
"\n",
|
||
|
|
"# Make predictions for each month\n",
|
||
|
|
"predicted_ndvi = fill_nan_model.predict(input_data)\n",
|
||
|
|
"\n",
|
||
|
|
"# Print the predictions\n",
|
||
|
|
"print(\"Predicted NDVI for each month:\", predicted_ndvi)"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 24,
|
||
|
|
"id": "3a17c632-1f57-4d09-98ab-3b444da78749",
|
||
|
|
"metadata": {
|
||
|
|
"tags": []
|
||
|
|
},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"image/png": "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
|
||
|
|
"text/plain": [
|
||
|
|
"<Figure size 640x480 with 1 Axes>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"plt.plot(ndvi_values, marker='o', linestyle='-', color='b', label='Actual Values')\n",
|
||
|
|
"\n",
|
||
|
|
"# Plotting the adjusted values\n",
|
||
|
|
"plt.plot(predicted_ndvi, marker='x', linestyle='--', color='r', label='Predicted Values')\n",
|
||
|
|
"\n",
|
||
|
|
"# Adding labels and title\n",
|
||
|
|
"plt.xlabel('Index')\n",
|
||
|
|
"plt.ylabel('Values')\n",
|
||
|
|
"plt.title('Comparison: Actual vs predicted Values in CLN code over 24 months')\n",
|
||
|
|
"# Adding grid\n",
|
||
|
|
"plt.grid(True)\n",
|
||
|
|
"# Adding legend to differentiate the lines\n",
|
||
|
|
"plt.legend()\n",
|
||
|
|
"# # # Adjusting the limits of the axes\n",
|
||
|
|
"# plt.xlim(0, 75) # Example: Setting x-axis limits from 0 to 12\n",
|
||
|
|
"# plt.ylim(-1, 1) # Example: Setting y-axis limits from 0 to 1\n",
|
||
|
|
"# Display the plot\n",
|
||
|
|
"plt.show()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 25,
|
||
|
|
"id": "547eb119-d70f-4d60-bdd3-07f0b77ec577",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"# cấu hình nhãn dữ liệu\n",
|
||
|
|
"label_mapping = {\n",
|
||
|
|
" \"Lua tom\": \"0\",\n",
|
||
|
|
" \"Lua\": \"1\",\n",
|
||
|
|
" \"CHN\": \"2\",\n",
|
||
|
|
" \"CLN\": \"3\",\n",
|
||
|
|
" \"TS\": \"4\",\n",
|
||
|
|
" \"Song\": \"5\",\n",
|
||
|
|
" \"Dat xay dung\": \"6\",\n",
|
||
|
|
" \"Rung\": \"7\"\n",
|
||
|
|
"}"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 108,
|
||
|
|
"id": "a8e8ca9f-cf1e-4c4e-a692-a5eff9dfb380",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"def draw(ndvi_values, predicted_ndvi, name):\n",
|
||
|
|
" plt.plot(ndvi_values, marker='o', linestyle='-', color='b', label='Actual Values')\n",
|
||
|
|
" plt.plot(predicted_ndvi, marker='x', linestyle='--', color='r', label='Predicted Values')\n",
|
||
|
|
" # Adding labels and title\n",
|
||
|
|
" plt.xlabel('Index')\n",
|
||
|
|
" plt.ylabel('Values')\n",
|
||
|
|
" plt.title(f'Comparison: Actual vs predicted Values in {name} code over 14 months')\n",
|
||
|
|
" # Adding grid\n",
|
||
|
|
" plt.grid(True)\n",
|
||
|
|
" # Adding legend to differentiate the lines\n",
|
||
|
|
" plt.legend()\n",
|
||
|
|
" # # # Adjusting the limits of the axes\n",
|
||
|
|
" plt.xlim(0, 25) # Example: Setting x-axis limits from 0 to 12\n",
|
||
|
|
" plt.ylim(-1, 1) # Example: Setting y-axis limits from 0 to 1\n",
|
||
|
|
" # Display the plot\n",
|
||
|
|
" plt.show()"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 109,
|
||
|
|
"id": "0a0d2657-ebeb-4b29-bfe2-84a5b2599087",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"def show_images (ht_code, index, name):\n",
|
||
|
|
" ndvi_values = data[ht_code]['ndvi'][index]\n",
|
||
|
|
" vh_values = data[ht_code]['vh'][index]\n",
|
||
|
|
" vv_values = data[ht_code]['vv'][index]\n",
|
||
|
|
" input_data = np.column_stack((vh_values, vv_values))\n",
|
||
|
|
" predicted_ndvi = fill_nan_model.predict(input_data)\n",
|
||
|
|
" draw(ndvi_values, predicted_ndvi, name)\n",
|
||
|
|
" "
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "f91bbc3c-a089-4cea-ad36-a99b4c5da22b",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"for i in range(50):\n",
|
||
|
|
" show_images(1, i, 'TS')"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "5681dda8-3573-48fb-8f0c-3c69a1706bc6",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "51629670-5cd3-49d0-8b8f-5dc60c7bc0ea",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"^^^^^^^^^^^^^^^^^^^^^^^^^^^NEW VERSION OF GRPAH^^^^^^^^^^^^^^^^"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 114,
|
||
|
|
"id": "885dbd0b-0595-4c98-b037-e3b2cf7f18dc",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"import matplotlib.pyplot as plt\n",
|
||
|
|
"\n",
|
||
|
|
"\n",
|
||
|
|
"\n",
|
||
|
|
"def draw(ndvi_values, predicted_values, name):\n",
|
||
|
|
" for i, (ndvi, predicted) in enumerate(zip(ndvi_values, predicted_values)):\n",
|
||
|
|
" # plt.plot(ndvi, marker='o', linestyle='-', label=f'Actual Values {i+1}')\n",
|
||
|
|
" # plt.plot(predicted, marker='x', linestyle='--', label=f'Predicted Values {i+1}')\n",
|
||
|
|
" plt.plot(ndvi, marker='o', linestyle='-', color='blue', markersize=4, linewidth=0.75)\n",
|
||
|
|
" plt.plot(predicted, marker='x', linestyle='--', color='red', markersize=4, linewidth=0.75)\n",
|
||
|
|
" \n",
|
||
|
|
" # Adding labels and title\n",
|
||
|
|
" plt.xlabel('Months')\n",
|
||
|
|
" plt.ylabel('NDVI values')\n",
|
||
|
|
" plt.title(f'Comparison: Actual vs Predicted Values in {name} code over 14 months')\n",
|
||
|
|
" # Adding grid\n",
|
||
|
|
" plt.grid(True)\n",
|
||
|
|
" # Adding legend to differentiate the lines\n",
|
||
|
|
" plt.legend()\n",
|
||
|
|
" # Adjusting the limits of the axes\n",
|
||
|
|
" plt.xlim(0, max(len(arr) for arr in ndvi_values)) # Adjust x-axis limits based on the longest array\n",
|
||
|
|
" plt.ylim(-1, 1) # Example: Setting y-axis limits\n",
|
||
|
|
" # Display the plot\n",
|
||
|
|
" plt.show()\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 115,
|
||
|
|
"id": "981129c6-82a6-431f-b65f-60128ab1ffe8",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": [
|
||
|
|
"def show_images(ht_code, indices, name):\n",
|
||
|
|
" all_ndvi_values = []\n",
|
||
|
|
" all_predicted_ndvi_values = []\n",
|
||
|
|
"\n",
|
||
|
|
" # Iterate over the list of vh_values and vv_values\n",
|
||
|
|
" for index in range(indices):\n",
|
||
|
|
" # Extract the values for the given index range\n",
|
||
|
|
" ndvi_values = data[ht_code]['ndvi'][index]\n",
|
||
|
|
" vh_values = data[ht_code]['vh'][index]\n",
|
||
|
|
" vv_values = data[ht_code]['vv'][index]\n",
|
||
|
|
" # Combine vh and vv into input data\n",
|
||
|
|
" input_data = np.column_stack((vh_values, vv_values))\n",
|
||
|
|
" # Predict NDVI values\n",
|
||
|
|
" predicted_ndvi = fill_nan_model.predict(input_data)\n",
|
||
|
|
" # Collect the values for plotting\n",
|
||
|
|
" all_ndvi_values.append(ndvi_values)\n",
|
||
|
|
" all_predicted_ndvi_values.append(predicted_ndvi)\n",
|
||
|
|
" # Draw the plots for all the data\n",
|
||
|
|
" draw(all_ndvi_values, all_predicted_ndvi_values, name)\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": 123,
|
||
|
|
"id": "b7c4c821-2132-4e19-8e3d-9c6204061b15",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [
|
||
|
|
{
|
||
|
|
"name": "stderr",
|
||
|
|
"output_type": "stream",
|
||
|
|
"text": [
|
||
|
|
"No artists with labels found to put in legend. Note that artists whose label start with an underscore are ignored when legend() is called with no argument.\n"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"data": {
|
||
|
|
"image/png": "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
|
||
|
|
"text/plain": [
|
||
|
|
"<Figure size 640x480 with 1 Axes>"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"metadata": {},
|
||
|
|
"output_type": "display_data"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"source": [
|
||
|
|
"show_images(0, 50, 'RUNG')"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"cell_type": "code",
|
||
|
|
"execution_count": null,
|
||
|
|
"id": "9cf75b83-63ef-423d-ba74-1ce65c11eff8",
|
||
|
|
"metadata": {},
|
||
|
|
"outputs": [],
|
||
|
|
"source": []
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"metadata": {
|
||
|
|
"kernelspec": {
|
||
|
|
"display_name": "Python 3 (ipykernel)",
|
||
|
|
"language": "python",
|
||
|
|
"name": "python3"
|
||
|
|
},
|
||
|
|
"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.7"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"nbformat": 4,
|
||
|
|
"nbformat_minor": 5
|
||
|
|
}
|