From b2255d8882d501aba170327eb4ccc7cd55571c5d Mon Sep 17 00:00:00 2001 From: banesullivan Date: Fri, 17 May 2024 06:45:19 +0000 Subject: [PATCH] deploy: 5748c9548314f7bdb0e5af07cd87fffb4cd10549 --- 404.html | 2 +- _sources/user-guide/hillshade.rst.txt | 12 +-- _static/documentation_options.js | 2 +- _static/pygments.css | 138 +++++++++++++------------- api/index.html | 2 +- genindex.html | 2 +- index.html | 6 +- installation/docker.html | 2 +- installation/index.html | 2 +- installation/remote-jupyter.html | 2 +- search.html | 2 +- searchindex.js | 2 +- user-guide/bokeh.html | 16 +-- user-guide/compare.html | 6 +- user-guide/example-data.html | 2 +- user-guide/hillshade.html | 14 +-- user-guide/in-memory.html | 2 +- user-guide/index.html | 24 ++--- user-guide/ipyleaflet_deep_zoom.html | 6 +- user-guide/rasterio.html | 2 +- user-guide/remote-cog.html | 22 ++-- user-guide/rgb.html | 6 +- user-guide/validate_cog.html | 2 +- user-guide/web-app.html | 2 +- 24 files changed, 139 insertions(+), 139 deletions(-) diff --git a/404.html b/404.html index 5701244e..c4fceeaa 100644 --- a/404.html +++ b/404.html @@ -41,7 +41,7 @@ - + diff --git a/_sources/user-guide/hillshade.rst.txt b/_sources/user-guide/hillshade.rst.txt index afa80672..aa9cc7c4 100644 --- a/_sources/user-guide/hillshade.rst.txt +++ b/_sources/user-guide/hillshade.rst.txt @@ -24,9 +24,9 @@ make the data appear more 3-Dimensional. # Example DEM dataset client = examples.get_co_elevation() - tdem = get_leaflet_tile_layer(client, colormap='gist_earth') + tdem = get_leaflet_tile_layer(client, colormap='gist_earth', nodata=0) - m = Map(center=client.center(), zoom=client.default_zoom) + m = client.get_leaflet_map() m.add(tdem) m @@ -58,9 +58,9 @@ function (adopted from EarthPy). .. code:: python # Make an ipyleaflet tile layer of the hillshade - hst = get_leaflet_tile_layer(hs) + hst = get_leaflet_tile_layer(hs, nodata=0) - m = Map(center=client.center(), zoom=client.default_zoom) + m = client.get_leaflet_map() control = SplitMapControl(left_layer=tdem, right_layer=hst) m.add_control(control) m @@ -73,9 +73,9 @@ effect: .. code:: python - m = Map(center=client.center(), zoom=client.default_zoom) + m = client.get_leaflet_map() m.add(tdem) - m.add(get_leaflet_tile_layer(hs, opacity=0.5)) + m.add(get_leaflet_tile_layer(hs, opacity=0.5, nodata=0)) m diff --git a/_static/documentation_options.js b/_static/documentation_options.js index 1bb20bc8..029f61e3 100644 --- a/_static/documentation_options.js +++ b/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '0.10.2', + VERSION: '0.10.3', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/_static/pygments.css b/_static/pygments.css index 997797f2..012e6a00 100644 --- a/_static/pygments.css +++ b/_static/pygments.css @@ -3,77 +3,77 @@ html[data-theme="light"] .highlight td.linenos .normal { color: inherit; backgro html[data-theme="light"] .highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } html[data-theme="light"] .highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } html[data-theme="light"] .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } -html[data-theme="light"] .highlight .hll { background-color: #7971292e } -html[data-theme="light"] .highlight { background: #fefefe; color: #545454 } -html[data-theme="light"] .highlight .c { color: #797129 } /* Comment */ -html[data-theme="light"] .highlight .err { color: #d91e18 } /* Error */ -html[data-theme="light"] .highlight .k { color: #7928a1 } /* Keyword */ -html[data-theme="light"] .highlight .l { color: #797129 } /* Literal */ -html[data-theme="light"] .highlight .n { color: #545454 } /* Name */ -html[data-theme="light"] .highlight .o { color: #008000 } /* Operator */ -html[data-theme="light"] .highlight .p { color: #545454 } /* Punctuation */ -html[data-theme="light"] .highlight .ch { color: #797129 } /* Comment.Hashbang */ -html[data-theme="light"] .highlight .cm { color: #797129 } /* Comment.Multiline */ -html[data-theme="light"] .highlight .cp { color: #797129 } /* Comment.Preproc */ -html[data-theme="light"] .highlight .cpf { color: #797129 } /* Comment.PreprocFile */ -html[data-theme="light"] .highlight .c1 { color: #797129 } /* Comment.Single */ -html[data-theme="light"] .highlight .cs { color: #797129 } /* Comment.Special */ -html[data-theme="light"] .highlight .gd { color: #007faa } /* Generic.Deleted */ +html[data-theme="light"] .highlight .hll { background-color: #fae4c2 } +html[data-theme="light"] .highlight { background: #fefefe; color: #080808 } +html[data-theme="light"] .highlight .c { color: #515151 } /* Comment */ +html[data-theme="light"] .highlight .err { color: #a12236 } /* Error */ +html[data-theme="light"] .highlight .k { color: #6730c5 } /* Keyword */ +html[data-theme="light"] .highlight .l { color: #7f4707 } /* Literal */ +html[data-theme="light"] .highlight .n { color: #080808 } /* Name */ +html[data-theme="light"] .highlight .o { color: #00622f } /* Operator */ +html[data-theme="light"] .highlight .p { color: #080808 } /* Punctuation */ +html[data-theme="light"] .highlight .ch { color: #515151 } /* Comment.Hashbang */ +html[data-theme="light"] .highlight .cm { color: #515151 } /* Comment.Multiline */ +html[data-theme="light"] .highlight .cp { color: #515151 } /* Comment.Preproc */ +html[data-theme="light"] .highlight .cpf { color: #515151 } /* Comment.PreprocFile */ +html[data-theme="light"] .highlight .c1 { color: #515151 } /* Comment.Single */ +html[data-theme="light"] .highlight .cs { color: #515151 } /* Comment.Special */ +html[data-theme="light"] .highlight .gd { color: #005b82 } /* Generic.Deleted */ html[data-theme="light"] .highlight .ge { font-style: italic } /* Generic.Emph */ -html[data-theme="light"] .highlight .gh { color: #007faa } /* Generic.Heading */ +html[data-theme="light"] .highlight .gh { color: #005b82 } /* Generic.Heading */ html[data-theme="light"] .highlight .gs { font-weight: bold } /* Generic.Strong */ -html[data-theme="light"] .highlight .gu { color: #007faa } /* Generic.Subheading */ -html[data-theme="light"] .highlight .kc { color: #7928a1 } /* Keyword.Constant */ -html[data-theme="light"] .highlight .kd { color: #7928a1 } /* Keyword.Declaration */ -html[data-theme="light"] .highlight .kn { color: #7928a1 } /* Keyword.Namespace */ -html[data-theme="light"] .highlight .kp { color: #7928a1 } /* Keyword.Pseudo */ -html[data-theme="light"] .highlight .kr { color: #7928a1 } /* Keyword.Reserved */ -html[data-theme="light"] .highlight .kt { color: #797129 } /* Keyword.Type */ -html[data-theme="light"] .highlight .ld { color: #797129 } /* Literal.Date */ -html[data-theme="light"] .highlight .m { color: #797129 } /* Literal.Number */ -html[data-theme="light"] .highlight .s { color: #008000 } /* Literal.String */ -html[data-theme="light"] .highlight .na { color: #797129 } /* Name.Attribute */ -html[data-theme="light"] .highlight .nb { color: #797129 } /* Name.Builtin */ -html[data-theme="light"] .highlight .nc { color: #007faa } /* Name.Class */ -html[data-theme="light"] .highlight .no { color: #007faa } /* Name.Constant */ -html[data-theme="light"] .highlight .nd { color: #797129 } /* Name.Decorator */ -html[data-theme="light"] .highlight .ni { color: #008000 } /* Name.Entity */ -html[data-theme="light"] .highlight .ne { color: #7928a1 } /* Name.Exception */ -html[data-theme="light"] .highlight .nf { color: #007faa } /* Name.Function */ -html[data-theme="light"] .highlight .nl { color: #797129 } /* Name.Label */ -html[data-theme="light"] .highlight .nn { color: #545454 } /* Name.Namespace */ -html[data-theme="light"] .highlight .nx { color: #545454 } /* Name.Other */ -html[data-theme="light"] .highlight .py { color: #007faa } /* Name.Property */ -html[data-theme="light"] .highlight .nt { color: #007faa } /* Name.Tag */ -html[data-theme="light"] .highlight .nv { color: #d91e18 } /* Name.Variable */ -html[data-theme="light"] .highlight .ow { color: #7928a1 } /* Operator.Word */ -html[data-theme="light"] .highlight .pm { color: #545454 } /* Punctuation.Marker */ -html[data-theme="light"] .highlight .w { color: #545454 } /* Text.Whitespace */ -html[data-theme="light"] .highlight .mb { color: #797129 } /* Literal.Number.Bin */ -html[data-theme="light"] .highlight .mf { color: #797129 } /* Literal.Number.Float */ -html[data-theme="light"] .highlight .mh { color: #797129 } /* Literal.Number.Hex */ -html[data-theme="light"] .highlight .mi { color: #797129 } /* Literal.Number.Integer */ -html[data-theme="light"] .highlight .mo { color: #797129 } /* Literal.Number.Oct */ -html[data-theme="light"] .highlight .sa { color: #008000 } /* Literal.String.Affix */ -html[data-theme="light"] .highlight .sb { color: #008000 } /* Literal.String.Backtick */ -html[data-theme="light"] .highlight .sc { color: #008000 } /* Literal.String.Char */ -html[data-theme="light"] .highlight .dl { color: #008000 } /* Literal.String.Delimiter */ -html[data-theme="light"] .highlight .sd { color: #008000 } /* Literal.String.Doc */ -html[data-theme="light"] .highlight .s2 { color: #008000 } /* Literal.String.Double */ -html[data-theme="light"] .highlight .se { color: #008000 } /* Literal.String.Escape */ -html[data-theme="light"] .highlight .sh { color: #008000 } /* Literal.String.Heredoc */ -html[data-theme="light"] .highlight .si { color: #008000 } /* Literal.String.Interpol */ -html[data-theme="light"] .highlight .sx { color: #008000 } /* Literal.String.Other */ -html[data-theme="light"] .highlight .sr { color: #d91e18 } /* Literal.String.Regex */ -html[data-theme="light"] .highlight .s1 { color: #008000 } /* Literal.String.Single */ -html[data-theme="light"] .highlight .ss { color: #007faa } /* Literal.String.Symbol */ -html[data-theme="light"] .highlight .bp { color: #797129 } /* Name.Builtin.Pseudo */ -html[data-theme="light"] .highlight .fm { color: #007faa } /* Name.Function.Magic */ -html[data-theme="light"] .highlight .vc { color: #d91e18 } /* Name.Variable.Class */ -html[data-theme="light"] .highlight .vg { color: #d91e18 } /* Name.Variable.Global */ -html[data-theme="light"] .highlight .vi { color: #d91e18 } /* Name.Variable.Instance */ -html[data-theme="light"] .highlight .vm { color: #797129 } /* Name.Variable.Magic */ -html[data-theme="light"] .highlight .il { color: #797129 } /* Literal.Number.Integer.Long */ +html[data-theme="light"] .highlight .gu { color: #005b82 } /* Generic.Subheading */ +html[data-theme="light"] .highlight .kc { color: #6730c5 } /* Keyword.Constant */ +html[data-theme="light"] .highlight .kd { color: #6730c5 } /* Keyword.Declaration */ +html[data-theme="light"] .highlight .kn { color: #6730c5 } /* Keyword.Namespace */ +html[data-theme="light"] .highlight .kp { color: #6730c5 } /* Keyword.Pseudo */ +html[data-theme="light"] .highlight .kr { color: #6730c5 } /* Keyword.Reserved */ +html[data-theme="light"] .highlight .kt { color: #7f4707 } /* Keyword.Type */ +html[data-theme="light"] .highlight .ld { color: #7f4707 } /* Literal.Date */ +html[data-theme="light"] .highlight .m { color: #7f4707 } /* Literal.Number */ +html[data-theme="light"] .highlight .s { color: #00622f } /* Literal.String */ +html[data-theme="light"] .highlight .na { color: #912583 } /* Name.Attribute */ +html[data-theme="light"] .highlight .nb { color: #7f4707 } /* Name.Builtin */ +html[data-theme="light"] .highlight .nc { color: #005b82 } /* Name.Class */ +html[data-theme="light"] .highlight .no { color: #005b82 } /* Name.Constant */ +html[data-theme="light"] .highlight .nd { color: #7f4707 } /* Name.Decorator */ +html[data-theme="light"] .highlight .ni { color: #00622f } /* Name.Entity */ +html[data-theme="light"] .highlight .ne { color: #6730c5 } /* Name.Exception */ +html[data-theme="light"] .highlight .nf { color: #005b82 } /* Name.Function */ +html[data-theme="light"] .highlight .nl { color: #7f4707 } /* Name.Label */ +html[data-theme="light"] .highlight .nn { color: #080808 } /* Name.Namespace */ +html[data-theme="light"] .highlight .nx { color: #080808 } /* Name.Other */ +html[data-theme="light"] .highlight .py { color: #005b82 } /* Name.Property */ +html[data-theme="light"] .highlight .nt { color: #005b82 } /* Name.Tag */ +html[data-theme="light"] .highlight .nv { color: #a12236 } /* Name.Variable */ +html[data-theme="light"] .highlight .ow { color: #6730c5 } /* Operator.Word */ +html[data-theme="light"] .highlight .pm { color: #080808 } /* Punctuation.Marker */ +html[data-theme="light"] .highlight .w { color: #080808 } /* Text.Whitespace */ +html[data-theme="light"] .highlight .mb { color: #7f4707 } /* Literal.Number.Bin */ +html[data-theme="light"] .highlight .mf { color: #7f4707 } /* Literal.Number.Float */ +html[data-theme="light"] .highlight .mh { color: #7f4707 } /* Literal.Number.Hex */ +html[data-theme="light"] .highlight .mi { color: #7f4707 } /* Literal.Number.Integer */ +html[data-theme="light"] .highlight .mo { color: #7f4707 } /* Literal.Number.Oct */ +html[data-theme="light"] .highlight .sa { color: #00622f } /* Literal.String.Affix */ +html[data-theme="light"] .highlight .sb { color: #00622f } /* Literal.String.Backtick */ +html[data-theme="light"] .highlight .sc { color: #00622f } /* Literal.String.Char */ +html[data-theme="light"] .highlight .dl { color: #00622f } /* Literal.String.Delimiter */ +html[data-theme="light"] .highlight .sd { color: #00622f } /* Literal.String.Doc */ +html[data-theme="light"] .highlight .s2 { color: #00622f } /* Literal.String.Double */ +html[data-theme="light"] .highlight .se { color: #00622f } /* Literal.String.Escape */ +html[data-theme="light"] .highlight .sh { color: #00622f } /* Literal.String.Heredoc */ +html[data-theme="light"] .highlight .si { color: #00622f } /* Literal.String.Interpol */ +html[data-theme="light"] .highlight .sx { color: #00622f } /* Literal.String.Other */ +html[data-theme="light"] .highlight .sr { color: #a12236 } /* Literal.String.Regex */ +html[data-theme="light"] .highlight .s1 { color: #00622f } /* Literal.String.Single */ +html[data-theme="light"] .highlight .ss { color: #005b82 } /* Literal.String.Symbol */ +html[data-theme="light"] .highlight .bp { color: #7f4707 } /* Name.Builtin.Pseudo */ +html[data-theme="light"] .highlight .fm { color: #005b82 } /* Name.Function.Magic */ +html[data-theme="light"] .highlight .vc { color: #a12236 } /* Name.Variable.Class */ +html[data-theme="light"] .highlight .vg { color: #a12236 } /* Name.Variable.Global */ +html[data-theme="light"] .highlight .vi { color: #a12236 } /* Name.Variable.Instance */ +html[data-theme="light"] .highlight .vm { color: #7f4707 } /* Name.Variable.Magic */ +html[data-theme="light"] .highlight .il { color: #7f4707 } /* Literal.Number.Integer.Long */ html[data-theme="dark"] .highlight pre { line-height: 125%; } html[data-theme="dark"] .highlight td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } html[data-theme="dark"] .highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } diff --git a/api/index.html b/api/index.html index 586e93d4..837cb4ac 100644 --- a/api/index.html +++ b/api/index.html @@ -42,7 +42,7 @@ - + diff --git a/genindex.html b/genindex.html index ec7e33ef..f514a0d1 100644 --- a/genindex.html +++ b/genindex.html @@ -41,7 +41,7 @@ - + diff --git a/index.html b/index.html index 180d3751..de95d310 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,7 @@ - + @@ -421,7 +421,7 @@

🌐 localtileserver

A Python package for serving tiles from large raster files in @@ -463,7 +463,7 @@

🪢 Community Usage -{"state": {"1accaa8e4d6e4816af9157813e818a2c": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletTileLayerView", "attribution": "Raster file served by localtileserver.", "base": false, "bottom": true, "bounds": [[37.452199, -122.718792], [38.052231, -122.11876]], "detect_retina": false, "loading": false, "max_native_zoom": 30, "max_zoom": 30, "min_native_zoom": null, "min_zoom": 0, "name": "", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": true, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tileserver.banesullivan.com//api/tiles/{z}/{x}/{y}.png?&filename=%2Fvsicurl%3Furl%3Dhttps%253A%252F%252Fdata.kitware.com%252Fapi%252Fv1%252Ffile%252F626854a14acac99f42126a74%252Fdownload%26use_head%3Dno%26list_dir%3Dno", "visible": true, "zoom_offset": 0}}, "543e2e83dfdd4e1caa36aae69d01d728": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "6fca0095f97e4bd8ac66c15238a778be": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move"}}, "74bd1ff39e4746bebe30a85197d38cba": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0}}, "61e5ea83ae574b29ae4469a10af6e97b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4a960bbfb4bb4b7ab5553da64885e9d2": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "7a2a77c5f76940c2bbddf1c932609e60": {"model_name": "LeafletMapModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [37.752215, -122.418776], "close_popup_on_click": true, "controls": ["IPY_MODEL_a2481070e713440aa1e7dde5aef666aa", "IPY_MODEL_405fe9b9ed844b9a9e386be6f6a8efc9"], "crs": {"name": "EPSG3857", "custom": false}, "default_style": "IPY_MODEL_543e2e83dfdd4e1caa36aae69d01d728", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_6fca0095f97e4bd8ac66c15238a778be", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": ["IPY_MODEL_74bd1ff39e4746bebe30a85197d38cba", "IPY_MODEL_1accaa8e4d6e4816af9157813e818a2c"], "layout": "IPY_MODEL_61e5ea83ae574b29ae4469a10af6e97b", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-03-22", "north": 0.0, "options": ["bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap"], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_4a960bbfb4bb4b7ab5553da64885e9d2", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 9.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0}}, "a2481070e713440aa1e7dde5aef666aa": {"model_name": "LeafletZoomControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletZoomControlView", "options": ["position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title"], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out"}}, "405fe9b9ed844b9a9e386be6f6a8efc9": {"model_name": "LeafletAttributionControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletAttributionControlView", "options": ["position", "prefix"], "position": "bottomright", "prefix": "ipyleaflet"}}}, "version_major": 2, "version_minor": 0} +{"state": {"08295e6d055e48e5805ba2d66b788f56": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "Raster file served by localtileserver.", "base": false, "bottom": true, "bounds": [[37.452199, -122.718792], [38.052231, -122.11876]], "detect_retina": false, "loading": false, "max_native_zoom": 30, "max_zoom": 30, "min_native_zoom": null, "min_zoom": 0, "name": "", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": true, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tileserver.banesullivan.com//api/tiles/{z}/{x}/{y}.png?&filename=%2Fvsicurl%3Furl%3Dhttps%253A%252F%252Fdata.kitware.com%252Fapi%252Fv1%252Ffile%252F626854a14acac99f42126a74%252Fdownload%26use_head%3Dno%26list_dir%3Dno", "visible": true, "zoom_offset": 0}}, "6027d1cdd72d426d8c71eca97ac3cfe5": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "f6f590ed3d7b4665b753d370470e6a95": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move"}}, "1906b69ff57949009a56b6154288d686": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0}}, "aa258e13dad84d758cd02c3e3d547102": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cd8f06ac91fa4f898ac5ac45f48e1162": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "79b4ae19b09d4034aaed521c06b9c56f": {"model_name": "LeafletMapModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [37.752215, -122.418776], "close_popup_on_click": true, "controls": ["IPY_MODEL_7eb1907675ed49689d0da01a2d8b362f", "IPY_MODEL_31fb17b071f64de5884f8e7463e68701"], "crs": {"name": "EPSG3857", "custom": false}, "default_style": "IPY_MODEL_6027d1cdd72d426d8c71eca97ac3cfe5", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_f6f590ed3d7b4665b753d370470e6a95", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": ["IPY_MODEL_1906b69ff57949009a56b6154288d686", "IPY_MODEL_08295e6d055e48e5805ba2d66b788f56"], "layout": "IPY_MODEL_aa258e13dad84d758cd02c3e3d547102", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-05-16", "north": 0.0, "options": ["bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap"], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_cd8f06ac91fa4f898ac5ac45f48e1162", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 9.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0}}, "7eb1907675ed49689d0da01a2d8b362f": {"model_name": "LeafletZoomControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletZoomControlView", "options": ["position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title"], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out"}}, "31fb17b071f64de5884f8e7463e68701": {"model_name": "LeafletAttributionControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletAttributionControlView", "options": ["position", "prefix"], "position": "bottomright", "prefix": "ipyleaflet"}}}, "version_major": 2, "version_minor": 0} diff --git a/installation/docker.html b/installation/docker.html index a5936e60..dc8c9eea 100644 --- a/installation/docker.html +++ b/installation/docker.html @@ -42,7 +42,7 @@ - + diff --git a/installation/index.html b/installation/index.html index 4b6eb83a..ea4810aa 100644 --- a/installation/index.html +++ b/installation/index.html @@ -42,7 +42,7 @@ - + diff --git a/installation/remote-jupyter.html b/installation/remote-jupyter.html index 6313e2ae..d9920ff0 100644 --- a/installation/remote-jupyter.html +++ b/installation/remote-jupyter.html @@ -42,7 +42,7 @@ - + diff --git a/search.html b/search.html index 0e308346..50a566cb 100644 --- a/search.html +++ b/search.html @@ -40,7 +40,7 @@ - + diff --git a/searchindex.js b/searchindex.js index d2519f40..ae565b3c 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["api/index", "index", "installation/docker", "installation/index", "installation/remote-jupyter", "user-guide/bokeh", "user-guide/compare", "user-guide/example-data", "user-guide/hillshade", "user-guide/in-memory", "user-guide/index", "user-guide/ipyleaflet_deep_zoom", "user-guide/rasterio", "user-guide/remote-cog", "user-guide/rgb", "user-guide/validate_cog", "user-guide/web-app"], "filenames": ["api/index.rst", "index.rst", "installation/docker.rst", "installation/index.rst", "installation/remote-jupyter.rst", "user-guide/bokeh.rst", "user-guide/compare.rst", "user-guide/example-data.rst", "user-guide/hillshade.rst", "user-guide/in-memory.rst", "user-guide/index.rst", "user-guide/ipyleaflet_deep_zoom.rst", "user-guide/rasterio.rst", "user-guide/remote-cog.rst", "user-guide/rgb.rst", "user-guide/validate_cog.rst", "user-guide/web-app.rst"], "titles": ["\ud83d\udcd6 API", "\ud83c\udf10 localtileserver", "\ud83d\udc33 Docker", "\u2b07\ufe0f Installation", "\ud83d\udce1 Remote Jupyter", "\ud83c\udfa8 Plotting with Bokeh", "\ud83e\udd53 Two Rasters at Once", "\ud83d\uddfa\ufe0f Example Datasets", "\u26f0\ufe0f DEM Hillshade", "\ud83e\udde0 In-Memory Rasters", "\ud83d\ude80 User Guide", "\ud83d\udd2c Deep Zoom with ipyleaflet", "\ud83e\udde9 Rasterio", "\u2601\ufe0f Remote Cloud Optimized GeoTiffs (COGs)", "\ud83e\uddee Controlling the RGB Bands", "\u2705 Validate COG", "\ud83d\udda5\ufe0f Local Web Application"], "terms": {"localtileserv": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "get_or_create_tile_cli": 0, "sourc": [0, 7, 11, 12, 15], "path": [0, 1, 2, 10, 12, 13, 15, 16], "str": [0, 9], "tilecli": [0, 1, 5, 6, 8, 9, 10, 12, 13, 14, 15], "datasetreaderbas": 0, "port": [0, 2, 4], "int": 0, "default": 0, "debug": 0, "bool": 0, "fals": [0, 15], "A": [0, 1, 7, 8], "safe": 0, "get": [0, 1, 3, 10], "from": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "disk": 0, "todo": 0, "There": [0, 1, 2], "should": [0, 1], "eventu": 0, "check": [0, 2, 4], "see": [0, 1, 8, 10, 11], "instanc": 0, "exist": [0, 10, 13, 15], "given": 0, "filenam": [0, 2], "For": [0, 2, 4, 11, 13], "now": 0, "i": [0, 1, 2, 3, 4, 7, 8, 10, 13, 14], "realli": 0, "big": 0, "deal": 0, "becaus": [0, 13], "all": [0, 12], "": [0, 1, 2, 3, 6, 13, 16], "share": [0, 6, 10], "singl": [0, 10], "server": [0, 1, 4, 6, 7, 10, 13], "class": [0, 1, 10], "tilerinterfac": 0, "base": [0, 1], "method": [0, 3, 10, 15], "configur": [0, 2], "thi": [0, 1, 2, 3, 4, 8, 10, 12, 13, 15], "interfac": [0, 13], "directli": 0, "rasterio": [0, 8, 9], "rio": [0, 1, 15], "tiler": [0, 1], "paramet": [0, 2, 6], "pathlib": 0, "reader": 0, "The": [0, 1, 10, 14], "dataset": [0, 8, 9, 12, 16], "us": [0, 1, 2, 4, 7, 8, 10, 12, 13, 14, 15, 16], "tile": [0, 1, 2, 4, 6, 7, 8, 11, 12, 13, 14], "properti": 0, "band_nam": 0, "bound": [0, 5], "project": [0, 3, 5], "epsg": [0, 5], "4326": 0, "return_polygon": 0, "return_wkt": 0, "center": [0, 1, 6, 7, 8, 10, 11, 12, 13, 14], "return_point": 0, "form": 0, "y": [0, 1, 10], "lat": 0, "x": [0, 1, 10], "lon": 0, "sr": 0, "proj4": 0, "string": 0, "return": [0, 15], "coordin": 0, "option": [0, 1, 6, 10, 11, 13, 14], "If": [0, 3, 4, 10, 13, 15], "true": [0, 5, 15], "shape": [0, 8, 9], "point": 0, "object": 0, "well": [0, 13], "known": 0, "text": 0, "wkt": 0, "default_zoom": [0, 1, 6, 8, 12, 13, 14], "info": 0, "max_zoom": [0, 11], "metadata": 0, "min_zoom": 0, "float": 0, "kwarg": [0, 11], "thumbnail": [0, 9, 10, 14], "index": [0, 7, 10, 14], "list": [0, 14], "none": 0, "colormap": [0, 6, 7, 8, 9, 10], "vmin": [0, 6, 7, 10], "vmax": [0, 6, 7, 10], "nodata": 0, "output_path": 0, "encod": 0, "png": [0, 1, 9, 10, 14], "max_siz": 0, "512": 0, "gener": [0, 8, 10], "preview": [0, 10], "band": 0, "raster": [0, 1, 2, 3, 8, 10, 11, 12, 13, 14, 15, 16], "show": [0, 5], "rgb": 0, "avail": [0, 7, 12, 16], "start": [0, 1, 3], "1": [0, 5, 7, 9, 10], "can": [0, 1, 2, 3, 4, 7, 8, 10, 12, 13, 15, 16], "also": [0, 2, 8, 10, 15, 16], "integ": 0, "set": [0, 4, 11, 14], "which": [0, 1, 4, 7, 10, 11, 14], "3": [0, 4, 5, 8, 10, 14], "name": [0, 10], "matplotlib": [0, 10], "when": [0, 12], "plot": 0, "greyscal": 0, "minimum": 0, "valu": [0, 9], "maxim": 0, "interpret": 0, "valid": 0, "data": [0, 1, 2, 7, 8, 9, 10, 12, 13, 15], "z": [0, 10], "zoom": [0, 1, 6, 7, 8, 10, 12, 13, 14], "level": 0, "host": [0, 4], "127": 0, "0": [0, 5, 6, 7, 8, 9, 10], "client_port": 0, "client_host": 0, "client_prefix": 0, "cors_al": 0, "serv": [0, 1, 2, 4, 10], "your": [0, 1, 2, 3, 4, 10, 12, 13], "machin": 0, "an": [0, 1, 4, 8, 10, 14, 15], "run": [0, 2, 4], "mode": [0, 12], "browser": [0, 2, 4, 10], "fetch": 0, "docker": [0, 4], "perform": [0, 11], "forward": [0, 2, 4], "access": [0, 2, 4], "get_leaflet_tile_lay": [0, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14], "attribut": 0, "ipyleaflet": [0, 1, 3, 4, 6, 7, 8, 9, 12, 13, 14], "tilelay": [0, 1, 10, 11], "union": 0, "io": [0, 2, 5], "layer": [0, 1, 6, 7, 8, 11, 12, 13, 14], "alreadi": 0, "open": [0, 8, 9, 10, 12], "creat": [0, 1, 6, 7, 9, 10, 11, 13, 14], "tileserv": [0, 16], "ignor": 0, "file": [0, 1, 2, 6, 10, 13, 14], "messag": 0, "about": 0, "being": 0, "local": [0, 1, 2, 3, 7, 10, 13, 15], "addit": 0, "keyword": [0, 11], "argument": [0, 2, 11, 14], "ar": [0, 4, 7, 8, 16], "pass": [0, 2, 11, 13, 14], "type": 0, "get_folium_tile_lay": [0, 10, 13], "attr": 0, "folium": [0, 1, 4, 13, 14], "requir": [0, 4, 15], "custom": 0, "have": [0, 1, 10], "save_new_rast": [0, 8], "src": [0, 12], "out_path": 0, "save": [0, 8], "new": [0, 8], "numpi": [0, 8], "arrai": [0, 8, 9], "anoth": [0, 7], "datasetread": [0, 12], "whose": 0, "spatial": 0, "refer": [0, 10, 12], "copi": 0, "np": 0, "ndarrai": 0, "write": [0, 9], "temporari": 0, "make_vsi": 0, "url": [0, 2, 4, 5, 13, 15], "validate_cog": [0, 15], "strict": 0, "quiet": 0, "polygon_to_geojson": 0, "polygon": 0, "dump": 0, "geojson": 0, "need": [1, 4, 13], "visual": [1, 8, 10, 12], "rather": 1, "larg": [1, 10], "gigabyt": 1, "you": [1, 2, 3, 4, 7, 8, 10, 11, 12, 13, 15, 16], "try": 1, "out": [1, 2, 4], "below": [1, 13], "import": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "exampl": [1, 2, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16], "map": [1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16], "client": [1, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15], "geo": [1, 10, 12], "tif": [1, 2, 6, 9, 10, 12, 13, 15, 16], "get_san_francisco": [1, 5, 10, 15], "t": [1, 7, 10, 12, 13], "add": [1, 2, 7, 8, 10, 11, 12, 13], "displai": [1, 6, 10], "m": [1, 6, 7, 8, 10, 11, 12, 13, 14, 16], "37": [1, 10, 13], "752215": [1, 10], "122": [1, 10, 13], "418776": [1, 10], "control": [1, 6, 8, 10, 11, 13], "zoomcontrol": [1, 6, 10, 11, 13, 14], "posit": [1, 6, 10, 11, 13, 14], "zoom_in_text": [1, 6, 10, 11, 13, 14], "zoom_in_titl": [1, 6, 10, 11, 14], "python": [1, 16], "packag": [1, 2], "slippi": 1, "standard": 1, "e": 1, "jupyt": [1, 3, 10, 11, 13], "launch": [1, 10, 16], "demo": 1, "mybind": [1, 4], "built": [1, 2], "geospati": [1, 10], "imag": [1, 2, 9, 10, 14, 15], "view": [1, 3, 12, 13, 14, 16], "remot": [1, 10], "cesiumj": 1, "web": [1, 10], "applic": [1, 3], "pre": [1, 2, 13], "cloud": [1, 10, 15], "optim": [1, 10, 15], "geotiff": [1, 10, 15], "background": [1, 10], "thread": [1, 10], "imageri": [1, 2, 7, 16], "viewer": [1, 16], "user": [1, 2, 4], "guid": 1, "effici": [1, 13], "deliv": 1, "vari": 1, "resolut": [1, 7], "help": [1, 8], "cog": 1, "includ": [1, 2, 4, 7, 10, 15, 16], "standalon": 1, "leverag": 1, "leafmap": 1, "geemap": 1, "streamlit": 1, "remotetileserv": 1, "core": 1, "flask": [1, 3], "spin": 1, "up": 1, "product": 1, "readi": 1, "kaustav": 1, "mukherje": 1, "blog": 1, "post": 1, "demonstr": 1, "how": 1, "spacenet": 1, "bokeh": 1, "adam": 1, "van": 1, "etten": 1, "repositori": 2, "servic": [2, 4], "To": [2, 4, 14], "pull": 2, "mount": 2, "volum": 2, "where": [2, 8, 14, 16], "store": 2, "8000": 2, "particularli": [2, 7], "do": [2, 4, 9, 13], "want": 2, "instal": [2, 4, 10], "depend": [2, 3], "system": [2, 10], "dedic": 2, "isol": 2, "ghcr": 2, "banesullivan": 2, "latest": 2, "p": [2, 5], "Then": 2, "visit": 2, "http": [2, 3, 6, 9, 13, 15], "localhost": 2, "ani": [2, 10, 16], "s3": [2, 13], "filesystem": [2, 13], "desktop": 2, "v": 2, "bane": 2, "sinc": 2, "under": [2, 10, 12], "contain": [2, 4], "must": [2, 4, 11], "build": 2, "would": [2, 8, 10], "tc_ng_sfbay_us_geo": 2, "github": [2, 13, 15], "registri": 2, "jupyer": 2, "8888": 2, "deploi": 3, "own": 3, "make": [3, 4, 6, 8, 10, 11, 13, 14], "manag": 3, "across": 3, "platform": 3, "quit": [3, 13], "easi": [3, 4], "recommend": [3, 13], "c": 3, "forg": 3, "prefer": 3, "pypi": 3, "org": [3, 9], "usabl": 4, "environ": 4, "jupyterhub": 4, "like": [4, 10], "further": 4, "mai": 4, "other": 4, "through": [4, 13], "arbitrari": 4, "In": [4, 10, 11], "order": [4, 11], "retriev": 4, "widget": [4, 11], "side": 4, "we": [4, 8, 10, 13], "sure": 4, "levarag": 4, "proxi": 4, "expos": 4, "step": 4, "jupyterlab": 4, "pip": 4, "localtileserver_client_prefix": 4, "stop": 4, "here": [4, 7, 10, 13, 14], "most": 4, "case": 4, "continu": 4, "export": 4, "alter": 4, "id": 4, "o": 4, "f": 4, "jupyterhub_service_prefix": 4, "more": [4, 8, 11], "context": 4, "figur": 5, "output_fil": 5, "output_notebook": 5, "model": [5, 7, 8], "wmtstilesourc": 5, "raster_provid": 5, "get_tile_url": 5, "3857": 5, "x_rang": 5, "2": [5, 6, 7, 14], "y_rang": 5, "x_axis_typ": 5, "mercat": 5, "y_axis_typ": 5, "add_til": 5, "cartodbpositron": 5, "load": [5, 7, 10, 11, 12, 13], "bokehj": 5, "scalecontrol": [6, 14], "fullscreencontrol": [6, 14], "splitmapcontrol": [6, 8, 14], "l_client": 6, "www": 6, "dropbox": 6, "com": [6, 13, 15], "ffdmncjaj82hf6f": 6, "l5039035_03520060512_b30": 6, "dl": 6, "r_client": 6, "ysxscp059rtrw0d": 6, "l5039035_03520060512_b70": 6, "dict": 6, "50": 6, "150": 6, "coolwarm": 6, "differ": [6, 10, 13, 14], "l": [6, 13, 14], "r": [6, 14], "left_lay": [6, 8, 14], "right_lay": [6, 8, 14], "add_control": [6, 8, 14], "bottomleft": [6, 14], "36": 6, "0330075": 6, "114": 6, "763961": 6, "few": [7, 10, 11], "one": [7, 10], "ha": 7, "global": [7, 16], "elev": [7, 8, 16], "high": [7, 11], "digit": [7, 8], "dem": [7, 12, 16], "region": [7, 16], "publicli": [7, 12], "get_elev": [7, 10, 12], "500": 7, "5000": [7, 10], "plasma": 7, "opac": [7, 8, 10], "75": 7, "virtual": [7, 13], "earth": 7, "satellit": [7, 16], "get_virtual_earth": 7, "39": 7, "751343612695145": 7, "105": 7, "22181306125279": 7, "18": [7, 11], "3d": 8, "represent": 8, "surfac": 8, "darker": 8, "lighter": 8, "color": 8, "repres": 8, "shadow": 8, "highlight": 8, "expect": 8, "terrain": [8, 9], "often": 8, "underlai": 8, "appear": 8, "dimension": 8, "wa": 8, "adopt": 8, "earthpi": 8, "helper": [8, 15], "get_co_elev": 8, "tdem": 8, "gist_earth": 8, "read": [8, 9, 12], "comput": 8, "function": 8, "hs_arr": 8, "h": 8, "hst": 8, "overlai": 8, "origin": 8, "so": [8, 12], "give": 8, "effect": 8, "5": [8, 14], "gishub": 9, "srtm90": 9, "data_arrai": 9, "some": 9, "process": 9, "1000": 9, "memory_fil": 9, "memoryfil": 9, "raster_dataset": 9, "driver": 9, "gtiff": 9, "height": 9, "width": 9, "count": 9, "dtype": 9, "cr": 9, "transform": 9, "close": 9, "imagebyt": [9, 10, 14], "197112": 9, "wai": 10, "notebook": [10, 13], "commandlin": [10, 16], "With": 10, "liner": 10, "util": [10, 14], "_ipython_display_": 10, "automat": 10, "10": 10, "163": 10, "395": 10, "101836": 10, "And": 10, "448418": 10, "nifti": 10, "tool": 10, "addition": 10, "conjunct": 10, "interact": 10, "first": [10, 13, 14], "65": 10, "zoom_out_t": 10, "similarli": 10, "support": [10, 12, 13, 14], "provid": 10, "almost": 10, "exact": 10, "same": [10, 13, 14], "code": 10, "just": 10, "add_child": [10, 13], "instead": 10, "get_oam2": [10, 11], "locat": [10, 13], "zoom_start": [10, 13], "16": 10, "0x7f4984a184f0": 10, "trust": [10, 13], "accept": 10, "either": 10, "hood": [10, 12], "cane": 10, "palett": 10, "choic": [10, 16], "pleas": [10, 11], "thought": 10, "question": 10, "discuss": 10, "board": 10, "report": 10, "bug": 10, "featur": 10, "request": 10, "issu": 10, "scoobi": 10, "print": 10, "specifi": 11, "max_native_zoom": 11, "appropri": 11, "match": 11, "inform": 11, "925": 11, "re": 11, "30": 11, "zoomabl": 11, "extra": 11, "deeper": 11, "22": 11, "0254555": 11, "63": 11, "049528": 11, "easili": 12, "work": [12, 13], "onli": [12, 13], "actual": 12, "everyth": 12, "keep": 12, "while": 13, "intend": 13, "gdal": 13, "storag": 13, "simpli": 13, "non": 13, "format": 13, "3gib": 13, "veri": 13, "giswq": [13, 15], "raw": [13, 15], "main": [13, 15], "landsat7": [13, 15], "overlain": 13, "0x7f6187dfd5e0": 13, "Or": 13, "7736215": 13, "34097449999999": 13, "note": 13, "complex": 13, "api": 13, "current": 13, "handl": 13, "vsis3": 13, "vsicurl": 13, "vf": 13, "mechan": 13, "vsi": 13, "channel": 14, "length": 14, "three": 14, "indic": 14, "two": 14, "get_landsat": 14, "7": 14, "4": 14, "487636": 14, "493829": 14, "40": 14, "805785": 14, "112": 14, "708415": 14, "whether": 15, "meet": 15, "cogeo": 15, "script": 15, "invalid": 15, "extract": 16, "interest": 16, "blue_marbl": 16, "blue": 16, "marbl": 16, "virtual_earth": 16, "microsoft": 16, "aerial": 16, "arcgi": 16, "world": 16, "street": 16, "bahama": 16, "sampl": 16, "over": 16}, "objects": {"localtileserver": [[0, 0, 1, "", "TileClient"], [0, 3, 1, "", "get_folium_tile_layer"], [0, 3, 1, "", "get_leaflet_tile_layer"], [0, 3, 1, "", "get_or_create_tile_client"], [0, 3, 1, "", "make_vsi"]], "localtileserver.client": [[0, 0, 1, "", "TilerInterface"]], "localtileserver.client.TilerInterface": [[0, 1, 1, "", "band_names"], [0, 2, 1, "", "bounds"], [0, 2, 1, "", "center"], [0, 1, 1, "", "dataset"], [0, 1, 1, "", "default_zoom"], [0, 1, 1, "", "filename"], [0, 1, 1, "", "info"], [0, 1, 1, "", "max_zoom"], [0, 1, 1, "", "metadata"], [0, 1, 1, "", "min_zoom"], [0, 2, 1, "", "point"], [0, 1, 1, "", "reader"], [0, 2, 1, "", "thumbnail"], [0, 2, 1, "", "tile"]], "localtileserver.helpers": [[0, 3, 1, "", "polygon_to_geojson"], [0, 3, 1, "", "save_new_raster"]], "localtileserver.validate": [[0, 3, 1, "", "validate_cog"]]}, "objtypes": {"0": "py:class", "1": "py:property", "2": "py:method", "3": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "property", "Python property"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"]}, "titleterms": {"api": 0, "python": 0, "client": 0, "jupyt": [0, 2, 4], "widget": 0, "helper": 0, "other": 0, "localtileserv": 1, "highlight": 1, "\u2139": 1, "overview": 1, "commun": 1, "usag": [1, 10], "docker": 2, "instal": 3, "conda": 3, "pip": 3, "remot": [4, 13], "plot": 5, "bokeh": 5, "two": 6, "raster": [6, 9], "onc": 6, "exampl": 7, "dataset": 7, "dem": 8, "hillshad": 8, "In": 9, "memori": 9, "user": 10, "guid": 10, "ipyleaflet": [10, 11], "tile": 10, "layer": 10, "folium": 10, "note": 10, "feedback": 10, "deep": 11, "zoom": 11, "rasterio": 12, "cloud": 13, "optim": 13, "geotiff": 13, "cog": [13, 15], "control": 14, "rgb": 14, "band": 14, "valid": 15, "local": 16, "web": 16, "applic": 16}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 60}, "alltitles": {"\ud83d\udcd6 API": [[0, "api"]], "Python Client": [[0, "python-client"]], "Jupyter Widget Helpers": [[0, "jupyter-widget-helpers"]], "Other Helpers": [[0, "other-helpers"]], "\ud83c\udf10 localtileserver": [[1, "localtileserver"]], "\ud83c\udf1f Highlights": [[1, "highlights"]], "\u2139\ufe0f Overview": [[1, "i-overview"]], "\ud83e\udea2 Community Usage": [[1, "community-usage"]], "\ud83d\udc33 Docker": [[2, "docker"]], "\ud83d\udcd3 Jupyter in Docker": [[2, "jupyter-in-docker"]], "\u2b07\ufe0f Installation": [[3, "installation"]], "\ud83d\udc0d Installing with conda": [[3, "installing-with-conda"]], "\ud83c\udfa1 Installing with pip": [[3, "installing-with-pip"]], "\ud83d\udce1 Remote Jupyter": [[4, "remote-jupyter"]], "\ud83c\udfa8 Plotting with Bokeh": [[5, "plotting-with-bokeh"]], "\ud83e\udd53 Two Rasters at Once": [[6, "two-rasters-at-once"]], "\ud83d\uddfa\ufe0f Example Datasets": [[7, "example-datasets"]], "\u26f0\ufe0f DEM Hillshade": [[8, "dem-hillshade"]], "\ud83e\udde0 In-Memory Rasters": [[9, "in-memory-rasters"]], "\ud83d\ude80 User Guide": [[10, "user-guide"]], "\ud83c\udf43 ipyleaflet Tile Layers": [[10, "ipyleaflet-tile-layers"]], "\ud83c\udf33 folium Tile Layers": [[10, "folium-tile-layers"]], "\ud83d\uddd2\ufe0f Usage Notes": [[10, "usage-notes"]], "\ud83d\udcad Feedback": [[10, "feedback"]], "\ud83d\udd2c Deep Zoom with ipyleaflet": [[11, "deep-zoom-with-ipyleaflet"]], "\ud83e\udde9 Rasterio": [[12, "rasterio"]], "\u2601\ufe0f Remote Cloud Optimized GeoTiffs (COGs)": [[13, "remote-cloud-optimized-geotiffs-cogs"]], "\ud83e\uddee Controlling the RGB Bands": [[14, "controlling-the-rgb-bands"]], "\u2705 Validate COG": [[15, "validate-cog"]], "\ud83d\udda5\ufe0f Local Web Application": [[16, "local-web-application"]]}, "indexentries": {"tileclient (class in localtileserver)": [[0, "localtileserver.TileClient"]], "tilerinterface (class in localtileserver.client)": [[0, "localtileserver.client.TilerInterface"]], "band_names (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.band_names"]], "bounds() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.bounds"]], "center() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.center"]], "dataset (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.dataset"]], "default_zoom (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.default_zoom"]], "filename (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.filename"]], "get_folium_tile_layer() (in module localtileserver)": [[0, "localtileserver.get_folium_tile_layer"]], "get_leaflet_tile_layer() (in module localtileserver)": [[0, "localtileserver.get_leaflet_tile_layer"]], "get_or_create_tile_client() (in module localtileserver)": [[0, "localtileserver.get_or_create_tile_client"]], "info (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.info"]], "make_vsi() (in module localtileserver)": [[0, "localtileserver.make_vsi"]], "max_zoom (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.max_zoom"]], "metadata (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.metadata"]], "min_zoom (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.min_zoom"]], "point() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.point"]], "polygon_to_geojson() (in module localtileserver.helpers)": [[0, "localtileserver.helpers.polygon_to_geojson"]], "reader (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.reader"]], "save_new_raster() (in module localtileserver.helpers)": [[0, "localtileserver.helpers.save_new_raster"]], "thumbnail() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.thumbnail"]], "tile() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.tile"]], "validate_cog() (in module localtileserver.validate)": [[0, "localtileserver.validate.validate_cog"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["api/index", "index", "installation/docker", "installation/index", "installation/remote-jupyter", "user-guide/bokeh", "user-guide/compare", "user-guide/example-data", "user-guide/hillshade", "user-guide/in-memory", "user-guide/index", "user-guide/ipyleaflet_deep_zoom", "user-guide/rasterio", "user-guide/remote-cog", "user-guide/rgb", "user-guide/validate_cog", "user-guide/web-app"], "filenames": ["api/index.rst", "index.rst", "installation/docker.rst", "installation/index.rst", "installation/remote-jupyter.rst", "user-guide/bokeh.rst", "user-guide/compare.rst", "user-guide/example-data.rst", "user-guide/hillshade.rst", "user-guide/in-memory.rst", "user-guide/index.rst", "user-guide/ipyleaflet_deep_zoom.rst", "user-guide/rasterio.rst", "user-guide/remote-cog.rst", "user-guide/rgb.rst", "user-guide/validate_cog.rst", "user-guide/web-app.rst"], "titles": ["\ud83d\udcd6 API", "\ud83c\udf10 localtileserver", "\ud83d\udc33 Docker", "\u2b07\ufe0f Installation", "\ud83d\udce1 Remote Jupyter", "\ud83c\udfa8 Plotting with Bokeh", "\ud83e\udd53 Two Rasters at Once", "\ud83d\uddfa\ufe0f Example Datasets", "\u26f0\ufe0f DEM Hillshade", "\ud83e\udde0 In-Memory Rasters", "\ud83d\ude80 User Guide", "\ud83d\udd2c Deep Zoom with ipyleaflet", "\ud83e\udde9 Rasterio", "\u2601\ufe0f Remote Cloud Optimized GeoTiffs (COGs)", "\ud83e\uddee Controlling the RGB Bands", "\u2705 Validate COG", "\ud83d\udda5\ufe0f Local Web Application"], "terms": {"localtileserv": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "get_or_create_tile_cli": 0, "sourc": [0, 7, 11, 12, 15], "path": [0, 1, 2, 10, 12, 13, 15, 16], "str": [0, 9], "tilecli": [0, 1, 5, 6, 8, 9, 10, 12, 13, 14, 15], "datasetreaderbas": 0, "port": [0, 2, 4], "int": 0, "default": 0, "debug": 0, "bool": 0, "fals": [0, 15], "A": [0, 1, 7, 8], "safe": 0, "get": [0, 1, 3, 10], "from": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "disk": 0, "todo": 0, "There": [0, 1, 2], "should": [0, 1], "eventu": 0, "check": [0, 2, 4], "see": [0, 1, 8, 10, 11], "instanc": 0, "exist": [0, 10, 13, 15], "given": 0, "filenam": [0, 2], "For": [0, 2, 4, 11, 13], "now": 0, "i": [0, 1, 2, 3, 4, 7, 8, 10, 13, 14], "realli": 0, "big": 0, "deal": 0, "becaus": [0, 13], "all": [0, 12], "": [0, 1, 2, 3, 6, 13, 16], "share": [0, 6, 10], "singl": [0, 10], "server": [0, 1, 4, 6, 7, 10, 13], "class": [0, 1, 10], "tilerinterfac": 0, "base": [0, 1], "method": [0, 3, 10, 15], "configur": [0, 2], "thi": [0, 1, 2, 3, 4, 8, 10, 12, 13, 15], "interfac": [0, 13], "directli": 0, "rasterio": [0, 8, 9], "rio": [0, 1, 15], "tiler": [0, 1], "paramet": [0, 2, 6], "pathlib": 0, "reader": 0, "The": [0, 1, 10, 14], "dataset": [0, 8, 9, 12, 16], "us": [0, 1, 2, 4, 7, 8, 10, 12, 13, 14, 15, 16], "tile": [0, 1, 2, 4, 6, 7, 8, 11, 12, 13, 14], "properti": 0, "band_nam": 0, "bound": [0, 5], "project": [0, 3, 5], "epsg": [0, 5], "4326": 0, "return_polygon": 0, "return_wkt": 0, "center": [0, 1, 6, 7, 10, 11, 12, 13, 14], "return_point": 0, "form": 0, "y": [0, 1, 10], "lat": 0, "x": [0, 1, 10], "lon": 0, "sr": 0, "proj4": 0, "string": 0, "return": [0, 15], "coordin": 0, "option": [0, 1, 6, 10, 11, 13, 14], "If": [0, 3, 4, 10, 13, 15], "true": [0, 5, 15], "shape": [0, 8, 9], "point": 0, "object": 0, "well": [0, 13], "known": 0, "text": 0, "wkt": 0, "default_zoom": [0, 1, 6, 12, 13, 14], "info": 0, "max_zoom": [0, 11], "metadata": 0, "min_zoom": 0, "float": 0, "kwarg": [0, 11], "thumbnail": [0, 9, 10, 14], "index": [0, 7, 10, 14], "list": [0, 14], "none": 0, "colormap": [0, 6, 7, 8, 9, 10], "vmin": [0, 6, 7, 10], "vmax": [0, 6, 7, 10], "nodata": [0, 8], "output_path": 0, "encod": 0, "png": [0, 1, 9, 10, 14], "max_siz": 0, "512": 0, "gener": [0, 8, 10], "preview": [0, 10], "band": 0, "raster": [0, 1, 2, 3, 8, 10, 11, 12, 13, 14, 15, 16], "show": [0, 5], "rgb": 0, "avail": [0, 7, 12, 16], "start": [0, 1, 3], "1": [0, 5, 7, 9, 10], "can": [0, 1, 2, 3, 4, 7, 8, 10, 12, 13, 15, 16], "also": [0, 2, 8, 10, 15, 16], "integ": 0, "set": [0, 4, 11, 14], "which": [0, 1, 4, 7, 10, 11, 14], "3": [0, 4, 5, 8, 10, 14], "name": [0, 10], "matplotlib": [0, 10], "when": [0, 12], "plot": 0, "greyscal": 0, "minimum": 0, "valu": [0, 9], "maxim": 0, "interpret": 0, "valid": 0, "data": [0, 1, 2, 7, 8, 9, 10, 12, 13, 15], "z": [0, 10], "zoom": [0, 1, 6, 7, 10, 12, 13, 14], "level": 0, "host": [0, 4], "127": 0, "0": [0, 5, 6, 7, 8, 9, 10], "client_port": 0, "client_host": 0, "client_prefix": 0, "cors_al": 0, "serv": [0, 1, 2, 4, 10], "your": [0, 1, 2, 3, 4, 10, 12, 13], "machin": 0, "an": [0, 1, 4, 8, 10, 14, 15], "run": [0, 2, 4], "mode": [0, 12], "browser": [0, 2, 4, 10], "fetch": 0, "docker": [0, 4], "perform": [0, 11], "forward": [0, 2, 4], "access": [0, 2, 4], "get_leaflet_tile_lay": [0, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14], "attribut": 0, "ipyleaflet": [0, 1, 3, 4, 6, 7, 8, 9, 12, 13, 14], "tilelay": [0, 1, 10, 11], "union": 0, "io": [0, 2, 5], "layer": [0, 1, 6, 7, 8, 11, 12, 13, 14], "alreadi": 0, "open": [0, 8, 9, 10, 12], "creat": [0, 1, 6, 7, 9, 10, 11, 13, 14], "tileserv": [0, 16], "ignor": 0, "file": [0, 1, 2, 6, 10, 13, 14], "messag": 0, "about": 0, "being": 0, "local": [0, 1, 2, 3, 7, 10, 13, 15], "addit": 0, "keyword": [0, 11], "argument": [0, 2, 11, 14], "ar": [0, 4, 7, 8, 16], "pass": [0, 2, 11, 13, 14], "type": 0, "get_folium_tile_lay": [0, 10, 13], "attr": 0, "folium": [0, 1, 4, 13, 14], "requir": [0, 4, 15], "custom": 0, "have": [0, 1, 10], "save_new_rast": [0, 8], "src": [0, 12], "out_path": 0, "save": [0, 8], "new": [0, 8], "numpi": [0, 8], "arrai": [0, 8, 9], "anoth": [0, 7], "datasetread": [0, 12], "whose": 0, "spatial": 0, "refer": [0, 10, 12], "copi": 0, "np": 0, "ndarrai": 0, "write": [0, 9], "temporari": 0, "make_vsi": 0, "url": [0, 2, 4, 5, 13, 15], "validate_cog": [0, 15], "strict": 0, "quiet": 0, "polygon_to_geojson": 0, "polygon": 0, "dump": 0, "geojson": 0, "need": [1, 4, 13], "visual": [1, 8, 10, 12], "rather": 1, "larg": [1, 10], "gigabyt": 1, "you": [1, 2, 3, 4, 7, 8, 10, 11, 12, 13, 15, 16], "try": 1, "out": [1, 2, 4], "below": [1, 13], "import": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "exampl": [1, 2, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16], "map": [1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16], "client": [1, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15], "geo": [1, 10, 12], "tif": [1, 2, 6, 9, 10, 12, 13, 15, 16], "get_san_francisco": [1, 5, 10, 15], "t": [1, 7, 10, 12, 13], "add": [1, 2, 7, 8, 10, 11, 12, 13], "displai": [1, 6, 10], "m": [1, 6, 7, 8, 10, 11, 12, 13, 14, 16], "37": [1, 10, 13], "752215": [1, 10], "122": [1, 10, 13], "418776": [1, 10], "control": [1, 6, 8, 10, 11, 13], "zoomcontrol": [1, 6, 10, 11, 13, 14], "posit": [1, 6, 10, 11, 13, 14], "zoom_in_text": [1, 6, 10, 11, 13, 14], "zoom_in_titl": [1, 6, 10, 11, 14], "python": [1, 16], "packag": [1, 2], "slippi": 1, "standard": 1, "e": 1, "jupyt": [1, 3, 10, 11, 13], "launch": [1, 10, 16], "demo": 1, "mybind": [1, 4], "built": [1, 2], "geospati": [1, 10], "imag": [1, 2, 9, 10, 14, 15], "view": [1, 3, 12, 13, 14, 16], "remot": [1, 10], "cesiumj": 1, "web": [1, 10], "applic": [1, 3], "pre": [1, 2, 13], "cloud": [1, 10, 15], "optim": [1, 10, 15], "geotiff": [1, 10, 15], "background": [1, 10], "thread": [1, 10], "imageri": [1, 2, 7, 16], "viewer": [1, 16], "user": [1, 2, 4], "guid": 1, "effici": [1, 13], "deliv": 1, "vari": 1, "resolut": [1, 7], "help": [1, 8], "cog": 1, "includ": [1, 2, 4, 7, 10, 15, 16], "standalon": 1, "leverag": 1, "leafmap": 1, "geemap": 1, "streamlit": 1, "remotetileserv": 1, "core": 1, "flask": [1, 3], "spin": 1, "up": 1, "product": 1, "readi": 1, "kaustav": 1, "mukherje": 1, "blog": 1, "post": 1, "demonstr": 1, "how": 1, "spacenet": 1, "bokeh": 1, "adam": 1, "van": 1, "etten": 1, "repositori": 2, "servic": [2, 4], "To": [2, 4, 14], "pull": 2, "mount": 2, "volum": 2, "where": [2, 8, 14, 16], "store": 2, "8000": 2, "particularli": [2, 7], "do": [2, 4, 9, 13], "want": 2, "instal": [2, 4, 10], "depend": [2, 3], "system": [2, 10], "dedic": 2, "isol": 2, "ghcr": 2, "banesullivan": 2, "latest": 2, "p": [2, 5], "Then": 2, "visit": 2, "http": [2, 3, 6, 9, 13, 15], "localhost": 2, "ani": [2, 10, 16], "s3": [2, 13], "filesystem": [2, 13], "desktop": 2, "v": 2, "bane": 2, "sinc": 2, "under": [2, 10, 12], "contain": [2, 4], "must": [2, 4, 11], "build": 2, "would": [2, 8, 10], "tc_ng_sfbay_us_geo": 2, "github": [2, 13, 15], "registri": 2, "jupyer": 2, "8888": 2, "deploi": 3, "own": 3, "make": [3, 4, 6, 8, 10, 11, 13, 14], "manag": 3, "across": 3, "platform": 3, "quit": [3, 13], "easi": [3, 4], "recommend": [3, 13], "c": 3, "forg": 3, "prefer": 3, "pypi": 3, "org": [3, 9], "usabl": 4, "environ": 4, "jupyterhub": 4, "like": [4, 10], "further": 4, "mai": 4, "other": 4, "through": [4, 13], "arbitrari": 4, "In": [4, 10, 11], "order": [4, 11], "retriev": 4, "widget": [4, 11], "side": 4, "we": [4, 8, 10, 13], "sure": 4, "levarag": 4, "proxi": 4, "expos": 4, "step": 4, "jupyterlab": 4, "pip": 4, "localtileserver_client_prefix": 4, "stop": 4, "here": [4, 7, 10, 13, 14], "most": 4, "case": 4, "continu": 4, "export": 4, "alter": 4, "id": 4, "o": 4, "f": 4, "jupyterhub_service_prefix": 4, "more": [4, 8, 11], "context": 4, "figur": 5, "output_fil": 5, "output_notebook": 5, "model": [5, 7, 8], "wmtstilesourc": 5, "raster_provid": 5, "get_tile_url": 5, "3857": 5, "x_rang": 5, "2": [5, 6, 7, 14], "y_rang": 5, "x_axis_typ": 5, "mercat": 5, "y_axis_typ": 5, "add_til": 5, "cartodbpositron": 5, "load": [5, 7, 10, 11, 12, 13], "bokehj": 5, "scalecontrol": [6, 14], "fullscreencontrol": [6, 14], "splitmapcontrol": [6, 8, 14], "l_client": 6, "www": 6, "dropbox": 6, "com": [6, 13, 15], "ffdmncjaj82hf6f": 6, "l5039035_03520060512_b30": 6, "dl": 6, "r_client": 6, "ysxscp059rtrw0d": 6, "l5039035_03520060512_b70": 6, "dict": 6, "50": 6, "150": 6, "coolwarm": 6, "differ": [6, 10, 13, 14], "l": [6, 13, 14], "r": [6, 14], "left_lay": [6, 8, 14], "right_lay": [6, 8, 14], "add_control": [6, 8, 14], "bottomleft": [6, 14], "36": 6, "0330075": 6, "114": 6, "763961": 6, "few": [7, 10, 11], "one": [7, 10], "ha": 7, "global": [7, 16], "elev": [7, 8, 16], "high": [7, 11], "digit": [7, 8], "dem": [7, 12, 16], "region": [7, 16], "publicli": [7, 12], "get_elev": [7, 10, 12], "500": 7, "5000": [7, 10], "plasma": 7, "opac": [7, 8, 10], "75": 7, "virtual": [7, 13], "earth": 7, "satellit": [7, 16], "get_virtual_earth": 7, "39": 7, "751343612695145": 7, "105": 7, "22181306125279": 7, "18": [7, 11], "3d": 8, "represent": 8, "surfac": 8, "darker": 8, "lighter": 8, "color": 8, "repres": 8, "shadow": 8, "highlight": 8, "expect": 8, "terrain": [8, 9], "often": 8, "underlai": 8, "appear": 8, "dimension": 8, "wa": 8, "adopt": 8, "earthpi": 8, "helper": [8, 15], "get_co_elev": 8, "tdem": 8, "gist_earth": 8, "get_leaflet_map": 8, "read": [8, 9, 12], "comput": 8, "function": 8, "hs_arr": 8, "h": 8, "hst": 8, "overlai": 8, "origin": 8, "so": [8, 12], "give": 8, "effect": 8, "5": [8, 14], "gishub": 9, "srtm90": 9, "data_arrai": 9, "some": 9, "process": 9, "1000": 9, "memory_fil": 9, "memoryfil": 9, "raster_dataset": 9, "driver": 9, "gtiff": 9, "height": 9, "width": 9, "count": 9, "dtype": 9, "cr": 9, "transform": 9, "close": 9, "imagebyt": [9, 10, 14], "197112": 9, "wai": 10, "notebook": [10, 13], "commandlin": [10, 16], "With": 10, "liner": 10, "util": [10, 14], "_ipython_display_": 10, "automat": 10, "10": 10, "163": 10, "395": 10, "101836": 10, "And": 10, "448418": 10, "nifti": 10, "tool": 10, "addition": 10, "conjunct": 10, "interact": 10, "first": [10, 13, 14], "65": 10, "zoom_out_t": 10, "similarli": 10, "support": [10, 12, 13, 14], "provid": 10, "almost": 10, "exact": 10, "same": [10, 13, 14], "code": 10, "just": 10, "add_child": [10, 13], "instead": 10, "get_oam2": [10, 11], "locat": [10, 13], "zoom_start": [10, 13], "16": 10, "0x7fb84c124ca0": 10, "trust": [10, 13], "accept": 10, "either": 10, "hood": [10, 12], "cane": 10, "palett": 10, "choic": [10, 16], "pleas": [10, 11], "thought": 10, "question": 10, "discuss": 10, "board": 10, "report": 10, "bug": 10, "featur": 10, "request": 10, "issu": 10, "scoobi": 10, "print": 10, "specifi": 11, "max_native_zoom": 11, "appropri": 11, "match": 11, "inform": 11, "925": 11, "re": 11, "30": 11, "zoomabl": 11, "extra": 11, "deeper": 11, "22": 11, "0254555": 11, "63": 11, "049528": 11, "easili": 12, "work": [12, 13], "onli": [12, 13], "actual": 12, "everyth": 12, "keep": 12, "while": 13, "intend": 13, "gdal": 13, "storag": 13, "simpli": 13, "non": 13, "format": 13, "3gib": 13, "veri": 13, "giswq": [13, 15], "raw": [13, 15], "main": [13, 15], "landsat7": [13, 15], "overlain": 13, "0x7f9b0bfa84c0": 13, "Or": 13, "7736215": 13, "34097449999999": 13, "note": 13, "complex": 13, "api": 13, "current": 13, "handl": 13, "vsis3": 13, "vsicurl": 13, "vf": 13, "mechan": 13, "vsi": 13, "channel": 14, "length": 14, "three": 14, "indic": 14, "two": 14, "get_landsat": 14, "7": 14, "4": 14, "487636": 14, "493829": 14, "40": 14, "805785": 14, "112": 14, "708415": 14, "whether": 15, "meet": 15, "cogeo": 15, "script": 15, "invalid": 15, "extract": 16, "interest": 16, "blue_marbl": 16, "blue": 16, "marbl": 16, "virtual_earth": 16, "microsoft": 16, "aerial": 16, "arcgi": 16, "world": 16, "street": 16, "bahama": 16, "sampl": 16, "over": 16}, "objects": {"localtileserver": [[0, 0, 1, "", "TileClient"], [0, 3, 1, "", "get_folium_tile_layer"], [0, 3, 1, "", "get_leaflet_tile_layer"], [0, 3, 1, "", "get_or_create_tile_client"], [0, 3, 1, "", "make_vsi"]], "localtileserver.client": [[0, 0, 1, "", "TilerInterface"]], "localtileserver.client.TilerInterface": [[0, 1, 1, "", "band_names"], [0, 2, 1, "", "bounds"], [0, 2, 1, "", "center"], [0, 1, 1, "", "dataset"], [0, 1, 1, "", "default_zoom"], [0, 1, 1, "", "filename"], [0, 1, 1, "", "info"], [0, 1, 1, "", "max_zoom"], [0, 1, 1, "", "metadata"], [0, 1, 1, "", "min_zoom"], [0, 2, 1, "", "point"], [0, 1, 1, "", "reader"], [0, 2, 1, "", "thumbnail"], [0, 2, 1, "", "tile"]], "localtileserver.helpers": [[0, 3, 1, "", "polygon_to_geojson"], [0, 3, 1, "", "save_new_raster"]], "localtileserver.validate": [[0, 3, 1, "", "validate_cog"]]}, "objtypes": {"0": "py:class", "1": "py:property", "2": "py:method", "3": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "property", "Python property"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"]}, "titleterms": {"api": 0, "python": 0, "client": 0, "jupyt": [0, 2, 4], "widget": 0, "helper": 0, "other": 0, "localtileserv": 1, "highlight": 1, "\u2139": 1, "overview": 1, "commun": 1, "usag": [1, 10], "docker": 2, "instal": 3, "conda": 3, "pip": 3, "remot": [4, 13], "plot": 5, "bokeh": 5, "two": 6, "raster": [6, 9], "onc": 6, "exampl": 7, "dataset": 7, "dem": 8, "hillshad": 8, "In": 9, "memori": 9, "user": 10, "guid": 10, "ipyleaflet": [10, 11], "tile": 10, "layer": 10, "folium": 10, "note": 10, "feedback": 10, "deep": 11, "zoom": 11, "rasterio": 12, "cloud": 13, "optim": 13, "geotiff": 13, "cog": [13, 15], "control": 14, "rgb": 14, "band": 14, "valid": 15, "local": 16, "web": 16, "applic": 16}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 60}, "alltitles": {"\ud83d\udcd6 API": [[0, "api"]], "Python Client": [[0, "python-client"]], "Jupyter Widget Helpers": [[0, "jupyter-widget-helpers"]], "Other Helpers": [[0, "other-helpers"]], "\ud83c\udf10 localtileserver": [[1, "localtileserver"]], "\ud83c\udf1f Highlights": [[1, "highlights"]], "\u2139\ufe0f Overview": [[1, "i-overview"]], "\ud83e\udea2 Community Usage": [[1, "community-usage"]], "\ud83d\udc33 Docker": [[2, "docker"]], "\ud83d\udcd3 Jupyter in Docker": [[2, "jupyter-in-docker"]], "\u2b07\ufe0f Installation": [[3, "installation"]], "\ud83d\udc0d Installing with conda": [[3, "installing-with-conda"]], "\ud83c\udfa1 Installing with pip": [[3, "installing-with-pip"]], "\ud83d\udce1 Remote Jupyter": [[4, "remote-jupyter"]], "\ud83c\udfa8 Plotting with Bokeh": [[5, "plotting-with-bokeh"]], "\ud83e\udd53 Two Rasters at Once": [[6, "two-rasters-at-once"]], "\ud83d\uddfa\ufe0f Example Datasets": [[7, "example-datasets"]], "\u26f0\ufe0f DEM Hillshade": [[8, "dem-hillshade"]], "\ud83e\udde0 In-Memory Rasters": [[9, "in-memory-rasters"]], "\ud83d\ude80 User Guide": [[10, "user-guide"]], "\ud83c\udf43 ipyleaflet Tile Layers": [[10, "ipyleaflet-tile-layers"]], "\ud83c\udf33 folium Tile Layers": [[10, "folium-tile-layers"]], "\ud83d\uddd2\ufe0f Usage Notes": [[10, "usage-notes"]], "\ud83d\udcad Feedback": [[10, "feedback"]], "\ud83d\udd2c Deep Zoom with ipyleaflet": [[11, "deep-zoom-with-ipyleaflet"]], "\ud83e\udde9 Rasterio": [[12, "rasterio"]], "\u2601\ufe0f Remote Cloud Optimized GeoTiffs (COGs)": [[13, "remote-cloud-optimized-geotiffs-cogs"]], "\ud83e\uddee Controlling the RGB Bands": [[14, "controlling-the-rgb-bands"]], "\u2705 Validate COG": [[15, "validate-cog"]], "\ud83d\udda5\ufe0f Local Web Application": [[16, "local-web-application"]]}, "indexentries": {"tileclient (class in localtileserver)": [[0, "localtileserver.TileClient"]], "tilerinterface (class in localtileserver.client)": [[0, "localtileserver.client.TilerInterface"]], "band_names (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.band_names"]], "bounds() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.bounds"]], "center() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.center"]], "dataset (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.dataset"]], "default_zoom (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.default_zoom"]], "filename (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.filename"]], "get_folium_tile_layer() (in module localtileserver)": [[0, "localtileserver.get_folium_tile_layer"]], "get_leaflet_tile_layer() (in module localtileserver)": [[0, "localtileserver.get_leaflet_tile_layer"]], "get_or_create_tile_client() (in module localtileserver)": [[0, "localtileserver.get_or_create_tile_client"]], "info (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.info"]], "make_vsi() (in module localtileserver)": [[0, "localtileserver.make_vsi"]], "max_zoom (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.max_zoom"]], "metadata (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.metadata"]], "min_zoom (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.min_zoom"]], "point() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.point"]], "polygon_to_geojson() (in module localtileserver.helpers)": [[0, "localtileserver.helpers.polygon_to_geojson"]], "reader (localtileserver.client.tilerinterface property)": [[0, "localtileserver.client.TilerInterface.reader"]], "save_new_raster() (in module localtileserver.helpers)": [[0, "localtileserver.helpers.save_new_raster"]], "thumbnail() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.thumbnail"]], "tile() (localtileserver.client.tilerinterface method)": [[0, "localtileserver.client.TilerInterface.tile"]], "validate_cog() (in module localtileserver.validate)": [[0, "localtileserver.validate.validate_cog"]]}}) \ No newline at end of file diff --git a/user-guide/bokeh.html b/user-guide/bokeh.html index 90f5b435..aab3852b 100644 --- a/user-guide/bokeh.html +++ b/user-guide/bokeh.html @@ -42,7 +42,7 @@ - + @@ -477,7 +477,7 @@

🎨 Plotting with Bokeh
- Loading BokehJS ... + Loading BokehJS ...
-
+
- + @@ -473,14 +473,14 @@

🥓 Two Rasters at Once
diff --git a/user-guide/example-data.html b/user-guide/example-data.html index 15dd04e1..aa603a4a 100644 --- a/user-guide/example-data.html +++ b/user-guide/example-data.html @@ -42,7 +42,7 @@ - + diff --git a/user-guide/hillshade.html b/user-guide/hillshade.html index 9a30a302..e3ce3e05 100644 --- a/user-guide/hillshade.html +++ b/user-guide/hillshade.html @@ -42,7 +42,7 @@ - + @@ -462,9 +462,9 @@

⛰️ DEM Hillshade# Example DEM dataset client = examples.get_co_elevation() -tdem = get_leaflet_tile_layer(client, colormap='gist_earth') +tdem = get_leaflet_tile_layer(client, colormap='gist_earth', nodata=0) -m = Map(center=client.center(), zoom=client.default_zoom) +m = client.get_leaflet_map() m.add(tdem) m @@ -487,9 +487,9 @@

⛰️ DEM Hillshade
@@ -579,7 +579,7 @@

🌳 folium🌳 folium🌳 folium @@ -656,7 +656,7 @@

💭 Feedback -{"state": {"4f7fb3fe441e4d3ba2c24110e7bb2c42": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletTileLayerView", "attribution": "Raster file served by localtileserver.", "base": false, "bottom": true, "bounds": [[37.452199, -122.718792], [38.052231, -122.11876]], "detect_retina": false, "loading": false, "max_native_zoom": 30, "max_zoom": 30, "min_native_zoom": null, "min_zoom": 0, "name": "", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": true, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tileserver.banesullivan.com//api/tiles/{z}/{x}/{y}.png?&filename=%2Fvsicurl%3Furl%3Dhttps%253A%252F%252Fdata.kitware.com%252Fapi%252Fv1%252Ffile%252F626854a14acac99f42126a74%252Fdownload%26use_head%3Dno%26list_dir%3Dno", "visible": true, "zoom_offset": 0}}, "6d37df180e124254a6dd83a6d62a437e": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "17b76554fda342eb9b22e770a21cb7dc": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move"}}, "964b700cecee4e33acfcf03c0b854f1e": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0}}, "f6c23bfee72941029345e4d37f27343b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ab9775c5ddf54b9381566518dcbc870f": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "f9dbd98252e74b93b67be38d2107966e": {"model_name": "LeafletMapModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [37.752215, -122.418776], "close_popup_on_click": true, "controls": ["IPY_MODEL_e24fe772b4a64fec86968d90f459a44a", "IPY_MODEL_8d2ab0292b244461aa5aff93f391cf70"], "crs": {"name": "EPSG3857", "custom": false}, "default_style": "IPY_MODEL_6d37df180e124254a6dd83a6d62a437e", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_17b76554fda342eb9b22e770a21cb7dc", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": ["IPY_MODEL_964b700cecee4e33acfcf03c0b854f1e", "IPY_MODEL_4f7fb3fe441e4d3ba2c24110e7bb2c42", "IPY_MODEL_1a874fb40c71488886390dc5d7f3323c"], "layout": "IPY_MODEL_f6c23bfee72941029345e4d37f27343b", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-03-22", "north": 0.0, "options": ["bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap"], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_ab9775c5ddf54b9381566518dcbc870f", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 9.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0}}, "e24fe772b4a64fec86968d90f459a44a": {"model_name": "LeafletZoomControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletZoomControlView", "options": ["position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title"], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out"}}, "8d2ab0292b244461aa5aff93f391cf70": {"model_name": "LeafletAttributionControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletAttributionControlView", "options": ["position", "prefix"], "position": "bottomright", "prefix": "ipyleaflet"}}, "1a874fb40c71488886390dc5d7f3323c": {"model_name": "LeafletGeoJSONModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletGeoJSONModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletGeoJSONView", "base": false, "bottom": false, "data": {"geometry": {"type": "Polygon", "coordinates": [[[-122.718792, 38.052231], [-122.718792, 38.052231], [-122.11876, 38.052231], [-122.11876, 37.452199], [-122.718792, 37.452199], [-122.718792, 38.052231]]]}, "properties": {}, "type": "Feature"}, "hover_style": {}, "layers": [], "name": "", "options": [], "pane": "", "point_style": {}, "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "style": {"dashArray": 9, "fillOpacity": 0, "weight": 1}, "subitems": [], "visible": true}}, "10f3d2b2cb1941c39863cc2ce277e5f5": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletTileLayerView", "attribution": "Raster file served by localtileserver.", "base": false, "bottom": true, "bounds": [[-85.051129, -180.0], [85.051129, 180.0]], "detect_retina": false, "loading": false, "max_native_zoom": 30, "max_zoom": 30, "min_native_zoom": null, "min_zoom": 0, "name": "", "no_wrap": false, "opacity": 0.65, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": true, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tileserver.banesullivan.com//api/tiles/{z}/{x}/{y}.png?&filename=%2Fvsicurl%3Furl%3Dhttps%253A%252F%252Fgithub.com%252Fbanesullivan%252Flocaltileserver%252Fraw%252Fmain%252Flocaltileserver%252Ftiler%252Fdata%252Faws_elevation_tiles_prod.xml%26use_head%3Dno%26list_dir%3Dno&indexes=1&vmin=-5000&vmax=5000", "visible": true, "zoom_offset": 0}}, "aaf41b614c5d449b80b8668de1d61ef2": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "fab9486bc6ab445a8df2f55fb19b99a6": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move"}}, "ae3af6b3c3aa46fb858ca32fe12c3e2e": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0}}, "7c91a838051043d59ac7e2eaf82a418a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a65916a888e94f1596e692ee24525b76": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "5d10ded4b31a4705ac685b2e95f6dc12": {"model_name": "LeafletMapModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [0.0, 0.0], "close_popup_on_click": true, "controls": ["IPY_MODEL_89b13ce72a644233b679bc02a6848f38", "IPY_MODEL_009803fffdfa49fe8a0e721dd4b92e7b"], "crs": {"name": "EPSG3857", "custom": false}, "default_style": "IPY_MODEL_aaf41b614c5d449b80b8668de1d61ef2", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_fab9486bc6ab445a8df2f55fb19b99a6", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": ["IPY_MODEL_ae3af6b3c3aa46fb858ca32fe12c3e2e", "IPY_MODEL_10f3d2b2cb1941c39863cc2ce277e5f5"], "layout": "IPY_MODEL_7c91a838051043d59ac7e2eaf82a418a", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-03-22", "north": 0.0, "options": ["bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap"], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_a65916a888e94f1596e692ee24525b76", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 3.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0}}, "89b13ce72a644233b679bc02a6848f38": {"model_name": "LeafletZoomControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletZoomControlView", "options": ["position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title"], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out"}}, "009803fffdfa49fe8a0e721dd4b92e7b": {"model_name": "LeafletAttributionControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletAttributionControlView", "options": ["position", "prefix"], "position": "bottomright", "prefix": "ipyleaflet"}}}, "version_major": 2, "version_minor": 0} +{"state": {"6f9f4cbeff8948069af4329b0121c3e5": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "Raster file served by localtileserver.", "base": false, "bottom": true, "bounds": [[37.452199, -122.718792], [38.052231, -122.11876]], "detect_retina": false, "loading": false, "max_native_zoom": 30, "max_zoom": 30, "min_native_zoom": null, "min_zoom": 0, "name": "", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": true, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tileserver.banesullivan.com//api/tiles/{z}/{x}/{y}.png?&filename=%2Fvsicurl%3Furl%3Dhttps%253A%252F%252Fdata.kitware.com%252Fapi%252Fv1%252Ffile%252F626854a14acac99f42126a74%252Fdownload%26use_head%3Dno%26list_dir%3Dno", "visible": true, "zoom_offset": 0}}, "7862aabc093b4b3c974520d72ffac760": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "d79341efda2449429254c049e99ec4ec": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move"}}, "6f6fac3d44a14a6188735590198c8818": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0}}, "983187645dae41a5ad36027260ec7355": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4017daa263794f16b658d8ba7bc06a19": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "27f1396588224d3cbc0369b5450fa28f": {"model_name": "LeafletMapModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [37.752215, -122.418776], "close_popup_on_click": true, "controls": ["IPY_MODEL_e11bdbdeccb04fde9dcb9ef7db42b906", "IPY_MODEL_4788e892e7f74b06aa76dd96c2110e95"], "crs": {"name": "EPSG3857", "custom": false}, "default_style": "IPY_MODEL_7862aabc093b4b3c974520d72ffac760", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_d79341efda2449429254c049e99ec4ec", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": ["IPY_MODEL_6f6fac3d44a14a6188735590198c8818", "IPY_MODEL_9716e32299d44d7984ac1528b6a11579", "IPY_MODEL_6f9f4cbeff8948069af4329b0121c3e5"], "layout": "IPY_MODEL_983187645dae41a5ad36027260ec7355", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-05-16", "north": 0.0, "options": ["bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap"], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_4017daa263794f16b658d8ba7bc06a19", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 9.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0}}, "e11bdbdeccb04fde9dcb9ef7db42b906": {"model_name": "LeafletZoomControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletZoomControlView", "options": ["position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title"], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out"}}, "4788e892e7f74b06aa76dd96c2110e95": {"model_name": "LeafletAttributionControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletAttributionControlView", "options": ["position", "prefix"], "position": "bottomright", "prefix": "ipyleaflet"}}, "9716e32299d44d7984ac1528b6a11579": {"model_name": "LeafletGeoJSONModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletGeoJSONModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletGeoJSONView", "base": false, "bottom": false, "data": {"geometry": {"type": "Polygon", "coordinates": [[[-122.718792, 38.052231], [-122.718792, 38.052231], [-122.11876, 38.052231], [-122.11876, 37.452199], [-122.718792, 37.452199], [-122.718792, 38.052231]]]}, "properties": {}, "type": "Feature"}, "hover_style": {}, "layers": [], "name": "", "options": [], "pane": "", "point_style": {}, "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "style": {"dashArray": 9, "fillOpacity": 0, "weight": 1}, "subitems": [], "visible": true}}, "2cab10bde3114d7386742d86ab302d80": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "Raster file served by localtileserver.", "base": false, "bottom": true, "bounds": [[-85.051129, -180.0], [85.051129, 180.0]], "detect_retina": false, "loading": false, "max_native_zoom": 30, "max_zoom": 30, "min_native_zoom": null, "min_zoom": 0, "name": "", "no_wrap": false, "opacity": 0.65, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": true, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tileserver.banesullivan.com//api/tiles/{z}/{x}/{y}.png?&filename=%2Fvsicurl%3Furl%3Dhttps%253A%252F%252Fgithub.com%252Fbanesullivan%252Flocaltileserver%252Fraw%252Fmain%252Flocaltileserver%252Ftiler%252Fdata%252Faws_elevation_tiles_prod.xml%26use_head%3Dno%26list_dir%3Dno&indexes=1&vmin=-5000&vmax=5000", "visible": true, "zoom_offset": 0}}, "ee23ef8147c042f8a442e983afbb4601": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "69ec9361fcc04e06b15716f5c29c0eca": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move"}}, "8aa0e648f49c4d24ad34e43485340b45": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0}}, "f956a178d97447f0bb79fec2cb3f243a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "02f345162f2643ac9fdf3221900eb4a2": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "a929421675d44d9989289817f4dd9eb5": {"model_name": "LeafletMapModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [0.0, 0.0], "close_popup_on_click": true, "controls": ["IPY_MODEL_9af8191175754204a738f4d0644568ff", "IPY_MODEL_d21abb75191145039112dc15ca19f688"], "crs": {"name": "EPSG3857", "custom": false}, "default_style": "IPY_MODEL_ee23ef8147c042f8a442e983afbb4601", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_69ec9361fcc04e06b15716f5c29c0eca", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": ["IPY_MODEL_8aa0e648f49c4d24ad34e43485340b45", "IPY_MODEL_2cab10bde3114d7386742d86ab302d80"], "layout": "IPY_MODEL_f956a178d97447f0bb79fec2cb3f243a", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-05-16", "north": 0.0, "options": ["bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap"], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_02f345162f2643ac9fdf3221900eb4a2", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 3.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0}}, "9af8191175754204a738f4d0644568ff": {"model_name": "LeafletZoomControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletZoomControlView", "options": ["position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title"], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out"}}, "d21abb75191145039112dc15ca19f688": {"model_name": "LeafletAttributionControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletAttributionControlView", "options": ["position", "prefix"], "position": "bottomright", "prefix": "ipyleaflet"}}}, "version_major": 2, "version_minor": 0} diff --git a/user-guide/ipyleaflet_deep_zoom.html b/user-guide/ipyleaflet_deep_zoom.html index b0901049..c6f4ac28 100644 --- a/user-guide/ipyleaflet_deep_zoom.html +++ b/user-guide/ipyleaflet_deep_zoom.html @@ -42,7 +42,7 @@ - + @@ -480,14 +480,14 @@

🔬 Deep Zoom with diff --git a/user-guide/rasterio.html b/user-guide/rasterio.html index 1ea011d6..7d629787 100644 --- a/user-guide/rasterio.html +++ b/user-guide/rasterio.html @@ -42,7 +42,7 @@ - + diff --git a/user-guide/remote-cog.html b/user-guide/remote-cog.html index 85f5799f..25acd780 100644 --- a/user-guide/remote-cog.html +++ b/user-guide/remote-cog.html @@ -42,7 +42,7 @@ - + @@ -509,7 +509,7 @@

☁️ Remote Cloud Optimized GeoTiffs (COGs) @@ -578,7 +578,7 @@

☁️ Remote Cloud Optimized GeoTiffs (COGs)
@@ -591,7 +591,7 @@

☁️ Remote Cloud Optimized GeoTiffs (COGs) -{"state": {"9ad81d2af84e4f6c9d68bd4ab10a0743": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletTileLayerView", "attribution": "Raster file served by localtileserver.", "base": false, "bottom": true, "bounds": [[37.569444, -122.634858], [37.977799, -122.047091]], "detect_retina": false, "loading": false, "max_native_zoom": 30, "max_zoom": 30, "min_native_zoom": null, "min_zoom": 0, "name": "", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": true, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tileserver.banesullivan.com//api/tiles/{z}/{x}/{y}.png?&filename=%2Fvsicurl%3Furl%3Dhttps%253A%252F%252Fgithub.com%252Fgiswqs%252Fdata%252Fraw%252Fmain%252Fraster%252Flandsat7.tif%26use_head%3Dno%26list_dir%3Dno", "visible": true, "zoom_offset": 0}}, "3141d2ec0bbb4a8abc69551a2c4dbce8": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "8d8a54e1faef493ba1a1766f5be08ebc": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move"}}, "ea2add3473ff4f0e88112db77be5cf8b": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0}}, "c885b445843c40728c1a6c29c5ecf818": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5efb0589ac0e47839764848c9f457deb": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "87588c9ffae346b7b0e99295f4d04744": {"model_name": "LeafletMapModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [37.7736215, -122.34097449999999], "close_popup_on_click": true, "controls": ["IPY_MODEL_c01c5da3699d45cdbe8621f7928152f9", "IPY_MODEL_37354a5d29d9434c9c02f80c81f5b554"], "crs": {"name": "EPSG3857", "custom": false}, "default_style": "IPY_MODEL_3141d2ec0bbb4a8abc69551a2c4dbce8", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_8d8a54e1faef493ba1a1766f5be08ebc", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": ["IPY_MODEL_ea2add3473ff4f0e88112db77be5cf8b", "IPY_MODEL_9ad81d2af84e4f6c9d68bd4ab10a0743"], "layout": "IPY_MODEL_c885b445843c40728c1a6c29c5ecf818", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-03-22", "north": 0.0, "options": ["bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap"], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_5efb0589ac0e47839764848c9f457deb", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 9.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0}}, "c01c5da3699d45cdbe8621f7928152f9": {"model_name": "LeafletZoomControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletZoomControlView", "options": ["position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title"], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out"}}, "37354a5d29d9434c9c02f80c81f5b554": {"model_name": "LeafletAttributionControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.18", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.18", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.18", "_view_name": "LeafletAttributionControlView", "options": ["position", "prefix"], "position": "bottomright", "prefix": "ipyleaflet"}}}, "version_major": 2, "version_minor": 0} +{"state": {"aa7a468b35a347eba3618caaf1d32331": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "Raster file served by localtileserver.", "base": false, "bottom": true, "bounds": [[37.569444, -122.634858], [37.977799, -122.047091]], "detect_retina": false, "loading": false, "max_native_zoom": 30, "max_zoom": 30, "min_native_zoom": null, "min_zoom": 0, "name": "", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": true, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tileserver.banesullivan.com//api/tiles/{z}/{x}/{y}.png?&filename=%2Fvsicurl%3Furl%3Dhttps%253A%252F%252Fgithub.com%252Fgiswqs%252Fdata%252Fraw%252Fmain%252Fraster%252Flandsat7.tif%26use_head%3Dno%26list_dir%3Dno", "visible": true, "zoom_offset": 0}}, "48f804e582d44aac8e0d5011330e2c0b": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "681cea80341a49c0a129f6a0ad8e1c0a": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move"}}, "bf9adaa1fed745daa5c74bd5726d5b8a": {"model_name": "LeafletTileLayerModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": ["attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset"], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0}}, "936c724eb33045ebb1d4058eceaaaa4c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8b8dcbb09e0a4836a309a0502626ee85": {"model_name": "LeafletMapStyleModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab"}}, "7f8f97748f564d6789cdb146cd9b31d8": {"model_name": "LeafletMapModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [37.7736215, -122.34097449999999], "close_popup_on_click": true, "controls": ["IPY_MODEL_b4849715a3f548b8a9dbfbd3f18d7bab", "IPY_MODEL_fecdc7f9cf1a46aab90f28cb34b88ff2"], "crs": {"name": "EPSG3857", "custom": false}, "default_style": "IPY_MODEL_48f804e582d44aac8e0d5011330e2c0b", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_681cea80341a49c0a129f6a0ad8e1c0a", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": ["IPY_MODEL_bf9adaa1fed745daa5c74bd5726d5b8a", "IPY_MODEL_aa7a468b35a347eba3618caaf1d32331"], "layout": "IPY_MODEL_936c724eb33045ebb1d4058eceaaaa4c", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-05-16", "north": 0.0, "options": ["bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap"], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_8b8dcbb09e0a4836a309a0502626ee85", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 9.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0}}, "b4849715a3f548b8a9dbfbd3f18d7bab": {"model_name": "LeafletZoomControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletZoomControlView", "options": ["position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title"], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out"}}, "fecdc7f9cf1a46aab90f28cb34b88ff2": {"model_name": "LeafletAttributionControlModel", "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "state": {"_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletAttributionControlView", "options": ["position", "prefix"], "position": "bottomright", "prefix": "ipyleaflet"}}}, "version_major": 2, "version_minor": 0} diff --git a/user-guide/rgb.html b/user-guide/rgb.html index 9920aca5..bf6db23c 100644 --- a/user-guide/rgb.html +++ b/user-guide/rgb.html @@ -42,7 +42,7 @@ - + @@ -501,14 +501,14 @@

🧮 Controlling the RGB Bands

diff --git a/user-guide/validate_cog.html b/user-guide/validate_cog.html index 1f295e58..2ed25b39 100644 --- a/user-guide/validate_cog.html +++ b/user-guide/validate_cog.html @@ -42,7 +42,7 @@ - + diff --git a/user-guide/web-app.html b/user-guide/web-app.html index 504c30e9..d6f6bf13 100644 --- a/user-guide/web-app.html +++ b/user-guide/web-app.html @@ -42,7 +42,7 @@ - +