Created
August 21, 2020 01:53
-
-
Save giswqs/fb820995f7fa93f5836bd3cb29f03923 to your computer and use it in GitHub Desktop.
daily rainfall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "import ee\nimport geemap", | |
"execution_count": 1, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "Map = geemap.Map()\nMap", | |
"execution_count": 2, | |
"outputs": [ | |
{ | |
"output_type": "display_data", | |
"data": { | |
"text/plain": "Map(center=[40, -100], controls=(WidgetControl(options=['position'], widget=HBox(children=(ToggleButton(value=…", | |
"application/vnd.jupyter.widget-view+json": { | |
"version_major": 2, | |
"version_minor": 0, | |
"model_id": "f20d3b8ed26547519b208d46cccfc44a" | |
} | |
}, | |
"metadata": {} | |
} | |
] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "roi = ee.FeatureCollection(\"users/WaterSystemResearch/TBW_DWPA\")\nMap.addLayer(roi, {}, 'ROI')", | |
"execution_count": 3, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "def date_sequence(start, end, unit, date_format='YYYY-MM-dd'):\n \"\"\"Creates a date sequence.\n\n Args:\n start (str): The start date, e.g., '2000-01-01'.\n end (str): The end date, e.g., '2000-12-31'.\n unit (str): One of 'year', 'month' 'week', 'day', 'hour', 'minute', or 'second'.\n date_format (str, optional): A pattern, as described at http://joda-time.sourceforge.net/apidocs/org/joda/time/format/DateTimeFormat.html. Defaults to 'YYYY-MM-dd'.\n\n Returns:\n ee.List: A list of date sequence.\n \"\"\"\n start_date = ee.Date(start)\n end_date = ee.Date(end)\n count = ee.Number(end_date.difference(start_date, unit)).toInt()\n num_seq = ee.List.sequence(0, count)\n date_seq = num_seq.map(lambda d: start_date.advance(d, unit).format(date_format))\n return date_seq", | |
"execution_count": 4, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "start_date = ee.Date('2014-03-01')\nend_date = ee.Date('2014-03-31')\ndate_seq = date_sequence(start_date, end_date, 'day')", | |
"execution_count": 5, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "collection = ee.ImageCollection('NASA/GPM_L3/IMERG_V06') \\\n .filterDate(start_date, end_date) \\\n .select('precipitationCal')\n\ndef daily_image(start):\n start = ee.Date(start)\n end = start.advance(1, 'day')\n img = ee.Image(collection.filterDate(start, end).sum())\n return img\n\nimages = date_seq.map(daily_image)\nimage = ee.ImageCollection(images).toBands()", | |
"execution_count": 6, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "images.size().getInfo()", | |
"execution_count": 7, | |
"outputs": [ | |
{ | |
"output_type": "execute_result", | |
"execution_count": 7, | |
"data": { | |
"text/plain": "31" | |
}, | |
"metadata": {} | |
} | |
] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "Map.addLayer(image, {}, 'Rainfall')", | |
"execution_count": 8, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "values = geemap.image_stats(image, region=roi).get('mean')\nvalues = ee.Dictionary(values).values()", | |
"execution_count": 9, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "y_values = values.getInfo()", | |
"execution_count": 10, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "x_values = date_seq.getInfo()[:-1]", | |
"execution_count": 11, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "x_values", | |
"execution_count": 12, | |
"outputs": [ | |
{ | |
"output_type": "execute_result", | |
"execution_count": 12, | |
"data": { | |
"text/plain": "['2014-03-01',\n '2014-03-02',\n '2014-03-03',\n '2014-03-04',\n '2014-03-05',\n '2014-03-06',\n '2014-03-07',\n '2014-03-08',\n '2014-03-09',\n '2014-03-10',\n '2014-03-11',\n '2014-03-12',\n '2014-03-13',\n '2014-03-14',\n '2014-03-15',\n '2014-03-16',\n '2014-03-17',\n '2014-03-18',\n '2014-03-19',\n '2014-03-20',\n '2014-03-21',\n '2014-03-22',\n '2014-03-23',\n '2014-03-24',\n '2014-03-25',\n '2014-03-26',\n '2014-03-27',\n '2014-03-28',\n '2014-03-29',\n '2014-03-30']" | |
}, | |
"metadata": {} | |
} | |
] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "y_values", | |
"execution_count": 13, | |
"outputs": [ | |
{ | |
"output_type": "execute_result", | |
"execution_count": 13, | |
"data": { | |
"text/plain": "[0,\n 5.198448379815091e-05,\n 2.6075538351426073,\n 0.010660424207162579,\n 0,\n 0,\n 0.018552314075714095,\n 133.8765305949266,\n 3.3739757353439925,\n 0,\n 0,\n 0,\n 0.0007823675172403455,\n 0.09297811666619964,\n 0.7279145105807402,\n 28.96086519006958,\n 20.408764219137087,\n 0,\n 11.67541336764698,\n 15.24818054912903,\n 123.16892555568775,\n 0.09484591217296838,\n 0.002322763430129271,\n 0.13231867477297785,\n 3.29685334550959,\n 81.23060573176409,\n 0.6007589291257318,\n 0.01049478018976515,\n 0,\n 0.0002678348675544839]" | |
}, | |
"metadata": {} | |
} | |
] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "import matplotlib.pyplot as plt", | |
"execution_count": 14, | |
"outputs": [] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "plt.plot(x_values, y_values)", | |
"execution_count": 15, | |
"outputs": [ | |
{ | |
"output_type": "execute_result", | |
"execution_count": 15, | |
"data": { | |
"text/plain": "[<matplotlib.lines.Line2D at 0x7fcda9d37280>]" | |
}, | |
"metadata": {} | |
}, | |
{ | |
"output_type": "display_data", | |
"data": { | |
"text/plain": "<Figure size 432x288 with 1 Axes>", | |
"image/png": "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\n" | |
}, | |
"metadata": { | |
"needs_background": "light" | |
} | |
} | |
] | |
}, | |
{ | |
"metadata": { | |
"trusted": true | |
}, | |
"cell_type": "code", | |
"source": "Map.extract_values_to_points('rainfall.csv')", | |
"execution_count": null, | |
"outputs": [] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"name": "python3", | |
"display_name": "Python 3", | |
"language": "python" | |
}, | |
"hide_input": false, | |
"toc": { | |
"nav_menu": {}, | |
"number_sections": true, | |
"sideBar": true, | |
"skip_h1_title": true, | |
"base_numbering": 1, | |
"title_cell": "Table of Contents", | |
"title_sidebar": "Table of Contents", | |
"toc_cell": false, | |
"toc_position": {}, | |
"toc_section_display": true, | |
"toc_window_display": true | |
}, | |
"language_info": { | |
"name": "python", | |
"version": "3.8.2", | |
"mimetype": "text/x-python", | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 3 | |
}, | |
"pygments_lexer": "ipython3", | |
"nbconvert_exporter": "python", | |
"file_extension": ".py" | |
}, | |
"varInspector": { | |
"window_display": false, | |
"cols": { | |
"lenName": 16, | |
"lenType": 16, | |
"lenVar": 40 | |
}, | |
"kernels_config": { | |
"python": { | |
"library": "var_list.py", | |
"delete_cmd_prefix": "del ", | |
"delete_cmd_postfix": "", | |
"varRefreshCmd": "print(var_dic_list())" | |
}, | |
"r": { | |
"library": "var_list.r", | |
"delete_cmd_prefix": "rm(", | |
"delete_cmd_postfix": ") ", | |
"varRefreshCmd": "cat(var_dic_list()) " | |
} | |
}, | |
"types_to_exclude": [ | |
"module", | |
"function", | |
"builtin_function_or_method", | |
"instance", | |
"_Feature" | |
] | |
}, | |
"widgets": { | |
"application/vnd.jupyter.widget-state+json": { | |
"version_major": 2, | |
"version_minor": 0, | |
"state": { | |
"956285b93ded487bbc258138e580b0ce": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Maps", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=m&x={x}&y={y}&z={z}" | |
} | |
}, | |
"c73c38126ff0404f8ff8c061ee95feb4": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" | |
} | |
}, | |
"f7bfac7dc3074221b7e691d0175625fc": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=p&x={x}&y={y}&z={z}" | |
} | |
}, | |
"71949fef4a174647b8f2b72990fac5c6": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=y&x={x}&y={y}&z={z}" | |
} | |
}, | |
"ed4ba6b568c24de0950726b6c905e17f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"07f3cf70e3f044fca4d33070375c19be": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Ocean", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/ArcGIS/rest/services/Ocean/World_Ocean_Base/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"3d63dfa06fce4445a13bcb07e829d69f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"4a08c9e1d1b34ffeab79a278d2901ddf": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Standard", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"f8e4244a7d884c8eaa9e2e248e26d532": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Terrain_Base/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"b0d41b94139b42309b0b4db5bc32f2ab": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Transportation", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/Reference/World_Transportation/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"6e1c4977ad3f4983bea0aae14817c5ec": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Topo World", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"82ba605622ff474991ad8d147f17f55c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri National Geographic", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"9bbd10859e234a41919d19244ec365f0": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Shaded Relief", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/arcgis/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"9eb159d76e064fc59669cd2289bd89ef": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Physical Map", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/arcgis/rest/services/World_Physical_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"baf29fe9d35f41daabf5900b98974e07": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "FWS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "1", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "FWS NWI Wetlands", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.fws.gov/wetlands/arcgis/services/Wetlands/MapServer/WMSServer?" | |
} | |
}, | |
"8440d009bbb840fa836b3693d705c569": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "FWS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "FWS NWI Wetlands Raster", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.fws.gov/wetlands/arcgis/services/Wetlands_Raster/ImageServer/WMSServer?" | |
} | |
}, | |
"615594dc48ae4d7bac59c0e6c00c12a5": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Maps", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=m&x={x}&y={y}&z={z}" | |
} | |
}, | |
"d6bcfb59170e48498180b7c6f9960c2c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" | |
} | |
}, | |
"7eba0d598ae647afb42458e6ed4e5825": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=p&x={x}&y={y}&z={z}" | |
} | |
}, | |
"565e2a3386ce467f8db334157403569b": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=y&x={x}&y={y}&z={z}" | |
} | |
}, | |
"27afa5bd48b942efb032b414b70702da": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2016_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2016 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2016_Land_Cover_L48/wms?" | |
} | |
}, | |
"8ad2771a40564be085a7ea797173ce3c": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2013_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2013 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2013_Land_Cover_L48/wms?" | |
} | |
}, | |
"2edbfbe652bb4d3a86139d4a14ed0a80": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2011_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2011 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2011_Land_Cover_L48/wms?" | |
} | |
}, | |
"054bca2dba2a4126ba488271cfe91ddf": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2008_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2008 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2008_Land_Cover_L48/wms?" | |
} | |
}, | |
"240081ffcc874b45aca95965b505e7e2": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2006_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2006 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2006_Land_Cover_L48/wms?" | |
} | |
}, | |
"a379023b740043c6ab8577278eec1190": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2004_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2004 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2004_Land_Cover_L48/wms?" | |
} | |
}, | |
"1ae9be17e2d7463e8bab5040e6993cac": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2001_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2001 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2001_Land_Cover_L48/wms?" | |
} | |
}, | |
"851275913c4a48709b688d4f69e0c5f0": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS NAIP Imagery", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://services.nationalmap.gov/arcgis/services/USGSNAIPImagery/ImageServer/WMSServer?" | |
} | |
}, | |
"bfe8a9f5343542538c52b011a29d507d": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS Hydrography", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://basemap.nationalmap.gov/arcgis/services/USGSHydroCached/MapServer/WMSServer?" | |
} | |
}, | |
"bbbdea3e481f4f67b0b8a97319c31060": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "3DEPElevation:None", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS 3DEP Elevation", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://elevation.nationalmap.gov/arcgis/services/3DEPElevation/ImageServer/WMSServer?" | |
} | |
}, | |
"c8f78ddc8ff44accb531513e18a81d79": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.Mapnik", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
] | |
} | |
}, | |
"d527e79e0f214412a95b0c56f14c9a9e": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.BlackAndWhite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png" | |
} | |
}, | |
"5ad1f46441624e8a95cc906f25097e40": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.DE", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png" | |
} | |
}, | |
"4ce859d670614c4b998a8fcdce82eee7": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© Openstreetmap France | © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.France", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png" | |
} | |
}, | |
"4d92b98f07df4994a5d15c8ffeee48cd": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, Tiles courtesy of <a href=\"http://hot.openstreetmap.org/\" target=\"_blank\">Humanitarian OpenStreetMap Team</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.HOT", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png" | |
} | |
}, | |
"00a20c4731e34a2e870de2d1533c9749": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map data: © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, <a href=\"http://viewfinderpanoramas.org\">SRTM</a> | Map style: © <a href=\"https://opentopomap.org\">OpenTopoMap</a> (<a href=\"https://creativecommons.org/licenses/by-sa/3.0/\">CC-BY-SA</a>)", | |
"max_native_zoom": 18, | |
"max_zoom": 17, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenTopoMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png" | |
} | |
}, | |
"0f23e33a03ec445f8be6c99780760eff": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles courtesy of <a href=\"http://openstreetmap.se/\" target=\"_blank\">OpenStreetMap Sweden</a> — Map data © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Hydda.Full", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.se/hydda/full/{z}/{x}/{y}.png" | |
} | |
}, | |
"c958735c6bc24d8f854b9949f8704d13": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles courtesy of <a href=\"http://openstreetmap.se/\" target=\"_blank\">OpenStreetMap Sweden</a> — Map data © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Hydda.Base", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.se/hydda/base/{z}/{x}/{y}.png" | |
} | |
}, | |
"9f800c8d52b14df48e0c3b1c8feb6b2c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldStreetMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"d9b52931350c43bcbba569f7270c7922": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Copyright: ©2012 DeLorme", | |
"max_native_zoom": 18, | |
"max_zoom": 11, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.DeLorme", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/Specialty/DeLorme_World_Base_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"400d829ef4f249809310af436b099ef0": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldTopoMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"3fbef5ce9bde44a8bdb35db67f9d6844": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldImagery", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"124d6f164f1d4a2a86e804ad550aa273": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC", | |
"max_native_zoom": 18, | |
"max_zoom": 16, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.NatGeoWorldMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"7439c6ac24414629aa4f70ae9ab8ca14": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "HikeBike.HikeBike", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tiles.wmflabs.org/hikebike/{z}/{x}/{y}.png" | |
} | |
}, | |
"9b387c00cd884465a1af383df9b0ed6d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> & USGS", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "MtbMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png" | |
} | |
}, | |
"f850101e885a44e6aa6a5c6ae7fcaf12": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> © <a href=\"http://cartodb.com/attributions\">CartoDB</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "CartoDB.Positron", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://c.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png" | |
} | |
}, | |
"c8eec3e13f7d4a0f8d4649ebc4db737a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> © <a href=\"http://cartodb.com/attributions\">CartoDB</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "CartoDB.DarkMatter", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://c.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png" | |
} | |
}, | |
"b953e363cc3b4ba298c520584d808c9f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"774c1a88e7c846da8f88083aa9cd0716": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraBands367CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands367/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"52fc757ad0df4da9b602e5f3f9abd9d5": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraBands721CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands721/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"9fb20783f03b4c9886f8f4a8e37731a9": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisAquaTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"2fc1c19c5eee4a57a8ffee6f18e20bff": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisAquaBands721CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_Bands721/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"cd49542dc94440f589356a325a7a1275": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ViirsTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_SNPP_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"e4f863e2c55943eabca735fd6654c376": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 8, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ViirsEarthAtNight2012", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_Black_Marble/default/2012-01-01/GoogleMapsCompatible_Level8/{z}/{y}/{x}.png" | |
} | |
}, | |
"6692c494c7eb48b99f7a5e0df55bd9ca": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 5, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble3413", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3413/best/BlueMarble_NextGeneration/default/EPSG3413_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"15ebf02d60fc439892e0a7758a34e5d9": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 5, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble3031", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3031/best/BlueMarble_NextGeneration/default/EPSG3031_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"b877a3c7cba44230bea7c06422de01e0": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 8, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/BlueMarble_NextGeneration/default/EPSG3857_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"57e33ad562524cf487cb89dd8689463c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.All", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/all/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"0e289417351a4cb5934621c8088924ae": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Ride", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/ride/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"cc4c61e79ae44223b9a25a0fd051fe88": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Run", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/run/bluered/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"31b41f689ba64a95ad4112b97cb23901": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Water", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/water/blue/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"9c0aaedf492140d0adc167792fa4c2a3": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Winter", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/winter/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"abda74a17c444d7993ebb454fdf68d3a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Stamen.Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png" | |
} | |
}, | |
"890bffd960ec4a90b9e83040e7248e37": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"name": "Stamen.Toner", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/toner/{z}/{x}/{y}.png" | |
} | |
}, | |
"72e52a3bd09e48088d754551a4b5a026": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Stamen.Watercolor", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png" | |
} | |
}, | |
"985005b002d748d4aedd610433a083da": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2" | |
} | |
}, | |
"57751bbf23604064918586bbfe95cdf9": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "move" | |
} | |
}, | |
"3e8af6aa609b41908e7897204b25992b": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"base": true, | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
] | |
} | |
}, | |
"36b234f9ca8844e1a75e6383eff999e7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "550px" | |
} | |
}, | |
"37a2149adbbb4b0c81a701a5bcbb11d6": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2" | |
} | |
}, | |
"29af219d83c945d9a351d383238874c0": { | |
"model_name": "LeafletMapModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"center": [ | |
42.42345651793833, | |
-807.71484375 | |
], | |
"controls": [ | |
"IPY_MODEL_e5cc55b4b2c44e9fa2191425c18f7792", | |
"IPY_MODEL_8237116d4051410e925e4f79ce1dae8a", | |
"IPY_MODEL_f9edbfc60a8f4c939e523276342723dd", | |
"IPY_MODEL_33140752843748e4b61defa4ceb96e85", | |
"IPY_MODEL_57f18aa4163a4529a7c4826610a15249", | |
"IPY_MODEL_8b1540b449984bf1b2a33c62e83f53b3", | |
"IPY_MODEL_d11efcd150d94fe081a5b5d4637e7449", | |
"IPY_MODEL_d5907f7c695a46afb39a31770105db65", | |
"IPY_MODEL_65139bf30cc5437fa7c4b6af7f768020", | |
"IPY_MODEL_866401ab2766447ea901de95d8c3211c", | |
"IPY_MODEL_5312b1a224a44e179ff991d0ad6718d8", | |
"IPY_MODEL_c8cd3c3329054b669ecfbd2286b3ec98", | |
"IPY_MODEL_6987b16c46c546eb887676296548a0ce" | |
], | |
"default_style": "IPY_MODEL_985005b002d748d4aedd610433a083da", | |
"dragging_style": "IPY_MODEL_57751bbf23604064918586bbfe95cdf9", | |
"east": -180, | |
"fullscreen": false, | |
"interpolation": "bilinear", | |
"layers": [ | |
"IPY_MODEL_3e8af6aa609b41908e7897204b25992b", | |
"IPY_MODEL_956285b93ded487bbc258138e580b0ce", | |
"IPY_MODEL_9e179b409bf14512beeca36655fef2d1" | |
], | |
"layout": "IPY_MODEL_36b234f9ca8844e1a75e6383eff999e7", | |
"modisdate": "yesterday", | |
"north": -90, | |
"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", | |
"scroll_wheel_zoom", | |
"tap", | |
"tap_tolerance", | |
"touch_zoom", | |
"world_copy_jump", | |
"zoom", | |
"zoom_animation_threshold", | |
"zoom_delta", | |
"zoom_snap", | |
"zoom_start" | |
], | |
"scroll_wheel_zoom": true, | |
"south": 90, | |
"style": "IPY_MODEL_985005b002d748d4aedd610433a083da", | |
"west": 180, | |
"window_url": "http://127.0.0.1:8888/notebooks/testing/rainfall.ipynb", | |
"zoom": 3 | |
} | |
}, | |
"57df3c6a392f496da989d8626415c635": { | |
"model_name": "LeafletZoomControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"zoom_in_text", | |
"zoom_in_title", | |
"zoom_out_text", | |
"zoom_out_title" | |
] | |
} | |
}, | |
"a4e27c013ce54c0497684ef0e336d1ad": { | |
"model_name": "LeafletAttributionControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"prefix" | |
], | |
"position": "bottomright", | |
"prefix": "ipyleaflet" | |
} | |
}, | |
"8c80ead9fe164bf993e7a3c8601a1ff5": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "36px" | |
} | |
}, | |
"5e745af8b2df4b03accab479d2c89d84": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"746324e0226141a9bd72cf393e559b2f": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"icon": "globe", | |
"layout": "IPY_MODEL_8c80ead9fe164bf993e7a3c8601a1ff5", | |
"style": "IPY_MODEL_5e745af8b2df4b03accab479d2c89d84", | |
"tooltip": "Search location/data" | |
} | |
}, | |
"4ed5129b456e465689e90709788ed1da": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"a42175d5b9e54232a0dc7f705d41a3a7": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "110px", | |
"description_width": "" | |
} | |
}, | |
"b117bdf8b7a242668e21adc3671a840e": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"name/address", | |
"lat-lon", | |
"data" | |
], | |
"button_style": "", | |
"icons": [], | |
"index": 0, | |
"layout": "IPY_MODEL_4ed5129b456e465689e90709788ed1da", | |
"style": "IPY_MODEL_a42175d5b9e54232a0dc7f705d41a3a7", | |
"tooltips": [ | |
"Search by place name or address", | |
"Search by lat-lon coordinates", | |
"Search Earth Engine data catalog" | |
] | |
} | |
}, | |
"c947764081c7492ca7d78f18738d3eb8": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "340px" | |
} | |
}, | |
"3724ff1e1364440a86cdac2fc911fb7d": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"ce137ab38b9e4c9a868c38a2292dbda6": { | |
"model_name": "TextModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_c947764081c7492ca7d78f18738d3eb8", | |
"placeholder": "Search by place name or address", | |
"style": "IPY_MODEL_3724ff1e1364440a86cdac2fc911fb7d" | |
} | |
}, | |
"64bbd5f81f8845fb9241e47e34a522ac": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_height": "250px", | |
"max_width": "340px", | |
"overflow": "scroll" | |
} | |
}, | |
"ac814dace51047e0bb215a8575cdb585": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_64bbd5f81f8845fb9241e47e34a522ac" | |
} | |
}, | |
"23c47459209c435a81470d9908a860ad": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"3416a479858640279472e40830aa699a": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"7e1f5d8852174fd4851e77bce9b4d1f5": { | |
"model_name": "RadioButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"index": null, | |
"layout": "IPY_MODEL_23c47459209c435a81470d9908a860ad", | |
"style": "IPY_MODEL_3416a479858640279472e40830aa699a" | |
} | |
}, | |
"5ae1c3a216724b39be7ef8f8131232b8": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_width": "279px", | |
"min_width": "279px" | |
} | |
}, | |
"483daf5ce3864ce4b9c13673c1825a61": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"63e5980daa094f22afb6001cc91ec99b": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"index": null, | |
"layout": "IPY_MODEL_5ae1c3a216724b39be7ef8f8131232b8", | |
"style": "IPY_MODEL_483daf5ce3864ce4b9c13673c1825a61" | |
} | |
}, | |
"03bda83bf8564cac8f32d9ec7b51bb74": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_width": "57px", | |
"min_width": "57px" | |
} | |
}, | |
"d85daa42aaa943ea9af7150de212e748": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"ccaa2ac1fc56457ab6c6963a48290bb5": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"description": "import", | |
"layout": "IPY_MODEL_03bda83bf8564cac8f32d9ec7b51bb74", | |
"style": "IPY_MODEL_d85daa42aaa943ea9af7150de212e748", | |
"tooltip": "Click to import the selected asset" | |
} | |
}, | |
"082cd9a79ee843e4aaaf78d48d85ffad": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"b26931ffc5914f07b7585f95a4b048aa": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"c287ea2fc20e4b92aead62732815d810": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_082cd9a79ee843e4aaaf78d48d85ffad", | |
"style": "IPY_MODEL_b26931ffc5914f07b7585f95a4b048aa" | |
} | |
}, | |
"11e3271e2f1a424c83e1b68756c0697c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"0e6185dcaf29459c8480d751137bf0a4": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_ccaa2ac1fc56457ab6c6963a48290bb5", | |
"IPY_MODEL_63e5980daa094f22afb6001cc91ec99b" | |
], | |
"layout": "IPY_MODEL_11e3271e2f1a424c83e1b68756c0697c" | |
} | |
}, | |
"5068d703d0544382b07a395f22d0fd2e": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"7f5e4d2882964e73aabe559550636e72": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_b117bdf8b7a242668e21adc3671a840e", | |
"IPY_MODEL_ce137ab38b9e4c9a868c38a2292dbda6" | |
], | |
"layout": "IPY_MODEL_5068d703d0544382b07a395f22d0fd2e" | |
} | |
}, | |
"41c9222415524de1aba5d86a00c643f7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"76f442a22a9f474bad91d8bc492ad49c": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_746324e0226141a9bd72cf393e559b2f" | |
], | |
"layout": "IPY_MODEL_41c9222415524de1aba5d86a00c643f7" | |
} | |
}, | |
"e5cc55b4b2c44e9fa2191425c18f7792": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topleft", | |
"widget": "IPY_MODEL_76f442a22a9f474bad91d8bc492ad49c" | |
} | |
}, | |
"4a01db43c3c54ce9ac45195819a5429f": { | |
"model_name": "LeafletAwesomeIconModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"icon_color": "darkgreen", | |
"marker_color": "green", | |
"name": "check" | |
} | |
}, | |
"53ada96832ca4b7dbb4e38499d16f79f": { | |
"model_name": "LeafletMarkerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"icon": "IPY_MODEL_4a01db43c3c54ce9ac45195819a5429f", | |
"options": [ | |
"alt", | |
"draggable", | |
"keyboard", | |
"rise_offset", | |
"rise_on_hover", | |
"rotation_angle", | |
"rotation_origin", | |
"title", | |
"z_index_offset" | |
] | |
} | |
}, | |
"8237116d4051410e925e4f79ce1dae8a": { | |
"model_name": "LeafletSearchControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"marker": "IPY_MODEL_53ada96832ca4b7dbb4e38499d16f79f", | |
"options": [ | |
"animate_location", | |
"auto_collapse", | |
"auto_type", | |
"found_style", | |
"jsonp_param", | |
"position", | |
"property_loc", | |
"property_name", | |
"url", | |
"zoom" | |
], | |
"position": "topleft", | |
"url": "https://nominatim.openstreetmap.org/search?format=json&q={s}", | |
"zoom": 5 | |
} | |
}, | |
"f9edbfc60a8f4c939e523276342723dd": { | |
"model_name": "LeafletZoomControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"zoom_in_text", | |
"zoom_in_title", | |
"zoom_out_text", | |
"zoom_out_title" | |
] | |
} | |
}, | |
"33140752843748e4b61defa4ceb96e85": { | |
"model_name": "LeafletLayersControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright" | |
} | |
}, | |
"57f18aa4163a4529a7c4826610a15249": { | |
"model_name": "LeafletScaleControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"imperial": true, | |
"max_width": 100, | |
"metric": true, | |
"options": [ | |
"imperial", | |
"max_width", | |
"metric", | |
"position", | |
"update_when_idle" | |
], | |
"position": "bottomleft", | |
"update_when_idle": false | |
} | |
}, | |
"8b1540b449984bf1b2a33c62e83f53b3": { | |
"model_name": "LeafletFullScreenControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
] | |
} | |
}, | |
"d11efcd150d94fe081a5b5d4637e7449": { | |
"model_name": "LeafletMeasureControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"active_color": "orange", | |
"options": [ | |
"active_color", | |
"capture_z_index", | |
"completed_color", | |
"popup_options", | |
"position", | |
"primary_area_unit", | |
"primary_length_unit", | |
"secondary_area_unit", | |
"secondary_length_unit" | |
], | |
"position": "bottomleft", | |
"primary_length_unit": "kilometers", | |
"secondary_area_unit": null, | |
"secondary_length_unit": null | |
} | |
}, | |
"d5907f7c695a46afb39a31770105db65": { | |
"model_name": "LeafletAttributionControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"prefix" | |
], | |
"position": "bottomright", | |
"prefix": "ipyleaflet" | |
} | |
}, | |
"65139bf30cc5437fa7c4b6af7f768020": { | |
"model_name": "LeafletDrawControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"circle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"marker": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"options": [ | |
"position" | |
], | |
"rectangle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
} | |
} | |
}, | |
"a5083d6379c84db9bdff0f74ea0ca592": { | |
"model_name": "LeafletDrawControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"circle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"options": [ | |
"position" | |
], | |
"polygon": {}, | |
"polyline": {}, | |
"rectangle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
} | |
} | |
}, | |
"9fc0deb73f424cb8a2854c9042211785": { | |
"model_name": "LeafletMarkerClusterModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"name": "Marker Cluster" | |
} | |
}, | |
"58da6a42e426453f9644d7821efa8e92": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "18px", | |
"width": "13ex" | |
} | |
}, | |
"b29d3f604c764f1a80497d622568a558": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"e26945e8ab0f4548adfc2ca87d7d3f8b": { | |
"model_name": "CheckboxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Inspector", | |
"disabled": false, | |
"indent": false, | |
"layout": "IPY_MODEL_58da6a42e426453f9644d7821efa8e92", | |
"style": "IPY_MODEL_b29d3f604c764f1a80497d622568a558", | |
"value": false | |
} | |
}, | |
"e12c7da45cf74effae699e0cb519884b": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "13ex" | |
} | |
}, | |
"40f0b9cfe2494bb4887edb14f937a00e": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"c0c899e584954e07aa1d1fafea57449a": { | |
"model_name": "CheckboxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Plotting", | |
"disabled": false, | |
"indent": false, | |
"layout": "IPY_MODEL_e12c7da45cf74effae699e0cb519884b", | |
"style": "IPY_MODEL_40f0b9cfe2494bb4887edb14f937a00e", | |
"value": false | |
} | |
}, | |
"51989c1466e14e3cbe148cf968fcab6f": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"c7f04abe934742fcb8da4f18afbe82ae": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_e26945e8ab0f4548adfc2ca87d7d3f8b", | |
"IPY_MODEL_c0c899e584954e07aa1d1fafea57449a" | |
], | |
"layout": "IPY_MODEL_51989c1466e14e3cbe148cf968fcab6f" | |
} | |
}, | |
"866401ab2766447ea901de95d8c3211c": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_c7f04abe934742fcb8da4f18afbe82ae" | |
} | |
}, | |
"576ab2900b21404c955cc8090ae10325": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"border": "1px solid black" | |
} | |
}, | |
"c1bcf08f8cbb4256a29f05dd2909563c": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_576ab2900b21404c955cc8090ae10325" | |
} | |
}, | |
"5312b1a224a44e179ff991d0ad6718d8": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_c1bcf08f8cbb4256a29f05dd2909563c" | |
} | |
}, | |
"dfdb4f2fe45a4305a7822950981bc716": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"fca5a279c41f4fa7a7ce5cf539ad9ec7": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_dfdb4f2fe45a4305a7822950981bc716" | |
} | |
}, | |
"bcccc88f252c45a890f7e0eec7b9ed7b": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"8dcf425986f440a1b3bccc5fd766a238": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_5a4c514930f34a5080da646f88ad546a", | |
"IPY_MODEL_ddd531630cb043b4b52dd6ed471ad736" | |
], | |
"layout": "IPY_MODEL_bcccc88f252c45a890f7e0eec7b9ed7b" | |
} | |
}, | |
"7582320a539b441f910957b3e92b9710": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"47877330b5794de8ab0f3b5f0ac2fe87": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "", | |
"description_width": "" | |
} | |
}, | |
"5a4c514930f34a5080da646f88ad546a": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"HTML", | |
"PNG", | |
"JPG" | |
], | |
"button_style": "", | |
"icons": [], | |
"index": 0, | |
"layout": "IPY_MODEL_7582320a539b441f910957b3e92b9710", | |
"style": "IPY_MODEL_47877330b5794de8ab0f3b5f0ac2fe87", | |
"tooltips": [ | |
"Save the map as an HTML file", | |
"Take a screenshot and save as a PNG file", | |
"Take a screenshot and save as a JPG file" | |
] | |
} | |
}, | |
"299065c944d6455a8b1549790e73e526": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "pathlist", | |
"width": "auto" | |
} | |
}, | |
"97a9a9b950844f01a0d26657038d282b": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"2db257dfa76b402090dd2456f3ebc8f9": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"/media/hdd/Dropbox/git/geemap/testing", | |
"/media/hdd/Dropbox/git/geemap", | |
"/media/hdd/Dropbox/git", | |
"/media/hdd/Dropbox", | |
"/media/hdd", | |
"/media", | |
"/" | |
], | |
"index": 0, | |
"layout": "IPY_MODEL_299065c944d6455a8b1549790e73e526", | |
"style": "IPY_MODEL_97a9a9b950844f01a0d26657038d282b" | |
} | |
}, | |
"241a4cfeba194e1bb5e61305999768f8": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "filename", | |
"width": "auto" | |
} | |
}, | |
"2edb4810756c434989635c11de81b0a8": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"2ff387e312684d9b8fa23b98f3c32f56": { | |
"model_name": "TextModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_241a4cfeba194e1bb5e61305999768f8", | |
"placeholder": "output filename", | |
"style": "IPY_MODEL_2edb4810756c434989635c11de81b0a8", | |
"value": "my_map.html" | |
} | |
}, | |
"9745092c5f874af08556c1d2691f4942": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "dircontent", | |
"width": "auto" | |
} | |
}, | |
"a70a8ad926934adebf7f03aaf13f372e": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"6a665c419ea0483db8ca2e5602cce3cd": { | |
"model_name": "SelectModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"..", | |
"china", | |
"data", | |
"datapane", | |
"datasets", | |
"kepler", | |
"update", | |
"water_mapping", | |
"wetlands", | |
"01_surface_water_mapping.ipynb", | |
"06Q1fSz.jpg", | |
"06Q1fSz.png", | |
"06Q1fSz.tif", | |
"0_geemap_key_features.ipynb", | |
"10.21105.joss.01886.pdf", | |
"10_shapefiles.ipynb", | |
"11_export_image.ipynb", | |
"34_plotting.ipynb", | |
"Hillshade.ipynb", | |
"NDVI.ipynb", | |
"SearchControl.ipynb", | |
"Untitled.ipynb", | |
"api-copy.html", | |
"api.html", | |
"api.ipynb", | |
"api.png", | |
"api.py", | |
"appveyor.yml", | |
"assets.csv", | |
"assets.ipynb", | |
"authenticate.ipynb", | |
"basemaps.ipynb", | |
"bitmap_layer.html", | |
"clone.ipynb", | |
"clone_repo.ipynb", | |
"conver_js_ipynb.ipynb", | |
"datapane.ipynb", | |
"download.py", | |
"ee_api_docs.csv", | |
"ee_api_docs.pmdx", | |
"ee_landtrendr_fitted_rgb_thumbnails.py", | |
"export_ImageCollection.ipynb", | |
"gist.ipynb", | |
"globe_view.html", | |
"image_overlay.ipynb", | |
"ipytree.ipynb", | |
"joss.pdf", | |
"main.py", | |
"map_controls.ipynb", | |
"my_map.html", | |
"my_map.jpg", | |
"my_map.png", | |
"my_map2.html", | |
"projection.ipynb", | |
"pydeck-intro.ipynb", | |
"pydeck.ipynb", | |
"rainfall.ipynb", | |
"s2cloudless.ipynb", | |
"save.ipynb", | |
"sentinel.ipynb", | |
"terrain_layer.html", | |
"terrain_visualization.ipynb", | |
"testing.txt", | |
"testing2.txt", | |
"testing3.txt", | |
"testing4.txt", | |
"time_series.py", | |
"toolbar.ipynb", | |
"us-cities.json", | |
"utlls.ipynb", | |
"voila.ipynb" | |
], | |
"index": 49, | |
"layout": "IPY_MODEL_9745092c5f874af08556c1d2691f4942", | |
"rows": 8, | |
"style": "IPY_MODEL_a70a8ad926934adebf7f03aaf13f372e" | |
} | |
}, | |
"92e27e04a0a145d18ccf692bea21169d": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none", | |
"width": "auto" | |
} | |
}, | |
"8a8b7ae137b44ad8a0ffe5a3a2e86957": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"21b70d5488124f9891493e4f1b373c49": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Cancel", | |
"layout": "IPY_MODEL_92e27e04a0a145d18ccf692bea21169d", | |
"style": "IPY_MODEL_8a8b7ae137b44ad8a0ffe5a3a2e86957" | |
} | |
}, | |
"698a4316ea4643ca9c6278c0f7d651f3": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"75dc8efb66a04bffa150308b2a684d7f": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"9a81601fb71744399292334b8032dd7e": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Select", | |
"layout": "IPY_MODEL_698a4316ea4643ca9c6278c0f7d651f3", | |
"style": "IPY_MODEL_75dc8efb66a04bffa150308b2a684d7f" | |
} | |
}, | |
"7e00edf527674a83abf5add5de82eddc": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none" | |
} | |
}, | |
"697d8a854fd24f5687499a3049848e1c": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"16b36b5537e74d41826991345b37a4ae": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_7e00edf527674a83abf5add5de82eddc", | |
"style": "IPY_MODEL_697d8a854fd24f5687499a3049848e1c" | |
} | |
}, | |
"b8c4a5229b8942fb9aa2f09459889665": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"4afc8878965d4af1bb04b59c395003d2": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"4e8c788847154ca1b1f104b5dd3587dd": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_b8c4a5229b8942fb9aa2f09459889665", | |
"placeholder": "", | |
"style": "IPY_MODEL_4afc8878965d4af1bb04b59c395003d2", | |
"value": "<span style=\"margin-left:10px; color:black;\">No file selected</span>" | |
} | |
}, | |
"c278b879672f4693bce2227fa36b5b2c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none", | |
"grid_gap": "0px 0px", | |
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ", | |
"grid_template_columns": "60% 40%", | |
"grid_template_rows": "auto auto", | |
"width": "500px" | |
} | |
}, | |
"d30c4e2f707742f4a51b7e8288587eb7": { | |
"model_name": "GridBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_2db257dfa76b402090dd2456f3ebc8f9", | |
"IPY_MODEL_2ff387e312684d9b8fa23b98f3c32f56", | |
"IPY_MODEL_6a665c419ea0483db8ca2e5602cce3cd" | |
], | |
"layout": "IPY_MODEL_c278b879672f4693bce2227fa36b5b2c" | |
} | |
}, | |
"6d336532a54b483fbe69d0250a2da40e": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"37331a912aba4e8e9705cac2ca83d901": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_9a81601fb71744399292334b8032dd7e", | |
"IPY_MODEL_21b70d5488124f9891493e4f1b373c49", | |
"IPY_MODEL_4e8c788847154ca1b1f104b5dd3587dd" | |
], | |
"layout": "IPY_MODEL_6d336532a54b483fbe69d0250a2da40e" | |
} | |
}, | |
"b66be40c0ba840b1b1e203758a11d05c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"ddd531630cb043b4b52dd6ed471ad736": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_16b36b5537e74d41826991345b37a4ae", | |
"IPY_MODEL_d30c4e2f707742f4a51b7e8288587eb7", | |
"IPY_MODEL_37331a912aba4e8e9705cac2ca83d901" | |
], | |
"layout": "IPY_MODEL_b66be40c0ba840b1b1e203758a11d05c" | |
} | |
}, | |
"b1f1cb93b539422faf3b226ef7aacc3f": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"f5ad6aaa583a48d3b891200ba3354555": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "", | |
"description_width": "" | |
} | |
}, | |
"bc983ddd25f341cdb3cb98d86884cfd7": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"OK", | |
"Cancel" | |
], | |
"button_style": "primary", | |
"icons": [], | |
"index": null, | |
"layout": "IPY_MODEL_b1f1cb93b539422faf3b226ef7aacc3f", | |
"style": "IPY_MODEL_f5ad6aaa583a48d3b891200ba3354555", | |
"tooltips": [ | |
"OK", | |
"Cancel" | |
] | |
} | |
}, | |
"5bda80fde5a54e3caabd2ef1054375cd": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"47fc4155b9614a2c8b302a5b27de45de": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"3adaf83651f54b469110873a227215b1": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "mouse-pointer", | |
"layout": "IPY_MODEL_5bda80fde5a54e3caabd2ef1054375cd", | |
"style": "IPY_MODEL_47fc4155b9614a2c8b302a5b27de45de", | |
"tooltip": "Default pointer" | |
} | |
}, | |
"da1840b506ba4d59aff4e3072afe511c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"938e3c21518646998fed570921e37791": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"52273f4f88b14221a75aef1f0c89b767": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "camera", | |
"layout": "IPY_MODEL_da1840b506ba4d59aff4e3072afe511c", | |
"style": "IPY_MODEL_938e3c21518646998fed570921e37791", | |
"tooltip": "Save map as HTML or image" | |
} | |
}, | |
"58bb8bb468f247af94e8cbb4a931e59e": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"f417157ec91b405f8bf861bc0ad3fc3f": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"b37c9c4bb44a4e909a81829ddc926a51": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "info", | |
"layout": "IPY_MODEL_58bb8bb468f247af94e8cbb4a931e59e", | |
"style": "IPY_MODEL_f417157ec91b405f8bf861bc0ad3fc3f", | |
"tooltip": "Inspector" | |
} | |
}, | |
"a67a09729fd040b6aba54fc964878bf7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"c0a94747dbed41b28859c1b00ca53eb0": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"d08cc66a896240e799aafc8e5bb388de": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "map-marker", | |
"layout": "IPY_MODEL_a67a09729fd040b6aba54fc964878bf7", | |
"style": "IPY_MODEL_c0a94747dbed41b28859c1b00ca53eb0", | |
"tooltip": "Plotting" | |
} | |
}, | |
"d22e3f361c13451fb38b94cf15a74486": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_gap": "1px 1px", | |
"grid_template_columns": "42px 42px ", | |
"grid_template_rows": "40px 40px ", | |
"width": "90px" | |
} | |
}, | |
"5d733692d90841b8a418b7a02e3f5420": { | |
"model_name": "GridBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_3adaf83651f54b469110873a227215b1", | |
"IPY_MODEL_52273f4f88b14221a75aef1f0c89b767", | |
"IPY_MODEL_b37c9c4bb44a4e909a81829ddc926a51", | |
"IPY_MODEL_d08cc66a896240e799aafc8e5bb388de" | |
], | |
"layout": "IPY_MODEL_d22e3f361c13451fb38b94cf15a74486" | |
} | |
}, | |
"26879d4d805246f387833dcccce38a5c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "37px" | |
} | |
}, | |
"86b1308f8ace41539f131fc52b3264a8": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"2220429160c64bd2b6f168bf0195099a": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"icon": "wrench", | |
"layout": "IPY_MODEL_26879d4d805246f387833dcccce38a5c", | |
"style": "IPY_MODEL_86b1308f8ace41539f131fc52b3264a8", | |
"tooltip": "Toolbar" | |
} | |
}, | |
"98b13efded844eaf8a64ba594ce7ebca": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"eac65d851fbb436893867cd2f7f9b385": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_2220429160c64bd2b6f168bf0195099a" | |
], | |
"layout": "IPY_MODEL_98b13efded844eaf8a64ba594ce7ebca" | |
} | |
}, | |
"c8cd3c3329054b669ecfbd2286b3ec98": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_eac65d851fbb436893867cd2f7f9b385" | |
} | |
}, | |
"6987b16c46c546eb887676296548a0ce": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_fca5a279c41f4fa7a7ce5cf539ad9ec7" | |
} | |
}, | |
"9e179b409bf14512beeca36655fef2d1": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "ROI", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/a27da97e79d05e0f10fa53d0b8f9c00b-d6d857a5f7642eea796f80f90d88ca28/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"72efe9aa611c4f77b48f3cc6e8ff2635": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Maps", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=m&x={x}&y={y}&z={z}" | |
} | |
}, | |
"ce6428c8ef9e4554bf4327b6e8f70f1c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" | |
} | |
}, | |
"eb3b30a9daac4e4b8ebebb62ca04e2ee": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=p&x={x}&y={y}&z={z}" | |
} | |
}, | |
"29a16b8318f64599bcebac7bd463a392": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=y&x={x}&y={y}&z={z}" | |
} | |
}, | |
"ea2e6790eaf845319e81720640b40ce8": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"e37ac6c5848f4e9a9ae458b276c37fe5": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Ocean", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/ArcGIS/rest/services/Ocean/World_Ocean_Base/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"b32d2a55596041dab4679abcff671e17": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"61480083b4254b20ae7614c4e8113f38": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Standard", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"719b9b8061a647768f1b2dce3ce3e88e": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Terrain_Base/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"98b1befb6b3c4aff98bf3dbc67addd77": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Transportation", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/Reference/World_Transportation/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"2b2bcea0606b4a4caa93ca6da15e6ffb": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Topo World", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"3a40e4c754f842a6b485155ff668e16f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri National Geographic", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"9458abc431fa4f8a8d595750bc39a96f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Shaded Relief", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/arcgis/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"bf4b2f2d9e244fd49ccaf05d7244714d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Physical Map", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/arcgis/rest/services/World_Physical_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"e6ec320450b64b89b096177a5c5b9fde": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "FWS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "1", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "FWS NWI Wetlands", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.fws.gov/wetlands/arcgis/services/Wetlands/MapServer/WMSServer?" | |
} | |
}, | |
"af58d7a8fb1d44bdb2c96c346160863b": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "FWS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "FWS NWI Wetlands Raster", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.fws.gov/wetlands/arcgis/services/Wetlands_Raster/ImageServer/WMSServer?" | |
} | |
}, | |
"ebef41b25e8c4f0eae3bf9caf34999f4": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Maps", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=m&x={x}&y={y}&z={z}" | |
} | |
}, | |
"c72594e1308f428fa7950c7c50126085": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" | |
} | |
}, | |
"d035b07d765543829848da22bacb30b5": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=p&x={x}&y={y}&z={z}" | |
} | |
}, | |
"fc8169bf4d234ebcb9279bef626458aa": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=y&x={x}&y={y}&z={z}" | |
} | |
}, | |
"5335d28ad2374c22b204375cabae7549": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2016_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2016 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2016_Land_Cover_L48/wms?" | |
} | |
}, | |
"054f507cd9994483b0c2a305088d86c9": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2013_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2013 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2013_Land_Cover_L48/wms?" | |
} | |
}, | |
"b35a64ce062c439580b6e0ff02a39624": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2011_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2011 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2011_Land_Cover_L48/wms?" | |
} | |
}, | |
"52b0907d362b4190947f28df44d2511b": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2008_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2008 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2008_Land_Cover_L48/wms?" | |
} | |
}, | |
"c1aeb742d3704c41a291f7cc4b1de2c0": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2006_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2006 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2006_Land_Cover_L48/wms?" | |
} | |
}, | |
"48f4adb406ee4c31a30c859bdfee27f4": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2004_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2004 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2004_Land_Cover_L48/wms?" | |
} | |
}, | |
"7d0a8e5d87af44da989d95a2ab846901": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2001_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2001 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2001_Land_Cover_L48/wms?" | |
} | |
}, | |
"cc71e8a0104e454d9a9ba959b4f5a2d9": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS NAIP Imagery", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://services.nationalmap.gov/arcgis/services/USGSNAIPImagery/ImageServer/WMSServer?" | |
} | |
}, | |
"9321945fcc85472288663a2d112a9883": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS Hydrography", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://basemap.nationalmap.gov/arcgis/services/USGSHydroCached/MapServer/WMSServer?" | |
} | |
}, | |
"3a7f53a62152427f9da34093882bae6b": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "3DEPElevation:None", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS 3DEP Elevation", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://elevation.nationalmap.gov/arcgis/services/3DEPElevation/ImageServer/WMSServer?" | |
} | |
}, | |
"2f9f04b19d40436dbf30e1958687e896": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.Mapnik", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
] | |
} | |
}, | |
"f5ccaeebe8e545039cfa817305cb93ff": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.BlackAndWhite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png" | |
} | |
}, | |
"6136239e352d43449ffc683238a1333e": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.DE", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png" | |
} | |
}, | |
"e673f62e0ac4471e8a07c9f21379afbc": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© Openstreetmap France | © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.France", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png" | |
} | |
}, | |
"0cdba0f3f5654ce2aa812c7c1a155ae0": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, Tiles courtesy of <a href=\"http://hot.openstreetmap.org/\" target=\"_blank\">Humanitarian OpenStreetMap Team</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.HOT", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png" | |
} | |
}, | |
"34423d590f074e30b4630153ef5191a8": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map data: © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, <a href=\"http://viewfinderpanoramas.org\">SRTM</a> | Map style: © <a href=\"https://opentopomap.org\">OpenTopoMap</a> (<a href=\"https://creativecommons.org/licenses/by-sa/3.0/\">CC-BY-SA</a>)", | |
"max_native_zoom": 18, | |
"max_zoom": 17, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenTopoMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png" | |
} | |
}, | |
"4b48c1548be34637afff16fdf4e27f2f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles courtesy of <a href=\"http://openstreetmap.se/\" target=\"_blank\">OpenStreetMap Sweden</a> — Map data © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Hydda.Full", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.se/hydda/full/{z}/{x}/{y}.png" | |
} | |
}, | |
"2cc614ab1ecf410fab44c9d93bbb67ca": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles courtesy of <a href=\"http://openstreetmap.se/\" target=\"_blank\">OpenStreetMap Sweden</a> — Map data © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Hydda.Base", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.se/hydda/base/{z}/{x}/{y}.png" | |
} | |
}, | |
"090f40d877ec48dc973aab5a60d3c35a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldStreetMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"238d69caa5e741dd914dc7435b489519": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Copyright: ©2012 DeLorme", | |
"max_native_zoom": 18, | |
"max_zoom": 11, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.DeLorme", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/Specialty/DeLorme_World_Base_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"3aba8f48f96848238d6a247a96f0bb52": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldTopoMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"6e6283c243e140e1b36858b82e24db94": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldImagery", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"fbc684aecd424052868515743e675483": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC", | |
"max_native_zoom": 18, | |
"max_zoom": 16, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.NatGeoWorldMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"854918e146b44b6ab54ffac4f89840e9": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "HikeBike.HikeBike", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tiles.wmflabs.org/hikebike/{z}/{x}/{y}.png" | |
} | |
}, | |
"63a40a0341df4b39a57a466f7ad12010": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> & USGS", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "MtbMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png" | |
} | |
}, | |
"2a81f10c426d445b87a34624e1cd610f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> © <a href=\"http://cartodb.com/attributions\">CartoDB</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "CartoDB.Positron", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://c.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png" | |
} | |
}, | |
"b4031b01c2894f658e7b971dc74d67e4": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> © <a href=\"http://cartodb.com/attributions\">CartoDB</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "CartoDB.DarkMatter", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://c.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png" | |
} | |
}, | |
"5393314b4c9b4c60accb397b6979e319": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"2b80cd3db24440278502a42e5211d2d6": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraBands367CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands367/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"d63aa7e89ed1446fa8839ca6b92f523c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraBands721CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands721/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"f30c0487bd67472da462608eb0e521c8": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisAquaTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"3fbc46f50aa447b28320a27b39a6cc56": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisAquaBands721CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_Bands721/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"6bf9e4edde9c491eb3e3a287b7f66f20": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ViirsTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_SNPP_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"5c94f36fbc784d2e85485d7682a0372b": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 8, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ViirsEarthAtNight2012", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_Black_Marble/default/2012-01-01/GoogleMapsCompatible_Level8/{z}/{y}/{x}.png" | |
} | |
}, | |
"fe9e18b8f77d4996969dc599d32d3deb": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 5, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble3413", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3413/best/BlueMarble_NextGeneration/default/EPSG3413_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"381ec9960b724e83be32ff6944767f5a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 5, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble3031", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3031/best/BlueMarble_NextGeneration/default/EPSG3031_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"9044f58c93cf4cf4ae6c894bb123da8b": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 8, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/BlueMarble_NextGeneration/default/EPSG3857_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"dd43dfb2042c44cd8b28f82ed614ddb3": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.All", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/all/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"d937a2de33c94b13ae97e4800d96fb4d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Ride", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/ride/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"0171b949694c4050993548f50bfbb2ec": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Run", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/run/bluered/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"c7cb6af65edf4f119127b22775ab2143": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Water", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/water/blue/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"8c8462aa10d74591854c0f9430e4cae3": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Winter", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/winter/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"f06fa0ede7184a8f9c079ed0b592cf3a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Stamen.Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png" | |
} | |
}, | |
"4864ff0e5d9f455a894d22ada8c0f89a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"name": "Stamen.Toner", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/toner/{z}/{x}/{y}.png" | |
} | |
}, | |
"5fe1fb695edc420687092ead9d99e194": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Stamen.Watercolor", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png" | |
} | |
}, | |
"65814dc3dc6647dba80bdf2bb8a4fc23": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2" | |
} | |
}, | |
"2fe72dbf15dd44e28d9888b824a81243": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "move" | |
} | |
}, | |
"37997c054e2846fcbc47af0e2f7d3360": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"base": true, | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
] | |
} | |
}, | |
"cd56edea691b49b8b7a4fbeaa1a47a89": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "550px" | |
} | |
}, | |
"87b964856f074aa28d0506d8ed214930": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2" | |
} | |
}, | |
"d1744cdfcbbd488db9df1da62327314f": { | |
"model_name": "LeafletMapModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"bottom": 1130, | |
"center": [ | |
28.459033019728068, | |
-111.88476562500001 | |
], | |
"controls": [ | |
"IPY_MODEL_d4b6b4931d1e48fdba412479129c9978", | |
"IPY_MODEL_aa1ef7914b7744fdbe51ebf3ac5df322", | |
"IPY_MODEL_f2d4598fa2b348d884925ea4a29a0a39", | |
"IPY_MODEL_0c46b82fb1fd43f7bc2454c8eeafc8d2", | |
"IPY_MODEL_de7539b5bcdf46e2bd10b1699478936e", | |
"IPY_MODEL_d77c20a77a374024a7fb9af901742b6c", | |
"IPY_MODEL_ead20e79edec4e3b992a599ae186d5ba", | |
"IPY_MODEL_bcd20666519c4c2e832794c7b5b86003", | |
"IPY_MODEL_012cb84d225b469c98412893eb4528e9", | |
"IPY_MODEL_579eaf4e677047e88e46e0c61b0bd84d", | |
"IPY_MODEL_6b9c3c5e4ac949919214d6b384307582", | |
"IPY_MODEL_8453cc36289646ad9c278687ae549ea9", | |
"IPY_MODEL_1b6c7afed9724f8d937b85d993f63111" | |
], | |
"default_style": "IPY_MODEL_f911831a96c541b798e2de2ee7048a64", | |
"dragging_style": "IPY_MODEL_2fe72dbf15dd44e28d9888b824a81243", | |
"east": -27.24609375, | |
"fullscreen": false, | |
"interpolation": "bilinear", | |
"layers": [ | |
"IPY_MODEL_37997c054e2846fcbc47af0e2f7d3360", | |
"IPY_MODEL_72efe9aa611c4f77b48f3cc6e8ff2635", | |
"IPY_MODEL_61938fbdff894b8c9eed256494d36000", | |
"IPY_MODEL_9747bacb85b24f3e84d1982771cc7f42", | |
"IPY_MODEL_47f22667bf2846ff8f923e3cfb9b6fd2" | |
], | |
"layout": "IPY_MODEL_cd56edea691b49b8b7a4fbeaa1a47a89", | |
"left": -94, | |
"modisdate": "yesterday", | |
"north": 61.270232790000634, | |
"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", | |
"scroll_wheel_zoom", | |
"tap", | |
"tap_tolerance", | |
"touch_zoom", | |
"world_copy_jump", | |
"zoom", | |
"zoom_animation_threshold", | |
"zoom_delta", | |
"zoom_snap", | |
"zoom_start" | |
], | |
"right": 869, | |
"scroll_wheel_zoom": true, | |
"south": -18.312810846425442, | |
"style": "IPY_MODEL_f911831a96c541b798e2de2ee7048a64", | |
"top": 580, | |
"west": -196.52343750000003, | |
"window_url": "http://127.0.0.1:8888/notebooks/testing/rainfall.ipynb", | |
"zoom": 3 | |
} | |
}, | |
"611f21f4416c4d1a86d22e2d7c1d811c": { | |
"model_name": "LeafletZoomControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"zoom_in_text", | |
"zoom_in_title", | |
"zoom_out_text", | |
"zoom_out_title" | |
] | |
} | |
}, | |
"ef27df7a2b724260ac52eb3b445517f2": { | |
"model_name": "LeafletAttributionControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"prefix" | |
], | |
"position": "bottomright", | |
"prefix": "ipyleaflet" | |
} | |
}, | |
"9e2e934985f64b6ba038b0d30ee901c8": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "36px" | |
} | |
}, | |
"e9378a3dd199499b8824a0316ba76d61": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"2e833e85a1e143fca4f26bd3694c19df": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"icon": "globe", | |
"layout": "IPY_MODEL_9e2e934985f64b6ba038b0d30ee901c8", | |
"style": "IPY_MODEL_e9378a3dd199499b8824a0316ba76d61", | |
"tooltip": "Search location/data" | |
} | |
}, | |
"4bd1142eac284186925159902e81c5e7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"01c76994115d4247af3e4be13b303b6b": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "110px", | |
"description_width": "" | |
} | |
}, | |
"b06ba84218f44494b6a1f302e2a0196d": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"name/address", | |
"lat-lon", | |
"data" | |
], | |
"button_style": "", | |
"icons": [], | |
"index": 0, | |
"layout": "IPY_MODEL_4bd1142eac284186925159902e81c5e7", | |
"style": "IPY_MODEL_01c76994115d4247af3e4be13b303b6b", | |
"tooltips": [ | |
"Search by place name or address", | |
"Search by lat-lon coordinates", | |
"Search Earth Engine data catalog" | |
] | |
} | |
}, | |
"10166cef7eb14fb8b9ea09f84d3f8256": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "340px" | |
} | |
}, | |
"08f971bf7f994635888da8e2161630bd": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"4a466cc5392147d5a8d63e4e10369916": { | |
"model_name": "TextModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_10166cef7eb14fb8b9ea09f84d3f8256", | |
"placeholder": "Search by place name or address", | |
"style": "IPY_MODEL_08f971bf7f994635888da8e2161630bd" | |
} | |
}, | |
"354ecb66b4cb442ea210b2bf734f5370": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_height": "250px", | |
"max_width": "340px", | |
"overflow": "scroll" | |
} | |
}, | |
"80b6d9bfea574eed9404472059c020d6": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_354ecb66b4cb442ea210b2bf734f5370" | |
} | |
}, | |
"4970fcd0ea0a464084253920a01a180f": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"b6549becec6043199505691321558813": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"074753f39eb0486bbf7fb851fa344af6": { | |
"model_name": "RadioButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"index": null, | |
"layout": "IPY_MODEL_4970fcd0ea0a464084253920a01a180f", | |
"style": "IPY_MODEL_b6549becec6043199505691321558813" | |
} | |
}, | |
"459944c2359d430bbd84f7b909201746": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_width": "279px", | |
"min_width": "279px" | |
} | |
}, | |
"46db1c3014864ad2ac9057f5b9866630": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"559c5376b902422c96d66f3c3f66cbe1": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"index": null, | |
"layout": "IPY_MODEL_459944c2359d430bbd84f7b909201746", | |
"style": "IPY_MODEL_46db1c3014864ad2ac9057f5b9866630" | |
} | |
}, | |
"141641fa4aef45e88e2ca67c094e0b58": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_width": "57px", | |
"min_width": "57px" | |
} | |
}, | |
"0cbeeca47c7e483c8360ecc83a184089": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"e50965040767464b8145a46813a35086": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"description": "import", | |
"layout": "IPY_MODEL_141641fa4aef45e88e2ca67c094e0b58", | |
"style": "IPY_MODEL_0cbeeca47c7e483c8360ecc83a184089", | |
"tooltip": "Click to import the selected asset" | |
} | |
}, | |
"a5ed5cb93f884deab86df0bc2e1db4d5": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"1942e372aced46cf9498e7a67d93e483": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"7d6b929246c443f396e218771b169111": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_a5ed5cb93f884deab86df0bc2e1db4d5", | |
"style": "IPY_MODEL_1942e372aced46cf9498e7a67d93e483" | |
} | |
}, | |
"48d22dee2a974eabb0d93848f5fb36b3": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"d80588db616c40639dc8def4885b82a9": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_e50965040767464b8145a46813a35086", | |
"IPY_MODEL_559c5376b902422c96d66f3c3f66cbe1" | |
], | |
"layout": "IPY_MODEL_48d22dee2a974eabb0d93848f5fb36b3" | |
} | |
}, | |
"ca45efcd0af1466cbc8b1c1953b8f1b1": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"1daf9580a69c429ab66910fcdce9e6a0": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_b06ba84218f44494b6a1f302e2a0196d", | |
"IPY_MODEL_4a466cc5392147d5a8d63e4e10369916" | |
], | |
"layout": "IPY_MODEL_ca45efcd0af1466cbc8b1c1953b8f1b1" | |
} | |
}, | |
"dec509b29ef7434c9bab177c2b94fb73": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"4ed45f703aef42aab4e3dd9faa2400f7": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_2e833e85a1e143fca4f26bd3694c19df" | |
], | |
"layout": "IPY_MODEL_dec509b29ef7434c9bab177c2b94fb73" | |
} | |
}, | |
"d4b6b4931d1e48fdba412479129c9978": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topleft", | |
"widget": "IPY_MODEL_4ed45f703aef42aab4e3dd9faa2400f7" | |
} | |
}, | |
"09225b71f6ab4d67af2e55e14effaf40": { | |
"model_name": "LeafletAwesomeIconModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"icon_color": "darkgreen", | |
"marker_color": "green", | |
"name": "check" | |
} | |
}, | |
"56aba9a88b2240e09e11e631d60711a9": { | |
"model_name": "LeafletMarkerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"icon": "IPY_MODEL_09225b71f6ab4d67af2e55e14effaf40", | |
"options": [ | |
"alt", | |
"draggable", | |
"keyboard", | |
"rise_offset", | |
"rise_on_hover", | |
"rotation_angle", | |
"rotation_origin", | |
"title", | |
"z_index_offset" | |
] | |
} | |
}, | |
"aa1ef7914b7744fdbe51ebf3ac5df322": { | |
"model_name": "LeafletSearchControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"marker": "IPY_MODEL_56aba9a88b2240e09e11e631d60711a9", | |
"options": [ | |
"animate_location", | |
"auto_collapse", | |
"auto_type", | |
"found_style", | |
"jsonp_param", | |
"position", | |
"property_loc", | |
"property_name", | |
"url", | |
"zoom" | |
], | |
"position": "topleft", | |
"url": "https://nominatim.openstreetmap.org/search?format=json&q={s}", | |
"zoom": 5 | |
} | |
}, | |
"f2d4598fa2b348d884925ea4a29a0a39": { | |
"model_name": "LeafletZoomControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"zoom_in_text", | |
"zoom_in_title", | |
"zoom_out_text", | |
"zoom_out_title" | |
] | |
} | |
}, | |
"0c46b82fb1fd43f7bc2454c8eeafc8d2": { | |
"model_name": "LeafletLayersControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright" | |
} | |
}, | |
"de7539b5bcdf46e2bd10b1699478936e": { | |
"model_name": "LeafletScaleControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"imperial": true, | |
"max_width": 100, | |
"metric": true, | |
"options": [ | |
"imperial", | |
"max_width", | |
"metric", | |
"position", | |
"update_when_idle" | |
], | |
"position": "bottomleft", | |
"update_when_idle": false | |
} | |
}, | |
"d77c20a77a374024a7fb9af901742b6c": { | |
"model_name": "LeafletFullScreenControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
] | |
} | |
}, | |
"ead20e79edec4e3b992a599ae186d5ba": { | |
"model_name": "LeafletMeasureControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"active_color": "orange", | |
"options": [ | |
"active_color", | |
"capture_z_index", | |
"completed_color", | |
"popup_options", | |
"position", | |
"primary_area_unit", | |
"primary_length_unit", | |
"secondary_area_unit", | |
"secondary_length_unit" | |
], | |
"position": "bottomleft", | |
"primary_length_unit": "kilometers", | |
"secondary_area_unit": null, | |
"secondary_length_unit": null | |
} | |
}, | |
"bcd20666519c4c2e832794c7b5b86003": { | |
"model_name": "LeafletAttributionControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"prefix" | |
], | |
"position": "bottomright", | |
"prefix": "ipyleaflet" | |
} | |
}, | |
"1b6c7afed9724f8d937b85d993f63111": { | |
"model_name": "LeafletDrawControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"circle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"marker": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"options": [ | |
"position" | |
], | |
"rectangle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
} | |
} | |
}, | |
"6b3fa7c5166e4d3783d8e191efb872f4": { | |
"model_name": "LeafletDrawControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"circle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"options": [ | |
"position" | |
], | |
"polygon": {}, | |
"polyline": {}, | |
"rectangle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
} | |
} | |
}, | |
"3938475efde540938cbce69112af6aba": { | |
"model_name": "LeafletMarkerClusterModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"name": "Marker Cluster" | |
} | |
}, | |
"5adc24a3102f4299bc954e2b0435bb24": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "18px", | |
"width": "13ex" | |
} | |
}, | |
"02b5dfff2d154b6280f4f16722611fad": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"29eedacf27aa4c428c5ea69589429059": { | |
"model_name": "CheckboxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Inspector", | |
"disabled": false, | |
"indent": false, | |
"layout": "IPY_MODEL_5adc24a3102f4299bc954e2b0435bb24", | |
"style": "IPY_MODEL_02b5dfff2d154b6280f4f16722611fad", | |
"value": false | |
} | |
}, | |
"dd96ba4f85644733a120ad122f6ce75c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "13ex" | |
} | |
}, | |
"378a1a4839664435b93313bcc3627108": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"2d274ef5b8e1404f8c9579749091c2cd": { | |
"model_name": "CheckboxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Plotting", | |
"disabled": false, | |
"indent": false, | |
"layout": "IPY_MODEL_dd96ba4f85644733a120ad122f6ce75c", | |
"style": "IPY_MODEL_378a1a4839664435b93313bcc3627108", | |
"value": false | |
} | |
}, | |
"a8fedad4d0054625b34549693ea943a4": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"0a69c9d467cd4c69a5b147f8769847b2": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_29eedacf27aa4c428c5ea69589429059", | |
"IPY_MODEL_2d274ef5b8e1404f8c9579749091c2cd" | |
], | |
"layout": "IPY_MODEL_a8fedad4d0054625b34549693ea943a4" | |
} | |
}, | |
"012cb84d225b469c98412893eb4528e9": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_0a69c9d467cd4c69a5b147f8769847b2" | |
} | |
}, | |
"b0682015c79242febfc7906dae5211e4": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"border": "1px solid black" | |
} | |
}, | |
"c5b8e12c80a74e6f9f9d34bd142a49ce": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_b0682015c79242febfc7906dae5211e4" | |
} | |
}, | |
"579eaf4e677047e88e46e0c61b0bd84d": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_c5b8e12c80a74e6f9f9d34bd142a49ce" | |
} | |
}, | |
"bbc31e2b451b4beaadfeaff53a5c50fe": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"8b6d44fe6b004ac595fc3ce93f74ff4d": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_bbc31e2b451b4beaadfeaff53a5c50fe" | |
} | |
}, | |
"b25258e51f0a4846982151ec46b212ef": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"3e1e8886c4ca4cb3a5bfdb0437164c97": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_9256e5e616c64e72bab462d281378cfa", | |
"IPY_MODEL_813e380e296940319734d01a58b7b5f3" | |
], | |
"layout": "IPY_MODEL_b25258e51f0a4846982151ec46b212ef" | |
} | |
}, | |
"6bd5958d233d42ae9b3f2fa003e506a3": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"19639492663c4fb89857fbef93507f1c": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "", | |
"description_width": "" | |
} | |
}, | |
"9256e5e616c64e72bab462d281378cfa": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"HTML", | |
"PNG", | |
"JPG" | |
], | |
"button_style": "", | |
"icons": [], | |
"index": 0, | |
"layout": "IPY_MODEL_6bd5958d233d42ae9b3f2fa003e506a3", | |
"style": "IPY_MODEL_19639492663c4fb89857fbef93507f1c", | |
"tooltips": [ | |
"Save the map as an HTML file", | |
"Take a screenshot and save as a PNG file", | |
"Take a screenshot and save as a JPG file" | |
] | |
} | |
}, | |
"99d71bbb0e2a4cabbfa17072cdd4f884": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "pathlist", | |
"width": "auto" | |
} | |
}, | |
"d59c2c5b6eb84501b14f38737ea025e7": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"69b855e7030d46d394726f2e8cb1acda": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"/media/hdd/Dropbox/git/geemap/testing", | |
"/media/hdd/Dropbox/git/geemap", | |
"/media/hdd/Dropbox/git", | |
"/media/hdd/Dropbox", | |
"/media/hdd", | |
"/media", | |
"/" | |
], | |
"index": 0, | |
"layout": "IPY_MODEL_99d71bbb0e2a4cabbfa17072cdd4f884", | |
"style": "IPY_MODEL_d59c2c5b6eb84501b14f38737ea025e7" | |
} | |
}, | |
"d603cf16a8a74499a9e32f7630ffb7b5": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "filename", | |
"width": "auto" | |
} | |
}, | |
"e0bcc964d8724633aef6f5e562a546cd": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"ecc268be7e19432a987f3caec3182509": { | |
"model_name": "TextModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_d603cf16a8a74499a9e32f7630ffb7b5", | |
"placeholder": "output filename", | |
"style": "IPY_MODEL_e0bcc964d8724633aef6f5e562a546cd", | |
"value": "my_map.html" | |
} | |
}, | |
"3f3f4d722fe742db904d01c688c94836": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "dircontent", | |
"width": "auto" | |
} | |
}, | |
"16708ae2ecd44046a90b996d864f8aef": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"5f9013f84f5246a48d58def1fb8e945c": { | |
"model_name": "SelectModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"..", | |
"china", | |
"data", | |
"datapane", | |
"datasets", | |
"kepler", | |
"update", | |
"water_mapping", | |
"wetlands", | |
"01_surface_water_mapping.ipynb", | |
"06Q1fSz.jpg", | |
"06Q1fSz.png", | |
"06Q1fSz.tif", | |
"0_geemap_key_features.ipynb", | |
"10.21105.joss.01886.pdf", | |
"10_shapefiles.ipynb", | |
"11_export_image.ipynb", | |
"34_plotting.ipynb", | |
"Hillshade.ipynb", | |
"NDVI.ipynb", | |
"SearchControl.ipynb", | |
"Untitled.ipynb", | |
"api-copy.html", | |
"api.html", | |
"api.ipynb", | |
"api.png", | |
"api.py", | |
"appveyor.yml", | |
"assets.csv", | |
"assets.ipynb", | |
"authenticate.ipynb", | |
"basemaps.ipynb", | |
"bitmap_layer.html", | |
"clone.ipynb", | |
"clone_repo.ipynb", | |
"conver_js_ipynb.ipynb", | |
"datapane.ipynb", | |
"download.py", | |
"ee_api_docs.csv", | |
"ee_api_docs.pmdx", | |
"ee_landtrendr_fitted_rgb_thumbnails.py", | |
"export_ImageCollection.ipynb", | |
"gist.ipynb", | |
"globe_view.html", | |
"image_overlay.ipynb", | |
"ipytree.ipynb", | |
"joss.pdf", | |
"main.py", | |
"map_controls.ipynb", | |
"my_map.html", | |
"my_map.jpg", | |
"my_map.png", | |
"my_map2.html", | |
"projection.ipynb", | |
"pydeck-intro.ipynb", | |
"pydeck.ipynb", | |
"rainfall.ipynb", | |
"s2cloudless.ipynb", | |
"save.ipynb", | |
"sentinel.ipynb", | |
"terrain_layer.html", | |
"terrain_visualization.ipynb", | |
"testing.txt", | |
"testing2.txt", | |
"testing3.txt", | |
"testing4.txt", | |
"time_series.py", | |
"toolbar.ipynb", | |
"us-cities.json", | |
"utlls.ipynb", | |
"voila.ipynb" | |
], | |
"index": 49, | |
"layout": "IPY_MODEL_3f3f4d722fe742db904d01c688c94836", | |
"rows": 8, | |
"style": "IPY_MODEL_16708ae2ecd44046a90b996d864f8aef" | |
} | |
}, | |
"5c54e464e6de457cb5c64e5b63a9333c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none", | |
"width": "auto" | |
} | |
}, | |
"bac0e87bd8cb4d888fca26348592dd4c": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"57399fec061e4e4dadb9ea15aecaa5a4": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Cancel", | |
"layout": "IPY_MODEL_5c54e464e6de457cb5c64e5b63a9333c", | |
"style": "IPY_MODEL_bac0e87bd8cb4d888fca26348592dd4c" | |
} | |
}, | |
"d7ee695eb4894640b30a87ce155fd56c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"8219b2731b3c4d439235d05ad9f9e8d8": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"23295fc6b3a14a8597ce3cdab0ed06cb": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Select", | |
"layout": "IPY_MODEL_d7ee695eb4894640b30a87ce155fd56c", | |
"style": "IPY_MODEL_8219b2731b3c4d439235d05ad9f9e8d8" | |
} | |
}, | |
"c4b8cd7c738c48588696f5107df84c5f": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none" | |
} | |
}, | |
"c630b976cfe543a08ba19c8128ea90ca": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"ea7df8f20d204929a7cc10f0be47af47": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_c4b8cd7c738c48588696f5107df84c5f", | |
"style": "IPY_MODEL_c630b976cfe543a08ba19c8128ea90ca" | |
} | |
}, | |
"b34001b6b12047eb9bcf8d224884e3f0": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"6b000ffb17cc4887b675ecb82664e332": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"a033fc07e4294272b81d6eddf4184546": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_b34001b6b12047eb9bcf8d224884e3f0", | |
"placeholder": "", | |
"style": "IPY_MODEL_6b000ffb17cc4887b675ecb82664e332", | |
"value": "<span style=\"margin-left:10px; color:black;\">No file selected</span>" | |
} | |
}, | |
"8f698b696e2344c0b019d2c23546c757": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none", | |
"grid_gap": "0px 0px", | |
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ", | |
"grid_template_columns": "60% 40%", | |
"grid_template_rows": "auto auto", | |
"width": "500px" | |
} | |
}, | |
"b55514dbd54e4eb899908b51a5156fc0": { | |
"model_name": "GridBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_69b855e7030d46d394726f2e8cb1acda", | |
"IPY_MODEL_ecc268be7e19432a987f3caec3182509", | |
"IPY_MODEL_5f9013f84f5246a48d58def1fb8e945c" | |
], | |
"layout": "IPY_MODEL_8f698b696e2344c0b019d2c23546c757" | |
} | |
}, | |
"c0267ff002bf46b99416e23d68025b06": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"c95feb0395304670b009997b8f9ce6b1": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_23295fc6b3a14a8597ce3cdab0ed06cb", | |
"IPY_MODEL_57399fec061e4e4dadb9ea15aecaa5a4", | |
"IPY_MODEL_a033fc07e4294272b81d6eddf4184546" | |
], | |
"layout": "IPY_MODEL_c0267ff002bf46b99416e23d68025b06" | |
} | |
}, | |
"e9c1365dbbbb4cab9ef327a7c6b8aced": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"813e380e296940319734d01a58b7b5f3": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_ea7df8f20d204929a7cc10f0be47af47", | |
"IPY_MODEL_b55514dbd54e4eb899908b51a5156fc0", | |
"IPY_MODEL_c95feb0395304670b009997b8f9ce6b1" | |
], | |
"layout": "IPY_MODEL_e9c1365dbbbb4cab9ef327a7c6b8aced" | |
} | |
}, | |
"3a805db68e2946419b2efd88c0e44c7c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"35c0b00908814b0e9bae315eb2f16496": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "", | |
"description_width": "" | |
} | |
}, | |
"02a82eb630484d8499d6711a2f2a0b49": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"OK", | |
"Cancel" | |
], | |
"button_style": "primary", | |
"icons": [], | |
"index": null, | |
"layout": "IPY_MODEL_3a805db68e2946419b2efd88c0e44c7c", | |
"style": "IPY_MODEL_35c0b00908814b0e9bae315eb2f16496", | |
"tooltips": [ | |
"OK", | |
"Cancel" | |
] | |
} | |
}, | |
"5fc2ab5ae72a4a60b8a720f54c107d0a": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"b219955b9b024ef390d1d8af29c9a25a": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"5c17b549e62943139930402cc23aee58": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "mouse-pointer", | |
"layout": "IPY_MODEL_5fc2ab5ae72a4a60b8a720f54c107d0a", | |
"style": "IPY_MODEL_b219955b9b024ef390d1d8af29c9a25a", | |
"tooltip": "Default pointer" | |
} | |
}, | |
"7e556f6c557b4bbc8dfabeed6111d852": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"5f72c716d60241d896ab95ec33f370f0": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"fe6cbb75164a4b3d87d6664303ea0e6b": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "camera", | |
"layout": "IPY_MODEL_7e556f6c557b4bbc8dfabeed6111d852", | |
"style": "IPY_MODEL_5f72c716d60241d896ab95ec33f370f0", | |
"tooltip": "Save map as HTML or image" | |
} | |
}, | |
"d2dd6629a42a4680bfe7dc6458a2b732": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"8aeaff3cd4f9463487f53e2c12da8cc4": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"847dbfa1e413423ba1d737785e6e91c9": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "info", | |
"layout": "IPY_MODEL_d2dd6629a42a4680bfe7dc6458a2b732", | |
"style": "IPY_MODEL_8aeaff3cd4f9463487f53e2c12da8cc4", | |
"tooltip": "Inspector" | |
} | |
}, | |
"a218b6808ccd4c94a27ec8fff0ab9a1b": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"a2822e6a8adf451695b9670f9847e21a": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"e51860e9aeef47c3bec89251ef77e2ce": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "map-marker", | |
"layout": "IPY_MODEL_a218b6808ccd4c94a27ec8fff0ab9a1b", | |
"style": "IPY_MODEL_a2822e6a8adf451695b9670f9847e21a", | |
"tooltip": "Plotting" | |
} | |
}, | |
"c14e0a4bbcbb496f8ec8b4915be796da": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_gap": "1px 1px", | |
"grid_template_columns": "42px 42px ", | |
"grid_template_rows": "40px 40px ", | |
"width": "90px" | |
} | |
}, | |
"06ec8b013e22454cb4d4626221e25d8e": { | |
"model_name": "GridBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_5c17b549e62943139930402cc23aee58", | |
"IPY_MODEL_fe6cbb75164a4b3d87d6664303ea0e6b", | |
"IPY_MODEL_847dbfa1e413423ba1d737785e6e91c9", | |
"IPY_MODEL_e51860e9aeef47c3bec89251ef77e2ce" | |
], | |
"layout": "IPY_MODEL_c14e0a4bbcbb496f8ec8b4915be796da" | |
} | |
}, | |
"3c9f4c0ed29f4ffeb7691f0e1988aa2d": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "37px" | |
} | |
}, | |
"1672532db03343da97a9fd7df8a55c92": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"dda40cc053f8483282b500bddefee68f": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"icon": "wrench", | |
"layout": "IPY_MODEL_3c9f4c0ed29f4ffeb7691f0e1988aa2d", | |
"style": "IPY_MODEL_1672532db03343da97a9fd7df8a55c92", | |
"tooltip": "Toolbar" | |
} | |
}, | |
"27bd77d80af4470f803482b519f7c310": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"f7d6f80af3194bf8847f95e06f2f1021": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_dda40cc053f8483282b500bddefee68f" | |
], | |
"layout": "IPY_MODEL_27bd77d80af4470f803482b519f7c310" | |
} | |
}, | |
"6b9c3c5e4ac949919214d6b384307582": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_f7d6f80af3194bf8847f95e06f2f1021" | |
} | |
}, | |
"8453cc36289646ad9c278687ae549ea9": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_8b6d44fe6b004ac595fc3ce93f74ff4d" | |
} | |
}, | |
"61938fbdff894b8c9eed256494d36000": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "ROI", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/a27da97e79d05e0f10fa53d0b8f9c00b-699ad92842aac2565f31355fbe1a5712/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"9747bacb85b24f3e84d1982771cc7f42": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Rainfall", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/b9fa4d50997f0ae359ef53e90d8ab4c9-fcaa27214569ed11db9246e798ba1988/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"87275bcb6bc6450e84ca2b48ad439ee8": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "18ex" | |
} | |
}, | |
"c1487e04474948dc86c5f833c48b5309": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"69d1f1ae33644d968da431d609fc0f1f": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"Rainfall" | |
], | |
"index": 0, | |
"layout": "IPY_MODEL_87275bcb6bc6450e84ca2b48ad439ee8", | |
"style": "IPY_MODEL_c1487e04474948dc86c5f833c48b5309" | |
} | |
}, | |
"aae060eb1d364408b24dbf59ea49805d": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_69d1f1ae33644d968da431d609fc0f1f" | |
} | |
}, | |
"1baf6f11e3ed444da3dbedf400179ffa": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"adc66efb2ca84159a11f9ab8ac14c876": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"border": "1px solid black" | |
} | |
}, | |
"c1286de3ae8146a5a105a942ba32101b": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_adc66efb2ca84159a11f9ab8ac14c876", | |
"outputs": [ | |
{ | |
"output_type": "display_data", | |
"data": { | |
"text/plain": "VBox(children=(Figure(axes=[Axis(scale=OrdinalScale()), Axis(orientation='vertical', scale=LinearScale())], fi…", | |
"application/vnd.jupyter.widget-view+json": { | |
"version_major": 2, | |
"version_minor": 0, | |
"model_id": "104f5d641d1448f5becf374a177a9537" | |
} | |
}, | |
"metadata": {} | |
} | |
] | |
} | |
}, | |
"3b3d7fbdc4a74088b471189cd90a3bf9": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "bottomright", | |
"widget": "IPY_MODEL_c1286de3ae8146a5a105a942ba32101b" | |
} | |
}, | |
"047617113a26437b89455f8dde398049": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "300px", | |
"width": "500px" | |
} | |
}, | |
"74a68db0c10447d7acfda719a15441e6": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"allow_padding": false, | |
"max": 1, | |
"min": 0, | |
"stabilized": false | |
} | |
}, | |
"4f76abaa54234889b968df32bbb216d2": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"allow_padding": false, | |
"max": 1, | |
"min": 0, | |
"stabilized": false | |
} | |
}, | |
"eedeb1b883e6439d96f89b9054b8567f": { | |
"model_name": "FigureModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"axes": [ | |
"IPY_MODEL_ce1ae5a820444b0cb35086ecb0fd979f", | |
"IPY_MODEL_520497be5c2b417bb3a1a9893114c0f3" | |
], | |
"layout": "IPY_MODEL_047617113a26437b89455f8dde398049", | |
"marks": [ | |
"IPY_MODEL_fd4cba93e00f4383ac1ad31ec55ef827" | |
], | |
"scale_x": "IPY_MODEL_74a68db0c10447d7acfda719a15441e6", | |
"scale_y": "IPY_MODEL_4f76abaa54234889b968df32bbb216d2", | |
"title": "Rainfall" | |
} | |
}, | |
"8e33221b41574829a19a722ded48ebd9": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"6d9a5a962801445aba5b1fada9596fce": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"87fc3442c6784100a279f6c8d3196493": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_8e33221b41574829a19a722ded48ebd9", | |
"y": "IPY_MODEL_6d9a5a962801445aba5b1fada9596fce" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAAg5v7sAQAAAACA57O4/AACsCOsfNEAAAAAAAAAAAAAAQPsjlPg/AAAAAAAAAAAAANir4YAJQAAAAAAh8vU/AAAAAAAAAAAAANDzqsYvQAAAAAAAAAAAAAAAAAAAAAAAgAkWEmgWQAAAAKB4dYU/AAAAkhyJvz8AAABINACtPwAAvOaACT5AAACAW1kI6j8AAACzhEXvPwAAkNqVnyBAAABy/vS7OkAAAODV2wAtQAAAAJuNZ5w/AAAAAAAAAAAAAADIfJ63PwAAAGzNZSNAAACgtQ4WD0AAAACAmM+jPwAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"892c00253a724011bc5b7eb7c969f920": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_8e33221b41574829a19a722ded48ebd9", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"500b77cf25b74a908ff9a4e16db41109": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_6d9a5a962801445aba5b1fada9596fce", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"22f8750521214d6d86d2eea04d02dc14": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"59f84593c2374a0f8008ec7cb209b058": { | |
"model_name": "ToolbarModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"figure": "IPY_MODEL_eedeb1b883e6439d96f89b9054b8567f", | |
"layout": "IPY_MODEL_22f8750521214d6d86d2eea04d02dc14" | |
} | |
}, | |
"457ab4849f684a71bea0622224425b3e": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"104f5d641d1448f5becf374a177a9537": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_eedeb1b883e6439d96f89b9054b8567f", | |
"IPY_MODEL_59f84593c2374a0f8008ec7cb209b058" | |
], | |
"layout": "IPY_MODEL_457ab4849f684a71bea0622224425b3e" | |
} | |
}, | |
"6303b20b4c1c42c1832e147897b66da1": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"c70f89a59aa94737ac8bf03dd604f3f5": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"bf70f83ccab0432e8f01b0cfd272083f": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"3f5459f4e94f411db709b2fc396d9a2a": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"86915dacef8e4276ba5cee713e9b3103": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_bf70f83ccab0432e8f01b0cfd272083f", | |
"y": "IPY_MODEL_3f5459f4e94f411db709b2fc396d9a2a" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAAAAAAAAAAAAwLwU7uM/AAAAAAAAAAAAAAAAAAAAAAAAACjo8bk/AAAJKUXvNkAAADQZlEwrQAAADP4W6xZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFNq1+Y/AAAAAAAAAAAAADjGCE8bQAD46036vUk/AAAAAAAAAAAAAAAAAAAAAAAArGr5ezBAAAAAoE8wfT8AAJRK85MgQAAAWC2tqRtAAAB4ZCQeB0AAAIAzt4P1PwAA/e6inWFAAAAAwCXI7T8AAAAAAAAAAAAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"9b096f8279234dc3873b997cda022d3d": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_bf70f83ccab0432e8f01b0cfd272083f", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"4af556b3cfc54afba8d2286715cf1bf1": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_3f5459f4e94f411db709b2fc396d9a2a", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"7497decab18c4303ad14eef83ea74d11": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"ca07c0bfc5424dd7aadbcd6e99bedcaa": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"25a3ffb948f04f7aac3488234d8a5aa2": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"e475b1ee8e1a47a78c1a1d4a4be7e0e6": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"7ddee56e49cd4460a943a7356593f06e": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_25a3ffb948f04f7aac3488234d8a5aa2", | |
"y": "IPY_MODEL_e475b1ee8e1a47a78c1a1d4a4be7e0e6" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AACQyfKUMUAAAAAAAAAAAAAAAJhR+OE/AACsBm+OEEAAAAAUvdrCPwAAAEAcOqw/AAAAzOJf3T8AAACYXarZPwAAZ90ZY2JAAACYFS2H5D8AAADQfSW8PwAAAAAAAAAAAAAAAAAAAAAAAABo8tnGPwAAiI+hKENAAAAA6eCf2z8AwJKQyrhbQAAA7vfkqRBAAAAAXuxKoT8AAAAAAAAAAAAAAGAlI/Y/AABQFZZMQUAAAAAAAAAAAAAAkDizE0BAAADOWPR2DkAAAADH+uPvPwCAdVXvkENAAACg3mcl+j8AAADwBy+jPwAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"a86cf43aaa254245b969d73a207e0184": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_25a3ffb948f04f7aac3488234d8a5aa2", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"db5a635241d04bd58fa07dbe9156cb11": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_e475b1ee8e1a47a78c1a1d4a4be7e0e6", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"401a160e84af4f468b172f528d164839": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"9da432611c054afd98e66761e813ca2c": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"27a9b3dd7d9249d2be5a6a26749b87fc": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"e5267c4e1f9f45feb928aa3f43b6f45a": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"99feef06e5144363b7cf24d30a7fe5b2": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_27a9b3dd7d9249d2be5a6a26749b87fc", | |
"y": "IPY_MODEL_e5267c4e1f9f45feb928aa3f43b6f45a" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAAAIQsLgPwAAkHjJFixAAAAAAAAAAAAAAABUcSKUPwAAAAAAAAAAAAAA+NNAoj8AAAAAAAAAAAAAAEACrlM/AACDhGgsFUAAAAAAAAAAAAAAMLtFx94/AAAAIGG3fz8AAAAAC0VrPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABVVTzeQ0AAAKjQ0BgVQAAAACANGIY/AAAAYD/eVj8AAAAg6n/PPwAAAE2zjfE/AAAAAOgtjj8AAAAVBiybPwAAAPs25e0/AACQY+FN8j8AAAAAAAAAAAAAgALWVMU/", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"8c10068641f341908062af1d6c583baa": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_27a9b3dd7d9249d2be5a6a26749b87fc", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"d89413a354814eed905e3e45e69e3a86": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_e5267c4e1f9f45feb928aa3f43b6f45a", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"7993f18018fb4c9eaf68143e7ef29517": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"d581e9ae8b1b420d92435ed9fcc7d5b3": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"035eaf645fb942d09d6cf805fb1e8460": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"5b37767c358b476099f080695540e637": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"f50a914f465a44c68f1442e8024b46bd": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_035eaf645fb942d09d6cf805fb1e8460", | |
"y": "IPY_MODEL_5b37767c358b476099f080695540e637" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAAAAAAAAAAAAgDh6Vg9AAAAAQLv3az8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoORV8PdWQAAAAMd8UxBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgI58zLY/AMCxNZHWQkAAACqP9iwyQAAAAAAAAAAAAABsfUb5K0AAACjyPuHwPwAA3GGd7ExAAAAAt1Jp0z8AAAAAAAAAAAAAAAAAAAAAAADwnwlT0z8AAPjdv+dVQAAAwAc2Ouw/AAAAKKEdZT8AAAAAAAAAAAAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"bbf0f4f6344d489e89646f174b624634": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_035eaf645fb942d09d6cf805fb1e8460", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"639a74d8f55442fabb0f0ac4b1478535": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_5b37767c358b476099f080695540e637", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"6108bca73c1b41bfab92cce01b7f1d81": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"51051d9934574d0986b9801ee29747b3": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"ec52a09b0f144730997501d0f0e967e9": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"8b7d294e384d49949ad39c1d4a3097d3": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"788d32b37f364a87a983232e23aa1a5c": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_ec52a09b0f144730997501d0f0e967e9", | |
"y": "IPY_MODEL_8b7d294e384d49949ad39c1d4a3097d3" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAAAAAAAAAAAAIPHkYQJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPJMFQ5ZQAAAgBOzshZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE5hcJo/AADAWGprR0AAAIa5MTY7QAAAAAAAAAAAAAD8wTTpKEAAAISEtT0CQAAAFLDABEhAAACAcPSR0D8AAAAAAAAAAAAAAAAAAAAAAADAx01u1D8AABQcqMNQQAAAAAiX8og/AAAAoKMqWT8AAAAAAAAAAAAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"d0bdd3a16a554385b588d5915c55eb7e": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_ec52a09b0f144730997501d0f0e967e9", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"64e8f7d93c284307a364e0dea5ce6dbf": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_8b7d294e384d49949ad39c1d4a3097d3", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"1421d20baabb4df48fd1954d6434896d": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"b7f12d379490403f8beb1ec05fa21fde": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"2604255c859d4410bef9d088c4ed8dc1": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"5440de379c8f4f16a2fe87ab0bd0a02f": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"2ae1024401a84303aa7e019f15c76107": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_2604255c859d4410bef9d088c4ed8dc1", | |
"y": "IPY_MODEL_5440de379c8f4f16a2fe87ab0bd0a02f" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAAAAAAAAAAAAcJSKxRZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQG+xRjNXQAAAoBCiTBVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANSNI7s/AEB5GL/gSUAAAHjZg3o1QAAAAAAAAAAAAACQDXMwJkAAAGALvzP9PwAAJ2INKElAAAAAOnk0pj8AAAAAAAAAAAAAAAAAAAAAAAAAJO5xzj8AAMDnX+ZRQAAAwIZQYcc/AAAAuPuPYj8AAAAAAAAAAAAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"d8328934ffd345d39eaba17afbb5744f": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_2604255c859d4410bef9d088c4ed8dc1", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"121251924f45484fb8df83cac11e7529": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_5440de379c8f4f16a2fe87ab0bd0a02f", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"d8973da30f37412198585ed568cc131f": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"d91ed9d4906e4dd9b5f59fb7b1416363": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"0d388ca75c8f4af3858231408fb1dcbf": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"3d5803bb3c3345ba8d229aaa1e12f0cc": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"44ac664454d34ff7b50f63b9fc4ae217": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_0d388ca75c8f4af3858231408fb1dcbf", | |
"y": "IPY_MODEL_3d5803bb3c3345ba8d229aaa1e12f0cc" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAAAAAAAAAAAAwJLBfw5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+u4U2T8AAMDtlARWQAAAABn2jhFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABO7mY/AABpFCluOEAAAKCuJHYkQAAAAAAAAAAAAAB4CMGrKEAAAGBKUO7xPwBAXX2i/1VAAAAAwGAxrj8AAAAAAAAAAAAAAAAAAAAAAABA0s8X+T8AAJ+8sAdTQAAAQHqtbcc/AAAAoGshZD8AAAAAAAAAAAAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"1d2d73deb14f4dec9666093c7fbf0989": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_0d388ca75c8f4af3858231408fb1dcbf", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"549b380c3b9740e6b4af66d31b69e0ae": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_3d5803bb3c3345ba8d229aaa1e12f0cc", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"2145a636d3c0459d9c6c7c86467bc546": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"15bd346df36e47a1a1c2f035f4e10167": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Drawn Features", | |
"opacity": 0.5, | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/148b20cb6fcd70f06c45ea8193d6d436-fb632bef5f0e0c7eafea8265eaf581f7/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"31aa3066a66147fa9743007bd411d7fe": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"7a7eecc444db4a579e36193ea2501652": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"699ce0eb9c2d49ab83fb2c26b90f62c8": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"9cb42a9de2604172b5688e297aed3ba8": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_7a7eecc444db4a579e36193ea2501652", | |
"y": "IPY_MODEL_699ce0eb9c2d49ab83fb2c26b90f62c8" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAADNzMwsfisSP81MSrJatgpANDPzv4S+iz8AAAAAAAAAAAAAAAAAAAAAzcwsKpUfmT/nPDB7efheQDMzk9NNXwtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANDMzc/miOT+amRkarOa0P2fmm4MHjOw/mju7HwlcMUAA+JpAkvsoQAAAAAAAAAAANO9atEE4JECa2dYr9VAzQDR/m9bxH2JANDODZ11Erj8BAADU6l5pPzQz85iss8M/AFiROvNqEUDN0OjYWKtTQAAANMcWS+M/Z2ZG+nPYhD8AAAAAAAAAADQzM/+FjSE/", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"b92465aa2c5d45f0bfe076eca0e2de81": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_7a7eecc444db4a579e36193ea2501652", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"c39a4df2828d4e128b3fa83ca5f9eff1": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_699ce0eb9c2d49ab83fb2c26b90f62c8", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"ab019a4ffb0142d988c3cd58e0850b9d": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"47f22667bf2846ff8f923e3cfb9b6fd2": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Drawn Features", | |
"opacity": 0.5, | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/2ea6b26d2efb5f6b4b881b5144b5691a-15acde5ca713f381a64ab3d926366c75/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"db794d10f81e480fa3f5cd05c8c473e7": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"267e7d5583b748dd96be0505bbfcd0a0": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"c010de19e7604456a04008806da72745": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"69f7768dd04e4f5a9adee1cb9549434e": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_267e7d5583b748dd96be0505bbfcd0a0", | |
"y": "IPY_MODEL_c010de19e7604456a04008806da72745" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "BIhy1Zn+G0B/NJmIdqFhP1ijuLxSZjVAEK3164qB4j+FILbIYFLWPlYcg+BsAtE/xlUvAmy/4T/UfYF4t184QB5TYpQSMVpAiMQvfNTBjz9OIyz3S/VKP4SJmKK+7p4/xOgdvu7kUD94W005JY7XP8pPTKoZefo/RMbF/lSmAkBjn2a9HjZBQFt27NGdnOc/VL3/fiYp5j+sgr1vrwDYP6ahpIab3RxAzKF/VK3UKUCkBBrsbfc8P3vLMpHtbh1AyTuEDqQGMEDMY9OjdOgvQNzf9i79WUVAtUiB9juM4j8AAAAAAAAAAFnAzv3HlDA/", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"68fea24bf39240bd8d6f3a20e8d9e2b6": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_267e7d5583b748dd96be0505bbfcd0a0", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"1d26dfbc18f04eb2894a3bef20c0aac9": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_c010de19e7604456a04008806da72745", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"ac45d8f87fd04204907c826df38e02ca": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"77a9c42a4d504d94971f3f84e98bca62": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"25fd0658c3a04cceb568363922e2cc82": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"199081bec1a24ef8a13912b6c664fc9b": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"7595ecc946244a6585211a661d94f707": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_25fd0658c3a04cceb568363922e2cc82", | |
"y": "IPY_MODEL_199081bec1a24ef8a13912b6c664fc9b" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AACkyADeGUAAAAAAAAAAAAAAgD/YPClAAAAQfpEE9D8AAACAV1F1PwAAAAAAAAAAAAAAAEhMYz8AACQYxzAtQAAAzj3ogWVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgzFCSPwBAGLY0KlBAAACQS38vA0AAAATrTx1GQAAAyTyTJ/A/AAAAAAAAAAAAAAAAAAAAAAAAANFZWwRAAAB4nTV3LEAAAAAAAAAAAAAAwET01R5AAADAf9do5j8AABhTSgoVQAAAcSWsQUtAAADA4mC14D8AAAAAAAAAAAAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"bd901db3ab264a1ca37d90ad467d187e": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_25fd0658c3a04cceb568363922e2cc82", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"4d7d84d5e09f41b283dba8f6b4dcd3bb": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_199081bec1a24ef8a13912b6c664fc9b", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"cd89e75e28ca460d9a472ef3997fec1d": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"2e0d8e139edb469b938785209c47f4b8": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"daefaff017db44639bb4193ee4dc8ca0": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"e4fc46eb86a4465d9c3105d14b22ebb8": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"80eca519e2af4121a5aa345ced60ddaf": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_daefaff017db44639bb4193ee4dc8ca0", | |
"y": "IPY_MODEL_e4fc46eb86a4465d9c3105d14b22ebb8" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AIDWFupeWEAAAAAAAAAAAAAAAG4kC7w/AADAHhx7AkAAAADwjnGiPwAAAOBFOXk/AAAAAAAAAAAAAODHSKEIQAAAnAx45kZAAAAAAAAAAAAAAABacpurPwAAAAAAAAAAAAAAVJ1sej8AAIA3QJvlPwAAyRhrbBlAAAAAbKqS4D8AAICu19tHQABAQFx9bB1AAAAA8LtgnD8AAAAAAAAAAAAAAARfHak/AAAA4Qc6QkAAAAAAAAAAAAAAwHO6hug/AAAYaUTQA0AAAAAKQ+DmPwAAfLmx6ThAAACAoMx27D8AAAAAAAAAAAAAANCRmpY/", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"6ec69ed59f134d5eb810eb49962cfba3": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_daefaff017db44639bb4193ee4dc8ca0", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"bba0fc00b95b4b768f120b42a6992b77": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_e4fc46eb86a4465d9c3105d14b22ebb8", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"651a8ca4062d480e9b2a95a2b8e44e29": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"eebb4b6e9f9140208a72ed3f06e70111": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"1cb3b893b9274319b5ab78c440ac38b1": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"a967a20697834dbd91b3cc03a04ae3ed": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"fd4cba93e00f4383ac1ad31ec55ef827": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_1cb3b893b9274319b5ab78c440ac38b1", | |
"y": "IPY_MODEL_a967a20697834dbd91b3cc03a04ae3ed" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAalooaI0AAAAAAAAAAAACATK4+MzVAAABA+gyN8j8AAAAAAAAAAAAAAAAAAAAAAAAAgHGvqD8AAPjA2xctQABQC5GAfWBAAAAAqEr4iz8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgEQ3GPwAAVAFt/09AAACQ8ZcXFkAAQEWmMUZEQAAANqe0VwtAAAAAAAAAAAAAAAAAAAAAAAAA4DFICwJAAABEKGGAJUAAAAAAAAAAAAAAuGXtjiRAAACApvJE8j8AALDMBEUWQACA96cIY0tAAAAAqPubuz8AAAAAAAAAAAAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"ce1ae5a820444b0cb35086ecb0fd979f": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_1cb3b893b9274319b5ab78c440ac38b1", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"520497be5c2b417bb3a1a9893114c0f3": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_a967a20697834dbd91b3cc03a04ae3ed", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"f911831a96c541b798e2de2ee7048a64": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"c6d2780e2a97404f8aa25d2aea7adc21": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Maps", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=m&x={x}&y={y}&z={z}" | |
} | |
}, | |
"a2510d3df3d44006a5b72248aa04416b": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" | |
} | |
}, | |
"e5417b9e525a4cd5aa1278f017f630cd": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=p&x={x}&y={y}&z={z}" | |
} | |
}, | |
"962103cde28947a9ab9662d923289b0d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=y&x={x}&y={y}&z={z}" | |
} | |
}, | |
"e0aa6f986e6b49318c3411339c7f3833": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"fe5bd4582e084915ab1253ce5985b62e": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Ocean", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/ArcGIS/rest/services/Ocean/World_Ocean_Base/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"7b6b6fbd6a674ba19a1268b90b2cf559": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"b2ee7ef0cdea4b3c924826442a64a09f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Standard", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"06a03344f2ad4218bdb441da3c0d7d26": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Terrain_Base/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"3ae86a8c59cd4aeab4e4beafab3d0811": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Transportation", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/Reference/World_Transportation/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"282b22b3b1754a7493ed9d998b5e522f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Topo World", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"69631e0dc88f40eaa98a8fa7e8b7dd86": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri National Geographic", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"7d49c6cb72c243a391d7756bc0f026cf": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Shaded Relief", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/arcgis/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"0e8adeb6f2404c0895b413cf253028be": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Physical Map", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/arcgis/rest/services/World_Physical_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"617e033a9066430d9cb4e9fa4411fd02": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "FWS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "1", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "FWS NWI Wetlands", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.fws.gov/wetlands/arcgis/services/Wetlands/MapServer/WMSServer?" | |
} | |
}, | |
"27f065e346d04bccb6f7470a6c2939a5": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "FWS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "FWS NWI Wetlands Raster", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.fws.gov/wetlands/arcgis/services/Wetlands_Raster/ImageServer/WMSServer?" | |
} | |
}, | |
"0d0514aca9024117b3c9f3923380aebd": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Maps", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=m&x={x}&y={y}&z={z}" | |
} | |
}, | |
"e3ae5b0132d0466481c7355612ee3514": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" | |
} | |
}, | |
"3cd0474683c04b69bad2cb88b25ea4d6": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=p&x={x}&y={y}&z={z}" | |
} | |
}, | |
"bcc5307414924c2ea04e601885a7a9cc": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=y&x={x}&y={y}&z={z}" | |
} | |
}, | |
"db3aeaaed7d540aa8b080ded672d23dc": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2016_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2016 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2016_Land_Cover_L48/wms?" | |
} | |
}, | |
"e7084f2080ed4cc6ae800b6148349c82": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2013_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2013 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2013_Land_Cover_L48/wms?" | |
} | |
}, | |
"aec8b9d960fd4deabed31bb8f3cd3384": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2011_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2011 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2011_Land_Cover_L48/wms?" | |
} | |
}, | |
"5b2603ee1b9544a1b4742817ba017eb6": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2008_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2008 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2008_Land_Cover_L48/wms?" | |
} | |
}, | |
"1e222d1d7e9f4bf6891a307b5ee47d06": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2006_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2006 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2006_Land_Cover_L48/wms?" | |
} | |
}, | |
"95c7701d2420481f957d005fe78d7840": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2004_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2004 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2004_Land_Cover_L48/wms?" | |
} | |
}, | |
"420933659cff4673b388c9e9e571cf9c": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2001_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2001 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2001_Land_Cover_L48/wms?" | |
} | |
}, | |
"5ab7150d6e904435811fa9fe541f22f9": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS NAIP Imagery", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://services.nationalmap.gov/arcgis/services/USGSNAIPImagery/ImageServer/WMSServer?" | |
} | |
}, | |
"9d767489d66746d7aa22691590449887": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS Hydrography", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://basemap.nationalmap.gov/arcgis/services/USGSHydroCached/MapServer/WMSServer?" | |
} | |
}, | |
"e65f6aad4bff46b3ba95a4ae601f0df5": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "3DEPElevation:None", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS 3DEP Elevation", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://elevation.nationalmap.gov/arcgis/services/3DEPElevation/ImageServer/WMSServer?" | |
} | |
}, | |
"82a6b3c8e3244c9ca783cef7b8d02baa": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.Mapnik", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
] | |
} | |
}, | |
"f888e11cc9a0406abfe77fa37bc287c1": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.BlackAndWhite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png" | |
} | |
}, | |
"c17c499afad34f8db85c7d23467d295d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.DE", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png" | |
} | |
}, | |
"c2680e34a0344484aa5df9550870870a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© Openstreetmap France | © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.France", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png" | |
} | |
}, | |
"d9d5497d2c3b4db3abe3154bb0823397": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, Tiles courtesy of <a href=\"http://hot.openstreetmap.org/\" target=\"_blank\">Humanitarian OpenStreetMap Team</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.HOT", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png" | |
} | |
}, | |
"34979549aa2b475c9fba8f9998104811": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map data: © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, <a href=\"http://viewfinderpanoramas.org\">SRTM</a> | Map style: © <a href=\"https://opentopomap.org\">OpenTopoMap</a> (<a href=\"https://creativecommons.org/licenses/by-sa/3.0/\">CC-BY-SA</a>)", | |
"max_native_zoom": 18, | |
"max_zoom": 17, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenTopoMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png" | |
} | |
}, | |
"0757ba2e312147c5b25a4e2d28fa337d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles courtesy of <a href=\"http://openstreetmap.se/\" target=\"_blank\">OpenStreetMap Sweden</a> — Map data © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Hydda.Full", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.se/hydda/full/{z}/{x}/{y}.png" | |
} | |
}, | |
"d4917d8904e04a59b9eaaf0481ebcd1c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles courtesy of <a href=\"http://openstreetmap.se/\" target=\"_blank\">OpenStreetMap Sweden</a> — Map data © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Hydda.Base", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.se/hydda/base/{z}/{x}/{y}.png" | |
} | |
}, | |
"721e4e5c3567459198f04e154d838f72": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldStreetMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"1ddea1bd6cfa4b10a227b0b8ec68ba41": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Copyright: ©2012 DeLorme", | |
"max_native_zoom": 18, | |
"max_zoom": 11, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.DeLorme", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/Specialty/DeLorme_World_Base_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"7eec4110669f4bcaa550c5ba2fb45a81": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldTopoMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"80c0a8ac829c4713b3cfecff8364293b": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldImagery", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"3564c9a4e25d4e43a28617fabe64ea60": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC", | |
"max_native_zoom": 18, | |
"max_zoom": 16, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.NatGeoWorldMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"47c9514265784c749505f244e0552748": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "HikeBike.HikeBike", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tiles.wmflabs.org/hikebike/{z}/{x}/{y}.png" | |
} | |
}, | |
"8d5f2a0781ea4a95bc77193a952e5c89": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> & USGS", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "MtbMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png" | |
} | |
}, | |
"7d4d83f9537f4a6699abba4b513fdf4d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> © <a href=\"http://cartodb.com/attributions\">CartoDB</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "CartoDB.Positron", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://c.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png" | |
} | |
}, | |
"4432f630e46f4b0b9b757b7a8b75d50f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> © <a href=\"http://cartodb.com/attributions\">CartoDB</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "CartoDB.DarkMatter", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://c.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png" | |
} | |
}, | |
"48ae68031280410ea7f3ec220733951b": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"118141bf06994812ad1296e800d99d76": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraBands367CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands367/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"390f04f5d4f14fe48398db61529abaae": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraBands721CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands721/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"a673f1a235594652a042702fd674ca2f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisAquaTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"537850c12cad412d8fd43d3a914fb597": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisAquaBands721CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_Bands721/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"04e99c8b31f84176b3055e947b7f1508": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ViirsTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_SNPP_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"ff23fba9f35b42cba28b50898676ce45": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 8, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ViirsEarthAtNight2012", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_Black_Marble/default/2012-01-01/GoogleMapsCompatible_Level8/{z}/{y}/{x}.png" | |
} | |
}, | |
"38a788e781394ba4a08cf4cc2b93185a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 5, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble3413", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3413/best/BlueMarble_NextGeneration/default/EPSG3413_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"863bd6f9be6347e0bc2eb6894d27d7f0": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 5, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble3031", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3031/best/BlueMarble_NextGeneration/default/EPSG3031_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"5d9a84416e75470f95aa81eff794b8c2": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 8, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/BlueMarble_NextGeneration/default/EPSG3857_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"7b3cbc61cde74c609c13b307d1131a10": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.All", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/all/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"df316b0e28ff402e8adc113be5565f4a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Ride", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/ride/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"03ac0bafc6a54f04b6740fbbf75ed796": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Run", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/run/bluered/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"cf66ff8903ae4cb984fc614a73d8594f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Water", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/water/blue/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"4b65876be8404552b5c4fa4379eb6169": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Winter", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/winter/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"fb3696c58d9e4073a61504dd546f4d5d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Stamen.Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png" | |
} | |
}, | |
"94471689c93e498489edd057f0467d2a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"name": "Stamen.Toner", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/toner/{z}/{x}/{y}.png" | |
} | |
}, | |
"2d4b4b8291d549ccb98fad79f92bf07e": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Stamen.Watercolor", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png" | |
} | |
}, | |
"15d8993e96ef454a9433b1a30267eb1f": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2" | |
} | |
}, | |
"ec0d1070b50945cda1c39de5ca1ed461": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "move" | |
} | |
}, | |
"2edb2b715c5c495883f7d0c3a1fc55b6": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"base": true, | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
] | |
} | |
}, | |
"cb3a342c266643d3b6d8ce483a2406ca": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "550px" | |
} | |
}, | |
"5eb20e7df7b04ae385a4160be7da30c0": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2" | |
} | |
}, | |
"9ed91b2e854847c18c0c1b7826786869": { | |
"model_name": "LeafletMapModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"bottom": 991, | |
"center": [ | |
47.517200697839414, | |
-246.53320312500003 | |
], | |
"controls": [ | |
"IPY_MODEL_5959340a55c649e594ac0cf4904e3782", | |
"IPY_MODEL_3d404b9ed9ee4b328e6c611c77de221c", | |
"IPY_MODEL_fff918ffba3d404f8e678f14f4b0161f", | |
"IPY_MODEL_49dfc0c5c0814ea688d08603a63f5675", | |
"IPY_MODEL_c1cf3612ab7d470ea48d14f60d7c855a", | |
"IPY_MODEL_b4ed7bc9bcdd45b78a00d8c5705ea8df", | |
"IPY_MODEL_d54e04ea50bd48f9a1eda17d5ca86896", | |
"IPY_MODEL_5690b8a2d9a84a51a5c2b7e4ccf8898d", | |
"IPY_MODEL_351f4bcb7d574d7ba8110d2a091c74ef", | |
"IPY_MODEL_83ed3e6eedef4a569de9cdc57b691255", | |
"IPY_MODEL_eb864a9235ca424fa3838999858144b7", | |
"IPY_MODEL_ab8417f2848c4763b57140c7c2b0dda6", | |
"IPY_MODEL_9b8029633de447b1a3b23b223216a47f", | |
"IPY_MODEL_799cea3935a04f04ba1a22d2f83a4ada", | |
"IPY_MODEL_0fdfe280b15d44f5aa89bc8cf2ef4b9c" | |
], | |
"default_style": "IPY_MODEL_1dcbbc909cbf464cb30218a4fed40abf", | |
"dragging_style": "IPY_MODEL_ec0d1070b50945cda1c39de5ca1ed461", | |
"east": -161.89453125000003, | |
"fullscreen": false, | |
"interpolation": "bilinear", | |
"layers": [ | |
"IPY_MODEL_2edb2b715c5c495883f7d0c3a1fc55b6", | |
"IPY_MODEL_c6d2780e2a97404f8aa25d2aea7adc21", | |
"IPY_MODEL_0a190ec5a73245a4a9472fa1a92d6198", | |
"IPY_MODEL_bee314c509164a189fa907c9c0c72422", | |
"IPY_MODEL_41f299efdad448399cb4dd90ce76239e" | |
], | |
"layout": "IPY_MODEL_cb3a342c266643d3b6d8ce483a2406ca", | |
"left": -860, | |
"modisdate": "yesterday", | |
"north": 71.01695975726373, | |
"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", | |
"scroll_wheel_zoom", | |
"tap", | |
"tap_tolerance", | |
"touch_zoom", | |
"world_copy_jump", | |
"zoom", | |
"zoom_animation_threshold", | |
"zoom_delta", | |
"zoom_snap", | |
"zoom_start" | |
], | |
"right": 103, | |
"scroll_wheel_zoom": true, | |
"south": 5.7908968128719565, | |
"style": "IPY_MODEL_1dcbbc909cbf464cb30218a4fed40abf", | |
"top": 441, | |
"west": -331.17187500000006, | |
"window_url": "http://127.0.0.1:8888/notebooks/testing/rainfall.ipynb", | |
"zoom": 3 | |
} | |
}, | |
"e3223a7df97c4667b6b50d881e32a698": { | |
"model_name": "LeafletZoomControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"zoom_in_text", | |
"zoom_in_title", | |
"zoom_out_text", | |
"zoom_out_title" | |
] | |
} | |
}, | |
"326c09edadb54f568bd52fd56dbb8b10": { | |
"model_name": "LeafletAttributionControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"prefix" | |
], | |
"position": "bottomright", | |
"prefix": "ipyleaflet" | |
} | |
}, | |
"ecde5e3cde984bd9ba6e1b7f291092e7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "36px" | |
} | |
}, | |
"5d9cccfd0eeb49ada2a2a8e767fb2e53": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"ccb5de313fa24a9ba58a08b04f96e679": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"icon": "globe", | |
"layout": "IPY_MODEL_ecde5e3cde984bd9ba6e1b7f291092e7", | |
"style": "IPY_MODEL_5d9cccfd0eeb49ada2a2a8e767fb2e53", | |
"tooltip": "Search location/data" | |
} | |
}, | |
"18cacdf2ab0442048771cc6083b37b93": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"cd8289f2f9f64048881952260cfb66d8": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "110px", | |
"description_width": "" | |
} | |
}, | |
"be6b00a3a0294f32af60182f35b808af": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"name/address", | |
"lat-lon", | |
"data" | |
], | |
"button_style": "", | |
"icons": [], | |
"index": 0, | |
"layout": "IPY_MODEL_18cacdf2ab0442048771cc6083b37b93", | |
"style": "IPY_MODEL_cd8289f2f9f64048881952260cfb66d8", | |
"tooltips": [ | |
"Search by place name or address", | |
"Search by lat-lon coordinates", | |
"Search Earth Engine data catalog" | |
] | |
} | |
}, | |
"7f656709b8024590abf24dafac988f1e": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "340px" | |
} | |
}, | |
"7cb0d7c2bc7c4284aab824b717288079": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"8fa0ff918a70408da82ba0b0409881d8": { | |
"model_name": "TextModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_7f656709b8024590abf24dafac988f1e", | |
"placeholder": "Search by place name or address", | |
"style": "IPY_MODEL_7cb0d7c2bc7c4284aab824b717288079" | |
} | |
}, | |
"6fc1fb6a7b3e41deac607614a1c59970": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_height": "250px", | |
"max_width": "340px", | |
"overflow": "scroll" | |
} | |
}, | |
"8e36ebc9d07c4546b57499481fd48e2f": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_6fc1fb6a7b3e41deac607614a1c59970" | |
} | |
}, | |
"d6dae05da2ac4c41b237f9db1aa6399c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"03d138c8ddf2446184749e318f898faf": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"b017bcdb740747ac813bd9c66c5f2a29": { | |
"model_name": "RadioButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"index": null, | |
"layout": "IPY_MODEL_d6dae05da2ac4c41b237f9db1aa6399c", | |
"style": "IPY_MODEL_03d138c8ddf2446184749e318f898faf" | |
} | |
}, | |
"e0a100a6ed9e475bafc2620014a23261": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_width": "279px", | |
"min_width": "279px" | |
} | |
}, | |
"5cfecb2162b5440687ad8f728cb74f5a": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"d60f9c9a81234c51998d170349fb5f56": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"index": null, | |
"layout": "IPY_MODEL_e0a100a6ed9e475bafc2620014a23261", | |
"style": "IPY_MODEL_5cfecb2162b5440687ad8f728cb74f5a" | |
} | |
}, | |
"3a7548358db643978bf411306fe3ef31": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_width": "57px", | |
"min_width": "57px" | |
} | |
}, | |
"d098d3b5ad2c4c0199e44104abc09736": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"a86242dbb63f498291e00f2b3da7b5c9": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"description": "import", | |
"layout": "IPY_MODEL_3a7548358db643978bf411306fe3ef31", | |
"style": "IPY_MODEL_d098d3b5ad2c4c0199e44104abc09736", | |
"tooltip": "Click to import the selected asset" | |
} | |
}, | |
"c032795d6f164bcf844624aaf4f8eb69": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"4c21a6c6df06469cb9cb45a113b6110a": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"e05eb9935adc4145b7d5e267e2e97dee": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_c032795d6f164bcf844624aaf4f8eb69", | |
"style": "IPY_MODEL_4c21a6c6df06469cb9cb45a113b6110a" | |
} | |
}, | |
"73b3008721904f5dae8e2dea4f665227": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"f4a7df23779240fc9106aa8734c6107f": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_a86242dbb63f498291e00f2b3da7b5c9", | |
"IPY_MODEL_d60f9c9a81234c51998d170349fb5f56" | |
], | |
"layout": "IPY_MODEL_73b3008721904f5dae8e2dea4f665227" | |
} | |
}, | |
"e7818311e38349bf841eabe02b624ff4": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"fb8a30d9ac6b4e5b9f3883f8e51bb529": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_be6b00a3a0294f32af60182f35b808af", | |
"IPY_MODEL_8fa0ff918a70408da82ba0b0409881d8" | |
], | |
"layout": "IPY_MODEL_e7818311e38349bf841eabe02b624ff4" | |
} | |
}, | |
"e478bd6135c4467fbba8d588d9857c7d": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"25b70bd5af92472d9f105617acd693cf": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_ccb5de313fa24a9ba58a08b04f96e679" | |
], | |
"layout": "IPY_MODEL_e478bd6135c4467fbba8d588d9857c7d" | |
} | |
}, | |
"5959340a55c649e594ac0cf4904e3782": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topleft", | |
"widget": "IPY_MODEL_25b70bd5af92472d9f105617acd693cf" | |
} | |
}, | |
"e8a275db3d8a49a8906645132f542521": { | |
"model_name": "LeafletAwesomeIconModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"icon_color": "darkgreen", | |
"marker_color": "green", | |
"name": "check" | |
} | |
}, | |
"7e0ea3e2ad4d4f1cb6387c52f69c3b30": { | |
"model_name": "LeafletMarkerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"icon": "IPY_MODEL_e8a275db3d8a49a8906645132f542521", | |
"options": [ | |
"alt", | |
"draggable", | |
"keyboard", | |
"rise_offset", | |
"rise_on_hover", | |
"rotation_angle", | |
"rotation_origin", | |
"title", | |
"z_index_offset" | |
] | |
} | |
}, | |
"3d404b9ed9ee4b328e6c611c77de221c": { | |
"model_name": "LeafletSearchControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"marker": "IPY_MODEL_7e0ea3e2ad4d4f1cb6387c52f69c3b30", | |
"options": [ | |
"animate_location", | |
"auto_collapse", | |
"auto_type", | |
"found_style", | |
"jsonp_param", | |
"position", | |
"property_loc", | |
"property_name", | |
"url", | |
"zoom" | |
], | |
"position": "topleft", | |
"url": "https://nominatim.openstreetmap.org/search?format=json&q={s}", | |
"zoom": 5 | |
} | |
}, | |
"fff918ffba3d404f8e678f14f4b0161f": { | |
"model_name": "LeafletZoomControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"zoom_in_text", | |
"zoom_in_title", | |
"zoom_out_text", | |
"zoom_out_title" | |
] | |
} | |
}, | |
"49dfc0c5c0814ea688d08603a63f5675": { | |
"model_name": "LeafletLayersControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright" | |
} | |
}, | |
"c1cf3612ab7d470ea48d14f60d7c855a": { | |
"model_name": "LeafletScaleControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"imperial": true, | |
"max_width": 100, | |
"metric": true, | |
"options": [ | |
"imperial", | |
"max_width", | |
"metric", | |
"position", | |
"update_when_idle" | |
], | |
"position": "bottomleft", | |
"update_when_idle": false | |
} | |
}, | |
"b4ed7bc9bcdd45b78a00d8c5705ea8df": { | |
"model_name": "LeafletFullScreenControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
] | |
} | |
}, | |
"d54e04ea50bd48f9a1eda17d5ca86896": { | |
"model_name": "LeafletMeasureControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"active_color": "orange", | |
"options": [ | |
"active_color", | |
"capture_z_index", | |
"completed_color", | |
"popup_options", | |
"position", | |
"primary_area_unit", | |
"primary_length_unit", | |
"secondary_area_unit", | |
"secondary_length_unit" | |
], | |
"position": "bottomleft", | |
"primary_length_unit": "kilometers", | |
"secondary_area_unit": null, | |
"secondary_length_unit": null | |
} | |
}, | |
"5690b8a2d9a84a51a5c2b7e4ccf8898d": { | |
"model_name": "LeafletAttributionControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"prefix" | |
], | |
"position": "bottomright", | |
"prefix": "ipyleaflet" | |
} | |
}, | |
"9e6f10bf341542d582a19846b887e188": { | |
"model_name": "LeafletDrawControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"circle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"marker": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"options": [ | |
"position" | |
], | |
"rectangle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
} | |
} | |
}, | |
"799cea3935a04f04ba1a22d2f83a4ada": { | |
"model_name": "LeafletDrawControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"circle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"options": [ | |
"position" | |
], | |
"polygon": {}, | |
"polyline": {}, | |
"rectangle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
} | |
} | |
}, | |
"49f89ced6fa44f5f9032d3fbb426dea4": { | |
"model_name": "LeafletMarkerClusterModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"name": "Marker Cluster" | |
} | |
}, | |
"f51ea872f5fc46af8fccbaad60636313": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "18px", | |
"width": "13ex" | |
} | |
}, | |
"072b3d64a5cb4713a9d498c4087c76ba": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"d9aa53ddc3c2422781549b0e250ab480": { | |
"model_name": "CheckboxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Inspector", | |
"disabled": false, | |
"indent": false, | |
"layout": "IPY_MODEL_f51ea872f5fc46af8fccbaad60636313", | |
"style": "IPY_MODEL_072b3d64a5cb4713a9d498c4087c76ba", | |
"value": false | |
} | |
}, | |
"5b7dfc55322c4a9aa608c0e3d38570c8": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "13ex" | |
} | |
}, | |
"47325e0f6b574ea6a7cecb7144e171f1": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"67965e101ca14bc7b440b33991ba15d5": { | |
"model_name": "CheckboxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Plotting", | |
"disabled": false, | |
"indent": false, | |
"layout": "IPY_MODEL_5b7dfc55322c4a9aa608c0e3d38570c8", | |
"style": "IPY_MODEL_47325e0f6b574ea6a7cecb7144e171f1", | |
"value": true | |
} | |
}, | |
"5d8361e8a1184b348e1aa3bd5ee2206c": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"5126d070280248cc97fad9f52227321b": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_d9aa53ddc3c2422781549b0e250ab480", | |
"IPY_MODEL_67965e101ca14bc7b440b33991ba15d5" | |
], | |
"layout": "IPY_MODEL_5d8361e8a1184b348e1aa3bd5ee2206c" | |
} | |
}, | |
"351f4bcb7d574d7ba8110d2a091c74ef": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_5126d070280248cc97fad9f52227321b" | |
} | |
}, | |
"c8ca7da93ea648298ce61124a56c2820": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"border": "1px solid black" | |
} | |
}, | |
"7cccd7c0c80b4a7f82a3b42c2275b5c0": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_c8ca7da93ea648298ce61124a56c2820" | |
} | |
}, | |
"83ed3e6eedef4a569de9cdc57b691255": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_7cccd7c0c80b4a7f82a3b42c2275b5c0" | |
} | |
}, | |
"b852e20fbd224b6db11b6c7b7a955205": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"906fdd79c9cd47f793cbc15446c83da5": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_b852e20fbd224b6db11b6c7b7a955205" | |
} | |
}, | |
"e72e422a93e245cb96c738f23b20d0f5": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"66051eb7b6f247e997eaa174800445af": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_afa6cd78d2204dc6b44c10d0e8899da1", | |
"IPY_MODEL_a086f945f360433c9bada0fb37e6d91a" | |
], | |
"layout": "IPY_MODEL_e72e422a93e245cb96c738f23b20d0f5" | |
} | |
}, | |
"f54f3035746345d28cf308843d2bcfe0": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"8cd4ceacba5f4a12ba7ec209603fb726": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "", | |
"description_width": "" | |
} | |
}, | |
"afa6cd78d2204dc6b44c10d0e8899da1": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"HTML", | |
"PNG", | |
"JPG" | |
], | |
"button_style": "", | |
"icons": [], | |
"index": 0, | |
"layout": "IPY_MODEL_f54f3035746345d28cf308843d2bcfe0", | |
"style": "IPY_MODEL_8cd4ceacba5f4a12ba7ec209603fb726", | |
"tooltips": [ | |
"Save the map as an HTML file", | |
"Take a screenshot and save as a PNG file", | |
"Take a screenshot and save as a JPG file" | |
] | |
} | |
}, | |
"727f2d53218242cc88322dce450ebd14": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "pathlist", | |
"width": "auto" | |
} | |
}, | |
"0eead210cbf546f7abae03db1ebbde32": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"92ee745b986c41ee80787447af1b9118": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"/media/hdd/Dropbox/git/geemap/testing", | |
"/media/hdd/Dropbox/git/geemap", | |
"/media/hdd/Dropbox/git", | |
"/media/hdd/Dropbox", | |
"/media/hdd", | |
"/media", | |
"/" | |
], | |
"index": 0, | |
"layout": "IPY_MODEL_727f2d53218242cc88322dce450ebd14", | |
"style": "IPY_MODEL_0eead210cbf546f7abae03db1ebbde32" | |
} | |
}, | |
"175d2bc851244baca16133b3606cbfdb": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "filename", | |
"width": "auto" | |
} | |
}, | |
"ec1768e290c94df49832814be9984a2e": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"0bd5c504491d488aafe81b1277164b01": { | |
"model_name": "TextModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_175d2bc851244baca16133b3606cbfdb", | |
"placeholder": "output filename", | |
"style": "IPY_MODEL_ec1768e290c94df49832814be9984a2e", | |
"value": "my_map.html" | |
} | |
}, | |
"5b5b41ab7d7b4811b83f8e0234a4542f": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "dircontent", | |
"width": "auto" | |
} | |
}, | |
"e2dc3122e226466cb8ffb499ac64ad1b": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"bd65bb59da874fddb18aebfba885db7c": { | |
"model_name": "SelectModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"..", | |
"china", | |
"data", | |
"datapane", | |
"datasets", | |
"kepler", | |
"update", | |
"water_mapping", | |
"wetlands", | |
"01_surface_water_mapping.ipynb", | |
"06Q1fSz.jpg", | |
"06Q1fSz.png", | |
"06Q1fSz.tif", | |
"0_geemap_key_features.ipynb", | |
"10.21105.joss.01886.pdf", | |
"10_shapefiles.ipynb", | |
"11_export_image.ipynb", | |
"34_plotting.ipynb", | |
"Hillshade.ipynb", | |
"NDVI.ipynb", | |
"SearchControl.ipynb", | |
"Untitled.ipynb", | |
"api-copy.html", | |
"api.html", | |
"api.ipynb", | |
"api.png", | |
"api.py", | |
"appveyor.yml", | |
"assets.csv", | |
"assets.ipynb", | |
"authenticate.ipynb", | |
"basemaps.ipynb", | |
"bitmap_layer.html", | |
"clone.ipynb", | |
"clone_repo.ipynb", | |
"conver_js_ipynb.ipynb", | |
"datapane.ipynb", | |
"download.py", | |
"ee_api_docs.csv", | |
"ee_api_docs.pmdx", | |
"ee_landtrendr_fitted_rgb_thumbnails.py", | |
"export_ImageCollection.ipynb", | |
"gist.ipynb", | |
"globe_view.html", | |
"image_overlay.ipynb", | |
"ipytree.ipynb", | |
"joss.pdf", | |
"main.py", | |
"map_controls.ipynb", | |
"my_map.html", | |
"my_map.jpg", | |
"my_map.png", | |
"my_map2.html", | |
"projection.ipynb", | |
"pydeck-intro.ipynb", | |
"pydeck.ipynb", | |
"rainfall.csv", | |
"rainfall.ipynb", | |
"s2cloudless.ipynb", | |
"save.ipynb", | |
"sentinel.ipynb", | |
"terrain_layer.html", | |
"terrain_visualization.ipynb", | |
"testing.txt", | |
"testing2.txt", | |
"testing3.txt", | |
"testing4.txt", | |
"time_series.py", | |
"toolbar.ipynb", | |
"us-cities.json", | |
"utlls.ipynb", | |
"voila.ipynb" | |
], | |
"index": 49, | |
"layout": "IPY_MODEL_5b5b41ab7d7b4811b83f8e0234a4542f", | |
"rows": 8, | |
"style": "IPY_MODEL_e2dc3122e226466cb8ffb499ac64ad1b" | |
} | |
}, | |
"6711f4790ed14bbeb26e44e4e912d376": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none", | |
"width": "auto" | |
} | |
}, | |
"9882c3dd16fc4525aa47e7810a6bec16": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"34aca91a5b884e168d33a0f78e99c80e": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Cancel", | |
"layout": "IPY_MODEL_6711f4790ed14bbeb26e44e4e912d376", | |
"style": "IPY_MODEL_9882c3dd16fc4525aa47e7810a6bec16" | |
} | |
}, | |
"8a9f95374b5e4a068925c9f079a82e59": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"e3ef422d51fa421d9fe4188c1f5fe982": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"fd150cbbb78b4f1e9d23370330ec7e68": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Select", | |
"layout": "IPY_MODEL_8a9f95374b5e4a068925c9f079a82e59", | |
"style": "IPY_MODEL_e3ef422d51fa421d9fe4188c1f5fe982" | |
} | |
}, | |
"07af26311f864052a7b00effa482ede7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none" | |
} | |
}, | |
"6e2eda92dfb24d518161ab7740d294f6": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"7281e2f2ae7c49838344cb6bf9904b0c": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_07af26311f864052a7b00effa482ede7", | |
"style": "IPY_MODEL_6e2eda92dfb24d518161ab7740d294f6" | |
} | |
}, | |
"a0be3c1bde9b4aed8cac9a16dcb268c0": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"22a5b916721b4b4088c103988bf14b8b": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"b8e7acbdce4a477e834894963541e3b5": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_a0be3c1bde9b4aed8cac9a16dcb268c0", | |
"placeholder": "", | |
"style": "IPY_MODEL_22a5b916721b4b4088c103988bf14b8b", | |
"value": "<span style=\"margin-left:10px; color:black;\">No file selected</span>" | |
} | |
}, | |
"103f47a3c82f41d8a29a88923e6b4187": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none", | |
"grid_gap": "0px 0px", | |
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ", | |
"grid_template_columns": "60% 40%", | |
"grid_template_rows": "auto auto", | |
"width": "500px" | |
} | |
}, | |
"a8d2bf9e1dfc4b6c96a42dfa4c1680cf": { | |
"model_name": "GridBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_92ee745b986c41ee80787447af1b9118", | |
"IPY_MODEL_0bd5c504491d488aafe81b1277164b01", | |
"IPY_MODEL_bd65bb59da874fddb18aebfba885db7c" | |
], | |
"layout": "IPY_MODEL_103f47a3c82f41d8a29a88923e6b4187" | |
} | |
}, | |
"059d905dd17744dfb98fc45d1cb455d7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"9acce63b7d184372aa124ce20738cd4d": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_fd150cbbb78b4f1e9d23370330ec7e68", | |
"IPY_MODEL_34aca91a5b884e168d33a0f78e99c80e", | |
"IPY_MODEL_b8e7acbdce4a477e834894963541e3b5" | |
], | |
"layout": "IPY_MODEL_059d905dd17744dfb98fc45d1cb455d7" | |
} | |
}, | |
"2d9be6899e0c49d4a2102f047d77fc62": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"a086f945f360433c9bada0fb37e6d91a": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_7281e2f2ae7c49838344cb6bf9904b0c", | |
"IPY_MODEL_a8d2bf9e1dfc4b6c96a42dfa4c1680cf", | |
"IPY_MODEL_9acce63b7d184372aa124ce20738cd4d" | |
], | |
"layout": "IPY_MODEL_2d9be6899e0c49d4a2102f047d77fc62" | |
} | |
}, | |
"4f9c1c0dc55842d395aaea21373a41a3": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"921801e290c74293b83c78536c7ca758": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "", | |
"description_width": "" | |
} | |
}, | |
"3bd93098497044feba362eb7022837e9": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"OK", | |
"Cancel" | |
], | |
"button_style": "primary", | |
"icons": [], | |
"index": null, | |
"layout": "IPY_MODEL_4f9c1c0dc55842d395aaea21373a41a3", | |
"style": "IPY_MODEL_921801e290c74293b83c78536c7ca758", | |
"tooltips": [ | |
"OK", | |
"Cancel" | |
] | |
} | |
}, | |
"3f417aea1a8142988ee0d2b2e78919a2": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"13c900b01b4a4c9ebb713646497039d4": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"4868cdd66e6b481bbf467294fb3f0ab4": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "mouse-pointer", | |
"layout": "IPY_MODEL_3f417aea1a8142988ee0d2b2e78919a2", | |
"style": "IPY_MODEL_13c900b01b4a4c9ebb713646497039d4", | |
"tooltip": "Default pointer" | |
} | |
}, | |
"d5526d22ce174efd8ba72183c0e9a116": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"7194e79ab7474eb59f09b3539d5c295a": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"8850387a8a1144d0bf3149c99ba809bb": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "camera", | |
"layout": "IPY_MODEL_d5526d22ce174efd8ba72183c0e9a116", | |
"style": "IPY_MODEL_7194e79ab7474eb59f09b3539d5c295a", | |
"tooltip": "Save map as HTML or image" | |
} | |
}, | |
"ff0edbe3ebdd4c4d96b5d4cd8c87b4f3": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"7ed74ee8786f445e9720e7d4fab62afb": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"d5050d1cf61f4a5b9701f1c493d2dd20": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "info", | |
"layout": "IPY_MODEL_ff0edbe3ebdd4c4d96b5d4cd8c87b4f3", | |
"style": "IPY_MODEL_7ed74ee8786f445e9720e7d4fab62afb", | |
"tooltip": "Inspector" | |
} | |
}, | |
"56dafb192ed04985a325545cf4c84ffa": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"dd81c1aba8ee4ab3b27c2b21584dafe6": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"8c70a058f7a84bdf9f68daf3b5eced56": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "map-marker", | |
"layout": "IPY_MODEL_56dafb192ed04985a325545cf4c84ffa", | |
"style": "IPY_MODEL_dd81c1aba8ee4ab3b27c2b21584dafe6", | |
"tooltip": "Plotting" | |
} | |
}, | |
"d666e4466e804bc497582acd69949ac6": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_gap": "1px 1px", | |
"grid_template_columns": "42px 42px ", | |
"grid_template_rows": "40px 40px ", | |
"width": "90px" | |
} | |
}, | |
"f0a1c5d1500c4043894080d6b2fa8593": { | |
"model_name": "GridBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_4868cdd66e6b481bbf467294fb3f0ab4", | |
"IPY_MODEL_8850387a8a1144d0bf3149c99ba809bb", | |
"IPY_MODEL_d5050d1cf61f4a5b9701f1c493d2dd20", | |
"IPY_MODEL_8c70a058f7a84bdf9f68daf3b5eced56" | |
], | |
"layout": "IPY_MODEL_d666e4466e804bc497582acd69949ac6" | |
} | |
}, | |
"49ebdf7058534657b46d795a11d59cdf": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "37px" | |
} | |
}, | |
"986fc3f2d1de4ce4a7d783287c4c0ebc": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"b447fba82c374ab4a2d1a03b3de26a07": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"icon": "wrench", | |
"layout": "IPY_MODEL_49ebdf7058534657b46d795a11d59cdf", | |
"style": "IPY_MODEL_986fc3f2d1de4ce4a7d783287c4c0ebc", | |
"tooltip": "Toolbar" | |
} | |
}, | |
"ed0d98d89c2d47d0be33806dd453284d": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"ea2988246e4c4dd08bead20e25975af5": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_b447fba82c374ab4a2d1a03b3de26a07" | |
], | |
"layout": "IPY_MODEL_ed0d98d89c2d47d0be33806dd453284d" | |
} | |
}, | |
"eb864a9235ca424fa3838999858144b7": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_ea2988246e4c4dd08bead20e25975af5" | |
} | |
}, | |
"ab8417f2848c4763b57140c7c2b0dda6": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_906fdd79c9cd47f793cbc15446c83da5" | |
} | |
}, | |
"0a190ec5a73245a4a9472fa1a92d6198": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "ROI", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/a27da97e79d05e0f10fa53d0b8f9c00b-25f9a64ca044c5ca0fbbba47f372d00a/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"bee314c509164a189fa907c9c0c72422": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Rainfall", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/b9fa4d50997f0ae359ef53e90d8ab4c9-853a68c1fb8ec9d120c6110e751dc560/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"4ce017cec2954c3bbb18bac33b088432": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "18ex" | |
} | |
}, | |
"63a3689dd24645febeecfd713dbf9ca4": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"cf9cc5fe68d842bcac5029b065c6eaed": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"Rainfall" | |
], | |
"index": 0, | |
"layout": "IPY_MODEL_4ce017cec2954c3bbb18bac33b088432", | |
"style": "IPY_MODEL_63a3689dd24645febeecfd713dbf9ca4" | |
} | |
}, | |
"9b8029633de447b1a3b23b223216a47f": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_cf9cc5fe68d842bcac5029b065c6eaed" | |
} | |
}, | |
"ab5d6fa4ce78414d8d36b22768e69933": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"dde51b3cc6a940778cfd22358cb3d262": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"border": "1px solid black" | |
} | |
}, | |
"fe321e940b4149cba5b67c1b5485f14e": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_dde51b3cc6a940778cfd22358cb3d262", | |
"outputs": [ | |
{ | |
"output_type": "display_data", | |
"data": { | |
"text/plain": "VBox(children=(Figure(axes=[Axis(scale=OrdinalScale()), Axis(orientation='vertical', scale=LinearScale())], fi…", | |
"application/vnd.jupyter.widget-view+json": { | |
"version_major": 2, | |
"version_minor": 0, | |
"model_id": "8963936f92df4b2aaa789a5a5b244a98" | |
} | |
}, | |
"metadata": {} | |
} | |
] | |
} | |
}, | |
"0fdfe280b15d44f5aa89bc8cf2ef4b9c": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "bottomright", | |
"widget": "IPY_MODEL_fe321e940b4149cba5b67c1b5485f14e" | |
} | |
}, | |
"dc1cbb60bb934b5bb1b1b82962abaa14": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "300px", | |
"width": "500px" | |
} | |
}, | |
"7df83eabcd0148db851daa699f6391ac": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"allow_padding": false, | |
"max": 1, | |
"min": 0, | |
"stabilized": false | |
} | |
}, | |
"7895a9ddb74f47ba9fd4db8343a308d7": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"allow_padding": false, | |
"max": 1, | |
"min": 0, | |
"stabilized": false | |
} | |
}, | |
"efbb5e75903d4bfb9f804ffa3cc19619": { | |
"model_name": "FigureModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"axes": [ | |
"IPY_MODEL_7a7a4d215a9f4ba3a01251fa461b48f2", | |
"IPY_MODEL_44309277697e4d7bbc799764a2167710" | |
], | |
"layout": "IPY_MODEL_dc1cbb60bb934b5bb1b1b82962abaa14", | |
"marks": [ | |
"IPY_MODEL_4159b64264774926b36720cd1474a86d" | |
], | |
"scale_x": "IPY_MODEL_7df83eabcd0148db851daa699f6391ac", | |
"scale_y": "IPY_MODEL_7895a9ddb74f47ba9fd4db8343a308d7", | |
"title": "Rainfall" | |
} | |
}, | |
"4cfd22b90bb84ce290ff7d495ced7c27": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"65339af67abe4ca59d56bb5257f042be": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"c4b4b2f732204aadba7424f8ca8a37c1": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_4cfd22b90bb84ce290ff7d495ced7c27", | |
"y": "IPY_MODEL_65339af67abe4ca59d56bb5257f042be" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AACAhe93JUAAAAD2Cd7EPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAOx7I/AAAAAAAAAAAAALD1so0IQAAAgKX60uE/AAAAAAAAAAAAAAA6oTrbPwAAAAAAAAAAAAAAAAAAAAAAAADAc6dXPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABalb+A/AADgXnn+C0AAAAAQzBuXPwAAAAAAAAAAAADqwNVj/T8AAAAAAAAAAAAAIJ6zTfc/AACAjr33E0AAAADtkh2UPwAAQLMV/QVAAAAAAAAAAAAAAADARzlyPwAAgFPnh+g/", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"9ad26dda090243b59ab46c7d093236ae": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_4cfd22b90bb84ce290ff7d495ced7c27", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"9fe892c6f9b64503a2ad878b1f88c194": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_65339af67abe4ca59d56bb5257f042be", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"efd03fad439d44a5a5f0851b46675f14": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"9417e90f19fb428e915a8627053d42ca": { | |
"model_name": "ToolbarModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"figure": "IPY_MODEL_efbb5e75903d4bfb9f804ffa3cc19619", | |
"layout": "IPY_MODEL_efd03fad439d44a5a5f0851b46675f14" | |
} | |
}, | |
"7f003036df2247e09386add8d501d265": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"8963936f92df4b2aaa789a5a5b244a98": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_efbb5e75903d4bfb9f804ffa3cc19619", | |
"IPY_MODEL_9417e90f19fb428e915a8627053d42ca" | |
], | |
"layout": "IPY_MODEL_7f003036df2247e09386add8d501d265" | |
} | |
}, | |
"2fba807a27d34dbcb65bf9a5658a3e5f": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"7ea2e13db54a48918d9f6361e1cbb261": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"695ee883db24428ebb61bd01735a683e": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"fd4d14b317664ef2a7df352a13065742": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"95d4a69608a0424d99ece1c752d0189e": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_695ee883db24428ebb61bd01735a683e", | |
"y": "IPY_MODEL_fd4d14b317664ef2a7df352a13065742" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AADAe9SN6D8AAACgbEBoPwAAAODSScY/AADg2EpS5D8AAGh8bVUBQAAAACiCs7E/AAAAAAAAAAAAANa8wqXtPwAAAAAAAAAAAAAAFR/J2j8AAAAAAAAAAAAAAAAAAAAAAAAAgEiFkj8AAEj+LjwDQAAAAAAAAAAAAABATFwT5z8AAACTdYe5PwAAAABvADI/AAAAAHQKaT8AAAAAAAAAAAAAAAAAAAAAAAAALlYUsT8AAACD9XzlPwAAANsdavY/AAAAAAAAAAAAAMClxWYOQAAAAMBuE6U/AAAAAAAAAAAAAAB0ObPNPwAAAPBw98U/", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"8cc527a5cadd45dda6e6c4278f4c33bf": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_695ee883db24428ebb61bd01735a683e", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"1cd6d92d4be5487c86a9ad34c7bbd6a4": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_fd4d14b317664ef2a7df352a13065742", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"9fd607f7052344d4a95da49e71b76c05": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"2baef86dbdd84eec93b865ae73c7f960": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"6cd60678f4c749d898feeb1484d91eec": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"d4983dce64cf45f088df0357d58c5094": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"fda9458afcbc4a21a401aebe781216a2": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_6cd60678f4c749d898feeb1484d91eec", | |
"y": "IPY_MODEL_d4983dce64cf45f088df0357d58c5094" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AABMFpTd+j8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMHanKzJAAAAAStWd/D8AAAAAAAAAAAAAAAAAAAAAAABAQJpX2T8AAAD26K3zPwAAYPSmQwNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyxX81z8AAABkfEnNPwAA5AWtu+w/AAAAAAAAAAAAAMDFp1akPwAAAObdEbk/AABAwPxnIEAAAACWyNLcPwAAAAAAAAAA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"6b9721c9e6ee4e2db49294569b83704b": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_6cd60678f4c749d898feeb1484d91eec", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"5dc408950d6149618203c262f277b7f0": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_d4983dce64cf45f088df0357d58c5094", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"94362249b09147d797c0cf83a1606e7c": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"41f299efdad448399cb4dd90ce76239e": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Drawn Features", | |
"opacity": 0.5, | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/fdbcbf77f20ea0eac6d4afb2855d803f-7ab4b5466e8cf6a9a8e90650e3cacd6f/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"c830f704a48b464db980baacf917b46e": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"d22380c3042542fcaafe0d2c1f2cd933": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"5350c1b44ca9493eba9c764de5258e0e": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"a5b9635365f8489f8d0b5f3f291412b4": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_d22380c3042542fcaafe0d2c1f2cd933", | |
"y": "IPY_MODEL_5350c1b44ca9493eba9c764de5258e0e" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "XktkCeu3K0BaOPabqoLQP8ivf8O2J5I/AhiYDGc0tz/AQvft1SzDPyFhxmcp+dE/IQIthvfjqD+yKnko0azmP03CkOhgMLI/HvUA+gJaqj+Mv+aqrz3DP32mNVlShNs/6ErJ8ww+7j/glS08Qwn4P+FORXKnhLQ/xHwm8nottT8YO9sUDdOtP0hILuIQ0hNAndj2dHYb9T9oArqVEG3CP+7D6PM33+Q/L3Qcay2sFUC4GlPk4SfqP5Kr43vjNgpAzcAWmGlryD9HWgZBoT4IQH2OYkw8nhFAzPNqR6XikD8jFQCAS/LYP31bsI2y+vA/", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"461655d2fd8245d5a2a12a4d07d8b67e": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_d22380c3042542fcaafe0d2c1f2cd933", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"06fe8d7cade14b96bf8aea93d4de6129": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_5350c1b44ca9493eba9c764de5258e0e", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"4be20d9c7d7b474ea8cbb0b3225a018a": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"798aee8c19a34b16832392625644fbe3": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"852fd81390284025a1f6a31eaff5f021": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"67d8a99cc70e4523b2350b569275e41b": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"308a866984104d1f810743d654a472b3": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_852fd81390284025a1f6a31eaff5f021", | |
"y": "IPY_MODEL_67d8a99cc70e4523b2350b569275e41b" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAOASHOLKPwDA7TRc5yFAAACg4zT4yz8AgO1CYfgdQACE+GPbT0xAAAAAAAAAAAAAAKZHiEISQAAAAIIKtVM/AABgTkn5JEAAAADgxGWZPwAANc8vzSFAAAD58iAfEEAAACUcrFszQAAAuM86pvg/AAAAAAAAAAAAAAiV2WnqPwDA12pjgRhAAJZq2KTaSEAAAJQ9OdY9QAAAgORwqvM/AACAtS/W4D8AgLyfXNZJQAAAfPPeWtU/AAAAAAAAAAAAAMh51EcwQAAgfMlpqzRAAAC2+CieBkAAAADMfWutPwDQLs92ZExA", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"26e4242da35441bcb6ccf048a251869f": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_852fd81390284025a1f6a31eaff5f021", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"9158d8cbfd804a58b0f5dd86268bd073": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_67d8a99cc70e4523b2350b569275e41b", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"2a0af655b2db4c2e867297cb7e49bd8e": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"31ec7ab57af84cacac8c8ba5130a976f": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "wait" | |
} | |
}, | |
"109e4a85eef74234a24ea29a7446e630": { | |
"model_name": "OrdinalScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": {} | |
}, | |
"fa8f1953d1aa4eb39b6d059e588b2463": { | |
"model_name": "LinearScaleModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"stabilized": false | |
} | |
}, | |
"4159b64264774926b36720cd1474a86d": { | |
"model_name": "LinesModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"fill_colors": [], | |
"labels": [ | |
"C1" | |
], | |
"marker": "circle", | |
"scales": { | |
"x": "IPY_MODEL_109e4a85eef74234a24ea29a7446e630", | |
"y": "IPY_MODEL_fa8f1953d1aa4eb39b6d059e588b2463" | |
}, | |
"x": [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
], | |
"y": { | |
"dtype": "float64", | |
"shape": [ | |
30 | |
], | |
"type": null | |
} | |
}, | |
"buffers": [ | |
{ | |
"data": "AAAAAAAAAAAAAAAAAAAAAAAAAIBzRoQ/AAAAUKZcgD8AAADALb+6PwAATGP2OP0/AAAAgIUdfj8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKB0k2g/AAAAv4ce+z8AAGCsOODIPwAAAAAAAAAAAAAAAAAAAAAAAMD8SsvnPwAAAJHsJQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODC12U/AAAATVioxT8AAKBVCHv9PwAAAFi/1cE/", | |
"path": [ | |
"y", | |
"value" | |
], | |
"encoding": "base64" | |
} | |
] | |
}, | |
"7a7a4d215a9f4ba3a01251fa461b48f2": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"scale": "IPY_MODEL_109e4a85eef74234a24ea29a7446e630", | |
"side": "bottom", | |
"tick_values": null | |
} | |
}, | |
"44309277697e4d7bbc799764a2167710": { | |
"model_name": "AxisModel", | |
"model_module": "bqplot", | |
"model_module_version": "^0.5.9", | |
"state": { | |
"orientation": "vertical", | |
"scale": "IPY_MODEL_fa8f1953d1aa4eb39b6d059e588b2463", | |
"side": "left", | |
"tick_values": null | |
} | |
}, | |
"1dcbbc909cbf464cb30218a4fed40abf": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "crosshair" | |
} | |
}, | |
"175a4515ead047ce90caf24ec4f157ca": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Maps", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=m&x={x}&y={y}&z={z}" | |
} | |
}, | |
"ad8ff6cfc0864929a3e56afd990ef6d9": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" | |
} | |
}, | |
"8f6f0c7b046549e99ac1cb7bc3b932e3": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=p&x={x}&y={y}&z={z}" | |
} | |
}, | |
"84d8b61f677643dd893928d340501f3d": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=y&x={x}&y={y}&z={z}" | |
} | |
}, | |
"de20ee3f5ae546c281d9a6f0e3f86eee": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"3bae13510fe24805abe0a2f11c055a11": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Ocean", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/ArcGIS/rest/services/Ocean/World_Ocean_Base/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"b82580de882848dba665849ac5628751": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"2df61251b43c40088306d7914ec0a9d8": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Standard", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"e7f9c0662d214a5cb8fd735ba11a7d19": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Terrain_Base/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"2a903663ce9049aeae3308036a78d908": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Transportation", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://server.arcgisonline.com/ArcGIS/rest/services/Reference/World_Transportation/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"31112976baec432e9520143922a4a928": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Topo World", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"6ad033c486b94b5cb23d0b73c8368be5": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri National Geographic", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"bbb2a6ba798349659bc0da8f2ccc73d8": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Shaded Relief", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/arcgis/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"f2f8ffefa6b4462d8bbc22ed60295369": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Esri", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Esri Physical Map", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://services.arcgisonline.com/arcgis/rest/services/World_Physical_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"1f2043e6804f4a3a9ea5a56a0667b5af": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "FWS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "1", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "FWS NWI Wetlands", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.fws.gov/wetlands/arcgis/services/Wetlands/MapServer/WMSServer?" | |
} | |
}, | |
"e5f42688473540f4ad63c5fa2f018907": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "FWS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "FWS NWI Wetlands Raster", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.fws.gov/wetlands/arcgis/services/Wetlands_Raster/ImageServer/WMSServer?" | |
} | |
}, | |
"f63162a61b06498ebb38c8c45d64c5ff": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Maps", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=m&x={x}&y={y}&z={z}" | |
} | |
}, | |
"f25bd7af6ad64a25bd9ab085c1563fed": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" | |
} | |
}, | |
"8fce1c6aba0841b6af71d8ace5b57b49": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=p&x={x}&y={y}&z={z}" | |
} | |
}, | |
"3149a8a321ae41508d8546e229d8338a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Google Satellite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://mt1.google.com/vt/lyrs=y&x={x}&y={y}&z={z}" | |
} | |
}, | |
"6c34a428b0e54bdbab220f56e30317b2": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2016_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2016 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2016_Land_Cover_L48/wms?" | |
} | |
}, | |
"439c0a2a2c97470794d0f6432f3dbc8d": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2013_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2013 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2013_Land_Cover_L48/wms?" | |
} | |
}, | |
"fb8c3b5edc5441f896cbec1020852fc8": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2011_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2011 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2011_Land_Cover_L48/wms?" | |
} | |
}, | |
"a3bc1d8b1ef343488a4520cab96e7659": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2008_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2008 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2008_Land_Cover_L48/wms?" | |
} | |
}, | |
"3118370f70a34b64b559d13aaeab0ad5": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2006_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2006 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2006_Land_Cover_L48/wms?" | |
} | |
}, | |
"33946826431742d1a3a03841641c678e": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2004_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2004 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2004_Land_Cover_L48/wms?" | |
} | |
}, | |
"68b0bedac32f4129ab4c74bc8df7c9e9": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "MRLC", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "NLCD_2001_Land_Cover_L48", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "NLCD 2001 CONUS Land Cover", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://www.mrlc.gov/geoserver/mrlc_display/NLCD_2001_Land_Cover_L48/wms?" | |
} | |
}, | |
"2e8a0c38cdf14099b30c1d1195966cfd": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS NAIP Imagery", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://services.nationalmap.gov/arcgis/services/USGSNAIPImagery/ImageServer/WMSServer?" | |
} | |
}, | |
"ccd87460fef342aea764263870f891c5": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "0", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS Hydrography", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://basemap.nationalmap.gov/arcgis/services/USGSHydroCached/MapServer/WMSServer?" | |
} | |
}, | |
"bbc7d65d62284d3f9cf0263bbd067bbf": { | |
"model_name": "LeafletWMSLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "USGS", | |
"crs": { | |
"name": "EPSG3857", | |
"custom": false | |
}, | |
"format": "image/png", | |
"layers": "3DEPElevation:None", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "USGS 3DEP Elevation", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"format", | |
"layers", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"styles", | |
"tile_size", | |
"tms", | |
"transparent", | |
"uppercase" | |
], | |
"transparent": true, | |
"url": "https://elevation.nationalmap.gov/arcgis/services/3DEPElevation/ImageServer/WMSServer?" | |
} | |
}, | |
"430dede3eeef4bf7afd20eded9165519": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.Mapnik", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
] | |
} | |
}, | |
"a9203695a5f147c0ad4c079c373d76b9": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.BlackAndWhite", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png" | |
} | |
}, | |
"fe6579ae1a0a451f9186a15d59b1af2c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.DE", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png" | |
} | |
}, | |
"18b60cd5e22949828f579f484b9a9cfe": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© Openstreetmap France | © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.France", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png" | |
} | |
}, | |
"970da8e61292425abb33b5afd5a3931c": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, Tiles courtesy of <a href=\"http://hot.openstreetmap.org/\" target=\"_blank\">Humanitarian OpenStreetMap Team</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenStreetMap.HOT", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png" | |
} | |
}, | |
"c88dfbcfe66241fe9c66d0d97b42e0f2": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map data: © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, <a href=\"http://viewfinderpanoramas.org\">SRTM</a> | Map style: © <a href=\"https://opentopomap.org\">OpenTopoMap</a> (<a href=\"https://creativecommons.org/licenses/by-sa/3.0/\">CC-BY-SA</a>)", | |
"max_native_zoom": 18, | |
"max_zoom": 17, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "OpenTopoMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png" | |
} | |
}, | |
"db0402cddd0f48b9820db3a5d0fab3a8": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles courtesy of <a href=\"http://openstreetmap.se/\" target=\"_blank\">OpenStreetMap Sweden</a> — Map data © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Hydda.Full", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.se/hydda/full/{z}/{x}/{y}.png" | |
} | |
}, | |
"547c2b19c40e491d9922699c485fd91f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles courtesy of <a href=\"http://openstreetmap.se/\" target=\"_blank\">OpenStreetMap Sweden</a> — Map data © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Hydda.Base", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tile.openstreetmap.se/hydda/base/{z}/{x}/{y}.png" | |
} | |
}, | |
"ef187a76d1ff45178af5c350c2854581": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldStreetMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"211f9a895556487e89b4696170c7fb61": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Copyright: ©2012 DeLorme", | |
"max_native_zoom": 18, | |
"max_zoom": 11, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.DeLorme", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/Specialty/DeLorme_World_Base_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"31e7b640113f4dcf80b40c9d771ab4c8": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldTopoMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"c99a9fa41c314c00820cc82a924f5046": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.WorldImagery", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"41d3fc6ab26847078e37ed467e43afc8": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Tiles © Esri — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC", | |
"max_native_zoom": 18, | |
"max_zoom": 16, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Esri.NatGeoWorldMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}" | |
} | |
}, | |
"7561d911b1ad472e87c5c06c254490fb": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "HikeBike.HikeBike", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://{s}.tiles.wmflabs.org/hikebike/{z}/{x}/{y}.png" | |
} | |
}, | |
"342cc5c63c4b4f519202c8daea12664b": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> & USGS", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "MtbMap", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png" | |
} | |
}, | |
"c510a140ac8e4371860c8fad2321dc76": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> © <a href=\"http://cartodb.com/attributions\">CartoDB</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "CartoDB.Positron", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://c.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png" | |
} | |
}, | |
"476ce51369b541efb2ca06c34fdb87cf": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> © <a href=\"http://cartodb.com/attributions\">CartoDB</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "CartoDB.DarkMatter", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://c.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png" | |
} | |
}, | |
"f5ecc9726b274008a75bda24ef184d8f": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"9ca35d0b6fc04a2280e7827e469b6461": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraBands367CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands367/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"0c48a1e13ae7415dae152f8aa16319c1": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisTerraBands721CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands721/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"46e4fc60a7544d62b09167d61806a6a2": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisAquaTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"38984be889d646e2b7bdc65350c937bc": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ModisAquaBands721CR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_Bands721/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"28d1f7aef6a549e5846e604957732dc2": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 9, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ViirsTrueColorCR", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_SNPP_CorrectedReflectance_TrueColor/default/2020-08-19/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg" | |
} | |
}, | |
"d073651ba78e40e399c98bd61011bffb": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 8, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.ViirsEarthAtNight2012", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "http://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_Black_Marble/default/2012-01-01/GoogleMapsCompatible_Level8/{z}/{y}/{x}.png" | |
} | |
}, | |
"12068530136e4e9f9dc697b517aa9866": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 5, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble3413", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3413/best/BlueMarble_NextGeneration/default/EPSG3413_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"2a3588fc886649a3b62dfe3c64221f23": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 5, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble3031", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3031/best/BlueMarble_NextGeneration/default/EPSG3031_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"2c62e1d5f1574fa5baef5d1c449e27d6": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "\nImagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (<a href=\"https://earthdata.nasa.gov\">ESDIS</a>) with funding provided by NASA/HQ.\n", | |
"max_native_zoom": 18, | |
"max_zoom": 8, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "NASAGIBS.BlueMarble", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/BlueMarble_NextGeneration/default/EPSG3857_500m/{z}/{y}/{x}.jpeg" | |
} | |
}, | |
"d6ee41fe239446aaa18772755b14ad31": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.All", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/all/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"de0286803f8340afb0ce0672081aa67a": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Ride", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/ride/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"4e037d485b264ea396eb11a8a738a794": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Run", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/run/bluered/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"16a6b25da1fe499bb3ca8aaa9284fa36": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Water", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/water/blue/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"71df38c1f8cd48dd93f8b5ebef8e5637": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"https://labs.strava.com/heatmap\">Strava 2017</a>", | |
"max_native_zoom": 18, | |
"max_zoom": 15, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Strava.Winter", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://heatmap-external-a.strava.com//tiles/winter/hot/{z}/{x}/{y}.png?v=19" | |
} | |
}, | |
"f3198ef1624d4bfc91163866074989cc": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Stamen.Terrain", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png" | |
} | |
}, | |
"c005c6f5d21b4d23855393c867aef152": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"max_zoom": 20, | |
"min_native_zoom": 0, | |
"name": "Stamen.Toner", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/toner/{z}/{x}/{y}.png" | |
} | |
}, | |
"c8ca1aa3119e4f95bfa4fbae76ac7f93": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Map tiles by <a href=\"http://stamen.com/\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a>. Data by <a href=\"http://openstreetmap.org/\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"name": "Stamen.Watercolor", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://stamen-tiles-a.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png" | |
} | |
}, | |
"a8505b62b02d4fc9816c5d20f52d717a": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2" | |
} | |
}, | |
"04591215f38d49769274ad1db0b8e229": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"cursor": "move" | |
} | |
}, | |
"dc42a42c0d9846459d410ae00afd2370": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"base": true, | |
"max_native_zoom": 18, | |
"max_zoom": 19, | |
"min_native_zoom": 0, | |
"min_zoom": 1, | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
] | |
} | |
}, | |
"dda7b36068054c22a7cb58d16b83641e": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "550px" | |
} | |
}, | |
"4800bcd7fe534a53985a566828d13e6f": { | |
"model_name": "LeafletMapStyleModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2" | |
} | |
}, | |
"f20d3b8ed26547519b208d46cccfc44a": { | |
"model_name": "LeafletMapModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"bottom": 1852, | |
"center": [ | |
38.19718009396176, | |
-101.04974662387035 | |
], | |
"controls": [ | |
"IPY_MODEL_c17f33c05ffe46d0b576d1dbf48aebaf", | |
"IPY_MODEL_0d79df97eb6e4916bc1410b11a42eb1c", | |
"IPY_MODEL_7efb93626c1b4b07958c112370cbb49e", | |
"IPY_MODEL_e4f1e339e61e4e33af2acef475d35ffe", | |
"IPY_MODEL_a019fb8cfcdc48e49eb5db3284cf5191", | |
"IPY_MODEL_54680b6508354b3d96fae9df9dcdb2a0", | |
"IPY_MODEL_997c1c28035146f08cd3dd766400cf92", | |
"IPY_MODEL_abe01c983d7b472fb97c7700e2fd9e5c", | |
"IPY_MODEL_a93d624a017248bbab64342790012791", | |
"IPY_MODEL_f4387280d870424095c053174143e375", | |
"IPY_MODEL_b63bad6def604b3680216d736604b167", | |
"IPY_MODEL_b1639b2310af4fefb50e0aed7aab8068", | |
"IPY_MODEL_a98e2c2b44784f158421e53da68738ef" | |
], | |
"default_style": "IPY_MODEL_a8505b62b02d4fc9816c5d20f52d717a", | |
"dragging_style": "IPY_MODEL_04591215f38d49769274ad1db0b8e229", | |
"east": -58.71093750000001, | |
"fullscreen": false, | |
"interpolation": "bilinear", | |
"layers": [ | |
"IPY_MODEL_dc42a42c0d9846459d410ae00afd2370", | |
"IPY_MODEL_175a4515ead047ce90caf24ec4f157ca", | |
"IPY_MODEL_5f37d62775b84165bfe860163a8cd3ff", | |
"IPY_MODEL_b9d91e0ec9c9465eaf138cdb0693b3eb" | |
], | |
"layout": "IPY_MODEL_dda7b36068054c22a7cb58d16b83641e", | |
"left": 417, | |
"modisdate": "yesterday", | |
"north": 54.67383096593114, | |
"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", | |
"scroll_wheel_zoom", | |
"tap", | |
"tap_tolerance", | |
"touch_zoom", | |
"world_copy_jump", | |
"zoom", | |
"zoom_animation_threshold", | |
"zoom_delta", | |
"zoom_snap", | |
"zoom_start" | |
], | |
"right": 1380, | |
"scroll_wheel_zoom": true, | |
"south": 16.97274101999902, | |
"style": "IPY_MODEL_a8505b62b02d4fc9816c5d20f52d717a", | |
"top": 1302, | |
"west": -143.34960937500003, | |
"window_url": "http://127.0.0.1:8888/notebooks/testing/rainfall.ipynb", | |
"zoom": 4 | |
} | |
}, | |
"a980f24e87094822b35ad823acb0f37a": { | |
"model_name": "LeafletZoomControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"zoom_in_text", | |
"zoom_in_title", | |
"zoom_out_text", | |
"zoom_out_title" | |
] | |
} | |
}, | |
"b51a1325aee141a9912edc3335546782": { | |
"model_name": "LeafletAttributionControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"prefix" | |
], | |
"position": "bottomright", | |
"prefix": "ipyleaflet" | |
} | |
}, | |
"fc0eae9d92724c25a66832dfee48dd04": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "36px" | |
} | |
}, | |
"33f7e6c58a064f4fb9a2c9b4baca9aa9": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"b56b0f836f0640b194c572f5918447ad": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"icon": "globe", | |
"layout": "IPY_MODEL_fc0eae9d92724c25a66832dfee48dd04", | |
"style": "IPY_MODEL_33f7e6c58a064f4fb9a2c9b4baca9aa9", | |
"tooltip": "Search location/data" | |
} | |
}, | |
"33161da282a146ad83f3d99db6d03d23": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"e2eafbd5808b48f6b19cd069d8eece2a": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "110px", | |
"description_width": "" | |
} | |
}, | |
"6054aea8f05049f3a55d6b383e8959f5": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"name/address", | |
"lat-lon", | |
"data" | |
], | |
"button_style": "", | |
"icons": [], | |
"index": 0, | |
"layout": "IPY_MODEL_33161da282a146ad83f3d99db6d03d23", | |
"style": "IPY_MODEL_e2eafbd5808b48f6b19cd069d8eece2a", | |
"tooltips": [ | |
"Search by place name or address", | |
"Search by lat-lon coordinates", | |
"Search Earth Engine data catalog" | |
] | |
} | |
}, | |
"76688f8f76da4991a18af7d034020c02": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "340px" | |
} | |
}, | |
"b10e697aa0044a369a5068ed91040673": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"1d59dde6d96f461790b65f0967e868e3": { | |
"model_name": "TextModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_76688f8f76da4991a18af7d034020c02", | |
"placeholder": "Search by place name or address", | |
"style": "IPY_MODEL_b10e697aa0044a369a5068ed91040673" | |
} | |
}, | |
"1685d7a71d574fc1af715f80aa070592": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_height": "250px", | |
"max_width": "340px", | |
"overflow": "scroll" | |
} | |
}, | |
"c198a31d9f1047418e4d6e7ae72106d5": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_1685d7a71d574fc1af715f80aa070592" | |
} | |
}, | |
"e599953f34d74906930e644e8162acab": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"7fb867c7997f4d45a2f3495967eed080": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"f5d1abf313de48f9968cdc61b255b394": { | |
"model_name": "RadioButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"index": null, | |
"layout": "IPY_MODEL_e599953f34d74906930e644e8162acab", | |
"style": "IPY_MODEL_7fb867c7997f4d45a2f3495967eed080" | |
} | |
}, | |
"53747f87d4954e07b9ac7586eeee14eb": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_width": "279px", | |
"min_width": "279px" | |
} | |
}, | |
"28fe2c49f44b4752a35e9433a4133e60": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"d293d64641fa414c9ce6d1d05514bdc4": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"index": null, | |
"layout": "IPY_MODEL_53747f87d4954e07b9ac7586eeee14eb", | |
"style": "IPY_MODEL_28fe2c49f44b4752a35e9433a4133e60" | |
} | |
}, | |
"02af708ab0ea413dadf46cd15d2397e9": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"max_width": "57px", | |
"min_width": "57px" | |
} | |
}, | |
"a51f03b0ff444e43a61886b87c13fd28": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"f086901267ea4764963a852d4e342346": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"description": "import", | |
"layout": "IPY_MODEL_02af708ab0ea413dadf46cd15d2397e9", | |
"style": "IPY_MODEL_a51f03b0ff444e43a61886b87c13fd28", | |
"tooltip": "Click to import the selected asset" | |
} | |
}, | |
"a9e515e497c84b4ea9f0dbd1678c0800": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"a5dca70fbf9b490e8193d0d2a9dc512b": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"50832f2830884d3d9e243e8e0548c5e9": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_a9e515e497c84b4ea9f0dbd1678c0800", | |
"style": "IPY_MODEL_a5dca70fbf9b490e8193d0d2a9dc512b" | |
} | |
}, | |
"237d390f34664806bfa5f2feeb2b480b": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"50617b5012aa479fafe132b2ed317961": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_f086901267ea4764963a852d4e342346", | |
"IPY_MODEL_d293d64641fa414c9ce6d1d05514bdc4" | |
], | |
"layout": "IPY_MODEL_237d390f34664806bfa5f2feeb2b480b" | |
} | |
}, | |
"5aabebc03b0747b5ab4bc68bd08152c2": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"8dd82f29969e42ab9b74999b60cd5a8e": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_6054aea8f05049f3a55d6b383e8959f5", | |
"IPY_MODEL_1d59dde6d96f461790b65f0967e868e3" | |
], | |
"layout": "IPY_MODEL_5aabebc03b0747b5ab4bc68bd08152c2" | |
} | |
}, | |
"70cb97d1b3234298832ea7e8c30be1e2": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"23b2c099601f4af9af6675522f77918f": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_b56b0f836f0640b194c572f5918447ad" | |
], | |
"layout": "IPY_MODEL_70cb97d1b3234298832ea7e8c30be1e2" | |
} | |
}, | |
"c17f33c05ffe46d0b576d1dbf48aebaf": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topleft", | |
"widget": "IPY_MODEL_23b2c099601f4af9af6675522f77918f" | |
} | |
}, | |
"b4675c608599461d90978027b5531c4c": { | |
"model_name": "LeafletAwesomeIconModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"icon_color": "darkgreen", | |
"marker_color": "green", | |
"name": "check" | |
} | |
}, | |
"79c0cea5d23f4e3cbfb109238af8d64e": { | |
"model_name": "LeafletMarkerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"icon": "IPY_MODEL_b4675c608599461d90978027b5531c4c", | |
"options": [ | |
"alt", | |
"draggable", | |
"keyboard", | |
"rise_offset", | |
"rise_on_hover", | |
"rotation_angle", | |
"rotation_origin", | |
"title", | |
"z_index_offset" | |
] | |
} | |
}, | |
"0d79df97eb6e4916bc1410b11a42eb1c": { | |
"model_name": "LeafletSearchControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"marker": "IPY_MODEL_79c0cea5d23f4e3cbfb109238af8d64e", | |
"options": [ | |
"animate_location", | |
"auto_collapse", | |
"auto_type", | |
"found_style", | |
"jsonp_param", | |
"position", | |
"property_loc", | |
"property_name", | |
"url", | |
"zoom" | |
], | |
"position": "topleft", | |
"url": "https://nominatim.openstreetmap.org/search?format=json&q={s}", | |
"zoom": 5 | |
} | |
}, | |
"7efb93626c1b4b07958c112370cbb49e": { | |
"model_name": "LeafletZoomControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"zoom_in_text", | |
"zoom_in_title", | |
"zoom_out_text", | |
"zoom_out_title" | |
] | |
} | |
}, | |
"e4f1e339e61e4e33af2acef475d35ffe": { | |
"model_name": "LeafletLayersControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright" | |
} | |
}, | |
"a019fb8cfcdc48e49eb5db3284cf5191": { | |
"model_name": "LeafletScaleControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"imperial": true, | |
"max_width": 100, | |
"metric": true, | |
"options": [ | |
"imperial", | |
"max_width", | |
"metric", | |
"position", | |
"update_when_idle" | |
], | |
"position": "bottomleft", | |
"update_when_idle": false | |
} | |
}, | |
"54680b6508354b3d96fae9df9dcdb2a0": { | |
"model_name": "LeafletFullScreenControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
] | |
} | |
}, | |
"997c1c28035146f08cd3dd766400cf92": { | |
"model_name": "LeafletMeasureControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"active_color": "orange", | |
"options": [ | |
"active_color", | |
"capture_z_index", | |
"completed_color", | |
"popup_options", | |
"position", | |
"primary_area_unit", | |
"primary_length_unit", | |
"secondary_area_unit", | |
"secondary_length_unit" | |
], | |
"position": "bottomleft", | |
"primary_length_unit": "kilometers", | |
"secondary_area_unit": null, | |
"secondary_length_unit": null | |
} | |
}, | |
"abe01c983d7b472fb97c7700e2fd9e5c": { | |
"model_name": "LeafletAttributionControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position", | |
"prefix" | |
], | |
"position": "bottomright", | |
"prefix": "ipyleaflet" | |
} | |
}, | |
"a93d624a017248bbab64342790012791": { | |
"model_name": "LeafletDrawControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"circle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"marker": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"options": [ | |
"position" | |
], | |
"rectangle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
} | |
} | |
}, | |
"6eb9cba7ec0f42ac8454c31302e75d1b": { | |
"model_name": "LeafletDrawControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"circle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
}, | |
"options": [ | |
"position" | |
], | |
"polygon": {}, | |
"polyline": {}, | |
"rectangle": { | |
"shapeOptions": { | |
"color": "#0000FF" | |
} | |
} | |
} | |
}, | |
"a9f75548460b49d09021fa6ef8625414": { | |
"model_name": "LeafletMarkerClusterModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"name": "Marker Cluster" | |
} | |
}, | |
"9dcd1728eb684fa49529f1fcdf468f97": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "18px", | |
"width": "13ex" | |
} | |
}, | |
"18134091ff274e118ae3ad9608f30623": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"ab8424e983694e30aa0d667e51f8c953": { | |
"model_name": "CheckboxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Inspector", | |
"disabled": false, | |
"indent": false, | |
"layout": "IPY_MODEL_9dcd1728eb684fa49529f1fcdf468f97", | |
"style": "IPY_MODEL_18134091ff274e118ae3ad9608f30623", | |
"value": false | |
} | |
}, | |
"02e51c791d174867b49cdc61023937bd": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "13ex" | |
} | |
}, | |
"92a1a96c9aa2438db84e0524659098bc": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"3b271ddcbc5a40379fad3297cf08a834": { | |
"model_name": "CheckboxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Plotting", | |
"disabled": false, | |
"indent": false, | |
"layout": "IPY_MODEL_02e51c791d174867b49cdc61023937bd", | |
"style": "IPY_MODEL_92a1a96c9aa2438db84e0524659098bc", | |
"value": false | |
} | |
}, | |
"8f8530f6e0eb43d4bdba3253cbd29f2f": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"22bef81079ad41b88e14d1026fd5a610": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_ab8424e983694e30aa0d667e51f8c953", | |
"IPY_MODEL_3b271ddcbc5a40379fad3297cf08a834" | |
], | |
"layout": "IPY_MODEL_8f8530f6e0eb43d4bdba3253cbd29f2f" | |
} | |
}, | |
"f4387280d870424095c053174143e375": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_22bef81079ad41b88e14d1026fd5a610" | |
} | |
}, | |
"7152749495384fb98bb2dd7bd5afd4b1": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"border": "1px solid black" | |
} | |
}, | |
"cc595293dfa848df84f04abc08d815ae": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_7152749495384fb98bb2dd7bd5afd4b1" | |
} | |
}, | |
"b63bad6def604b3680216d736604b167": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_cc595293dfa848df84f04abc08d815ae" | |
} | |
}, | |
"9a197d4d3a9c44b7aba769e30efec1ef": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"21f5360501214032ad16596c8371d6a4": { | |
"model_name": "OutputModel", | |
"model_module": "@jupyter-widgets/output", | |
"model_module_version": "1.0.0", | |
"state": { | |
"layout": "IPY_MODEL_9a197d4d3a9c44b7aba769e30efec1ef" | |
} | |
}, | |
"2529ac73935e40a19d668255914c23bf": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"9f2cdf3b142a4c7d9375e29bee2360e4": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_faa3f80716054c2f977856943c54d6d8", | |
"IPY_MODEL_d784f86816c0400c84d308f01fb73bef" | |
], | |
"layout": "IPY_MODEL_2529ac73935e40a19d668255914c23bf" | |
} | |
}, | |
"e1dc7920f6a846b389430d8f6a95e5ac": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"6ec1df46ba704f5a90f77e0b52e7b03e": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "", | |
"description_width": "" | |
} | |
}, | |
"faa3f80716054c2f977856943c54d6d8": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"HTML", | |
"PNG", | |
"JPG" | |
], | |
"button_style": "", | |
"icons": [], | |
"index": 0, | |
"layout": "IPY_MODEL_e1dc7920f6a846b389430d8f6a95e5ac", | |
"style": "IPY_MODEL_6ec1df46ba704f5a90f77e0b52e7b03e", | |
"tooltips": [ | |
"Save the map as an HTML file", | |
"Take a screenshot and save as a PNG file", | |
"Take a screenshot and save as a JPG file" | |
] | |
} | |
}, | |
"a960b7fdd2a14267b991bca7284175a7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "pathlist", | |
"width": "auto" | |
} | |
}, | |
"571337b65c3941c7b6ff298400b7b9a3": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"9148b7aac8bd47529772f6432b10c878": { | |
"model_name": "DropdownModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"/media/hdd/Dropbox/git/geemap/testing", | |
"/media/hdd/Dropbox/git/geemap", | |
"/media/hdd/Dropbox/git", | |
"/media/hdd/Dropbox", | |
"/media/hdd", | |
"/media", | |
"/" | |
], | |
"index": 0, | |
"layout": "IPY_MODEL_a960b7fdd2a14267b991bca7284175a7", | |
"style": "IPY_MODEL_571337b65c3941c7b6ff298400b7b9a3" | |
} | |
}, | |
"546fde21d6af458d991fd9d0e12dcd15": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "filename", | |
"width": "auto" | |
} | |
}, | |
"2d10be3035144feb80158dc2022431b6": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"07d9d2334e5548988e8d8d9e2ab98360": { | |
"model_name": "TextModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_546fde21d6af458d991fd9d0e12dcd15", | |
"placeholder": "output filename", | |
"style": "IPY_MODEL_2d10be3035144feb80158dc2022431b6", | |
"value": "my_map.html" | |
} | |
}, | |
"0d8f2fcb327a402daf3f20cb4b213da4": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_area": "dircontent", | |
"width": "auto" | |
} | |
}, | |
"e486247296c84e5c82aceaa9452ba931": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"0403fd3c055048fea2f0258a6f757269": { | |
"model_name": "SelectModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"..", | |
"china", | |
"data", | |
"datapane", | |
"datasets", | |
"kepler", | |
"update", | |
"water_mapping", | |
"wetlands", | |
"01_surface_water_mapping.ipynb", | |
"06Q1fSz.jpg", | |
"06Q1fSz.png", | |
"06Q1fSz.tif", | |
"0_geemap_key_features.ipynb", | |
"10.21105.joss.01886.pdf", | |
"10_shapefiles.ipynb", | |
"11_export_image.ipynb", | |
"34_plotting.ipynb", | |
"Hillshade.ipynb", | |
"NDVI.ipynb", | |
"SearchControl.ipynb", | |
"Untitled.ipynb", | |
"api-copy.html", | |
"api.html", | |
"api.ipynb", | |
"api.png", | |
"api.py", | |
"appveyor.yml", | |
"assets.csv", | |
"assets.ipynb", | |
"authenticate.ipynb", | |
"basemaps.ipynb", | |
"bitmap_layer.html", | |
"clone.ipynb", | |
"clone_repo.ipynb", | |
"conver_js_ipynb.ipynb", | |
"datapane.ipynb", | |
"download.py", | |
"ee_api_docs.csv", | |
"ee_api_docs.pmdx", | |
"ee_landtrendr_fitted_rgb_thumbnails.py", | |
"export_ImageCollection.ipynb", | |
"gist.ipynb", | |
"globe_view.html", | |
"image_overlay.ipynb", | |
"ipytree.ipynb", | |
"joss.pdf", | |
"main.py", | |
"map_controls.ipynb", | |
"my_map.html", | |
"my_map.jpg", | |
"my_map.png", | |
"my_map2.html", | |
"projection.ipynb", | |
"pydeck-intro.ipynb", | |
"pydeck.ipynb", | |
"rainfall.csv", | |
"rainfall.ipynb", | |
"s2cloudless.ipynb", | |
"save.ipynb", | |
"sentinel.ipynb", | |
"terrain_layer.html", | |
"terrain_visualization.ipynb", | |
"testing.txt", | |
"testing2.txt", | |
"testing3.txt", | |
"testing4.txt", | |
"time_series.py", | |
"toolbar.ipynb", | |
"us-cities.json", | |
"utlls.ipynb", | |
"voila.ipynb" | |
], | |
"index": 49, | |
"layout": "IPY_MODEL_0d8f2fcb327a402daf3f20cb4b213da4", | |
"rows": 8, | |
"style": "IPY_MODEL_e486247296c84e5c82aceaa9452ba931" | |
} | |
}, | |
"444ea43de6b04d648feb6a744bc29eda": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none", | |
"width": "auto" | |
} | |
}, | |
"f1b0978d80514cee8fe38c61be5ada35": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"f38ad8c2644e4c7a9ebc85d8485eb5ed": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Cancel", | |
"layout": "IPY_MODEL_444ea43de6b04d648feb6a744bc29eda", | |
"style": "IPY_MODEL_f1b0978d80514cee8fe38c61be5ada35" | |
} | |
}, | |
"40b2a62031904bce974a85b0d02cd070": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"88bd416b0fc34d0ab9435f51a1c05678": { | |
"model_name": "ButtonStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": {} | |
}, | |
"7c79749c553f47b58d45d60196b79339": { | |
"model_name": "ButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description": "Select", | |
"layout": "IPY_MODEL_40b2a62031904bce974a85b0d02cd070", | |
"style": "IPY_MODEL_88bd416b0fc34d0ab9435f51a1c05678" | |
} | |
}, | |
"09da28b2d32e439c901aa0baf91128dc": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none" | |
} | |
}, | |
"d7be4c6438a74d4eaa8aabf944266f35": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"5938863da58947af8e92a690b820d7e1": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_09da28b2d32e439c901aa0baf91128dc", | |
"style": "IPY_MODEL_d7be4c6438a74d4eaa8aabf944266f35" | |
} | |
}, | |
"3099e03a99ac4df2a14fcc9dfb93d573": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"fb2d8d80689b4d6780b29ebd6eb684e0": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"c69de28d5bc04112ba66e4cff572b691": { | |
"model_name": "HTMLModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"layout": "IPY_MODEL_3099e03a99ac4df2a14fcc9dfb93d573", | |
"placeholder": "", | |
"style": "IPY_MODEL_fb2d8d80689b4d6780b29ebd6eb684e0", | |
"value": "<span style=\"margin-left:10px; color:black;\">No file selected</span>" | |
} | |
}, | |
"3257010d2b454456b28f8fe007f1daeb": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"display": "none", | |
"grid_gap": "0px 0px", | |
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ", | |
"grid_template_columns": "60% 40%", | |
"grid_template_rows": "auto auto", | |
"width": "500px" | |
} | |
}, | |
"74bceddd1eb1445ab00b06d6925cf9dd": { | |
"model_name": "GridBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_9148b7aac8bd47529772f6432b10c878", | |
"IPY_MODEL_07d9d2334e5548988e8d8d9e2ab98360", | |
"IPY_MODEL_0403fd3c055048fea2f0258a6f757269" | |
], | |
"layout": "IPY_MODEL_3257010d2b454456b28f8fe007f1daeb" | |
} | |
}, | |
"9fae3ff4d10349f69e5b2ad9144f7018": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"f618124cb9d04c38a91004b5ec36b491": { | |
"model_name": "HBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_7c79749c553f47b58d45d60196b79339", | |
"IPY_MODEL_f38ad8c2644e4c7a9ebc85d8485eb5ed", | |
"IPY_MODEL_c69de28d5bc04112ba66e4cff572b691" | |
], | |
"layout": "IPY_MODEL_9fae3ff4d10349f69e5b2ad9144f7018" | |
} | |
}, | |
"9c2bd97583714decb45b973b295061aa": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "auto" | |
} | |
}, | |
"d784f86816c0400c84d308f01fb73bef": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_5938863da58947af8e92a690b820d7e1", | |
"IPY_MODEL_74bceddd1eb1445ab00b06d6925cf9dd", | |
"IPY_MODEL_f618124cb9d04c38a91004b5ec36b491" | |
], | |
"layout": "IPY_MODEL_9c2bd97583714decb45b973b295061aa" | |
} | |
}, | |
"a56e2bece00b4cd5afca8e22afdab759": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"c99eba33ff8244d194832c4b607a5628": { | |
"model_name": "ToggleButtonsStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_width": "", | |
"description_width": "" | |
} | |
}, | |
"ceb63945d9534da5aaefdb38be300c2f": { | |
"model_name": "ToggleButtonsModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"_options_labels": [ | |
"OK", | |
"Cancel" | |
], | |
"button_style": "primary", | |
"icons": [], | |
"index": null, | |
"layout": "IPY_MODEL_a56e2bece00b4cd5afca8e22afdab759", | |
"style": "IPY_MODEL_c99eba33ff8244d194832c4b607a5628", | |
"tooltips": [ | |
"OK", | |
"Cancel" | |
] | |
} | |
}, | |
"16eb0ce7ef3844e091fdcbf6acadb5b7": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"89a4b14d82e84aa3bacdb55295c9e8a8": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"9acfc2b2ae5c489885be864fa4e90cc7": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "mouse-pointer", | |
"layout": "IPY_MODEL_16eb0ce7ef3844e091fdcbf6acadb5b7", | |
"style": "IPY_MODEL_89a4b14d82e84aa3bacdb55295c9e8a8", | |
"tooltip": "Default pointer" | |
} | |
}, | |
"fa7ab5dffc37474ebada6321469b5ae5": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"32bc633fd8bd412da579552616ec9cbd": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"a384e39e11a54bc38ae9293ec77daaeb": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "camera", | |
"layout": "IPY_MODEL_fa7ab5dffc37474ebada6321469b5ae5", | |
"style": "IPY_MODEL_32bc633fd8bd412da579552616ec9cbd", | |
"tooltip": "Save map as HTML or image" | |
} | |
}, | |
"28b3ccfccc2d469e8514b3e2dc976be0": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"b9453ea0082e4319a5effc268f8f7b8e": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"dd04daa2255e456291bb1810b2dfc695": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "info", | |
"layout": "IPY_MODEL_28b3ccfccc2d469e8514b3e2dc976be0", | |
"style": "IPY_MODEL_b9453ea0082e4319a5effc268f8f7b8e", | |
"tooltip": "Inspector" | |
} | |
}, | |
"c528996e2d6848acabfe6150441674ad": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"height": "auto", | |
"width": "auto" | |
} | |
}, | |
"a93ae68686274d57b5a40c41ab6e95a3": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"d36d812ac1ef41469d88a91f7eab1078": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"button_style": "primary", | |
"icon": "map-marker", | |
"layout": "IPY_MODEL_c528996e2d6848acabfe6150441674ad", | |
"style": "IPY_MODEL_a93ae68686274d57b5a40c41ab6e95a3", | |
"tooltip": "Plotting" | |
} | |
}, | |
"fa17a77402b34152b271271edb7543a5": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"grid_gap": "1px 1px", | |
"grid_template_columns": "42px 42px ", | |
"grid_template_rows": "40px 40px ", | |
"width": "90px" | |
} | |
}, | |
"c96c978df7bd4a7bae8741082999d003": { | |
"model_name": "GridBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_9acfc2b2ae5c489885be864fa4e90cc7", | |
"IPY_MODEL_a384e39e11a54bc38ae9293ec77daaeb", | |
"IPY_MODEL_dd04daa2255e456291bb1810b2dfc695", | |
"IPY_MODEL_d36d812ac1ef41469d88a91f7eab1078" | |
], | |
"layout": "IPY_MODEL_fa17a77402b34152b271271edb7543a5" | |
} | |
}, | |
"adfa29cf7e624b9f945b49a63216a3c6": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": { | |
"width": "37px" | |
} | |
}, | |
"3c7ddb4c4c384e96a195f63247edccae": { | |
"model_name": "DescriptionStyleModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"description_width": "" | |
} | |
}, | |
"a752274e14d14a5ca54bf41983314774": { | |
"model_name": "ToggleButtonModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"icon": "wrench", | |
"layout": "IPY_MODEL_adfa29cf7e624b9f945b49a63216a3c6", | |
"style": "IPY_MODEL_3c7ddb4c4c384e96a195f63247edccae", | |
"tooltip": "Toolbar" | |
} | |
}, | |
"13d14086e7b94f7195ec4f0987e012cd": { | |
"model_name": "LayoutModel", | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"state": {} | |
}, | |
"2bfce9e0ebea4c4c84d1fcfc2e8aabc5": { | |
"model_name": "VBoxModel", | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"state": { | |
"children": [ | |
"IPY_MODEL_a752274e14d14a5ca54bf41983314774" | |
], | |
"layout": "IPY_MODEL_13d14086e7b94f7195ec4f0987e012cd" | |
} | |
}, | |
"b1639b2310af4fefb50e0aed7aab8068": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_2bfce9e0ebea4c4c84d1fcfc2e8aabc5" | |
} | |
}, | |
"a98e2c2b44784f158421e53da68738ef": { | |
"model_name": "LeafletWidgetControlModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module": "jupyter-leaflet", | |
"_model_module_version": "^0.13.2", | |
"_view_count": null, | |
"_view_module": "jupyter-leaflet", | |
"_view_module_version": "^0.13.2", | |
"options": [ | |
"position" | |
], | |
"position": "topright", | |
"widget": "IPY_MODEL_21f5360501214032ad16596c8371d6a4" | |
} | |
}, | |
"5f37d62775b84165bfe860163a8cd3ff": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "ROI", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/a27da97e79d05e0f10fa53d0b8f9c00b-a56f035851665a0e18496c2e10da9bdd/tiles/{z}/{x}/{y}" | |
} | |
}, | |
"b9d91e0ec9c9465eaf138cdb0693b3eb": { | |
"model_name": "LeafletTileLayerModel", | |
"model_module": "jupyter-leaflet", | |
"model_module_version": "^0.13.2", | |
"state": { | |
"_model_module_version": "^0.13.2", | |
"_view_module_version": "^0.13.2", | |
"attribution": "Google Earth Engine", | |
"max_native_zoom": 18, | |
"min_native_zoom": 0, | |
"name": "Rainfall", | |
"options": [ | |
"attribution", | |
"detect_retina", | |
"max_native_zoom", | |
"max_zoom", | |
"min_native_zoom", | |
"min_zoom", | |
"no_wrap", | |
"tile_size", | |
"tms" | |
], | |
"url": "https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/maps/b9fa4d50997f0ae359ef53e90d8ab4c9-7977ce11b610b79104754649d8212cc3/tiles/{z}/{x}/{y}" | |
} | |
} | |
} | |
} | |
}, | |
"gist": { | |
"id": "", | |
"data": { | |
"description": "daily rainfall", | |
"public": true | |
} | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment