{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "8182778b", "metadata": { "execution": { "iopub.execute_input": "2024-09-14T14:15:17.348355Z", "iopub.status.busy": "2024-09-14T14:15:17.346812Z", "iopub.status.idle": "2024-09-14T14:15:18.308773Z", "shell.execute_reply": "2024-09-14T14:15:18.307032Z" } }, "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": "3f76a441", "metadata": { "execution": { "iopub.execute_input": "2024-09-14T14:15:18.317716Z", "iopub.status.busy": "2024-09-14T14:15:18.316788Z", "iopub.status.idle": "2024-09-14T14:15:18.450925Z", "shell.execute_reply": "2024-09-14T14:15:18.442978Z" } }, "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": "e6fbc87f", "metadata": { "execution": { "iopub.execute_input": "2024-09-14T14:15:18.467363Z", "iopub.status.busy": "2024-09-14T14:15:18.466830Z", "iopub.status.idle": "2024-09-14T14:15:19.260211Z", "shell.execute_reply": "2024-09-14T14:15:19.258309Z" } }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c66d83f5c3040ab9ecab0bde285aa24", "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.11.9" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "015b51989810430280db6ab0122e3c1e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0190f6ef8a974d919d84127ebb92e64b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "02c6d63d2814472195805561c72f8c4a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "03f86a7240594c169a0d7d77fe6f5e7c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0620bea307b4458aa3b90afa9fefff9a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "08743beff8834693a642352a24886c34": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "09a2e9af75ea45b38fc6b5bf7fc6e49a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0acb6293313547ef9e3e97b932d449f5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletZoomControlModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletZoomControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletZoomControlView", "options": [ "position", "zoom_in_text", "zoom_in_title", "zoom_out_text", "zoom_out_title" ], "position": "topleft", "zoom_in_text": "+", "zoom_in_title": "Zoom in", "zoom_out_text": "-", "zoom_out_title": "Zoom out" } }, "0afa9ac78c3a463a8759869256627dd6": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0b5489c815664f3586ff1182ebcf9b4f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0c7bacf727164cee883833a787dddef5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0d25a4a8b2c641bcab0d61641e9d0061": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0e3bc254352349a5a40d0a279e34b6df": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0ebdc271cd714a54bb638d1a16096803": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "0f36c2c00a7e4c4f9d71e9e14bc982f4": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "15309008977c4e57a4dd6caacb9e7767": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "15aee7b64c8a42e581c12755dc035d30": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "15f31fbbff654bd9b4c3f12f7e2c2962": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "174a633118ef422b8a2d6c1ff2cdd6be": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "175d4b68cb614c7cb902ad42e2150ded": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "1852b9e6dcd54653acfc2b80e76d7101": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "18cccd64e8d04f55bf31dd027ba6eb4a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "19e75061c16d49cd804bc25e656e5cde": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "1a21e6fa84a24a6081c98ab8fe2ac896": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "1a2ac317fced482d90e42bd3920e0092": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "1aa8386e770d456e9938e53bb7e6f66f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "1ab19c9207b54991958efb46a442a275": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "1ce2614b0132494487ac76c3e0810676": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "1fc9205253344b758c00182281c82074": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "22b1edf85ac948ec9971fa7f1fa8800c": { "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 } }, "2318db5c03d944ad97f2e694dab2cbb3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "2407c12df1fa4cda9eeba9536ee4cb0f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "2531febbed32499e9e914dbb9939fd73": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "2558e28bebbd4b2d804aefc17a634236": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "280d5708a9a64e2ca966b30ea2d6d006": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "2dc5ef1b7c834ffe8358a923a7e2d37c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "2ee1240c72844dc2a64144e2296e71f7": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "30de4433a8ad47c1ba0f246a7906338c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "32f3b39b546a4b8d90430e4753b3c699": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "33689c1661a8456fba674b67d045c523": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "3565f0adc5984d0a8cc8d92f26bb0ad5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "373945f5e422491bbd0af22308764592": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "379fc560e8844eaa8ec508ffe7911796": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "37b8b5488e944ba090175b1a0bbc9e88": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "38256b30db464c55a02c8c1e189865c1": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "391b9fd24648483c9159036343963d54": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "3c2718d3472f4fb39efe5ad1513678d9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "3d327078c38a463a8a36d3a3ca89b2ba": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "3d8df0d5dd224b52910de6c885f12f2e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "40b31e6cbb2e4e088b96546113faf126": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "40b32bf919294d54b50ac7ce32b3a005": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "40deccbb6d4a49ffa03b0b22a653e6e5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "437e5def444545598c889ed55199fc42": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "438802868915419dbb61a6249ab6525b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "438dd90436f948c3bba3aed89ea3598e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletMapStyleModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "move" } }, "48f43460f0e941eb8248be3932070c1a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "49168c1db5764387ac155d8df1fba6ca": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "4ba74267c9d44c29bd42ef1e0ac2509b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "4be1c0f68eeb48cd8e7c0b84700b0355": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "4d45c747c203498797d9467ceec04526": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "4f71e09d10bc408fa15fd358e3fbd593": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "515ebc3f443a4b7580a9636fe7840ab3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "51e93d93ac6e43baaa5a6dc9040ffe38": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "52fdc0df30f444178b7e7e1d0fa70088": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "53a6cd3000294eb89566d22aa65ff242": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "53d66d6c5ab34bfd9388e9660bb20e7b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "5694dc1381e041a2811bedccfdd52708": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "59541ad17e8d41aab0044b15de642c66": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "59a4f466d874486cb1c8ea1fc48e7f9c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "59dc4b0324954fac9927ae41400e09e0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "5baa2b0b89364d8e807006f0ca762bcf": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "5c86e01ba9c34fd0a07b0219bdf49d35": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "5c93ffe0e77e4cf99d98a76795845ec0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "5d92c860d89346b7b43ddc159aed70bd": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "5dae0e994de4488591a0461455a344ca": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "5e2b9833ee9c43cda72789f8630f1c96": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "5f268ecefe824846aa61baccd5445258": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "62f4e404e7164f228d047652101d34e2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "6301f36b48a442e3bcfe503745db6610": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "64907b20638c49bd829da0ef1b6bc672": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "663aa2128a214f5ea28d22d034f23983": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "667650cd14574b53b247d994c06fdeb1": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "66f825fa84c44d29b51ad26eb3b7b613": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "68d360835da64aa09701f9655a1abc7f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "6b7db9c09fb94dd99a13aaf366ae503c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "6c66d83f5c3040ab9ecab0bde285aa24": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletMapModel", "state": { "_dom_classes": [], "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletMapView", "bottom": 0.0, "bounce_at_zoom_limits": true, "box_zoom": true, "center": [ 38.9072, -77.0369 ], "close_popup_on_click": true, "controls": [ "IPY_MODEL_0acb6293313547ef9e3e97b932d449f5", "IPY_MODEL_af54dd311b41498fb54cf961594172b0" ], "crs": { "custom": false, "name": "EPSG3857" }, "default_style": "IPY_MODEL_828634c7f0bd408888915f06c15b4a97", "double_click_zoom": true, "dragging": true, "dragging_style": "IPY_MODEL_438dd90436f948c3bba3aed89ea3598e", "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_a9ec091cfa554462816bfba5f73dff76", "IPY_MODEL_a442b49e97594cb5bc1c5053e1dfc7b3", "IPY_MODEL_f1ccbf73e4464766a8bde66537342ef0", "IPY_MODEL_83ca3ad045a84715b41f8f5cd24958c7", "IPY_MODEL_0f36c2c00a7e4c4f9d71e9e14bc982f4", "IPY_MODEL_08743beff8834693a642352a24886c34", "IPY_MODEL_4be1c0f68eeb48cd8e7c0b84700b0355", "IPY_MODEL_8e45098d89b84b4fb7deeb7e672ce679", "IPY_MODEL_d3dde71b4f3d46aeb0f1686dc21cbf3a", "IPY_MODEL_ac989f28f77348edb2ad412267b9f654", "IPY_MODEL_c2e273c01e434f1d84472be762cd3778", "IPY_MODEL_9182163ddcfa4a0eb01e4367eec8c945", "IPY_MODEL_667650cd14574b53b247d994c06fdeb1", "IPY_MODEL_af956048ce4346418938c105c9942584", "IPY_MODEL_3d8df0d5dd224b52910de6c885f12f2e", "IPY_MODEL_d280206581474468a6bbe3021481c3d4", "IPY_MODEL_5e2b9833ee9c43cda72789f8630f1c96", "IPY_MODEL_48f43460f0e941eb8248be3932070c1a", "IPY_MODEL_174a633118ef422b8a2d6c1ff2cdd6be", "IPY_MODEL_62f4e404e7164f228d047652101d34e2", "IPY_MODEL_dd3a95bae6504f1e821ef8e35af88f11", "IPY_MODEL_ddfead420f14456096c9fcace05107e8", "IPY_MODEL_15aee7b64c8a42e581c12755dc035d30", "IPY_MODEL_81c192b832a54e00ac8a873d9597f23c", "IPY_MODEL_515ebc3f443a4b7580a9636fe7840ab3", "IPY_MODEL_94edf98ae70944b1837c2107cea7d2b9", "IPY_MODEL_32f3b39b546a4b8d90430e4753b3c699", "IPY_MODEL_957d9ec9ca9745ce9d30360390a5a0a8", "IPY_MODEL_373945f5e422491bbd0af22308764592", "IPY_MODEL_66f825fa84c44d29b51ad26eb3b7b613", "IPY_MODEL_0afa9ac78c3a463a8759869256627dd6", "IPY_MODEL_f785cf7c240843d98555676c03c28045", "IPY_MODEL_e612b6dfc3ba43999e301127d275cb4d", "IPY_MODEL_5694dc1381e041a2811bedccfdd52708", "IPY_MODEL_79d4fcb179714bf1b0d97abb23834045", "IPY_MODEL_870f0384c4a24592a5fbcf10f757c3de", "IPY_MODEL_2407c12df1fa4cda9eeba9536ee4cb0f", "IPY_MODEL_f73e31a5d1ff470b85ba15a07e0584fa", "IPY_MODEL_2558e28bebbd4b2d804aefc17a634236", "IPY_MODEL_38256b30db464c55a02c8c1e189865c1", "IPY_MODEL_5c93ffe0e77e4cf99d98a76795845ec0", "IPY_MODEL_cebff9779bab4e8294c85c257e9aa6db", "IPY_MODEL_5c86e01ba9c34fd0a07b0219bdf49d35", "IPY_MODEL_b342cc3719a4467a865015d687485b15", "IPY_MODEL_a3168f5e041841b582c9e827f93a7552", "IPY_MODEL_1a21e6fa84a24a6081c98ab8fe2ac896", "IPY_MODEL_3565f0adc5984d0a8cc8d92f26bb0ad5", "IPY_MODEL_d3b70fafc50c4bec9153db5ae74b3b7f", "IPY_MODEL_280d5708a9a64e2ca966b30ea2d6d006", "IPY_MODEL_a34711b575634d20b85c57589900241d", "IPY_MODEL_03f86a7240594c169a0d7d77fe6f5e7c", "IPY_MODEL_2318db5c03d944ad97f2e694dab2cbb3", "IPY_MODEL_920704fec89e4b6ead03343933d17ced", "IPY_MODEL_6d78fd7d1c2349d386e20233bb66d8df", "IPY_MODEL_33689c1661a8456fba674b67d045c523", "IPY_MODEL_6d7a21f1696249c9b700d36800040965", "IPY_MODEL_2ee1240c72844dc2a64144e2296e71f7", "IPY_MODEL_9184ea9a3d5b420ea98090c097a5cc80", "IPY_MODEL_ff8507ee3b9f4bd993e05885e711662a", "IPY_MODEL_5d92c860d89346b7b43ddc159aed70bd", "IPY_MODEL_d3ef6be8209b4f918c2f3a34dcd600e7", "IPY_MODEL_7913561d67b9468b9f3fbd1d57f0f9fe", "IPY_MODEL_53d66d6c5ab34bfd9388e9660bb20e7b", "IPY_MODEL_da47a99130c24377a92adcd319694542", "IPY_MODEL_30de4433a8ad47c1ba0f246a7906338c", "IPY_MODEL_5f268ecefe824846aa61baccd5445258", "IPY_MODEL_59dc4b0324954fac9927ae41400e09e0", "IPY_MODEL_dd6ef868302744d2b531d6f14111d7e6", "IPY_MODEL_0b5489c815664f3586ff1182ebcf9b4f", "IPY_MODEL_bb500ab826e64131bd20c34b5a30cc6f", "IPY_MODEL_7ae3c421cbec44619ad1421108e14805", "IPY_MODEL_8d36653c3d9745048e51082295a48a73", "IPY_MODEL_49168c1db5764387ac155d8df1fba6ca", "IPY_MODEL_437e5def444545598c889ed55199fc42", "IPY_MODEL_9f24a600d51e426c9227d6c58896c33c", "IPY_MODEL_391b9fd24648483c9159036343963d54", "IPY_MODEL_6eac3645e916464d96b9dea1240144f9", "IPY_MODEL_afe1602bf3d448028a059c23a7283817", "IPY_MODEL_15f31fbbff654bd9b4c3f12f7e2c2962", "IPY_MODEL_1fc9205253344b758c00182281c82074", "IPY_MODEL_ba2935da2b7843f0b97f62493fa0789b", "IPY_MODEL_bd0a14cc5c1d4114a6aba8184662d154", "IPY_MODEL_bc93af65cb5a40428c190999ee357864", "IPY_MODEL_3c2718d3472f4fb39efe5ad1513678d9", "IPY_MODEL_f119e0ce0d814a74b1d00ac7a269d0b1", "IPY_MODEL_f4be6d5eec5343d1895a69db24884a43", "IPY_MODEL_37b8b5488e944ba090175b1a0bbc9e88", "IPY_MODEL_fd8ff74a518549c58dd12c722715b465", "IPY_MODEL_4f71e09d10bc408fa15fd358e3fbd593", "IPY_MODEL_93ce1c4209544623a82a42e06c1d7691", "IPY_MODEL_09a2e9af75ea45b38fc6b5bf7fc6e49a", "IPY_MODEL_b91f860e6244493cb8df225a89aaec54", "IPY_MODEL_816ed413ddd644e1a6288310bb4e8117", "IPY_MODEL_59541ad17e8d41aab0044b15de642c66", "IPY_MODEL_fc3170d534c7423d9b03999c07e5bfd2", "IPY_MODEL_d08ac8658b434c00911403094a7be677", "IPY_MODEL_dd7d0a11092645f1a04487bde4e98892", "IPY_MODEL_0ebdc271cd714a54bb638d1a16096803", "IPY_MODEL_53a6cd3000294eb89566d22aa65ff242", "IPY_MODEL_f2310dcaa408413d87abdf4143061606", "IPY_MODEL_0e3bc254352349a5a40d0a279e34b6df", "IPY_MODEL_d2558203f427406183e9f7cb809abf57", "IPY_MODEL_2dc5ef1b7c834ffe8358a923a7e2d37c", "IPY_MODEL_19e75061c16d49cd804bc25e656e5cde", "IPY_MODEL_9fc0f60b3fcc46229a35b95f51308747", "IPY_MODEL_e3204ecd742b4ef6ac6f6f137f60fb7e", "IPY_MODEL_ec7332df7c914ce58b352290a039ff5b", "IPY_MODEL_e81655529fc5472ab88db06f2af80573", "IPY_MODEL_7ff03997286648e6b57fdc0bb98f567b", "IPY_MODEL_4ba74267c9d44c29bd42ef1e0ac2509b", "IPY_MODEL_175d4b68cb614c7cb902ad42e2150ded", "IPY_MODEL_83ad00da8c8941978f10791724b8280d", "IPY_MODEL_b0f6e602d5274ef98373c24a3eb686f7", "IPY_MODEL_af54e017d61747e7bfe49c302390b9a2", "IPY_MODEL_b4934025a9cb49a7a19ab830b2ea00fb", "IPY_MODEL_5baa2b0b89364d8e807006f0ca762bcf", "IPY_MODEL_68d360835da64aa09701f9655a1abc7f", "IPY_MODEL_d7680a9277e84a2492777a0f0b3192f9", "IPY_MODEL_4d45c747c203498797d9467ceec04526", "IPY_MODEL_1ab19c9207b54991958efb46a442a275", "IPY_MODEL_1a2ac317fced482d90e42bd3920e0092", "IPY_MODEL_e71722e90b33427ba4f42d19bdd522fe", "IPY_MODEL_6ff6731e54ea4022a237f504b6d8bcd7", "IPY_MODEL_02c6d63d2814472195805561c72f8c4a", "IPY_MODEL_c0542c27a996419e987922656d27a2bf", "IPY_MODEL_438802868915419dbb61a6249ab6525b", "IPY_MODEL_f092e1dd8aee4131a7015d58c428cb44", "IPY_MODEL_8d285f4d3fcb41b78364c141c695c5cf", "IPY_MODEL_0d25a4a8b2c641bcab0d61641e9d0061", "IPY_MODEL_fd3ba1b4ba584ad787deb9e8b0a550d8", "IPY_MODEL_d99af61c4ab5492583541062b22b1cd9", "IPY_MODEL_dcd3caa0ca08476a80896ac4ef166a68", "IPY_MODEL_663aa2128a214f5ea28d22d034f23983", "IPY_MODEL_2531febbed32499e9e914dbb9939fd73", "IPY_MODEL_6301f36b48a442e3bcfe503745db6610", "IPY_MODEL_aac46859c7004dc7aedbc9797935e37b", "IPY_MODEL_15309008977c4e57a4dd6caacb9e7767", "IPY_MODEL_6f71af0e96284afdb737c6cf68f5ec79", "IPY_MODEL_52fdc0df30f444178b7e7e1d0fa70088", "IPY_MODEL_eb87ae9e13da47c4896d03a09ae2283e", "IPY_MODEL_379fc560e8844eaa8ec508ffe7911796", "IPY_MODEL_7402d381193b46c38f47a2666f6063f1", "IPY_MODEL_8e256fb2478c4c1fa734e519c3d34961", "IPY_MODEL_59a4f466d874486cb1c8ea1fc48e7f9c", "IPY_MODEL_80b8c38f41b44d4d9a43631603867e79", "IPY_MODEL_b58e5b49ace444d69e4cb74f6dc54041", "IPY_MODEL_1aa8386e770d456e9938e53bb7e6f66f", "IPY_MODEL_783003746ddc4e1e908c968f483ea08d", "IPY_MODEL_717711d5eb3e47ddb436ffb249b9f1a2", "IPY_MODEL_9617a39cce5342dfb773c6773d35ab54", "IPY_MODEL_c07dbb5458e149b98ad35bb1a412e02b", "IPY_MODEL_a3117656bfba49aeb78efeaf0581172e", "IPY_MODEL_18cccd64e8d04f55bf31dd027ba6eb4a", "IPY_MODEL_d850abb94b2d4231997ed0bd04c36e7f", "IPY_MODEL_7a9c1692073d49fab25825598717d8e2", "IPY_MODEL_fe7055ee8f4642e4a74ec4edfdf01301", "IPY_MODEL_e941f375e9684b9291d7eca40703228c", "IPY_MODEL_bcc9e835d82d4a058fe19809ae8cd662", "IPY_MODEL_40b32bf919294d54b50ac7ce32b3a005", "IPY_MODEL_0620bea307b4458aa3b90afa9fefff9a", "IPY_MODEL_82b623388284493089aa6f0eee7b7056", "IPY_MODEL_dc8fbca9992c4eafb3947013b07a4e76", "IPY_MODEL_cf71bc6833e045049dabc40d47df559b", "IPY_MODEL_d1fe47e5b0904c6986197ef7db8c150a", "IPY_MODEL_9ab63cf744894bc8b3aa5f2cbb1a2cbe", "IPY_MODEL_40b31e6cbb2e4e088b96546113faf126", "IPY_MODEL_f964553247e94e5e9aa3377d50337c4c", "IPY_MODEL_5dae0e994de4488591a0461455a344ca", "IPY_MODEL_b4f8843449cd4ff3a502c0c583673ab3", "IPY_MODEL_6b7db9c09fb94dd99a13aaf366ae503c", "IPY_MODEL_ef4203327ac34196b03ef5c4115d73f5", "IPY_MODEL_51e93d93ac6e43baaa5a6dc9040ffe38", "IPY_MODEL_64907b20638c49bd829da0ef1b6bc672", "IPY_MODEL_72b8b45aca1d45a780af73a52c2892a3", "IPY_MODEL_0190f6ef8a974d919d84127ebb92e64b", "IPY_MODEL_d0c141ce8c88407182bb86a3e3ab7c27", "IPY_MODEL_794132f460724812ba1daa3442602074", "IPY_MODEL_7c2021c491d745b09af6664aecc04b1f", "IPY_MODEL_7cb7434cb79d4ff3858d52c9063026a8", "IPY_MODEL_3d327078c38a463a8a36d3a3ca89b2ba", "IPY_MODEL_a1c95b269bf549e3a5d72d0441f9b55f", "IPY_MODEL_ba85b59b7f684430ada9131a49f69eaf", "IPY_MODEL_b5c14a8fbc984141aa5e48363b3dd0e5", "IPY_MODEL_40deccbb6d4a49ffa03b0b22a653e6e5", "IPY_MODEL_eef48057a42f49ce927e53659c7d3d16", "IPY_MODEL_015b51989810430280db6ab0122e3c1e", "IPY_MODEL_9ae763441c384e4b99fb00c65d38874d", "IPY_MODEL_86f59b38fc9e420998033d92f732b9b3", "IPY_MODEL_f46f551faacb4f17ac34c33214ed3dfa", "IPY_MODEL_0c7bacf727164cee883833a787dddef5", "IPY_MODEL_89bda432007043e98b7dc5d17bb6821f", "IPY_MODEL_dea0ec74c3994b57b42c08bdad255a8b", "IPY_MODEL_1ce2614b0132494487ac76c3e0810676", "IPY_MODEL_e56c42c920554d10bd846e7e45d5fbce", "IPY_MODEL_1852b9e6dcd54653acfc2b80e76d7101" ], "layout": "IPY_MODEL_22b1edf85ac948ec9971fa7f1fa8800c", "left": 9007199254740991.0, "max_zoom": null, "min_zoom": null, "modisdate": "2024-09-13", "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_f61972323e2c4638aae3699854864ac9", "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 } }, "6d78fd7d1c2349d386e20233bb66d8df": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "6d7a21f1696249c9b700d36800040965": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "6eac3645e916464d96b9dea1240144f9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "6f71af0e96284afdb737c6cf68f5ec79": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "6ff6731e54ea4022a237f504b6d8bcd7": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "717711d5eb3e47ddb436ffb249b9f1a2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "72b8b45aca1d45a780af73a52c2892a3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "7402d381193b46c38f47a2666f6063f1": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "783003746ddc4e1e908c968f483ea08d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "7913561d67b9468b9f3fbd1d57f0f9fe": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "794132f460724812ba1daa3442602074": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "79d4fcb179714bf1b0d97abb23834045": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "7a9c1692073d49fab25825598717d8e2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "7ae3c421cbec44619ad1421108e14805": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "7c2021c491d745b09af6664aecc04b1f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "7cb7434cb79d4ff3858d52c9063026a8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "7ff03997286648e6b57fdc0bb98f567b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "80b8c38f41b44d4d9a43631603867e79": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "816ed413ddd644e1a6288310bb4e8117": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "81c192b832a54e00ac8a873d9597f23c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "828634c7f0bd408888915f06c15b4a97": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletMapStyleModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab" } }, "82b623388284493089aa6f0eee7b7056": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "83ad00da8c8941978f10791724b8280d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "83ca3ad045a84715b41f8f5cd24958c7": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "86f59b38fc9e420998033d92f732b9b3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "870f0384c4a24592a5fbcf10f757c3de": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "89bda432007043e98b7dc5d17bb6821f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "8d285f4d3fcb41b78364c141c695c5cf": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "8d36653c3d9745048e51082295a48a73": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "8e256fb2478c4c1fa734e519c3d34961": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "8e45098d89b84b4fb7deeb7e672ce679": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "9182163ddcfa4a0eb01e4367eec8c945": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "9184ea9a3d5b420ea98090c097a5cc80": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "920704fec89e4b6ead03343933d17ced": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "93ce1c4209544623a82a42e06c1d7691": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "94edf98ae70944b1837c2107cea7d2b9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "957d9ec9ca9745ce9d30360390a5a0a8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "9617a39cce5342dfb773c6773d35ab54": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "9ab63cf744894bc8b3aa5f2cbb1a2cbe": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "9ae763441c384e4b99fb00c65d38874d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "9f24a600d51e426c9227d6c58896c33c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "9fc0f60b3fcc46229a35b95f51308747": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "a1c95b269bf549e3a5d72d0441f9b55f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "a3117656bfba49aeb78efeaf0581172e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "a3168f5e041841b582c9e827f93a7552": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "a34711b575634d20b85c57589900241d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "a442b49e97594cb5bc1c5053e1dfc7b3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "a9ec091cfa554462816bfba5f73dff76": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletTileLayerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletTileLayerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletTileLayerView", "attribution": "© OpenStreetMap contributors", "base": true, "bottom": true, "bounds": null, "detect_retina": false, "loading": false, "max_native_zoom": null, "max_zoom": 19, "min_native_zoom": null, "min_zoom": 1, "name": "OpenStreetMap.Mapnik", "no_wrap": false, "opacity": 1.0, "options": [ "attribution", "bounds", "detect_retina", "max_native_zoom", "max_zoom", "min_native_zoom", "min_zoom", "no_wrap", "tile_size", "tms", "zoom_offset" ], "pane": "", "popup": null, "popup_max_height": null, "popup_max_width": 300, "popup_min_width": 50, "show_loading": false, "subitems": [], "tile_size": 256, "tms": false, "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", "visible": true, "zoom_offset": 0 } }, "aac46859c7004dc7aedbc9797935e37b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "ac989f28f77348edb2ad412267b9f654": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "af54dd311b41498fb54cf961594172b0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletAttributionControlModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletAttributionControlModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_view_name": "LeafletAttributionControlView", "options": [ "position", "prefix" ], "position": "bottomright", "prefix": "ipyleaflet" } }, "af54e017d61747e7bfe49c302390b9a2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "af956048ce4346418938c105c9942584": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "afe1602bf3d448028a059c23a7283817": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "b0f6e602d5274ef98373c24a3eb686f7": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "b342cc3719a4467a865015d687485b15": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "b4934025a9cb49a7a19ab830b2ea00fb": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "b4f8843449cd4ff3a502c0c583673ab3": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "b58e5b49ace444d69e4cb74f6dc54041": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "b5c14a8fbc984141aa5e48363b3dd0e5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "b91f860e6244493cb8df225a89aaec54": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "ba2935da2b7843f0b97f62493fa0789b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "ba85b59b7f684430ada9131a49f69eaf": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "bb500ab826e64131bd20c34b5a30cc6f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "bc93af65cb5a40428c190999ee357864": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "bcc9e835d82d4a058fe19809ae8cd662": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "bd0a14cc5c1d4114a6aba8184662d154": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "c0542c27a996419e987922656d27a2bf": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "c07dbb5458e149b98ad35bb1a412e02b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "c2e273c01e434f1d84472be762cd3778": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "cebff9779bab4e8294c85c257e9aa6db": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "cf71bc6833e045049dabc40d47df559b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d08ac8658b434c00911403094a7be677": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d0c141ce8c88407182bb86a3e3ab7c27": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d1fe47e5b0904c6986197ef7db8c150a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d2558203f427406183e9f7cb809abf57": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d280206581474468a6bbe3021481c3d4": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d3b70fafc50c4bec9153db5ae74b3b7f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d3dde71b4f3d46aeb0f1686dc21cbf3a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d3ef6be8209b4f918c2f3a34dcd600e7": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d7680a9277e84a2492777a0f0b3192f9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d850abb94b2d4231997ed0bd04c36e7f": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "d99af61c4ab5492583541062b22b1cd9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "da47a99130c24377a92adcd319694542": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "dc8fbca9992c4eafb3947013b07a4e76": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "dcd3caa0ca08476a80896ac4ef166a68": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "dd3a95bae6504f1e821ef8e35af88f11": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "dd6ef868302744d2b531d6f14111d7e6": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "dd7d0a11092645f1a04487bde4e98892": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "ddfead420f14456096c9fcace05107e8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "dea0ec74c3994b57b42c08bdad255a8b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "e3204ecd742b4ef6ac6f6f137f60fb7e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "e56c42c920554d10bd846e7e45d5fbce": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "e612b6dfc3ba43999e301127d275cb4d": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "e71722e90b33427ba4f42d19bdd522fe": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "e81655529fc5472ab88db06f2af80573": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "e941f375e9684b9291d7eca40703228c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "eb87ae9e13da47c4896d03a09ae2283e": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "ec7332df7c914ce58b352290a039ff5b": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "eef48057a42f49ce927e53659c7d3d16": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "ef4203327ac34196b03ef5c4115d73f5": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f092e1dd8aee4131a7015d58c428cb44": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f119e0ce0d814a74b1d00ac7a269d0b1": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f1ccbf73e4464766a8bde66537342ef0": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f2310dcaa408413d87abdf4143061606": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f46f551faacb4f17ac34c33214ed3dfa": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f4be6d5eec5343d1895a69db24884a43": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f61972323e2c4638aae3699854864ac9": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletMapStyleModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletMapStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "cursor": "grab" } }, "f73e31a5d1ff470b85ba15a07e0584fa": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f785cf7c240843d98555676c03c28045": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "f964553247e94e5e9aa3377d50337c4c": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "fc3170d534c7423d9b03999c07e5bfd2": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "fd3ba1b4ba584ad787deb9e8b0a550d8": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "fd8ff74a518549c58dd12c722715b465": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "fe7055ee8f4642e4a74ec4edfdf01301": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } }, "ff8507ee3b9f4bd993e05885e711662a": { "model_module": "jupyter-leaflet", "model_module_version": "^0.19", "model_name": "LeafletCircleMarkerModel", "state": { "_model_module": "jupyter-leaflet", "_model_module_version": "^0.19", "_model_name": "LeafletCircleMarkerModel", "_view_count": null, "_view_module": "jupyter-leaflet", "_view_module_version": "^0.19", "_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 } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }