{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "7333ad04", "metadata": { "execution": { "iopub.execute_input": "2024-01-27T16:53:57.714103Z", "iopub.status.busy": "2024-01-27T16:53:57.713697Z", "iopub.status.idle": "2024-01-27T16:53:58.215032Z", "shell.execute_reply": "2024-01-27T16:53:58.214193Z" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
indexstation_idnamestatuslatitudelongitude
00316205th & F St NWopen38.897637-77.018126
113110514th & Harvard St NWopen38.926638-77.032126
2231400Georgia & New Hampshire Ave NWclosed38.935638-77.024126
333111110th & U St NWopen38.917638-77.025126
4431104Adams Mill & Columbia Rd NWopen38.922638-77.042126
\n", "
" ], "text/plain": [ " index station_id name status latitude \\\n", "0 0 31620 5th & F St NW open 38.897637 \n", "1 1 31105 14th & Harvard St NW open 38.926638 \n", "2 2 31400 Georgia & New Hampshire Ave NW closed 38.935638 \n", "3 3 31111 10th & U St NW open 38.917638 \n", "4 4 31104 Adams Mill & Columbia Rd NW open 38.922638 \n", "\n", " longitude \n", "0 -77.018126 \n", "1 -77.032126 \n", "2 -77.024126 \n", "3 -77.025126 \n", "4 -77.042126 " ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import pandas as pd\n", "stations = pd.read_sql_query(\"\"\"select * from bikeshare_stations where latitude is not NULL\"\"\",'sqlite:///_static/bikeshare.db')\n", "stations.head()" ] }, { "cell_type": "code", "execution_count": 2, "id": "b17dcba9", "metadata": { "execution": { "iopub.execute_input": "2024-01-27T16:53:58.220237Z", "iopub.status.busy": "2024-01-27T16:53:58.219130Z", "iopub.status.idle": "2024-01-27T16:53:58.263009Z", "shell.execute_reply": "2024-01-27T16:53:58.262211Z" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
station_idnamestatuslatitudelongitude
0316205th & F St NWopen38.896301-77.027463
13110514th & Harvard St NWopen38.926571-77.032414
231400Georgia & New Hampshire Ave NWopen39.221500-77.059858
33111110th & U St NWopen38.916804-77.026235
431104Adams Mill & Columbia Rd NWopen38.922680-77.042667
\n", "
" ], "text/plain": [ " station_id name status latitude longitude\n", "0 31620 5th & F St NW open 38.896301 -77.027463\n", "1 31105 14th & Harvard St NW open 38.926571 -77.032414\n", "2 31400 Georgia & New Hampshire Ave NW open 39.221500 -77.059858\n", "3 31111 10th & U St NW open 38.916804 -77.026235\n", "4 31104 Adams Mill & Columbia Rd NW open 38.922680 -77.042667" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import pandas as pd\n", "\n", "stations = pd.read_csv(\"https://runestone.academy/ns/books/published/httlads/_static/bikeshare_stations.csv\")\n", "stations.head()" ] }, { "cell_type": "code", "execution_count": 3, "id": "e022543c", "metadata": { "execution": { "iopub.execute_input": "2024-01-27T16:53:58.266483Z", "iopub.status.busy": "2024-01-27T16:53:58.265813Z", "iopub.status.idle": "2024-01-27T16:53:58.813429Z", "shell.execute_reply": "2024-01-27T16:53:58.812666Z" } }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c2bad59ee3f54acb8c363178ee7e278c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Map(center=[38.9072, -77.0369], controls=(ZoomControl(options=['position', 'zoom_in_text', 'zoom_in_title', 'z…" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from ipyleaflet import Map, Marker, Icon, CircleMarker\n", "\n", "locations = list(zip(stations.latitude, stations.longitude))\n", "dc_center = (38.9072, -77.0369)\n", "\n", "dcmap = Map(center=dc_center, zoom=12)\n", "for loc in locations:\n", " marker = CircleMarker(location=loc, radius=2)\n", " dcmap.add_layer(marker)\n", "\n", "dcmap" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.12" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "00417483fc3846bc955107c146df5001": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.89912959999999, -76.9467801 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "0161c7a2e9c6461a9e20798a5ea1180e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8785574, -77.0227475 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "0220ee41c5fb45dc8bc8a4302978d2c7": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9118701, -77.0384855 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "02e7c530562c415bbfa2b3cf3e7ec8b8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8970035, -76.96032009999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "067e75e08964489293344d3d9c3f1ac3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletMapStyleModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab" } }, "07803a1cdee7420a87eeb33b9130d1b4": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9479287, -77.0796836 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "07bdd8b9fe1142c1b5dba636970d5d78": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9184088, -77.0697591 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "07c7222bbbee41fdadf2d3c97db42760": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8442637, -77.05047239999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "0807cf2aa63f415a88415ac4d74a62e5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8780992, -77.0079619 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "095653ebe49544e8bdaf0533ad461501": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9049858, -77.0636523 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "098800e29f8e45759796507420a77606": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletAttributionControlModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletAttributionControlView", "options": [ "position", "prefix" ], "position": "bottomright", "prefix": "ipyleaflet" } }, "0ac9aec527b74a78a47788be28350b9b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8842471, -76.995792 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "0b65d4c75aed4f85a411cb02d019be71": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.88441479999999, -77.1006433 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "0c59763186f242c7bfccbf7ec74b5309": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8577228, -77.0590548 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "0cf0186ec61f48f8bfe21be9eb1d952e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0e3fe6f3c5494d39aa1300f6c7b58e83": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9026383, -77.0345731 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "0e586c9a44dc4454a69bc35b0ca41234": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9421421, -77.0244436 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "124fd9a4a3c54ec8a64b7334f466041b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9053664, -77.0321538 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "12aada236bba40e5a3c7cedf9bc02370": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9480833, -77.0327696 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "12b05da0ceec43f7b370d714dcecdb89": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.886016, -77.01732 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "13d1bc97be154110b10c36a03f91cc2b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9036794, -77.0532984 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "13f8c43a305942de93cef144403c23af": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8851334, -77.00231910000001 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "1573d9647f08485ba53e4919218373ec": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.88249, -77.10289999999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "1763f008700746a59424eae0cdef1204": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.858108, -77.05125699999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "198bc68f3fe64a4db91fde7cd436c3f8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9181132, -77.0319544 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "1bd897337a484a60a8769fb18b9d60f3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8106028, -77.044629 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "1e45702b93cd4ea895a9e57450dceb55": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9018903, -76.9426423 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "241783f6ce114e379342aa25c0bc217b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8699713, -76.96021019999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "265acdd9a8dc45b1ab25caf415a24466": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9226795, -77.0426674 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "267b9165c7c64a32bd594fd01925846e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.919312, -77.000687 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "2709dec45a464df7a9f0413c61a9b591": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8872177, -77.0950173 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "286b1a155651464f8f28f6dd62c74632": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.93250380000001, -76.9929586 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "29a4c53b861d46018547d4987a6a4805": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.876596, -77.004772 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "29f68f269a7d45db821bcfe2c4e6e636": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8893999, -76.9798618 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "2b8b45a87e294f01b0a105a68eca1972": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9056638, -77.0412097 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "2c1b095e85db47cc85c0fe0f66cb1013": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.89210370000001, -77.02596129999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "2dc904d67a2840b492c7987ec3a203be": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8450186, -76.9877334 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "2fbdbb5cf903473d9e79b4c06757a469": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9009124, -77.01477229999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "30e81252d7494cfd9335bd6a31f78ed9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9026397, -77.05140279999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "33ebdeebf2bd458f979acfa9a20378b8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8897874, -76.9898913 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "34e34e52a1a14bc7b79b346327e0e3d3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.936847, -77.032639 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "361e8040c17146f787856a1b1bcc09d5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8983706, -77.0278743 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "3627667cd91f4e648d8cd7667ddaa002": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.88919870000001, -77.0917965 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "389a24d00cf14f8fa54b4e394e880fcd": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.89604509999999, -77.0784652 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "3c21c9ab0f744cb29762d6e0fcd56173": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8947509, -77.0727223 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "3c3bf75adaa94e5fb60ceca683b7a719": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8631441, -77.0529042 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "3cb2703c071f438f8d9b869044ee5d83": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.86405389999999, -77.06038029999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "3e9e4e91d82a4914ab343a18940c4d7a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.886198, -77.021844 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "3f8c7d9f9f714631a42036069417afe3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.80491019999999, -77.0430287 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "445a7a98a53d4fb2a8443e1be1a4f730": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.934356, -77.072569 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "44b6ecca9cac4a5dac0c61978ac607c6": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9340854, -77.0576414 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "458c68d1362c4ccc9d3eb4982fda364a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.900491, -76.998424 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "45d71df7fa704475811dabc28e77e86e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9311391, -77.0382492 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "46f49231f4fa4d65a93e8092e76ceb7d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9088354, -77.0319462 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "475f12198f5744a2876d871c135b0776": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9445754, -77.0635471 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "47afd0133f104d37ab8ee32d12758d91": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9007023, -77.0488331 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "47fec589116b41aba836edd340010a8d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8856556, -77.0974106 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "487b7a6ce68440f388396a53d12c0011": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.894099, -76.94776499999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "4a30801f6c0e454683814e3a762f012d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletMapStyleModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move" } }, "4a43a4413ea141519b5a22874fcd75ba": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9205903, -77.0439444 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "4dcdbe520bfd4c66bb94ccdd7a0deef9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8782532, -77.0057589 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "4e600ffdd1d949a4a7c1823515c31f0e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.924806, -77.02261200000001 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "4e616afbffa049919fd667b6eee79da4": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.854575, -77.0493561 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "51d9a6a73f1e4bf79b74625fd829e476": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8847743, -77.0172452 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "51f00c625a004b41949c948f7411c954": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.896862, -77.07240709999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "532e5d64eccd48ab93b2d441ee759211": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8886121, -77.0319526 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "542ff9b60eeb4e7c8f1ae47026f71cae": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8625317, -76.9697518 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "5647a9b1f8ce43b594e77d496e33e9b8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8601073, -77.0493393 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "56dbf38a4d7c4332a4f2e9f109384eae": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9296718, -77.02774149999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "59f1515df24949bfb4e28699c51acb30": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9001215, -76.9885651 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "5a95a19cad1946adb5a0ebe52d812f2c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8785406, -76.9611286 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "5b8e6f5799534502bd9df998a9e3379b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.882001, -77.005854 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "6058253026494385abb771cad86f624e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9177788, -77.04042179999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "614f6f158a1e456c9ae706d83cd3bca0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.912721, -77.013757 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "659ca692f07c40b1912b2053e6dc65d2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.909475, -77.0426854 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "678b0853c235450780545789b804a314": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.891716, -77.079128 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "6850d90a0e6b43b5b9bdfd6028145ce8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.886588, -76.9964451 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "6878eca8641e4b34a61e093539a55d55": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.899814, -77.022948 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "68ee0e826c074c84be461039fa12df57": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8903895, -76.9374473 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "69023c8889c24d95adffb1dcfca1e41b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9232654, -77.04734429999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "692a85ebd94445d6bb09ccfd5bcf1367": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.805462, -77.05045299999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "6b5460f8b2c3497c8aa5e9496a9bb340": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9002149, -77.043466 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "6f8872b4206c4918abc9b216e9c5e2ef": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8855388, -77.0060672 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "72e073254458473487d72e8913ff4b54": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8934465, -77.07658719999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "73888e1d596e407dadc89ba72257f379": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9076089, -77.07225849999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "7397f5873b254e51aee4997ae08e14a0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.89912959999999, -76.9467801 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "73b749f7a0304d63b0d650f0c8c72188": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8954325, -77.0888678 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "73fa0bb8c81449c186aecffe17bf8c63": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.895809, -76.920011 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "742ff5ce156247769d623d7cc2cc8764": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9000824, -76.9834855 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "7444e0875b3a41959b6cf4d9fa7bb019": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9073207, -77.0032796 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "776fa1f9347344faa4bad823eb628471": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8898671, -77.08028639999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "7930a2ede1e048588f05758033c71c35": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9087731, -77.0447816 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "7a4b5e93a59f4ba6b3d27f33f7bad1fb": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.915761, -77.06779499999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "7a8c5c49dae844628c9213a8478971f0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9056568, -77.0416876 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "7c47bf68e53b4612befea61fc41825f0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9028928, -77.0219051 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "7cc176961a2e4702b9175b4cd21cdd2c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8921101, -77.0434861 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "7e7d1ba0ffe6435884bbab7167e36bc3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletTileLayerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": [ "attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset" ], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0 } }, "7ecc3ba7f4e4447ead816988f97b9f68": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9030409, -77.0466454 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "833783d08cf74dd09d356aa055c4a775": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9079223, -77.0354926 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "8431f96379b34445ad3aba4033da12bb": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.922672, -77.078913 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "868c539ea5874fccad34c4671bae465b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8838385, -77.10724859999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "87508357cbbe45f1bb8e5955d04fa0d0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.88194, -77.11174 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "89fd125df56e4bc6928f229958d58cda": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8491034, -77.05100990000001 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "8c086b51b93e4af681a802dd1cedcbb8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8973304, -77.0091024 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "8e635e9414a64d25a0a8256c050a2a72": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.915572, -77.021919 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "8e6fc49cea1c49e7b0590ca23af7b8c4": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9309272, -77.030867 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "8f26839793be4f26898d017690968e6e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletZoomControlModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletZoomControlView", "options": [ "position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title" ], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out" } }, "8f6e257e491846a2aebcb46fbb711eae": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9262792, -77.0364613 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "9157aa000add4a85a66ba571b27a947a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8819737, -77.12895759999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "91bac7f126c14898aa57593a4e95a38f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9281258, -77.023104 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "9280330d221c4de688ebcf1be25d85ac": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9297465, -77.05549839999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "9472dcfd69d54245a1def2656315786e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9052288, -77.05796 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "94b95f831d7e4c02b5e13a2a9c16c9f6": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 39.294017, -76.589202 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "96df5275c37b4f11ba7d71af2631408a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8761508, -77.1082808 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "98fc5b80aa984615b40b462ce264f45a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8871667, -76.98364579999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "9c21f0bb0293479a97e66becf96dfb9d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.88363560000001, -77.1164088 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "9c3b9f1bda90416287ed20e1db0d676c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8638871, -76.950623 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "9cc7aec6acc24213892c5343acf50d3e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8824796, -77.1094619 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "9df0711579c54a4b993690bd8d4b07a2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.905637, -77.027041 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "9ee52c5ba9a549018b4bc93c90abf3ee": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8878759, -77.0931288 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a10014f50b3b4b859e9a66209084ebb0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8892686, -77.050176 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a1897f649f574c14b0691e2e597deb22": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8846221, -77.0877534 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a19ea6ab621c4a6694ff64be3665014e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9053157, -77.0222677 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a456888e474b44edb4a559c3c019f775": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9037394, -77.0280934 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a62327cb60764209a374493250991549": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9111223, -77.0047933 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a75372668d8c4b9a9b01a3c0603cbeb3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8428468, -77.05014419999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a8c1704e860a49d9a6f19468ab0574a4": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.916804, -77.0262348 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a948db189285456aa9b9f0bc149235bc": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9275494, -77.04253299999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "a9c41c3900144ad6a5c2552d8e4b3965": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9026398, -77.0434555 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "abebe17cefca4055b9eecbc7015ff58f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9001948, -77.0300858 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ac68f34253d44f4497bc6c6af8c81b77": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9037429, -77.04489319999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ad40027a7853442a9e06264f6acd1404": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.899316, -77.04163299999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ad629a37ca744a28b795606f117bbf78": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8968111, -77.0864445 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ad9fee027ebe4691ab32a59aea3730e7": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8505757, -77.1020507 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ae32720be11c439d82ee7570dc77b502": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8755355, -76.9751914 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b22c6d1b9fc248d9ab79e669ffdcc057": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.850898, -77.051842 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b35122d081ff41b9bb977ba91fde160f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8958482, -77.05568269999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b3520e09f067417c86b034f92311f0c6": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8978692, -77.0230529 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b4b2984e3186434c8fac0ea8b6bd6b0b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.894731, -76.988576 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b54b5c916fb54465a1d6d3d4bca145eb": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8561135, -77.04932090000001 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b5932a931ab940cc85d46ef818b7939e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.880156, -76.995319 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b5cb75d83b7446d5a4c8db711fec53b8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.89833, -77.0320047 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b5e10be55d04491d843c7579e5e6533a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9026383, -77.0385079 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b6503453f23345f6a377b6c8776ab444": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8798836, -77.10754829999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b88110b273784477ade8856692001409": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8949212, -77.0461794 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b8d6d3604fbe43b3991f52c1f7fa0ed2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9001075, -77.00248669999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "b9b8e68b4563424f9de2543a024b3183": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9322202, -77.0725966 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ba2c5728b2314897a8660803381c8b8f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.895994, -77.0434713 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ba4e1cfefd6e4fd8a493206eaa8320b8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9096506, -77.0345573 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "bd26657573b64e5f9abadfd8940cd60c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.91558029999999, -77.0378968 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "bdc7688671f641cfa872dd0db263fb51": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8904029, -77.0886921 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "bf6cbc8d7641438592d2f0b51cc56c83": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9287786, -77.01432109999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c26920a4ee7e4f7ebae387dd35bc348f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.891977, -77.04686199999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c26b60951686405cabf0c7367ec7a204": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8933798, -77.0861211 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c2bad59ee3f54acb8c363178ee7e278c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletMapModel", "state": { "_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [ 38.9072, -77.0369 ], "close_popup_on_click": true, "controls": [ "IPY_MODEL_8f26839793be4f26898d017690968e6e", "IPY_MODEL_098800e29f8e45759796507420a77606" ], "crs": { "custom": false, "name": "EPSG3857" }, "default_style": "IPY_MODEL_d9c4e324a5f243049a2b97749be5fa0d", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_4a30801f6c0e454683814e3a762f012d", "east": 0.0, "fullscreen": false, "inertia": true, "inertia_deceleration": 3000, "inertia_max_speed": 1500, "interpolation": "bilinear", "keyboard": true, "keyboard_pan_offset": 80, "keyboard_zoom_offset": 1, "layers": [ "IPY_MODEL_7e7d1ba0ffe6435884bbab7167e36bc3", "IPY_MODEL_f0ec66c5d5b544258cd55341a7d12d31", "IPY_MODEL_fe65407e194446f99c844025d28484d3", "IPY_MODEL_f092742c926c44eca71289e3ee485dc2", "IPY_MODEL_a8c1704e860a49d9a6f19468ab0574a4", "IPY_MODEL_265acdd9a8dc45b1ab25caf415a24466", "IPY_MODEL_13f8c43a305942de93cef144403c23af", "IPY_MODEL_46f49231f4fa4d65a93e8092e76ceb7d", "IPY_MODEL_ba4e1cfefd6e4fd8a493206eaa8320b8", "IPY_MODEL_475f12198f5744a2876d871c135b0776", "IPY_MODEL_1763f008700746a59424eae0cdef1204", "IPY_MODEL_f4041037b8084778b34a9f0b7ad9b645", "IPY_MODEL_095653ebe49544e8bdaf0533ad461501", "IPY_MODEL_0ac9aec527b74a78a47788be28350b9b", "IPY_MODEL_8f6e257e491846a2aebcb46fbb711eae", "IPY_MODEL_8e635e9414a64d25a0a8256c050a2a72", "IPY_MODEL_445a7a98a53d4fb2a8443e1be1a4f730", "IPY_MODEL_bd26657573b64e5f9abadfd8940cd60c", "IPY_MODEL_f3fce768ffc64772904e51e7e873e429", "IPY_MODEL_44b6ecca9cac4a5dac0c61978ac607c6", "IPY_MODEL_d8c7bce154c045209ec042497ff1b3ca", "IPY_MODEL_198bc68f3fe64a4db91fde7cd436c3f8", "IPY_MODEL_29a4c53b861d46018547d4987a6a4805", "IPY_MODEL_614f6f158a1e456c9ae706d83cd3bca0", "IPY_MODEL_b5e10be55d04491d843c7579e5e6533a", "IPY_MODEL_59f1515df24949bfb4e28699c51acb30", "IPY_MODEL_45d71df7fa704475811dabc28e77e86e", "IPY_MODEL_7a8c5c49dae844628c9213a8478971f0", "IPY_MODEL_73fa0bb8c81449c186aecffe17bf8c63", "IPY_MODEL_cb019a3ec14e41f3abbbb44499f0ce6d", "IPY_MODEL_8e6fc49cea1c49e7b0590ca23af7b8c4", "IPY_MODEL_6b5460f8b2c3497c8aa5e9496a9bb340", "IPY_MODEL_7ecc3ba7f4e4447ead816988f97b9f68", "IPY_MODEL_12aada236bba40e5a3c7cedf9bc02370", "IPY_MODEL_ae32720be11c439d82ee7570dc77b502", "IPY_MODEL_d3cc4472b932463a8b1f7a025a2f87d1", "IPY_MODEL_659ca692f07c40b1912b2053e6dc65d2", "IPY_MODEL_4e616afbffa049919fd667b6eee79da4", "IPY_MODEL_e021c80d690b4821a1e3e7cde03fa625", "IPY_MODEL_a948db189285456aa9b9f0bc149235bc", "IPY_MODEL_0220ee41c5fb45dc8bc8a4302978d2c7", "IPY_MODEL_56dbf38a4d7c4332a4f2e9f109384eae", "IPY_MODEL_33ebdeebf2bd458f979acfa9a20378b8", "IPY_MODEL_3e9e4e91d82a4914ab343a18940c4d7a", "IPY_MODEL_51d9a6a73f1e4bf79b74625fd829e476", "IPY_MODEL_b4b2984e3186434c8fac0ea8b6bd6b0b", "IPY_MODEL_6878eca8641e4b34a61e093539a55d55", "IPY_MODEL_0c59763186f242c7bfccbf7ec74b5309", "IPY_MODEL_dd649b36d15d41c89200017657d511b9", "IPY_MODEL_c8af05a8e7ca415d9a75fded2a488a73", "IPY_MODEL_a19ea6ab621c4a6694ff64be3665014e", "IPY_MODEL_abebe17cefca4055b9eecbc7015ff58f", "IPY_MODEL_07bdd8b9fe1142c1b5dba636970d5d78", "IPY_MODEL_34e34e52a1a14bc7b79b346327e0e3d3", "IPY_MODEL_b8d6d3604fbe43b3991f52c1f7fa0ed2", "IPY_MODEL_13d1bc97be154110b10c36a03f91cc2b", "IPY_MODEL_cf1fb685ca7d457b80d228125dba1b45", "IPY_MODEL_ec739eaf50a940ceb2c0053da52d67ae", "IPY_MODEL_4e600ffdd1d949a4a7c1823515c31f0e", "IPY_MODEL_b54b5c916fb54465a1d6d3d4bca145eb", "IPY_MODEL_a75372668d8c4b9a9b01a3c0603cbeb3", "IPY_MODEL_2c1b095e85db47cc85c0fe0f66cb1013", "IPY_MODEL_e0c775a663924a519d069a036993792a", "IPY_MODEL_89fd125df56e4bc6928f229958d58cda", "IPY_MODEL_d67e5b47163b4fadaaa172ba8d5365f8", "IPY_MODEL_6850d90a0e6b43b5b9bdfd6028145ce8", "IPY_MODEL_0161c7a2e9c6461a9e20798a5ea1180e", "IPY_MODEL_fb556190b8084db488b65b38bea44d25", "IPY_MODEL_b9b8e68b4563424f9de2543a024b3183", "IPY_MODEL_b5cb75d83b7446d5a4c8db711fec53b8", "IPY_MODEL_73888e1d596e407dadc89ba72257f379", "IPY_MODEL_3cb2703c071f438f8d9b869044ee5d83", "IPY_MODEL_ff84ffa620594e69accc092bdc4da776", "IPY_MODEL_2fbdbb5cf903473d9e79b4c06757a469", "IPY_MODEL_8c086b51b93e4af681a802dd1cedcbb8", "IPY_MODEL_69023c8889c24d95adffb1dcfca1e41b", "IPY_MODEL_542ff9b60eeb4e7c8f1ae47026f71cae", "IPY_MODEL_ba2c5728b2314897a8660803381c8b8f", "IPY_MODEL_7cc176961a2e4702b9175b4cd21cdd2c", "IPY_MODEL_f5262d73c4db4d74b1ea1942ecf2ba45", "IPY_MODEL_b88110b273784477ade8856692001409", "IPY_MODEL_3c3bf75adaa94e5fb60ceca683b7a719", "IPY_MODEL_7a4b5e93a59f4ba6b3d27f33f7bad1fb", "IPY_MODEL_267b9165c7c64a32bd594fd01925846e", "IPY_MODEL_b22c6d1b9fc248d9ab79e669ffdcc057", "IPY_MODEL_b5932a931ab940cc85d46ef818b7939e", "IPY_MODEL_c38f7e1dacf240509919a02367efe4e9", "IPY_MODEL_07803a1cdee7420a87eeb33b9130d1b4", "IPY_MODEL_286b1a155651464f8f28f6dd62c74632", "IPY_MODEL_5647a9b1f8ce43b594e77d496e33e9b8", "IPY_MODEL_00417483fc3846bc955107c146df5001", "IPY_MODEL_a62327cb60764209a374493250991549", "IPY_MODEL_5b8e6f5799534502bd9df998a9e3379b", "IPY_MODEL_b35122d081ff41b9bb977ba91fde160f", "IPY_MODEL_29f68f269a7d45db821bcfe2c4e6e636", "IPY_MODEL_742ff5ce156247769d623d7cc2cc8764", "IPY_MODEL_f0688bc4d0314c37b2a76239819f5f49", "IPY_MODEL_fb2411cc5db34eef9e39f1022b30131a", "IPY_MODEL_1e45702b93cd4ea895a9e57450dceb55", "IPY_MODEL_fb4e1abfed1044ffbc40bbe4583cc927", "IPY_MODEL_7397f5873b254e51aee4997ae08e14a0", "IPY_MODEL_dcf9a78a2d0c45b4810bca0906e0be88", "IPY_MODEL_c64a388d6e684423a06495fb3b86afc5", "IPY_MODEL_487b7a6ce68440f388396a53d12c0011", "IPY_MODEL_9df0711579c54a4b993690bd8d4b07a2", "IPY_MODEL_fd93d830c2714a59abe7fafdb2a45bd1", "IPY_MODEL_5a95a19cad1946adb5a0ebe52d812f2c", "IPY_MODEL_07c7222bbbee41fdadf2d3c97db42760", "IPY_MODEL_cb90fe22a02a428ead5138dd6aa3081d", "IPY_MODEL_51f00c625a004b41949c948f7411c954", "IPY_MODEL_72e073254458473487d72e8913ff4b54", "IPY_MODEL_678b0853c235450780545789b804a314", "IPY_MODEL_3c21c9ab0f744cb29762d6e0fcd56173", "IPY_MODEL_c7234cae620f42cb8b073ee88f64930b", "IPY_MODEL_d371f4cb4bf644b6a9375f8c4c60f146", "IPY_MODEL_b3520e09f067417c86b034f92311f0c6", "IPY_MODEL_361e8040c17146f787856a1b1bcc09d5", "IPY_MODEL_0807cf2aa63f415a88415ac4d74a62e5", "IPY_MODEL_241783f6ce114e379342aa25c0bc217b", "IPY_MODEL_9c3b9f1bda90416287ed20e1db0d676c", "IPY_MODEL_c26920a4ee7e4f7ebae387dd35bc348f", "IPY_MODEL_f09fc368ed77464a950f34facd49f51c", "IPY_MODEL_3627667cd91f4e648d8cd7667ddaa002", "IPY_MODEL_4a43a4413ea141519b5a22874fcd75ba", "IPY_MODEL_2b8b45a87e294f01b0a105a68eca1972", "IPY_MODEL_124fd9a4a3c54ec8a64b7334f466041b", "IPY_MODEL_2709dec45a464df7a9f0413c61a9b591", "IPY_MODEL_9ee52c5ba9a549018b4bc93c90abf3ee", "IPY_MODEL_ad40027a7853442a9e06264f6acd1404", "IPY_MODEL_f4c0ae22d9cf41b0b2e22b1db8d089d2", "IPY_MODEL_d55e0ca3c18c479db8fda5b57365f6c0", "IPY_MODEL_bdc7688671f641cfa872dd0db263fb51", "IPY_MODEL_e4edc3232ad44c56ba974eac717beca2", "IPY_MODEL_833783d08cf74dd09d356aa055c4a775", "IPY_MODEL_0e586c9a44dc4454a69bc35b0ca41234", "IPY_MODEL_91bac7f126c14898aa57593a4e95a38f", "IPY_MODEL_458c68d1362c4ccc9d3eb4982fda364a", "IPY_MODEL_d1a1f3f3dc0341f8b08433e51ba11f6f", "IPY_MODEL_6058253026494385abb771cad86f624e", "IPY_MODEL_9472dcfd69d54245a1def2656315786e", "IPY_MODEL_9280330d221c4de688ebcf1be25d85ac", "IPY_MODEL_68ee0e826c074c84be461039fa12df57", "IPY_MODEL_02e7c530562c415bbfa2b3cf3e7ec8b8", "IPY_MODEL_98fc5b80aa984615b40b462ce264f45a", "IPY_MODEL_2dc904d67a2840b492c7987ec3a203be", "IPY_MODEL_12b05da0ceec43f7b370d714dcecdb89", "IPY_MODEL_4dcdbe520bfd4c66bb94ccdd7a0deef9", "IPY_MODEL_8431f96379b34445ad3aba4033da12bb", "IPY_MODEL_7930a2ede1e048588f05758033c71c35", "IPY_MODEL_bf6cbc8d7641438592d2f0b51cc56c83", "IPY_MODEL_1573d9647f08485ba53e4919218373ec", "IPY_MODEL_868c539ea5874fccad34c4671bae465b", "IPY_MODEL_d1e1c37a67c547928c7973d5ea926bc0", "IPY_MODEL_f6b86d9fca594f24b957ba6de0b53af7", "IPY_MODEL_d3fc2520f9e84dc4adccfdc0cf98f515", "IPY_MODEL_532e5d64eccd48ab93b2d441ee759211", "IPY_MODEL_c8678f8687bb48b2b9956ccd8d8c23ce", "IPY_MODEL_ad629a37ca744a28b795606f117bbf78", "IPY_MODEL_389a24d00cf14f8fa54b4e394e880fcd", "IPY_MODEL_c26b60951686405cabf0c7367ec7a204", "IPY_MODEL_73b749f7a0304d63b0d650f0c8c72188", "IPY_MODEL_776fa1f9347344faa4bad823eb628471", "IPY_MODEL_ad9fee027ebe4691ab32a59aea3730e7", "IPY_MODEL_47fec589116b41aba836edd340010a8d", "IPY_MODEL_9cc7aec6acc24213892c5343acf50d3e", "IPY_MODEL_96df5275c37b4f11ba7d71af2631408a", "IPY_MODEL_87508357cbbe45f1bb8e5955d04fa0d0", "IPY_MODEL_c97a8f65ffe64a3989eb4c96efe8ec28", "IPY_MODEL_7c47bf68e53b4612befea61fc41825f0", "IPY_MODEL_c44518a3171642d09e22e58b7aec0bfb", "IPY_MODEL_da25f85528844881b46067801579f06f", "IPY_MODEL_9c21f0bb0293479a97e66becf96dfb9d", "IPY_MODEL_b6503453f23345f6a377b6c8776ab444", "IPY_MODEL_0b65d4c75aed4f85a411cb02d019be71", "IPY_MODEL_ac68f34253d44f4497bc6c6af8c81b77", "IPY_MODEL_a456888e474b44edb4a559c3c019f775", "IPY_MODEL_a9c41c3900144ad6a5c2552d8e4b3965", "IPY_MODEL_dd05f23a171c41548d7e4638a57c880d", "IPY_MODEL_0e3fe6f3c5494d39aa1300f6c7b58e83", "IPY_MODEL_30e81252d7494cfd9335bd6a31f78ed9", "IPY_MODEL_7444e0875b3a41959b6cf4d9fa7bb019", "IPY_MODEL_c4309c5fb67a40e69fa409494204105b", "IPY_MODEL_47afd0133f104d37ab8ee32d12758d91", "IPY_MODEL_9157aa000add4a85a66ba571b27a947a", "IPY_MODEL_f5b5178ee6be4cc5a74ddbe57a428bea", "IPY_MODEL_3f8c7d9f9f714631a42036069417afe3", "IPY_MODEL_caab4f0441c94422aa466f234f537f85", "IPY_MODEL_6f8872b4206c4918abc9b216e9c5e2ef", "IPY_MODEL_94b95f831d7e4c02b5e13a2a9c16c9f6", "IPY_MODEL_1bd897337a484a60a8769fb18b9d60f3", "IPY_MODEL_692a85ebd94445d6bb09ccfd5bcf1367", "IPY_MODEL_ee41e618b7c74e16add8e786bc2864ba", "IPY_MODEL_f8ef3866cc504bd699c1ddae65799279", "IPY_MODEL_a1897f649f574c14b0691e2e597deb22", "IPY_MODEL_a10014f50b3b4b859e9a66209084ebb0" ], "layout": "IPY_MODEL_0cf0186ec61f48f8bfe21be9eb1d952e", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-01-26", "north": 0.0, "options": [ "bounce_at_zoom_limits", "box_zoom", "center", "close_popup_on_click", "double_click_zoom", "dragging", "fullscreen", "inertia", "inertia_deceleration", "inertia_max_speed", "interpolation", "keyboard", "keyboard_pan_offset", "keyboard_zoom_offset", "max_zoom", "min_zoom", "prefer_canvas", "scroll_wheel_zoom", "tap", "tap_tolerance", "touch_zoom", "world_copy_jump", "zoom", "zoom_animation_threshold", "zoom_delta", "zoom_snap" ], "panes": {}, "prefer_canvas": false, "right": 0.0, "scroll_wheel_zoom": false, "south": 0.0, "style": "IPY_MODEL_067e75e08964489293344d3d9c3f1ac3", "tabbable": null, "tap": true, "tap_tolerance": 15, "tooltip": null, "top": 9007199254740991.0, "touch_zoom": true, "west": 0.0, "window_url": "", "world_copy_jump": false, "zoom": 12.0, "zoom_animation_threshold": 4, "zoom_delta": 1.0, "zoom_snap": 1.0 } }, "c38f7e1dacf240509919a02367efe4e9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.899173, -77.031818 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c4309c5fb67a40e69fa409494204105b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.896835, -77.0262939 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c44518a3171642d09e22e58b7aec0bfb": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.88138060000001, -77.0364536 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c64a388d6e684423a06495fb3b86afc5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8622178, -76.9951881 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c7234cae620f42cb8b073ee88f64930b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8943989, -77.0300249 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c8678f8687bb48b2b9956ccd8d8c23ce": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8886581, -77.02819749999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c8af05a8e7ca415d9a75fded2a488a73": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8659948, -77.06281469999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "c97a8f65ffe64a3989eb4c96efe8ec28": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8782629, -77.120814 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "caab4f0441c94422aa466f234f537f85": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8140201, -77.0537762 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "cb019a3ec14e41f3abbbb44499f0ce6d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9037466, -77.04345769999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "cb90fe22a02a428ead5138dd6aa3081d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8973435, -77.02704659999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "cf1fb685ca7d457b80d228125dba1b45": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8841038, -76.9855178 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d1a1f3f3dc0341f8b08433e51ba11f6f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.90031099999999, -76.991345 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d1e1c37a67c547928c7973d5ea926bc0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8947906, -76.9964668 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d371f4cb4bf644b6a9375f8c4c60f146": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9019574, -77.0389955 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d3cc4472b932463a8b1f7a025a2f87d1": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.896995, -77.006384 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d3fc2520f9e84dc4adccfdc0cf98f515": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8863705, -77.0452107 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d55e0ca3c18c479db8fda5b57365f6c0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8851334, -77.00231910000001 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d67e5b47163b4fadaaa172ba8d5365f8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9374498, -77.08679830000001 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d8c7bce154c045209ec042497ff1b3ca": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9023127, -77.01832519999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "d9c4e324a5f243049a2b97749be5fa0d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletMapStyleModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab" } }, "da25f85528844881b46067801579f06f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.866775, -76.985128 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "dcf9a78a2d0c45b4810bca0906e0be88": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8674403, -76.9886086 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "dd05f23a171c41548d7e4638a57c880d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.901629, -77.0465783 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "dd649b36d15d41c89200017657d511b9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8960201, -77.0449211 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "e021c80d690b4821a1e3e7cde03fa625": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9151073, -77.044913 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "e0c775a663924a519d069a036993792a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8869701, -77.030788 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "e4edc3232ad44c56ba974eac717beca2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8847743, -77.0172452 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ec739eaf50a940ceb2c0053da52d67ae": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9335106, -76.99533370000002 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ee41e618b7c74e16add8e786bc2864ba": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8112911, -77.0501472 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f0688bc4d0314c37b2a76239819f5f49": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8739399, -76.9722665 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f092742c926c44eca71289e3ee485dc2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 39.2214999, -77.0598581 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f09fc368ed77464a950f34facd49f51c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8915558, -77.0848664 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f0ec66c5d5b544258cd55341a7d12d31": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8963014, -77.02746320000001 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f3fce768ffc64772904e51e7e873e429": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.905645, -77.0058775 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f4041037b8084778b34a9f0b7ad9b645": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9126061, -77.0319494 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f4c0ae22d9cf41b0b2e22b1db8d089d2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9124112, -77.02254719999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f5262d73c4db4d74b1ea1942ecf2ba45": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8988663, -77.03367899999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f5b5178ee6be4cc5a74ddbe57a428bea": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 37.767873, -122.406287 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f6b86d9fca594f24b957ba6de0b53af7": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9061249, -77.02598019999999 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "f8ef3866cc504bd699c1ddae65799279": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.88950699999999, -77.0776458 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "fb2411cc5db34eef9e39f1022b30131a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.933526, -76.991079 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "fb4e1abfed1044ffbc40bbe4583cc927": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.86598050000001, -76.9785383 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "fb556190b8084db488b65b38bea44d25": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9030397, -77.0581263 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "fd93d830c2714a59abe7fafdb2a45bd1": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8599562, -77.0535692 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "fe65407e194446f99c844025d28484d3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.9265708, -77.0324139 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } }, "ff84ffa620594e69accc092bdc4da776": { "model_module": "jupyter-leaflet", "model_module_version": "^0.17", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.17", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.17", "_view_name": "LeafletCircleMarkerView", "base": false, "bottom": false, "color": "#0033FF", "dash_array": null, "fill": true, "fill_color": null, "fill_opacity": 0.2, "line_cap": "round", "line_join": "round", "location": [ 38.8901328, -76.9442518 ], "name": "", "opacity": 1.0, "options": [ "color", "dash_array", "fill", "fill_color", "fill_opacity", "line_cap", "line_join", "opacity", "pointer_events", "radius", "stroke", "weight" ], "pane": "", "pointer_events": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "radius": 2, "stroke": true, "subitems": [], "weight": 5 } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }