Skip to content

Instantly share code, notes, and snippets.

@giswqs
Last active September 22, 2020 21:38
Show Gist options
  • Save giswqs/365a74a0fd84332825d5409c3e07c32c to your computer and use it in GitHub Desktop.
Save giswqs/365a74a0fd84332825d5409c3e07c32c to your computer and use it in GitHub Desktop.
zonal statistics
Display the source blob
Display the rendered blob
Raw
{
"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": "4451072ba0e2446daa8b4162e21676ce"
}
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "states = ee.FeatureCollection('TIGER/2018/States')\nMap.addLayer(states, {}, \"TIGER/2018/States\")",
"execution_count": 3,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "NEDelevation = ee.Image('USGS/NED')\nMap.addLayer(NEDelevation, {'min':0, 'max':4000},'NED')",
"execution_count": 4,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "slope = ee.Terrain.slope(NEDelevation)\nMap.addLayer(slope,{'min':0,'max':45},'Slope')",
"execution_count": 5,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "aspect = ee.Terrain.aspect(NEDelevation)\nMap.addLayer(aspect,{'min':0,'max':360},'Aspect')",
"execution_count": 6,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "image = NEDelevation.addBands(slope).addBands(aspect)",
"execution_count": 7,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "print(image.bandNames().getInfo())",
"execution_count": 9,
"outputs": [
{
"output_type": "stream",
"text": "['elevation', 'slope', 'aspect']\n",
"name": "stdout"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "out_csv = 'stats.csv'",
"execution_count": 11,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "geemap.zonal_statistics(in_value_raster=image, in_zone_vector=states, out_file_path=out_csv)",
"execution_count": 13,
"outputs": [
{
"output_type": "stream",
"text": "Computing statistics ...\nGenerating URL ...\nDownloading data from https://earthengine.googleapis.com/v1alpha/projects/earthengine-legacy/tables/01a7332d3538f1ef1701459882fd424d-e9a426f5b267a730e5e3b0e5b3c77e6f:getFeatures\nPlease wait ...\nData downloaded to /home/qiusheng/Downloads/JavaScriptCode4GEEandSampleData/stats.csv\n",
"name": "stdout"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "",
"execution_count": null,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "",
"execution_count": null,
"outputs": []
}
],
"metadata": {
"kernelspec": {
"name": "python3",
"display_name": "Python 3",
"language": "python"
},
"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"
]
},
"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"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"version_major": 2,
"version_minor": 0,
"state": {
"72fe7aed5c834b50bcedfee14219b8da": {
"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}"
}
},
"4f3a3ae6c37747c5901dff78f6be77c9": {
"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}"
}
},
"f3cdca3a3d934578ac7b198c498c5102": {
"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}"
}
},
"d58acdd7573f47de89fd513dce364b18": {
"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}"
}
},
"bb336b775dcf4c1e8ee6ba76fcd38aab": {
"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}"
}
},
"b0ae7fe54758489d863bcf9fd6aff6b6": {
"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}"
}
},
"85953a9cd43140c9abce7962269e6d5a": {
"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}"
}
},
"8364326e7fa84cbe9c3128ec2241cb8e": {
"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}"
}
},
"101b7a30a97747b7a78cccbc9ab3aad2": {
"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}"
}
},
"9e7c6a6a6c974d9abd1346b5dc21f0d6": {
"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}"
}
},
"fda8d261c332448a9ee78344c8bd1f76": {
"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}"
}
},
"9dd1177d731945e3ba535258c9e1dd8b": {
"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}"
}
},
"d4f82b4ac5254cf39924f80584ba7438": {
"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}"
}
},
"69339965d8074b678c45a6de4eaca825": {
"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}"
}
},
"4cc64b42b66e4ea98b005c74696ca32d": {
"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?"
}
},
"84c0621cff5d44b095230206b9fbba1d": {
"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?"
}
},
"1b3d10ba676b42aa980d9c0241bbcec1": {
"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}"
}
},
"7b1f5090f1bc48f489071d772f8dcc5d": {
"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}"
}
},
"52f25862890d442d927e85e1f75b0b2d": {
"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}"
}
},
"ab19e269175d4f169056b1dcfbef8521": {
"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}"
}
},
"2c1b3a13063743689e32a1d6fd8e5d4f": {
"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?"
}
},
"ec8d5938fdb74d2f9ec36b6ef67212db": {
"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?"
}
},
"3e01133acd83487a9493d40532c8fb58": {
"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?"
}
},
"02e7209ac58c44fa9a60b8d1c5d9e5b5": {
"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?"
}
},
"0db4d43a5c8744c986cb1d6794a194b6": {
"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?"
}
},
"bb95dc8bf2a34535916864bb4b23fce5": {
"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?"
}
},
"1e95443ef19340719a1b0b9c0e10d1ea": {
"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?"
}
},
"c00f9a9df2344527b2980713268e5655": {
"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?"
}
},
"3b43d422bab449d28b347bb2fd450302": {
"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?"
}
},
"ea2e3063dc9646c5899bf7f1382df50f": {
"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?"
}
},
"3820ea8bed0a4c33afcd9516ed0b1f2f": {
"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"
]
}
},
"d17a7c439fbc4e4084d6a135fd6144d9": {
"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": "&copy; <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"
}
},
"f59aabc0ef1247619f98ceeb87b863ea": {
"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": "&copy; <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"
}
},
"7d8ebf2a9dbd42e7b695f5643784aabc": {
"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": "&copy; Openstreetmap France | &copy; <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"
}
},
"8341560e14444c1d97acbaf25ed68de1": {
"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": "&copy; <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"
}
},
"521a6cc00a4340ed8ff8ed44d449bcdb": {
"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: &copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, <a href=\"http://viewfinderpanoramas.org\">SRTM</a> | Map style: &copy; <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"
}
},
"17849bf2386c4cc886e75c0ada3575e8": {
"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> &mdash; Map data &copy; <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"
}
},
"4371ce325e3440b3aa864d95a3f11db7": {
"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> &mdash; Map data &copy; <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"
}
},
"42737f4dee134adaa496dc35ae3c7c61": {
"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 &copy; Esri &mdash; 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}"
}
},
"ba88f7fd5e234433907f5aba020dd20b": {
"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 &copy; Esri &mdash; Copyright: &copy;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}"
}
},
"e496ff10c6d04eee989394a8dfe2804b": {
"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 &copy; Esri &mdash; 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}"
}
},
"5a2844036d21488aa0d4c252c73fe769": {
"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 &copy; Esri &mdash; 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}"
}
},
"f79b5ddfd1444e1f82cd4c12f0a91ac6": {
"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 &copy; Esri &mdash; 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}"
}
},
"f5d7bb7c7e4e4a31ae94037bec575c6f": {
"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": "&copy; <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"
}
},
"06fa668a15fc4cba992f77221e532d91": {
"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": "&copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> &amp; 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"
}
},
"df08b1804ba6474fb6b2f3991deef7f3": {
"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": "&copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> &copy; <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"
}
},
"afd5a3f59db54ccc9970e056b961e75c": {
"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": "&copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> &copy; <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"
}
},
"c50fc154200744c189ffb4c628578d74": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"2a133649704947da9dba20f7a782245f": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"6d632802fc4d4b188908de1a2e558510": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"159ccc1fb38d45f595cc48ad38d4acdd": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"eed59fa5aaaa4ae09584b1a8a3aaa0b1": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"f01b4b11ebc348f89b912791af838760": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"41619d397c1d4370a9fc3764044d0e1a": {
"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"
}
},
"b0481735d71f4201b594afa2d651d150": {
"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"
}
},
"911773eb07a945878032d48c39d3799b": {
"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"
}
},
"76eaf7ee01c2429cab2806cad8c981b6": {
"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"
}
},
"d2655e1101744c389172b8de2cd2f801": {
"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"
}
},
"bc0ccfb8a4a74621bec37aa728cfcb0d": {
"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"
}
},
"dc7d1bd17f2743cd800f80b09ce3db04": {
"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"
}
},
"4cbb7ffa22934ed69ea1c80b16c32bff": {
"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"
}
},
"621dd7027c9c42cfb13f0673741b9752": {
"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"
}
},
"985d000bfa3f47f8b70cdff9f13f82ad": {
"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"
}
},
"2edb0ab26a1d41d9b718a353b66ecb41": {
"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"
}
},
"b780314e79b04b12934e977d8f18b22d": {
"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"
}
},
"9314eecd7e60488ca62a4b4c764676ec": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2"
}
},
"9b1a982c380d43dcaac12088e21912f3": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "move"
}
},
"c9d71bf0c3904162945b85b5a6f09567": {
"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"
]
}
},
"45ec840d8d3049aca30b12f190556c90": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "550px"
}
},
"6a1d906004e04316921e365e619e85a7": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2"
}
},
"68abc5c2f62f41dba130e34472979242": {
"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": [
36.4566360115962,
-83.32031250000001
],
"controls": [
"IPY_MODEL_8138dbafa11d4f5e9877f5b355f86a98",
"IPY_MODEL_f80968c40ef1424985cfa11ff0248771",
"IPY_MODEL_a7e8115fe9d7457e935db2c273d3ba9f",
"IPY_MODEL_0bcdf17418f648cca4d468724d7256f6",
"IPY_MODEL_3bc86ed600e14be5992646bedfe96d59",
"IPY_MODEL_99a336a0a4c24a2eae6520059823adac",
"IPY_MODEL_39a479ea7b64494faaf080c22f068680",
"IPY_MODEL_02233d4cfda4408491fe45c3045cdd0d",
"IPY_MODEL_2c73de436a584737859a62a47574cceb",
"IPY_MODEL_2843e4b00a7f4d2983da029e88c0fcf9",
"IPY_MODEL_8f7c23cab16848d8b71a9bc178864eb2",
"IPY_MODEL_1aa60d9f15d2410c9b99305cc78c2eb8",
"IPY_MODEL_cc82782117b047d8b0c3425a178b9dc7"
],
"default_style": "IPY_MODEL_df0064e75d6744f6ba38db3f9ed3cf9e",
"dragging_style": "IPY_MODEL_9b1a982c380d43dcaac12088e21912f3",
"east": -180,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_c9d71bf0c3904162945b85b5a6f09567",
"IPY_MODEL_72fe7aed5c834b50bcedfee14219b8da",
"IPY_MODEL_b3d5e18cd2ac4377ab3de5aec60029c7",
"IPY_MODEL_e87f293bb139416baf535aa2ac29f6ef"
],
"layout": "IPY_MODEL_45ec840d8d3049aca30b12f190556c90",
"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_df0064e75d6744f6ba38db3f9ed3cf9e",
"west": 180,
"window_url": "http://127.0.0.1:8888/notebooks/Untitled.ipynb?kernel_name=python3",
"zoom": 5
}
},
"0be38f02e0b140a18c3039952040a000": {
"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"
]
}
},
"6c12b27b09d44263b8f04aaa7d73555c": {
"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"
}
},
"5d506d910c4a43ff844c12d0fee1adf0": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "36px"
}
},
"9c2644cd00d941bdbefb5f82e2f35608": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"80f67844efa64d9c897b1a4ac6e972ee": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"icon": "globe",
"layout": "IPY_MODEL_5d506d910c4a43ff844c12d0fee1adf0",
"style": "IPY_MODEL_9c2644cd00d941bdbefb5f82e2f35608",
"tooltip": "Search location/data"
}
},
"c68fdf2611454bef91853ada1c46619f": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"54c85eb2dbf24884be1c95c7dbedb865": {
"model_name": "ToggleButtonsStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_width": "110px",
"description_width": ""
}
},
"ccc2d47ace66435e9cca20414bb4bf56": {
"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": 2,
"layout": "IPY_MODEL_c68fdf2611454bef91853ada1c46619f",
"style": "IPY_MODEL_54c85eb2dbf24884be1c95c7dbedb865",
"tooltips": [
"Search by place name or address",
"Search by lat-lon coordinates",
"Search Earth Engine data catalog"
]
}
},
"372abeb10ceb461da6735c68b050a15b": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "340px"
}
},
"8b5e8322469747d7b1fd4e793bbb2c3a": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"f8820bc13d974e22aba95b58a7224084": {
"model_name": "TextModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_372abeb10ceb461da6735c68b050a15b",
"placeholder": "Search GEE data catalog by keywords, e.g., elevation",
"style": "IPY_MODEL_8b5e8322469747d7b1fd4e793bbb2c3a",
"value": "elevation"
}
},
"e902917ab099426fb78225e4d5bd8b62": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"max_height": "250px",
"max_width": "340px",
"overflow": "scroll"
}
},
"c8140b9ea4c2445dbf1b6990a3cc80b5": {
"model_name": "OutputModel",
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"state": {
"layout": "IPY_MODEL_e902917ab099426fb78225e4d5bd8b62",
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": "HTML(value='\\n <html>\\n <body>\\n <h3>USGS National Elevation Dataset 1/3 arc-second</…",
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "7c9d2e385cf148f4b23c9a935abfbb4a"
}
},
"metadata": {}
}
]
}
},
"dd6525d2147a4b2aa2fc94ee991f5cbe": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"4e92ae813a454a0fbd7badf61f565583": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"ddedf16633fa439ca81376131d72af1d": {
"model_name": "RadioButtonsModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"index": null,
"layout": "IPY_MODEL_dd6525d2147a4b2aa2fc94ee991f5cbe",
"style": "IPY_MODEL_4e92ae813a454a0fbd7badf61f565583"
}
},
"e7f6a750f5854a328b9aa44d17134276": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"max_width": "279px",
"min_width": "279px"
}
},
"7fa0648a791a44aeb5beead7c05e41e6": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"68a56b55656d41558053589eabcec9d2": {
"model_name": "DropdownModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"_options_labels": [
"AHN Netherlands 0.5m DEM, Interpolated",
"AHN Netherlands 0.5m DEM, Non-Interpolated",
"AHN Netherlands 0.5m DEM, Raw Samples",
"Australian 5M DEM",
"DEM-H: Australian SRTM Hydrologically Enforced Digital Elevation Model",
"DEM-S: Australian Smoothed Digital Elevation Model",
"SRTM Digital Elevation Data Version 4",
"CryoSat-2 Antarctica 1km DEM",
"Global ALOS CHILI (Continuous Heat-Insolation Load Index)",
"Global ALOS Landforms",
"Global ALOS mTPI (Multi-Scale Topographic Position Index)",
"Global ALOS Topographic Diversity",
"Global SRTM CHILI (Continuous Heat-Insolation Load Index)",
"Global SRTM Landforms",
"Global SRTM mTPI (Multi-Scale Topographic Position Index)",
"Global SRTM Topographic Diversity",
"US NED CHILI (Continuous Heat-Insolation Load Index)",
"US NED Landforms",
"US Lithology",
"US NED mTPI (Multi-Scale Topographic Position Index)",
"US NED Physiographic Diversity",
"US Physiography",
"US NED Topographic Diversity",
"HYCOM: Hybrid Coordinate Ocean Model, Sea Surface Elevation",
"ALOS DSM: Global 30m",
"AG100: ASTER Global Emissivity Dataset 100-meter V003",
"ETOPO1: Global 1 Arc-Minute Elevation",
"Canadian Digital Elevation Model",
"GMTED2010: Global Multi-resolution Terrain Elevation Data 2010",
"GTOPO30: Global 30 Arc-Second Elevation",
"USGS National Elevation Dataset 1/3 arc-second",
"SRTM Digital Elevation Data 30m",
"WWF HydroSHEDS Hydrologically Conditioned DEM, 3 Arc-Seconds",
"WWF HydroSHEDS Void-Filled DEM, 3 Arc-Seconds",
"WWF HydroSHEDS Hydrologically Conditioned DEM, 15 Arc-Seconds",
"WWF HydroSHEDS Hydrologically Conditioned DEM, 30 Arc-Seconds"
],
"index": 30,
"layout": "IPY_MODEL_e7f6a750f5854a328b9aa44d17134276",
"style": "IPY_MODEL_7fa0648a791a44aeb5beead7c05e41e6"
}
},
"720daeb4bbf14c2dbf7168f9b659ee01": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"max_width": "57px",
"min_width": "57px"
}
},
"2531b25c2e644efa8e2f59ec67fc4e20": {
"model_name": "ButtonStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {}
},
"45a65d6e6ed144479b020a146d2f1bf7": {
"model_name": "ButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"description": "import",
"layout": "IPY_MODEL_720daeb4bbf14c2dbf7168f9b659ee01",
"style": "IPY_MODEL_2531b25c2e644efa8e2f59ec67fc4e20",
"tooltip": "Click to import the selected asset"
}
},
"ab0e52b130bf4724bee2519defc3abec": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"7b7a9cffa6cd4c928c4ad80b7c4dca2a": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"7c9d2e385cf148f4b23c9a935abfbb4a": {
"model_name": "HTMLModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_ab0e52b130bf4724bee2519defc3abec",
"style": "IPY_MODEL_7b7a9cffa6cd4c928c4ad80b7c4dca2a",
"value": "\n <html>\n <body>\n <h3>USGS National Elevation Dataset 1/3 arc-second</h3>\n <h4>Dataset Availability</h4>\n <p style=\"margin-left: 40px\">2012-02-07 - 2012-02-07</p>\n <h4>Earth Engine Snippet</h4>\n <p style=\"margin-left: 40px\">ee.Image('USGS/NED')</p>\n <h4>Earth Engine Data Catalog</h4>\n <p style=\"margin-left: 40px\"><a href=\"https://developers.google.com/earth-engine/datasets/catalog/USGS_NED\" target=\"_blank\">USGS/NED</a></p>\n <h4>Dataset Thumbnail</h4>\n <img src=\"https://mw1.google.com/ges/dd/images/NED_sample.png\">\n </body>\n </html>\n "
}
},
"088a96442b1c4ec7ba80bd3002fc97f6": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"d6dfd542af9e41dd9e7430b4bec4e7c1": {
"model_name": "HBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_45a65d6e6ed144479b020a146d2f1bf7",
"IPY_MODEL_68a56b55656d41558053589eabcec9d2"
],
"layout": "IPY_MODEL_088a96442b1c4ec7ba80bd3002fc97f6"
}
},
"787501cbbde3484abe2e8faa983f517c": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"b0713e9b32dd4b999b52e2007977166f": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_ccc2d47ace66435e9cca20414bb4bf56",
"IPY_MODEL_f8820bc13d974e22aba95b58a7224084"
],
"layout": "IPY_MODEL_787501cbbde3484abe2e8faa983f517c"
}
},
"5eabcd775f034e7a98e8cf388594a8d8": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"1c5a809a9edc49a095b6402ef29808eb": {
"model_name": "HBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_80f67844efa64d9c897b1a4ac6e972ee"
],
"layout": "IPY_MODEL_5eabcd775f034e7a98e8cf388594a8d8"
}
},
"8138dbafa11d4f5e9877f5b355f86a98": {
"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_1c5a809a9edc49a095b6402ef29808eb"
}
},
"ab382e3bcae4417a9015ddfb5d3ff1d6": {
"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"
}
},
"3b765a764a2446449391954185a5b2e3": {
"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_ab382e3bcae4417a9015ddfb5d3ff1d6",
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f80968c40ef1424985cfa11ff0248771": {
"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_3b765a764a2446449391954185a5b2e3",
"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
}
},
"a7e8115fe9d7457e935db2c273d3ba9f": {
"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"
]
}
},
"0bcdf17418f648cca4d468724d7256f6": {
"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"
}
},
"3bc86ed600e14be5992646bedfe96d59": {
"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
}
},
"99a336a0a4c24a2eae6520059823adac": {
"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"
]
}
},
"39a479ea7b64494faaf080c22f068680": {
"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
}
},
"02233d4cfda4408491fe45c3045cdd0d": {
"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"
}
},
"2c73de436a584737859a62a47574cceb": {
"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"
}
}
}
},
"246f77eaa1de4d70bcc61b974a6be828": {
"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"
}
}
}
},
"7eab39aadc9d4964bf5dd2af052488dd": {
"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"
}
},
"0a34f02c9ae94915a3c042f76cd2044f": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "18px",
"width": "13ex"
}
},
"b68d2a4473cb46f8b88989d2791e3fa9": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"52efa78d0c1b4086a566f7caeb4ad414": {
"model_name": "CheckboxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description": "Inspector",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_0a34f02c9ae94915a3c042f76cd2044f",
"style": "IPY_MODEL_b68d2a4473cb46f8b88989d2791e3fa9",
"value": true
}
},
"e86e73aa8ead412ab73238f42f32667a": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "13ex"
}
},
"352a71da0724446e9c8f2457fd010c93": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"5285a5ce7dd44ff7afd58fe19d25abc2": {
"model_name": "CheckboxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description": "Plotting",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_e86e73aa8ead412ab73238f42f32667a",
"style": "IPY_MODEL_352a71da0724446e9c8f2457fd010c93",
"value": false
}
},
"966c245208004e5288e987fc2347e1ab": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"1445dba0120741a983113677730678d5": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_52efa78d0c1b4086a566f7caeb4ad414",
"IPY_MODEL_5285a5ce7dd44ff7afd58fe19d25abc2"
],
"layout": "IPY_MODEL_966c245208004e5288e987fc2347e1ab"
}
},
"2843e4b00a7f4d2983da029e88c0fcf9": {
"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_1445dba0120741a983113677730678d5"
}
},
"40459b667fde413e9550d9d0efebd90d": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"border": "1px solid black"
}
},
"a4400bd2917d425f8c42a757bdbcb83e": {
"model_name": "OutputModel",
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"state": {
"layout": "IPY_MODEL_40459b667fde413e9550d9d0efebd90d",
"outputs": [
{
"output_type": "stream",
"text": "TIGER/2018/States: Feature (14 properties)\n ALAND: 314196306401\n AWATER: 728776523\n DIVISION: 8\n FUNCSTAT: A\n GEOID: 35\n INTPTLAT: +34.4346843\n INTPTLON: -106.1316181\n LSAD: 00\n MTFCC: G4000\n NAME: New Mexico\n REGION: 4\n STATEFP: 35\n STATENS: 00897535\n STUSPS: NM\nNED: Image (1 band)\n elevation: 2361.4013671875\n",
"name": "stdout"
}
]
}
},
"8f7c23cab16848d8b71a9bc178864eb2": {
"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_a4400bd2917d425f8c42a757bdbcb83e"
}
},
"f9cbe07e13f143b28f11df708c807681": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"9f8d684ce49b4800a2fb27d1bb47a00b": {
"model_name": "OutputModel",
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"state": {
"layout": "IPY_MODEL_f9cbe07e13f143b28f11df708c807681"
}
},
"86f2ab6d6da841e08b10cd9f812fd414": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"77fdf9546b8345e8bae79ad838c9ccf5": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_3010ef5be0214b99b14138956cb70008",
"IPY_MODEL_08686d26c6494f7f9e1cdd7139d26ce1"
],
"layout": "IPY_MODEL_86f2ab6d6da841e08b10cd9f812fd414"
}
},
"a3edf8faad724792bed861e063fb3e80": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"e4bc426f5c164804a57831f3528971c3": {
"model_name": "ToggleButtonsStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_width": "",
"description_width": ""
}
},
"3010ef5be0214b99b14138956cb70008": {
"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_a3edf8faad724792bed861e063fb3e80",
"style": "IPY_MODEL_e4bc426f5c164804a57831f3528971c3",
"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"
]
}
},
"53f7a3663e2c47f49648bb0c278e41de": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"427386a2db3b4d35937d3fcf80d4ac6e": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"51a63286090e4aff8db6de563cecab58": {
"model_name": "DropdownModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"_options_labels": [
"/home/qiusheng/Downloads/JavaScriptCode4GEEandSampleData",
"/home/qiusheng/Downloads",
"/home/qiusheng",
"/home",
"/"
],
"index": 0,
"layout": "IPY_MODEL_53f7a3663e2c47f49648bb0c278e41de",
"style": "IPY_MODEL_427386a2db3b4d35937d3fcf80d4ac6e"
}
},
"7651e30d76194e2b86df63c3e1b8a04d": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"64817401b46d4542bc72a77ea228d2b5": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"2ff197b8924147aeba2d32bba72a6976": {
"model_name": "TextModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_7651e30d76194e2b86df63c3e1b8a04d",
"placeholder": "output filename",
"style": "IPY_MODEL_64817401b46d4542bc72a77ea228d2b5",
"value": "my_map.html"
}
},
"23ffb44e95774402a77d3a1c2db72ec3": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"d0e3d70745bc41bcb1fbc1b82bdbc335": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"6e9381724bb7444794d073c7c5bb1c0f": {
"model_name": "SelectModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"_options_labels": [
"..",
"shapefiles",
"JSCODE.txt",
"Untitled.ipynb"
],
"index": null,
"layout": "IPY_MODEL_23ffb44e95774402a77d3a1c2db72ec3",
"rows": 8,
"style": "IPY_MODEL_d0e3d70745bc41bcb1fbc1b82bdbc335"
}
},
"352ffdece55c4e42b5125bdb9b3c0cd0": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"display": "none",
"width": "auto"
}
},
"305d3bc684ba488e8ee00880f99f226f": {
"model_name": "ButtonStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {}
},
"741ed0fcaa0a4d3180880d33c4b6be70": {
"model_name": "ButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_352ffdece55c4e42b5125bdb9b3c0cd0",
"style": "IPY_MODEL_305d3bc684ba488e8ee00880f99f226f"
}
},
"c6d76aec32c9480fb3fe46bc7d8f1d15": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "auto"
}
},
"d2c37aa6431f4a9981b90493afdd2f88": {
"model_name": "ButtonStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {}
},
"ce46938bab1b4982bf7662a7b1649dfc": {
"model_name": "ButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description": "Select",
"layout": "IPY_MODEL_c6d76aec32c9480fb3fe46bc7d8f1d15",
"style": "IPY_MODEL_d2c37aa6431f4a9981b90493afdd2f88"
}
},
"60aa27a984ed4166883a008f8c493020": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"display": "none"
}
},
"45068341de9f42c5927e77cd81c5f931": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"e57f1c1b894c446a97ab0890dd645880": {
"model_name": "HTMLModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_60aa27a984ed4166883a008f8c493020",
"style": "IPY_MODEL_45068341de9f42c5927e77cd81c5f931"
}
},
"566ce3989ecc47aea33a679185f8231c": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"fbda4480882a467bada9111dee895571": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"08c799e914c4413d9866f7f7d67e2246": {
"model_name": "HTMLModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_566ce3989ecc47aea33a679185f8231c",
"placeholder": "",
"style": "IPY_MODEL_fbda4480882a467bada9111dee895571",
"value": "<span style=\"margin-left:10px; color:black;\">No file selected</span>"
}
},
"f0dfa3b2f70d402a926177f01862ba70": {
"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"
}
},
"e0a82cf98b8b4874a18940de6569a8ee": {
"model_name": "GridBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_51a63286090e4aff8db6de563cecab58",
"IPY_MODEL_2ff197b8924147aeba2d32bba72a6976",
"IPY_MODEL_6e9381724bb7444794d073c7c5bb1c0f"
],
"layout": "IPY_MODEL_f0dfa3b2f70d402a926177f01862ba70"
}
},
"f303b5ee53b04b2f93dca9ba4abd7249": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "auto"
}
},
"597b32baecba4effb385710f7f67da26": {
"model_name": "HBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_ce46938bab1b4982bf7662a7b1649dfc",
"IPY_MODEL_741ed0fcaa0a4d3180880d33c4b6be70",
"IPY_MODEL_08c799e914c4413d9866f7f7d67e2246"
],
"layout": "IPY_MODEL_f303b5ee53b04b2f93dca9ba4abd7249"
}
},
"77c3eb867d574c70ab8d2507ec3544f5": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "auto"
}
},
"08686d26c6494f7f9e1cdd7139d26ce1": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_e57f1c1b894c446a97ab0890dd645880",
"IPY_MODEL_e0a82cf98b8b4874a18940de6569a8ee",
"IPY_MODEL_597b32baecba4effb385710f7f67da26"
],
"layout": "IPY_MODEL_77c3eb867d574c70ab8d2507ec3544f5"
}
},
"b7ed048d81f845a882c91b1b5e3b5ac3": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"c809041f7b804450afaff7c98eb73f98": {
"model_name": "ToggleButtonsStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_width": "",
"description_width": ""
}
},
"14dbb229ee4a4c5db8345732570a9311": {
"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_b7ed048d81f845a882c91b1b5e3b5ac3",
"style": "IPY_MODEL_c809041f7b804450afaff7c98eb73f98",
"tooltips": [
"OK",
"Cancel"
]
}
},
"a732494f0e1f4d7e81a1312e9648802a": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "auto",
"width": "auto"
}
},
"8592c93216d94b5d8b69a8ad4784ae21": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"a4f80c0644664b55a8bc601cb0706376": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"icon": "mouse-pointer",
"layout": "IPY_MODEL_a732494f0e1f4d7e81a1312e9648802a",
"style": "IPY_MODEL_8592c93216d94b5d8b69a8ad4784ae21",
"tooltip": "Default pointer"
}
},
"4137f896f5104f058796b1f428fbf184": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "auto",
"width": "auto"
}
},
"9fa8c9ecc43547c3ab10f686bc74e393": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"21e78da1c0d746c483103e3208d1cb22": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"icon": "camera",
"layout": "IPY_MODEL_4137f896f5104f058796b1f428fbf184",
"style": "IPY_MODEL_9fa8c9ecc43547c3ab10f686bc74e393",
"tooltip": "Save map as HTML or image"
}
},
"a54ecc6f71d344cdafa6c4f0d940f8d7": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "auto",
"width": "auto"
}
},
"74c0c3b9db104da6ba50adb1e1d57189": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"9053db86ab154d4cbccf633f29179685": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"icon": "info",
"layout": "IPY_MODEL_a54ecc6f71d344cdafa6c4f0d940f8d7",
"style": "IPY_MODEL_74c0c3b9db104da6ba50adb1e1d57189",
"tooltip": "Inspector"
}
},
"945cfb395b60466191572a4699844585": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "auto",
"width": "auto"
}
},
"7877fde0031a4900bc8a1e46ec021725": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"aa997f2370ae4102b2d162f59892bdaf": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"icon": "map-marker",
"layout": "IPY_MODEL_945cfb395b60466191572a4699844585",
"style": "IPY_MODEL_7877fde0031a4900bc8a1e46ec021725",
"tooltip": "Plotting"
}
},
"c22eec1298cc45939d6ed2d6224584bd": {
"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"
}
},
"624277d331e04b789c44622e922f5a6f": {
"model_name": "GridBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_a4f80c0644664b55a8bc601cb0706376",
"IPY_MODEL_21e78da1c0d746c483103e3208d1cb22",
"IPY_MODEL_9053db86ab154d4cbccf633f29179685",
"IPY_MODEL_aa997f2370ae4102b2d162f59892bdaf"
],
"layout": "IPY_MODEL_c22eec1298cc45939d6ed2d6224584bd"
}
},
"efd0227492d645eb8b73cbfaf6a64155": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "37px"
}
},
"ecc527a4afa3426ca11a73c01ed307f3": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"de198a6f439740918b2f0a5a617eba1f": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"icon": "wrench",
"layout": "IPY_MODEL_efd0227492d645eb8b73cbfaf6a64155",
"style": "IPY_MODEL_ecc527a4afa3426ca11a73c01ed307f3",
"tooltip": "Toolbar"
}
},
"df332d9273b944ad91a98d33d18586b6": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"a3769f85e0bf47ee9b865f6b12bac022": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_de198a6f439740918b2f0a5a617eba1f"
],
"layout": "IPY_MODEL_df332d9273b944ad91a98d33d18586b6"
}
},
"1aa60d9f15d2410c9b99305cc78c2eb8": {
"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_a3769f85e0bf47ee9b865f6b12bac022"
}
},
"cc82782117b047d8b0c3425a178b9dc7": {
"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_9f8d684ce49b4800a2fb27d1bb47a00b"
}
},
"e2c2d0916478448585a7303deccade17": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"09d345c882ee436fa80ddd8a225cbe38": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "default"
}
},
"b3d5e18cd2ac4377ab3de5aec60029c7": {
"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": "TIGER/2018/States",
"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/8bd59f21fbb91056a11f3beacbebd5d1-df275d1e1ce4aaae7e02bc7adae4f204/tiles/{z}/{x}/{y}"
}
},
"4f160d8f9e7b4d4c894897871957af4b": {
"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": "NED",
"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/ee7957e435fda2153af371546f93d0d2-2609ed40657f382a28fa36b57710d1ce/tiles/{z}/{x}/{y}"
}
},
"bd36020e54a640239ed3c5bf2c3538ec": {
"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": "NED",
"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/ee7957e435fda2153af371546f93d0d2-9a2e9f4684710dbba1f80ecfcf0ea5a0/tiles/{z}/{x}/{y}"
}
},
"49fa8fa7c0254a29a2ada3244afb09b7": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"7c8bd8e49a8b4025b0f2009e47ffb3ed": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "crosshair"
}
},
"9850ab98e1e6417f89ec879dc6ff82a6": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"04870736596d4849aa1467b588168e2b": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "crosshair"
}
},
"1f1b32f4feba448ebe4ba9e513f5190e": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"fac0bca5362b454ca110a2c104e79e93": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "crosshair"
}
},
"c51811cb33ba4b5bb7f05328d64c1971": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"f9bedf9cfc4e4aa88422229c91c205bd": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "crosshair"
}
},
"0d7d97b888814858843a1232e43dd98c": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"eda63c604a5d49c4960aff5af486cfc3": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "crosshair"
}
},
"ba4abddb4b374d60b05b85ac1bb0597b": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"4072476f72ba4087a911e5fa40d99310": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "default"
}
},
"cbe0f2db87824d1ea04ca6ef9503d17b": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"df0064e75d6744f6ba38db3f9ed3cf9e": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "default"
}
},
"e87f293bb139416baf535aa2ac29f6ef": {
"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": "NED",
"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/a5510889f7325ff52b4852896d526bc7-8c4fd985bc485e6d3ddd9c14a920a8b0/tiles/{z}/{x}/{y}"
}
},
"18cbadc55f2b458e8e9a2f7feac0df6f": {
"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}"
}
},
"4bb827779b974746bea01bcc9665aacd": {
"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}"
}
},
"bedce0c2b814436691b9397e284e968c": {
"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}"
}
},
"7b3de886455a4993a03e0afe312687d8": {
"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}"
}
},
"d78d0d3981ff4b1a9634dca7413dc213": {
"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}"
}
},
"5179c8431f264330ad17ced4607e41f6": {
"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}"
}
},
"5b91f8a747b74a3a863b9160aa3d652a": {
"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}"
}
},
"e13feb0109c5450582b0769d4006e850": {
"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}"
}
},
"77df69c0594146b3aaabf29eceb6ccb7": {
"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}"
}
},
"89d33ae0d3ae4402b99d9705abd256be": {
"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}"
}
},
"452380b3f0b54d66add84b33ab234c3b": {
"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}"
}
},
"61aa0ee2114347c9a47152bb7dc41115": {
"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}"
}
},
"d02dfa6783f841aba5fc1236251711f1": {
"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}"
}
},
"782b660a1efc47cfbe9b6f534150502e": {
"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}"
}
},
"36035e51cb4e420f8a94944bdb65fdf9": {
"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?"
}
},
"ccb73ecf8d054ee7a809bffe8853d3ba": {
"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?"
}
},
"14c574a1cdf4445e8d11f9ed3144dddc": {
"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}"
}
},
"380c6b794b304bb4932efb0606b07e26": {
"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}"
}
},
"66c055bc169a4181bfe18e997097bc8c": {
"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}"
}
},
"827653c6ad3d4631afc5fec0990975ca": {
"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}"
}
},
"51d3dbac9a914164b16c3e97586090ac": {
"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?"
}
},
"cd452367d5f24528a95eacbec130b54a": {
"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?"
}
},
"cc72a193bab54a6b91c69f63b3ab65c0": {
"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?"
}
},
"3cc6d31ab5064b90b64129d0a06d1fcf": {
"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?"
}
},
"bb447235de2e4f6887340e520e0926f1": {
"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?"
}
},
"bdd81056d292443baf0820876526893e": {
"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?"
}
},
"9b25ceec9fc347f1a5729add61f22862": {
"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?"
}
},
"0e05507979644587814b7cd7d4b64a87": {
"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?"
}
},
"11b58652026549bc80236989c017cc41": {
"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?"
}
},
"44b5ecedec874171af2d0d4571fa63d3": {
"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?"
}
},
"fec2ab3c37074f1cb4e2e66db909801c": {
"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"
]
}
},
"fabab79a99f5476281bcf3ce92575c2f": {
"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": "&copy; <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"
}
},
"faae4e4960a34ca2951351f746db2603": {
"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": "&copy; <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"
}
},
"46a54e0feb6f495cba7304a1b5f309df": {
"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": "&copy; Openstreetmap France | &copy; <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"
}
},
"6a1c4272608e4f2685a3df3839b66c12": {
"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": "&copy; <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"
}
},
"3f55437331814aa58e6968ba7f5e8b2b": {
"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: &copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>, <a href=\"http://viewfinderpanoramas.org\">SRTM</a> | Map style: &copy; <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"
}
},
"f08a831dbc46489ca7c4afb66960d9dd": {
"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> &mdash; Map data &copy; <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"
}
},
"276650d718054d27ae75a81c59d4bfa1": {
"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> &mdash; Map data &copy; <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"
}
},
"1ed425e168c24263848eb43758788920": {
"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 &copy; Esri &mdash; 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}"
}
},
"5fb39234af14452b984e02ecadcdc3af": {
"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 &copy; Esri &mdash; Copyright: &copy;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}"
}
},
"53cb68b3c28242fc9561048c59e56bf5": {
"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 &copy; Esri &mdash; 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}"
}
},
"697a715c6b9d41ae9c03af3d6b1c7ba0": {
"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 &copy; Esri &mdash; 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}"
}
},
"8d1eb7419de24cdda8155373bb72178d": {
"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 &copy; Esri &mdash; 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}"
}
},
"68423b91947e450cac4f559215e6a860": {
"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": "&copy; <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"
}
},
"00084ca1a2d547c5bb8cf7edd3965e32": {
"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": "&copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> &amp; 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"
}
},
"f02584865ae84f3dbb04033d3ea80fc2": {
"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": "&copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> &copy; <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"
}
},
"7fc4e459929547d2a515f7a5c8376ea7": {
"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": "&copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a> &copy; <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"
}
},
"814254ec04764737abdf288cb15ee6d3": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"89362ec6904147d696727f02335dedd9": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"864d28060d5d44aea36f6f5f626fb2d2": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"4cf1152404bb49539184fde333529b15": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"1074a84edbcb4a9980d640cfffe37713": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"80a91748a73544099ca4cd43a40cb1ed": {
"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-09-03/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg"
}
},
"a350058d69044d049e2a601cfc071029": {
"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"
}
},
"6a05563276af4bc282e9a16d4c330724": {
"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"
}
},
"ae5c150107bb4d399736c39460431677": {
"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"
}
},
"6808cc97f55742ffa3990a625ca844a3": {
"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"
}
},
"9c8f377e7d9b402e90b419e5b921d270": {
"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"
}
},
"cc56f38d9363453d952818e2c1063c9a": {
"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"
}
},
"8104bdc3e4344a1995c692a4c920dafd": {
"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"
}
},
"9ee3f67191d342b7a01bb3a5c724ad6e": {
"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"
}
},
"2437d7034ab74532bdf5f21864aaa09d": {
"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"
}
},
"65ebea17edb643448c6d226e11e5d5b9": {
"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"
}
},
"e8ac1089c44c444aa40ff7775f2a0f8a": {
"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"
}
},
"e7c5472a33e84b17a6e5b465585007a4": {
"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"
}
},
"55200f348cdb473b9bdce758c375f7a0": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2"
}
},
"7d6703ad40444a229063f886addfa8e7": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "move"
}
},
"63a4ca85f9ec4b86b2e66fa02670d31f": {
"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"
]
}
},
"d93b5483b46c473aa31d6d11c3709601": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "550px"
}
},
"82ea12b346504bac87f25c7205630af6": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2"
}
},
"4451072ba0e2446daa8b4162e21676ce": {
"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": 1826,
"center": [
39.977120098439634,
-100.01953125000001
],
"controls": [
"IPY_MODEL_0654a26cc3c04eafaaca61ae93c6bb4b",
"IPY_MODEL_f94587b690e9451b86d88d3b54fd1364",
"IPY_MODEL_8cfa6c0e26604bf6a218ba6f01090687",
"IPY_MODEL_1efcc7a29bfb45f6b2edc6eb05a5ac41",
"IPY_MODEL_b877820875354eec8c123365d6855178",
"IPY_MODEL_c5e3735ef5c24334b225e9e6dacdd38e",
"IPY_MODEL_5ccf45f9edf549d7a80d68681d14df09",
"IPY_MODEL_493513a64c0a4eeba1f794d743b5109a",
"IPY_MODEL_1bd7283ddb0b4bfeaf588f55583a509f",
"IPY_MODEL_7e135f689e734fc08a43b880d03f2e06",
"IPY_MODEL_1d8f1a6fb8674418bf13eeb0f1801cd1",
"IPY_MODEL_f15ff05820a34143ba13efee617aeb2a",
"IPY_MODEL_1e2800cba84a401d9c61971b653b961c"
],
"default_style": "IPY_MODEL_9bf522e578d046c8bb1d03fdc66a2534",
"dragging_style": "IPY_MODEL_7d6703ad40444a229063f886addfa8e7",
"east": -57.39257812500001,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_63a4ca85f9ec4b86b2e66fa02670d31f",
"IPY_MODEL_18cbadc55f2b458e8e9a2f7feac0df6f",
"IPY_MODEL_d419f68d26cf4fffafc1fe28c0eba3f9",
"IPY_MODEL_5a0843c2f5154bd49106cdc1af639b10",
"IPY_MODEL_99ef634e944c4694a85f1a017904bf5a",
"IPY_MODEL_b1fe3cad51dc4ca788ee7d5923add8b7"
],
"layout": "IPY_MODEL_d93b5483b46c473aa31d6d11c3709601",
"left": 425,
"modisdate": "yesterday",
"north": 55.973798205076605,
"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": 1395,
"scroll_wheel_zoom": true,
"south": 19.145168196205297,
"style": "IPY_MODEL_9bf522e578d046c8bb1d03fdc66a2534",
"top": 1276,
"west": -142.64648437500003,
"window_url": "http://127.0.0.1:8888/notebooks/Untitled.ipynb?kernel_name=python3",
"zoom": 4
}
},
"ed8a31ffbac7414d92f6a24682f90c32": {
"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"
]
}
},
"74349e7794bd4ceca6941e30859ed2ea": {
"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"
}
},
"9214fac819d8425795fceb6dd108009d": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "36px"
}
},
"f7ea961d81e843f297973896306a665f": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"f710a84ee4cf43c7ac69151184eeafe8": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"icon": "globe",
"layout": "IPY_MODEL_9214fac819d8425795fceb6dd108009d",
"style": "IPY_MODEL_f7ea961d81e843f297973896306a665f",
"tooltip": "Search location/data"
}
},
"7c70c9e8cf2b4c44ae3ae4f3fa9e9d27": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"b6d84f1fa4164cf78d9ead8f26434bf4": {
"model_name": "ToggleButtonsStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_width": "110px",
"description_width": ""
}
},
"221291f1729241b39fb0438bf01f2377": {
"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_7c70c9e8cf2b4c44ae3ae4f3fa9e9d27",
"style": "IPY_MODEL_b6d84f1fa4164cf78d9ead8f26434bf4",
"tooltips": [
"Search by place name or address",
"Search by lat-lon coordinates",
"Search Earth Engine data catalog"
]
}
},
"78e4b49820454bc69dede336eee632b1": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "340px"
}
},
"d91c1822695246f9b8a3dbecc8aabab1": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"9674f5706e7b48f7a23ffbf26f867e4d": {
"model_name": "TextModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_78e4b49820454bc69dede336eee632b1",
"placeholder": "Search by place name or address",
"style": "IPY_MODEL_d91c1822695246f9b8a3dbecc8aabab1"
}
},
"8d36112e862144c0a4ea5379b8338425": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"max_height": "250px",
"max_width": "340px",
"overflow": "scroll"
}
},
"e6c691076205453f98687b6757a414bc": {
"model_name": "OutputModel",
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"state": {
"layout": "IPY_MODEL_8d36112e862144c0a4ea5379b8338425"
}
},
"a6bfb4504a0a4d9fb5ae225147f271af": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"fa314b8eb9d54819a38444e0ca2497bb": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"06a0d47d1dc44f5a92e8d741e3cf263e": {
"model_name": "RadioButtonsModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"index": null,
"layout": "IPY_MODEL_a6bfb4504a0a4d9fb5ae225147f271af",
"style": "IPY_MODEL_fa314b8eb9d54819a38444e0ca2497bb"
}
},
"4dc800445fbe44d480c7a08aef6b00e3": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"max_width": "279px",
"min_width": "279px"
}
},
"80efdc2ff2ba4b2fb2731af2da937de7": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"462495172821461cb55a5861a28c6ef8": {
"model_name": "DropdownModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"index": null,
"layout": "IPY_MODEL_4dc800445fbe44d480c7a08aef6b00e3",
"style": "IPY_MODEL_80efdc2ff2ba4b2fb2731af2da937de7"
}
},
"e77df19ce9974a6e83445e19126d05f8": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"max_width": "57px",
"min_width": "57px"
}
},
"8f44e58cd44b4bb69f27f2de1648042f": {
"model_name": "ButtonStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {}
},
"ae1b5eba0eba433984d8dcd0d3e5aa5b": {
"model_name": "ButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"description": "import",
"layout": "IPY_MODEL_e77df19ce9974a6e83445e19126d05f8",
"style": "IPY_MODEL_8f44e58cd44b4bb69f27f2de1648042f",
"tooltip": "Click to import the selected asset"
}
},
"7adeabdef0c74e9e9b9f7188be28b646": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"e2d941fdb5e84207a9d15486f3a46061": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"33c72014fa68461592818cf067bb6b26": {
"model_name": "HTMLModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_7adeabdef0c74e9e9b9f7188be28b646",
"style": "IPY_MODEL_e2d941fdb5e84207a9d15486f3a46061"
}
},
"6839d44f82f8488d8ea12229588c8ab5": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"e4eab2efac174d089d16deeb009ef42d": {
"model_name": "HBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_ae1b5eba0eba433984d8dcd0d3e5aa5b",
"IPY_MODEL_462495172821461cb55a5861a28c6ef8"
],
"layout": "IPY_MODEL_6839d44f82f8488d8ea12229588c8ab5"
}
},
"e182e61178944b57a20e202a47646fd1": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"0672ccefb59648b8b0670c46ee938b01": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_221291f1729241b39fb0438bf01f2377",
"IPY_MODEL_9674f5706e7b48f7a23ffbf26f867e4d"
],
"layout": "IPY_MODEL_e182e61178944b57a20e202a47646fd1"
}
},
"ff77118b522c457f91a9a1c4b33dbf1f": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"e27088ed4fde49c387062d680b5daf1c": {
"model_name": "HBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_f710a84ee4cf43c7ac69151184eeafe8"
],
"layout": "IPY_MODEL_ff77118b522c457f91a9a1c4b33dbf1f"
}
},
"0654a26cc3c04eafaaca61ae93c6bb4b": {
"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_e27088ed4fde49c387062d680b5daf1c"
}
},
"cbd8d084d8b54dcbaf0172e006cb9db7": {
"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"
}
},
"f3ea679264b24524a807cb92fe40b68a": {
"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_cbd8d084d8b54dcbaf0172e006cb9db7",
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f94587b690e9451b86d88d3b54fd1364": {
"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_f3ea679264b24524a807cb92fe40b68a",
"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
}
},
"8cfa6c0e26604bf6a218ba6f01090687": {
"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"
]
}
},
"1efcc7a29bfb45f6b2edc6eb05a5ac41": {
"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"
}
},
"b877820875354eec8c123365d6855178": {
"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
}
},
"c5e3735ef5c24334b225e9e6dacdd38e": {
"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"
]
}
},
"5ccf45f9edf549d7a80d68681d14df09": {
"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
}
},
"493513a64c0a4eeba1f794d743b5109a": {
"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"
}
},
"1bd7283ddb0b4bfeaf588f55583a509f": {
"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"
}
}
}
},
"72781670332542628c3f6d1f77557d44": {
"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"
}
}
}
},
"c946e84080d04ab793ff3acd2ee387d9": {
"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"
}
},
"c13ceafca8c04c76a1ba6ba5c205eacf": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "18px",
"width": "13ex"
}
},
"cecd7440ea1b41c8b7e9badcd1e88043": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"02543f9d96f2420cad9c80baae496919": {
"model_name": "CheckboxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description": "Inspector",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_c13ceafca8c04c76a1ba6ba5c205eacf",
"style": "IPY_MODEL_cecd7440ea1b41c8b7e9badcd1e88043",
"value": true
}
},
"f638b6e8061e4e058b5ab328eb80c70f": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "13ex"
}
},
"b85e78034cd643fc939fb425776adb6c": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"fd0bc39b195a43b8a621a1571666a487": {
"model_name": "CheckboxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description": "Plotting",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_f638b6e8061e4e058b5ab328eb80c70f",
"style": "IPY_MODEL_b85e78034cd643fc939fb425776adb6c",
"value": false
}
},
"bf95834ebfb14dcd816fc9668644c002": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"d650ddfbe5284c5b911f233d0bb9a9b2": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_02543f9d96f2420cad9c80baae496919",
"IPY_MODEL_fd0bc39b195a43b8a621a1571666a487"
],
"layout": "IPY_MODEL_bf95834ebfb14dcd816fc9668644c002"
}
},
"7e135f689e734fc08a43b880d03f2e06": {
"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_d650ddfbe5284c5b911f233d0bb9a9b2"
}
},
"fd6f0b5579fd4c91b4e4284b66796035": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"border": "1px solid black"
}
},
"9d929f072df047a68bf44e8dd08c896a": {
"model_name": "OutputModel",
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"state": {
"layout": "IPY_MODEL_fd6f0b5579fd4c91b4e4284b66796035",
"outputs": [
{
"output_type": "stream",
"text": "TIGER/2018/States: Feature (14 properties)\n ALAND: 676653171537\n AWATER: 19006305260\n DIVISION: 7\n FUNCSTAT: A\n GEOID: 48\n INTPTLAT: +31.4347032\n INTPTLON: -099.2818238\n LSAD: 00\n MTFCC: G4000\n NAME: Texas\n REGION: 3\n STATEFP: 48\n STATENS: 01779801\n STUSPS: TX\nNED: Image (1 band)\n elevation: 131.4459991455078\nSlope: Image (1 band)\n slope: 0.20563087409285602\n",
"name": "stdout"
}
]
}
},
"1d8f1a6fb8674418bf13eeb0f1801cd1": {
"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_9d929f072df047a68bf44e8dd08c896a"
}
},
"35377d8343e74f70814b0be7050c0d05": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"381caef78bd541ed9e8f8acd9ef57866": {
"model_name": "OutputModel",
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"state": {
"layout": "IPY_MODEL_35377d8343e74f70814b0be7050c0d05"
}
},
"cc550a7ec87c466ab6b66139577db8f0": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"80fe874b7e30408c8efdf95f8e4a930b": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_49a96c4f1f1a4113bb76a0882a45f1e7",
"IPY_MODEL_91f3845b37134072bcb3d6e7aae0ea8c"
],
"layout": "IPY_MODEL_cc550a7ec87c466ab6b66139577db8f0"
}
},
"4bfa4aaf931342fc9eb1e2f2b9e8f78b": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"d1252384639e41219065ee61097bf4a8": {
"model_name": "ToggleButtonsStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_width": "",
"description_width": ""
}
},
"49a96c4f1f1a4113bb76a0882a45f1e7": {
"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_4bfa4aaf931342fc9eb1e2f2b9e8f78b",
"style": "IPY_MODEL_d1252384639e41219065ee61097bf4a8",
"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"
]
}
},
"019b22ebf285493daa1559003b302cce": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"9bf04ed16efb4f76abc23faa7f52085f": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"a6f1239345a54ee298d125b8934e40ca": {
"model_name": "DropdownModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"_options_labels": [
"/home/qiusheng/Downloads/JavaScriptCode4GEEandSampleData",
"/home/qiusheng/Downloads",
"/home/qiusheng",
"/home",
"/"
],
"index": 0,
"layout": "IPY_MODEL_019b22ebf285493daa1559003b302cce",
"style": "IPY_MODEL_9bf04ed16efb4f76abc23faa7f52085f"
}
},
"c390e9e9a8ae49aa9f18c15c68c32679": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"6c77a72a962b4d5595e08422ee05fb81": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"71530daa71fb45548c43c4c82ebc3262": {
"model_name": "TextModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_c390e9e9a8ae49aa9f18c15c68c32679",
"placeholder": "output filename",
"style": "IPY_MODEL_6c77a72a962b4d5595e08422ee05fb81",
"value": "my_map.html"
}
},
"7cc8d8c5fbcf43799b46fd862aaf83a1": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e08f992c09804e05973a4b7eb06a29b9": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"9afd8e34cf9d4dc8bceca9295d277939": {
"model_name": "SelectModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"_options_labels": [
"..",
"shapefiles",
"JSCODE.txt",
"Untitled.ipynb"
],
"index": null,
"layout": "IPY_MODEL_7cc8d8c5fbcf43799b46fd862aaf83a1",
"rows": 8,
"style": "IPY_MODEL_e08f992c09804e05973a4b7eb06a29b9"
}
},
"6141050af2d8460aa803755cdf49a1d3": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"display": "none",
"width": "auto"
}
},
"48b6885f73fb464096ab662cf966d41d": {
"model_name": "ButtonStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {}
},
"bb95460c5ffe455ba2a5d385c2ada12c": {
"model_name": "ButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_6141050af2d8460aa803755cdf49a1d3",
"style": "IPY_MODEL_48b6885f73fb464096ab662cf966d41d"
}
},
"fdbdc80431c44536b8eb67242b7850f8": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "auto"
}
},
"f79fda30abcc495d9457f3040278cd08": {
"model_name": "ButtonStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {}
},
"ce97bc5392d04c60a21d533dfc3a2b25": {
"model_name": "ButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description": "Select",
"layout": "IPY_MODEL_fdbdc80431c44536b8eb67242b7850f8",
"style": "IPY_MODEL_f79fda30abcc495d9457f3040278cd08"
}
},
"7883dabcc67e4194a368bac0b5be5fc6": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"display": "none"
}
},
"8d9091bf92c948b5a42a3f9408136a19": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"7832b9d883ae4e388802dd0b904bcfed": {
"model_name": "HTMLModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_7883dabcc67e4194a368bac0b5be5fc6",
"style": "IPY_MODEL_8d9091bf92c948b5a42a3f9408136a19"
}
},
"47d045c791334bd28b33f179c4d236ac": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"ffe7ea111c55487b9d392043b0e2c3e4": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"ec809a2afd53408f9f2df74a5f27b115": {
"model_name": "HTMLModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"layout": "IPY_MODEL_47d045c791334bd28b33f179c4d236ac",
"placeholder": "",
"style": "IPY_MODEL_ffe7ea111c55487b9d392043b0e2c3e4",
"value": "<span style=\"margin-left:10px; color:black;\">No file selected</span>"
}
},
"f7e30d4ae0b54e109a570911462cddf8": {
"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"
}
},
"ee4200a4062348f398c2f2a9afa27d36": {
"model_name": "GridBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_a6f1239345a54ee298d125b8934e40ca",
"IPY_MODEL_71530daa71fb45548c43c4c82ebc3262",
"IPY_MODEL_9afd8e34cf9d4dc8bceca9295d277939"
],
"layout": "IPY_MODEL_f7e30d4ae0b54e109a570911462cddf8"
}
},
"70b01775e1934043a37aa48f29429238": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "auto"
}
},
"53df893d1dda4a4fa93d20c180116b22": {
"model_name": "HBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_ce97bc5392d04c60a21d533dfc3a2b25",
"IPY_MODEL_bb95460c5ffe455ba2a5d385c2ada12c",
"IPY_MODEL_ec809a2afd53408f9f2df74a5f27b115"
],
"layout": "IPY_MODEL_70b01775e1934043a37aa48f29429238"
}
},
"894adb4e17534879af9daaa3cc759f67": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "auto"
}
},
"91f3845b37134072bcb3d6e7aae0ea8c": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_7832b9d883ae4e388802dd0b904bcfed",
"IPY_MODEL_ee4200a4062348f398c2f2a9afa27d36",
"IPY_MODEL_53df893d1dda4a4fa93d20c180116b22"
],
"layout": "IPY_MODEL_894adb4e17534879af9daaa3cc759f67"
}
},
"e8dfe1874fbc4dfb868867a782e76f2d": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"576c994f76574a5095bcebabbffe853c": {
"model_name": "ToggleButtonsStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_width": "",
"description_width": ""
}
},
"990eff99c65d4b349903816171e6e24e": {
"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_e8dfe1874fbc4dfb868867a782e76f2d",
"style": "IPY_MODEL_576c994f76574a5095bcebabbffe853c",
"tooltips": [
"OK",
"Cancel"
]
}
},
"258535a732a6467186b57b2a1de01ab1": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "auto",
"width": "auto"
}
},
"e0ec258f37d3491a86cdaf945bc5b095": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"7580cec4862c4ec9b91465b239aec1e2": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"icon": "mouse-pointer",
"layout": "IPY_MODEL_258535a732a6467186b57b2a1de01ab1",
"style": "IPY_MODEL_e0ec258f37d3491a86cdaf945bc5b095",
"tooltip": "Default pointer"
}
},
"ec9a3ba2e6fa4a1a9247d2de431af927": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "auto",
"width": "auto"
}
},
"db0826dce743482c9f7028142e1ea61e": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"f72c8dab28e448bf9e473f7a94db3fdc": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"icon": "camera",
"layout": "IPY_MODEL_ec9a3ba2e6fa4a1a9247d2de431af927",
"style": "IPY_MODEL_db0826dce743482c9f7028142e1ea61e",
"tooltip": "Save map as HTML or image"
}
},
"61da75f975b144f9b0a519fe083c1e42": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "auto",
"width": "auto"
}
},
"2bc1c1d0210b4509a89c1d1043679b1d": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"5235be327a2b42b4b2e23c237b9bfabc": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"icon": "info",
"layout": "IPY_MODEL_61da75f975b144f9b0a519fe083c1e42",
"style": "IPY_MODEL_2bc1c1d0210b4509a89c1d1043679b1d",
"tooltip": "Inspector"
}
},
"0ff32fa8e7844c9697cf28884008be65": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"height": "auto",
"width": "auto"
}
},
"da5e2800078046629e9f8fd8a302b103": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"08655af8a8954f7394a248ae046af3ac": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"button_style": "primary",
"icon": "map-marker",
"layout": "IPY_MODEL_0ff32fa8e7844c9697cf28884008be65",
"style": "IPY_MODEL_da5e2800078046629e9f8fd8a302b103",
"tooltip": "Plotting"
}
},
"1107bca0aec640459cadad913e07a782": {
"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"
}
},
"aeddd0d08509401599b3426805031e69": {
"model_name": "GridBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_7580cec4862c4ec9b91465b239aec1e2",
"IPY_MODEL_f72c8dab28e448bf9e473f7a94db3fdc",
"IPY_MODEL_5235be327a2b42b4b2e23c237b9bfabc",
"IPY_MODEL_08655af8a8954f7394a248ae046af3ac"
],
"layout": "IPY_MODEL_1107bca0aec640459cadad913e07a782"
}
},
"de2ff0ea86104c7d966d6b52fe51e9d5": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {
"width": "37px"
}
},
"85bcca592c3c47c089a53ee874531629": {
"model_name": "DescriptionStyleModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"description_width": ""
}
},
"32dfb971ac494a75b46869de9e64e499": {
"model_name": "ToggleButtonModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"icon": "wrench",
"layout": "IPY_MODEL_de2ff0ea86104c7d966d6b52fe51e9d5",
"style": "IPY_MODEL_85bcca592c3c47c089a53ee874531629",
"tooltip": "Toolbar"
}
},
"5e463508852843dfa7cf35a5642af1d6": {
"model_name": "LayoutModel",
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"state": {}
},
"cd84813286d245e0b75f862ce119cca9": {
"model_name": "VBoxModel",
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"state": {
"children": [
"IPY_MODEL_32dfb971ac494a75b46869de9e64e499"
],
"layout": "IPY_MODEL_5e463508852843dfa7cf35a5642af1d6"
}
},
"f15ff05820a34143ba13efee617aeb2a": {
"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_cd84813286d245e0b75f862ce119cca9"
}
},
"1e2800cba84a401d9c61971b653b961c": {
"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_381caef78bd541ed9e8f8acd9ef57866"
}
},
"d419f68d26cf4fffafc1fe28c0eba3f9": {
"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": "TIGER/2018/States",
"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/8bd59f21fbb91056a11f3beacbebd5d1-8277ea59228f1ac3e883a0931e1827ee/tiles/{z}/{x}/{y}"
}
},
"5a0843c2f5154bd49106cdc1af639b10": {
"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": "NED",
"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/a5510889f7325ff52b4852896d526bc7-c3fd3f8b6007c92ea37a18dbbb9d5338/tiles/{z}/{x}/{y}"
}
},
"99ef634e944c4694a85f1a017904bf5a": {
"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": "Slope",
"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/837d77d96c50527a23737d81c7e7b93b-c8e49d44f1642c1ceff583b58118a360/tiles/{z}/{x}/{y}"
}
},
"4884a1117104425abb0f2aff2e96ff33": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"2f2cb3fc061b4e50956d9d64a2640b76": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "crosshair"
}
},
"73bf9d2d86314385892aadb4eada43a5": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"6d9d12e293ca46f3ac5bae3aa1c94729": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "crosshair"
}
},
"f65ec27656e04b5f86d8528807c54e7b": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "wait"
}
},
"9bf522e578d046c8bb1d03fdc66a2534": {
"model_name": "LeafletMapStyleModel",
"model_module": "jupyter-leaflet",
"model_module_version": "^0.13.2",
"state": {
"_model_module_version": "^0.13.2",
"cursor": "crosshair"
}
},
"b1fe3cad51dc4ca788ee7d5923add8b7": {
"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": "Aspect",
"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/d6e281ab7ed22126513a5e7a72589287-6b0ea6ce718adf4f9d99e16fec08235b/tiles/{z}/{x}/{y}"
}
}
}
}
},
"gist": {
"id": "5045b83ab025bbc2c59a89baed3b285e",
"data": {
"description": "zonal statistics",
"public": true
}
},
"_draft": {
"nbviewer_url": "https://gist.github.com/5045b83ab025bbc2c59a89baed3b285e"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment