Skip to content

Instantly share code, notes, and snippets.

@eedrummer
Created October 11, 2019 16:02
Show Gist options
  • Save eedrummer/8d226fe5f7d106f9594889df1075fcfb to your computer and use it in GitHub Desktop.
Save eedrummer/8d226fe5f7d106f9594889df1075fcfb to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
"from ipyleaflet import Map, Marker\n",
"import geocoder\n",
"import time"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(34491, 47)"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"demographics = pd.read_csv(\"/Users/andrewg/projects/synthea/src/main/resources/geography/demographics.csv\")\n",
"demographics.shape"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(87114, 7)"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"existing_zips = pd.read_csv(\"/Users/andrewg/projects/synthea/src/main/resources/geography/zipcodes.csv\", dtype={'ZCTA5': 'str'})\n",
"existing_zips.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The exisiting zip codes file has 87114 rows in it. The demographics file has 34491 cities/states.\n"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(87102, 7)"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"existing_zips.drop_duplicates().shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The existing zip code file has 12 exact duplicates in the file\n",
"\n",
"Next, we'll check the integrity of the existing files by building DataFrames of just city and state names from both. This is how the look up happens in code."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(45841, 2)"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ez_city_state = existing_zips[['USPS', 'NAME']].drop_duplicates()\n",
"demo_city_state = demographics[['STNAME', 'NAME']].drop_duplicates()\n",
"ez_city_state.shape"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(28442, 2)"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"demo_city_state.shape"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(17399, 4)"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"demo_ez = ez_city_state.merge(demo_city_state, how='outer', left_on=['USPS', 'NAME'], right_on=['STNAME', 'NAME'], indicator=True)\n",
"demo_ez[demo_ez._merge == 'left_only'].shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"After building a DataFrame that is an outer join on the demographics city and state combinations we can see that the zip code file has 17399 city and state combinations that do not appear in the demographics file. From the Synthea code base, these are essentially dead.\n",
"\n",
"We can now create a DataFrame based on the zip code file, but with only cities and states that appear in the demographics file."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"merged_zip = demo_city_state.merge(existing_zips.drop_duplicates(), how='outer', right_on=['USPS', 'NAME'], left_on=['STNAME', 'NAME'], indicator=True)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(60034, 6)"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"in_demo_file = merged_zip[merged_zip._merge == 'both'][['NAME', 'USPS', 'ST', 'ZCTA5', 'LAT', 'LON']]\n",
"in_demo_file.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The resulting DataFrame will contain rows only for matches against the demographic file and does not have any exact duplicates. It will still contain entries without a zip code."
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>NAME</th>\n",
" <th>USPS</th>\n",
" <th>ST</th>\n",
" <th>ZCTA5</th>\n",
" <th>LAT</th>\n",
" <th>LON</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Abbeville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>NaN</td>\n",
" <td>31.596562</td>\n",
" <td>-85.304308</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Abbeville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>36310</td>\n",
" <td>31.595148</td>\n",
" <td>-85.208852</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Adamsville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Adamsville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35060</td>\n",
" <td>33.557750</td>\n",
" <td>-86.951726</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Adamsville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35062</td>\n",
" <td>33.724920</td>\n",
" <td>-87.010252</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" NAME USPS ST ZCTA5 LAT LON\n",
"0 Abbeville Alabama AL NaN 31.596562 -85.304308\n",
"1 Abbeville Alabama AL 36310 31.595148 -85.208852\n",
"2 Adamsville Alabama AL 35005 33.595950 -87.000649\n",
"3 Adamsville Alabama AL 35060 33.557750 -86.951726\n",
"4 Adamsville Alabama AL 35062 33.724920 -87.010252"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"in_demo_file.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"First, let's look at cities with zip codes."
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"filtered_zip = in_demo_file[in_demo_file.ZCTA5.notna()]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now let's load up the zip code gazetteer from the US Census - https://www2.census.gov/geo/docs/maps-data/data/gazetteer/2019_Gazetteer/2019_Gaz_zcta_national.zip"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"zip_g = pd.read_csv(\"/Users/andrewg/Downloads/2019_Gaz_zcta_national.txt\", encoding='latin-1', dtype={'GEOID': 'str'}, sep='\\t').rename(columns={'GEOID': 'ZCTA5', 'INTPTLAT': 'LAT', 'INTPTLONG': 'LON'})"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>ZCTA5</th>\n",
" <th>ALAND</th>\n",
" <th>AWATER</th>\n",
" <th>ALAND_SQMI</th>\n",
" <th>AWATER_SQMI</th>\n",
" <th>LAT</th>\n",
" <th>LON</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>00601</td>\n",
" <td>166659747</td>\n",
" <td>799292</td>\n",
" <td>64.348</td>\n",
" <td>0.309</td>\n",
" <td>18.180555</td>\n",
" <td>-66.749961</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>00602</td>\n",
" <td>79307534</td>\n",
" <td>4428428</td>\n",
" <td>30.621</td>\n",
" <td>1.710</td>\n",
" <td>18.361945</td>\n",
" <td>-67.175597</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>00603</td>\n",
" <td>81887188</td>\n",
" <td>181412</td>\n",
" <td>31.617</td>\n",
" <td>0.070</td>\n",
" <td>18.455183</td>\n",
" <td>-67.119887</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>00606</td>\n",
" <td>109579993</td>\n",
" <td>12487</td>\n",
" <td>42.309</td>\n",
" <td>0.005</td>\n",
" <td>18.158327</td>\n",
" <td>-66.932928</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>00610</td>\n",
" <td>93013428</td>\n",
" <td>4172059</td>\n",
" <td>35.913</td>\n",
" <td>1.611</td>\n",
" <td>18.294032</td>\n",
" <td>-67.127156</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" ZCTA5 ALAND AWATER ALAND_SQMI AWATER_SQMI LAT LON\n",
"0 00601 166659747 799292 64.348 0.309 18.180555 -66.749961\n",
"1 00602 79307534 4428428 30.621 1.710 18.361945 -67.175597\n",
"2 00603 81887188 181412 31.617 0.070 18.455183 -67.119887\n",
"3 00606 109579993 12487 42.309 0.005 18.158327 -66.932928\n",
"4 00610 93013428 4172059 35.913 1.611 18.294032 -67.127156"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"zip_g.head()"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"33144"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"zip_g.ZCTA5.nunique()"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"23445"
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"filtered_zip.ZCTA5.nunique()"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"count 23445.000000\n",
"mean 1.535423\n",
"std 1.038375\n",
"min 1.000000\n",
"25% 1.000000\n",
"50% 1.000000\n",
"75% 2.000000\n",
"max 23.000000\n",
"Name: NAME, dtype: float64"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"filtered_zip.groupby('ZCTA5').count().NAME.describe()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The gazetteer has 33144 unique zip codes. The filtered set from the zip codes file has 23445. The majority represent a single city. Some are present for more than one city as a zip code can be split across multiple cities. The largest example of this is `63121` which is somewhere in/near St. Louis. Searching the web on this code appears to verify that this is correct."
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"count 20223.000000\n",
"mean 1.780052\n",
"std 3.157737\n",
"min 1.000000\n",
"25% 1.000000\n",
"50% 1.000000\n",
"75% 2.000000\n",
"max 214.000000\n",
"Name: ZCTA5, dtype: float64"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"filtered_zip.groupby(['NAME', 'USPS']).count().ZCTA5.describe()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Most cities have a single zip code. Larger cities have many. New York City leads the count with 214.\n",
"\n",
"Now we can merge the filtered zip code DataFrame with the Gazetteer to check the accuracy of the existing zip code file."
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>NAME</th>\n",
" <th>USPS</th>\n",
" <th>ST</th>\n",
" <th>ZCTA5</th>\n",
" <th>LAT_x</th>\n",
" <th>LON_x</th>\n",
" <th>LAT_y</th>\n",
" <th>LON_y</th>\n",
" <th>_merge</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Abbeville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>36310</td>\n",
" <td>31.595148</td>\n",
" <td>-85.208852</td>\n",
" <td>31.595139</td>\n",
" <td>-85.208847</td>\n",
" <td>both</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Adamsville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>both</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Birmingham</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>both</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Graysville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>both</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Maytown</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>both</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" NAME USPS ST ZCTA5 LAT_x LON_x LAT_y LON_y \\\n",
"0 Abbeville Alabama AL 36310 31.595148 -85.208852 31.595139 -85.208847 \n",
"1 Adamsville Alabama AL 35005 33.595950 -87.000649 33.595950 -87.000649 \n",
"2 Birmingham Alabama AL 35005 33.595950 -87.000649 33.595950 -87.000649 \n",
"3 Graysville Alabama AL 35005 33.595950 -87.000649 33.595950 -87.000649 \n",
"4 Maytown Alabama AL 35005 33.595950 -87.000649 33.595950 -87.000649 \n",
"\n",
" _merge \n",
"0 both \n",
"1 both \n",
"2 both \n",
"3 both \n",
"4 both "
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merged_with_gaz = filtered_zip.merge(zip_g[['ZCTA5', 'LAT', 'LON']], how='outer', on='ZCTA5', indicator=True)\n",
"merged_with_gaz[merged_with_gaz._merge == 'both'].head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"After performing the merge, we can look for zip codes that exist in Synthea, but not in the Gazetteer:"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>NAME</th>\n",
" <th>USPS</th>\n",
" <th>ST</th>\n",
" <th>ZCTA5</th>\n",
" <th>LAT_x</th>\n",
" <th>LON_x</th>\n",
" <th>LAT_y</th>\n",
" <th>LON_y</th>\n",
" <th>_merge</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2422</th>\n",
" <td>Southside</td>\n",
" <td>Arkansas</td>\n",
" <td>AR</td>\n",
" <td>72501.0</td>\n",
" <td>35.698836</td>\n",
" <td>-91.623393</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>left_only</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2514</th>\n",
" <td>Alpine County</td>\n",
" <td>California</td>\n",
" <td>CA</td>\n",
" <td>96120.0</td>\n",
" <td>38.684002</td>\n",
" <td>-119.822738</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>left_only</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3547</th>\n",
" <td>Jurupa Valley</td>\n",
" <td>California</td>\n",
" <td>CA</td>\n",
" <td>92509.0</td>\n",
" <td>33.996667</td>\n",
" <td>-117.485358</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>left_only</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3837</th>\n",
" <td>Mariposa County</td>\n",
" <td>California</td>\n",
" <td>CA</td>\n",
" <td>95338.0</td>\n",
" <td>37.464995</td>\n",
" <td>-119.995226</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>left_only</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4339</th>\n",
" <td>Trinity County</td>\n",
" <td>California</td>\n",
" <td>CA</td>\n",
" <td>96093.0</td>\n",
" <td>40.946884</td>\n",
" <td>-122.812172</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>left_only</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" NAME USPS ST ZCTA5 LAT_x LON_x LAT_y \\\n",
"2422 Southside Arkansas AR 72501.0 35.698836 -91.623393 NaN \n",
"2514 Alpine County California CA 96120.0 38.684002 -119.822738 NaN \n",
"3547 Jurupa Valley California CA 92509.0 33.996667 -117.485358 NaN \n",
"3837 Mariposa County California CA 95338.0 37.464995 -119.995226 NaN \n",
"4339 Trinity County California CA 96093.0 40.946884 -122.812172 NaN \n",
"\n",
" LON_y _merge \n",
"2422 NaN left_only \n",
"2514 NaN left_only \n",
"3547 NaN left_only \n",
"3837 NaN left_only \n",
"4339 NaN left_only "
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merged_with_gaz[(merged_with_gaz._merge == 'left_only') & (merged_with_gaz.ZCTA5.notna())].head()"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(59, 9)"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merged_with_gaz[(merged_with_gaz._merge == 'left_only') & (merged_with_gaz.ZCTA5.notna())].shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"There happens to be 59 rows in the existing zip code file where the zip code has .0 added to the end of the code. We can clean that up and re-merge."
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [],
"source": [
"in_demo_file.ZCTA5 = in_demo_file.ZCTA5.str.replace('\\.0', '')\n",
"filtered_zip = in_demo_file[in_demo_file.ZCTA5.notna()]"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0, 9)"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merged_with_gaz = filtered_zip.merge(zip_g[['ZCTA5', 'LAT', 'LON']], how='outer', on='ZCTA5', indicator=True)\n",
"merged_with_gaz[(merged_with_gaz._merge == 'left_only') & (merged_with_gaz.ZCTA5.notna())].shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This fixed the issues with those rows. Now we can check the existing file against the Gazetteer by looking at the differences in lat/lon:"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [],
"source": [
"merged_with_gaz['lat_diff'] = merged_with_gaz.LAT_x - merged_with_gaz.LAT_y\n",
"merged_with_gaz['lon_diff'] = merged_with_gaz.LON_x - merged_with_gaz.LON_y"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"count 35998.000000\n",
"mean 0.000123\n",
"std 0.016812\n",
"min -0.857257\n",
"25% 0.000000\n",
"50% 0.000000\n",
"75% 0.000000\n",
"max 1.050104\n",
"Name: lat_diff, dtype: float64"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merged_with_gaz['lat_diff'].describe()"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"count 35998.000000\n",
"mean 0.000952\n",
"std 0.024304\n",
"min -1.463312\n",
"25% 0.000000\n",
"50% 0.000000\n",
"75% 0.000000\n",
"max 1.358265\n",
"Name: lon_diff, dtype: float64"
]
},
"execution_count": 25,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merged_with_gaz['lon_diff'].describe()"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(286, 11)"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merged_with_gaz[(np.absolute(merged_with_gaz.lon_diff) > 0.1) | (np.absolute(merged_with_gaz.lat_diff) > 0.1)].shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The Gazetteer is largely in agreement with the existing file. The vast majority of zip codes have no change in lat/lon. There are only 286 cases where the difference is greater than 0.1 absolute degrees of either latitude or longitude. A small selection of these are listed below:"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>NAME</th>\n",
" <th>USPS</th>\n",
" <th>ST</th>\n",
" <th>ZCTA5</th>\n",
" <th>LAT_x</th>\n",
" <th>LON_x</th>\n",
" <th>LAT_y</th>\n",
" <th>LON_y</th>\n",
" <th>_merge</th>\n",
" <th>lat_diff</th>\n",
" <th>lon_diff</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>156</th>\n",
" <td>Athens</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35614</td>\n",
" <td>34.853722</td>\n",
" <td>-86.990112</td>\n",
" <td>34.875919</td>\n",
" <td>-87.229253</td>\n",
" <td>both</td>\n",
" <td>-0.022197</td>\n",
" <td>0.239141</td>\n",
" </tr>\n",
" <tr>\n",
" <th>195</th>\n",
" <td>Bakerhill</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>36027</td>\n",
" <td>32.060643</td>\n",
" <td>-85.116624</td>\n",
" <td>31.822420</td>\n",
" <td>-85.378527</td>\n",
" <td>both</td>\n",
" <td>0.238223</td>\n",
" <td>0.261903</td>\n",
" </tr>\n",
" <tr>\n",
" <th>196</th>\n",
" <td>Eufaula</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>36027</td>\n",
" <td>32.060643</td>\n",
" <td>-85.116624</td>\n",
" <td>31.822420</td>\n",
" <td>-85.378527</td>\n",
" <td>both</td>\n",
" <td>0.238223</td>\n",
" <td>0.261903</td>\n",
" </tr>\n",
" <tr>\n",
" <th>535</th>\n",
" <td>Cullman</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35057</td>\n",
" <td>34.180462</td>\n",
" <td>-86.934257</td>\n",
" <td>33.969944</td>\n",
" <td>-86.944303</td>\n",
" <td>both</td>\n",
" <td>0.210518</td>\n",
" <td>0.010046</td>\n",
" </tr>\n",
" <tr>\n",
" <th>536</th>\n",
" <td>Dodge City</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35057</td>\n",
" <td>34.180462</td>\n",
" <td>-86.934257</td>\n",
" <td>33.969944</td>\n",
" <td>-86.944303</td>\n",
" <td>both</td>\n",
" <td>0.210518</td>\n",
" <td>0.010046</td>\n",
" </tr>\n",
" <tr>\n",
" <th>537</th>\n",
" <td>Good Hope</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35057</td>\n",
" <td>34.180462</td>\n",
" <td>-86.934257</td>\n",
" <td>33.969944</td>\n",
" <td>-86.944303</td>\n",
" <td>both</td>\n",
" <td>0.210518</td>\n",
" <td>0.010046</td>\n",
" </tr>\n",
" <tr>\n",
" <th>538</th>\n",
" <td>West Point</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35057</td>\n",
" <td>34.180462</td>\n",
" <td>-86.934257</td>\n",
" <td>33.969944</td>\n",
" <td>-86.944303</td>\n",
" <td>both</td>\n",
" <td>0.210518</td>\n",
" <td>0.010046</td>\n",
" </tr>\n",
" <tr>\n",
" <th>671</th>\n",
" <td>Fort Payne</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35968</td>\n",
" <td>34.551098</td>\n",
" <td>-85.738915</td>\n",
" <td>34.382994</td>\n",
" <td>-85.803307</td>\n",
" <td>both</td>\n",
" <td>0.168104</td>\n",
" <td>0.064392</td>\n",
" </tr>\n",
" <tr>\n",
" <th>672</th>\n",
" <td>Henagar</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35968</td>\n",
" <td>34.551098</td>\n",
" <td>-85.738915</td>\n",
" <td>34.382994</td>\n",
" <td>-85.803307</td>\n",
" <td>both</td>\n",
" <td>0.168104</td>\n",
" <td>0.064392</td>\n",
" </tr>\n",
" <tr>\n",
" <th>673</th>\n",
" <td>Pine Ridge</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35968</td>\n",
" <td>34.551098</td>\n",
" <td>-85.738915</td>\n",
" <td>34.382994</td>\n",
" <td>-85.803307</td>\n",
" <td>both</td>\n",
" <td>0.168104</td>\n",
" <td>0.064392</td>\n",
" </tr>\n",
" <tr>\n",
" <th>674</th>\n",
" <td>Rainsville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35968</td>\n",
" <td>34.551098</td>\n",
" <td>-85.738915</td>\n",
" <td>34.382994</td>\n",
" <td>-85.803307</td>\n",
" <td>both</td>\n",
" <td>0.168104</td>\n",
" <td>0.064392</td>\n",
" </tr>\n",
" <tr>\n",
" <th>675</th>\n",
" <td>Sylvania</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35968</td>\n",
" <td>34.551098</td>\n",
" <td>-85.738915</td>\n",
" <td>34.382994</td>\n",
" <td>-85.803307</td>\n",
" <td>both</td>\n",
" <td>0.168104</td>\n",
" <td>0.064392</td>\n",
" </tr>\n",
" <tr>\n",
" <th>713</th>\n",
" <td>Gadsden</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35905</td>\n",
" <td>33.961400</td>\n",
" <td>-85.922422</td>\n",
" <td>33.856532</td>\n",
" <td>-85.912603</td>\n",
" <td>both</td>\n",
" <td>0.104868</td>\n",
" <td>-0.009819</td>\n",
" </tr>\n",
" <tr>\n",
" <th>714</th>\n",
" <td>Glencoe</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35905</td>\n",
" <td>33.961400</td>\n",
" <td>-85.922422</td>\n",
" <td>33.856532</td>\n",
" <td>-85.912603</td>\n",
" <td>both</td>\n",
" <td>0.104868</td>\n",
" <td>-0.009819</td>\n",
" </tr>\n",
" <tr>\n",
" <th>715</th>\n",
" <td>Hokes Bluff</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35905</td>\n",
" <td>33.961400</td>\n",
" <td>-85.922422</td>\n",
" <td>33.856532</td>\n",
" <td>-85.912603</td>\n",
" <td>both</td>\n",
" <td>0.104868</td>\n",
" <td>-0.009819</td>\n",
" </tr>\n",
" <tr>\n",
" <th>716</th>\n",
" <td>Southside</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35905</td>\n",
" <td>33.961400</td>\n",
" <td>-85.922422</td>\n",
" <td>33.856532</td>\n",
" <td>-85.912603</td>\n",
" <td>both</td>\n",
" <td>0.104868</td>\n",
" <td>-0.009819</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1072</th>\n",
" <td>Akhiok</td>\n",
" <td>Alaska</td>\n",
" <td>AK</td>\n",
" <td>99615</td>\n",
" <td>57.650481</td>\n",
" <td>-153.261105</td>\n",
" <td>57.682717</td>\n",
" <td>-153.378849</td>\n",
" <td>both</td>\n",
" <td>-0.032236</td>\n",
" <td>0.117744</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1073</th>\n",
" <td>Kodiak</td>\n",
" <td>Alaska</td>\n",
" <td>AK</td>\n",
" <td>99615</td>\n",
" <td>57.650481</td>\n",
" <td>-153.261105</td>\n",
" <td>57.682717</td>\n",
" <td>-153.378849</td>\n",
" <td>both</td>\n",
" <td>-0.032236</td>\n",
" <td>0.117744</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1074</th>\n",
" <td>Larsen Bay</td>\n",
" <td>Alaska</td>\n",
" <td>AK</td>\n",
" <td>99615</td>\n",
" <td>57.650481</td>\n",
" <td>-153.261105</td>\n",
" <td>57.682717</td>\n",
" <td>-153.378849</td>\n",
" <td>both</td>\n",
" <td>-0.032236</td>\n",
" <td>0.117744</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1079</th>\n",
" <td>Aleknagik</td>\n",
" <td>Alaska</td>\n",
" <td>AK</td>\n",
" <td>99576</td>\n",
" <td>60.261108</td>\n",
" <td>-159.092876</td>\n",
" <td>60.274057</td>\n",
" <td>-158.668434</td>\n",
" <td>both</td>\n",
" <td>-0.012949</td>\n",
" <td>-0.424442</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" NAME USPS ST ZCTA5 LAT_x LON_x LAT_y \\\n",
"156 Athens Alabama AL 35614 34.853722 -86.990112 34.875919 \n",
"195 Bakerhill Alabama AL 36027 32.060643 -85.116624 31.822420 \n",
"196 Eufaula Alabama AL 36027 32.060643 -85.116624 31.822420 \n",
"535 Cullman Alabama AL 35057 34.180462 -86.934257 33.969944 \n",
"536 Dodge City Alabama AL 35057 34.180462 -86.934257 33.969944 \n",
"537 Good Hope Alabama AL 35057 34.180462 -86.934257 33.969944 \n",
"538 West Point Alabama AL 35057 34.180462 -86.934257 33.969944 \n",
"671 Fort Payne Alabama AL 35968 34.551098 -85.738915 34.382994 \n",
"672 Henagar Alabama AL 35968 34.551098 -85.738915 34.382994 \n",
"673 Pine Ridge Alabama AL 35968 34.551098 -85.738915 34.382994 \n",
"674 Rainsville Alabama AL 35968 34.551098 -85.738915 34.382994 \n",
"675 Sylvania Alabama AL 35968 34.551098 -85.738915 34.382994 \n",
"713 Gadsden Alabama AL 35905 33.961400 -85.922422 33.856532 \n",
"714 Glencoe Alabama AL 35905 33.961400 -85.922422 33.856532 \n",
"715 Hokes Bluff Alabama AL 35905 33.961400 -85.922422 33.856532 \n",
"716 Southside Alabama AL 35905 33.961400 -85.922422 33.856532 \n",
"1072 Akhiok Alaska AK 99615 57.650481 -153.261105 57.682717 \n",
"1073 Kodiak Alaska AK 99615 57.650481 -153.261105 57.682717 \n",
"1074 Larsen Bay Alaska AK 99615 57.650481 -153.261105 57.682717 \n",
"1079 Aleknagik Alaska AK 99576 60.261108 -159.092876 60.274057 \n",
"\n",
" LON_y _merge lat_diff lon_diff \n",
"156 -87.229253 both -0.022197 0.239141 \n",
"195 -85.378527 both 0.238223 0.261903 \n",
"196 -85.378527 both 0.238223 0.261903 \n",
"535 -86.944303 both 0.210518 0.010046 \n",
"536 -86.944303 both 0.210518 0.010046 \n",
"537 -86.944303 both 0.210518 0.010046 \n",
"538 -86.944303 both 0.210518 0.010046 \n",
"671 -85.803307 both 0.168104 0.064392 \n",
"672 -85.803307 both 0.168104 0.064392 \n",
"673 -85.803307 both 0.168104 0.064392 \n",
"674 -85.803307 both 0.168104 0.064392 \n",
"675 -85.803307 both 0.168104 0.064392 \n",
"713 -85.912603 both 0.104868 -0.009819 \n",
"714 -85.912603 both 0.104868 -0.009819 \n",
"715 -85.912603 both 0.104868 -0.009819 \n",
"716 -85.912603 both 0.104868 -0.009819 \n",
"1072 -153.378849 both -0.032236 0.117744 \n",
"1073 -153.378849 both -0.032236 0.117744 \n",
"1074 -153.378849 both -0.032236 0.117744 \n",
"1079 -158.668434 both -0.012949 -0.424442 "
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merged_with_gaz[(np.absolute(merged_with_gaz.lon_diff) > 0.1) | (np.absolute(merged_with_gaz.lat_diff) > 0.1)].head(20)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"To create the new file, we will use the lat / lon values from the Gatetteer and keep the old values for places without a zip code.\n",
"\n",
"To do this, we will fill in the `LAT_y` and `LON_y` columns where there are null with the values from the original zipcode file. "
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [],
"source": [
"filled_all_values = merged_with_gaz.fillna({'LAT_y': merged_with_gaz.LAT_x, 'LON_y': merged_with_gaz.LON_x})"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>NAME</th>\n",
" <th>USPS</th>\n",
" <th>ST</th>\n",
" <th>ZCTA5</th>\n",
" <th>LAT_x</th>\n",
" <th>LON_x</th>\n",
" <th>LAT_y</th>\n",
" <th>LON_y</th>\n",
" <th>_merge</th>\n",
" <th>lat_diff</th>\n",
" <th>lon_diff</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Abbeville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>36310</td>\n",
" <td>31.595148</td>\n",
" <td>-85.208852</td>\n",
" <td>31.595139</td>\n",
" <td>-85.208847</td>\n",
" <td>both</td>\n",
" <td>0.000009</td>\n",
" <td>-0.000005</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Adamsville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>both</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Birmingham</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>both</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Graysville</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>both</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Maytown</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" <td>both</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" NAME USPS ST ZCTA5 LAT_x LON_x LAT_y LON_y \\\n",
"0 Abbeville Alabama AL 36310 31.595148 -85.208852 31.595139 -85.208847 \n",
"1 Adamsville Alabama AL 35005 33.595950 -87.000649 33.595950 -87.000649 \n",
"2 Birmingham Alabama AL 35005 33.595950 -87.000649 33.595950 -87.000649 \n",
"3 Graysville Alabama AL 35005 33.595950 -87.000649 33.595950 -87.000649 \n",
"4 Maytown Alabama AL 35005 33.595950 -87.000649 33.595950 -87.000649 \n",
"\n",
" _merge lat_diff lon_diff \n",
"0 both 0.000009 -0.000005 \n",
"1 both 0.000000 0.000000 \n",
"2 both 0.000000 0.000000 \n",
"3 both 0.000000 0.000000 \n",
"4 both 0.000000 0.000000 "
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"filled_all_values.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, we can prepare the DataFrame of cities with zip codes for export by dropping the columns we no longer need and renaming columns so they match the correct zip code file format."
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>USPS</th>\n",
" <th>ST</th>\n",
" <th>NAME</th>\n",
" <th>ZCTA5</th>\n",
" <th>LAT</th>\n",
" <th>LON</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Abbeville</td>\n",
" <td>36310</td>\n",
" <td>31.595139</td>\n",
" <td>-85.208847</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Adamsville</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Birmingham</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Graysville</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Maytown</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Mulga</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Sylvan Springs</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Adamsville</td>\n",
" <td>35060</td>\n",
" <td>33.559629</td>\n",
" <td>-86.953465</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Adamsville</td>\n",
" <td>35062</td>\n",
" <td>33.724920</td>\n",
" <td>-87.010252</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Dora</td>\n",
" <td>35062</td>\n",
" <td>33.724920</td>\n",
" <td>-87.010252</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" USPS ST NAME ZCTA5 LAT LON\n",
"0 Alabama AL Abbeville 36310 31.595139 -85.208847\n",
"1 Alabama AL Adamsville 35005 33.595950 -87.000649\n",
"2 Alabama AL Birmingham 35005 33.595950 -87.000649\n",
"3 Alabama AL Graysville 35005 33.595950 -87.000649\n",
"4 Alabama AL Maytown 35005 33.595950 -87.000649\n",
"5 Alabama AL Mulga 35005 33.595950 -87.000649\n",
"6 Alabama AL Sylvan Springs 35005 33.595950 -87.000649\n",
"7 Alabama AL Adamsville 35060 33.559629 -86.953465\n",
"8 Alabama AL Adamsville 35062 33.724920 -87.010252\n",
"9 Alabama AL Dora 35062 33.724920 -87.010252"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"only_needed_columns = filled_all_values[filled_all_values._merge == 'both'].drop(columns=['LAT_x', 'LON_x', '_merge', 'lat_diff', 'lon_diff'])\n",
"zip_export_df = only_needed_columns.rename(columns={'LAT_y': 'LAT', 'LON_y': 'LON'})\n",
"zip_export_df = zip_export_df[['USPS', 'ST', 'NAME', 'ZCTA5', 'LAT', 'LON']]\n",
"zip_export_df.head(10)"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(35998, 6)"
]
},
"execution_count": 31,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"zip_export_df.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, let's work on the cities without zip codes. This attempts to check / fix cities with no zip code using the [US Census National Places Gazetteer File](https://www2.census.gov/geo/docs/maps-data/data/gazetteer/2019_Gazetteer/2019_Gaz_place_national.zip)"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [],
"source": [
"no_zip = in_demo_file[in_demo_file.ZCTA5.isnull()]"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(24036, 6)"
]
},
"execution_count": 33,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"no_zip.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"One thing that is a problem with the existing zip code file is that there are duplicate entries for cities with no zip code that have differing lat / lon values."
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>NAME</th>\n",
" <th>USPS</th>\n",
" <th>ST</th>\n",
" <th>ZCTA5</th>\n",
" <th>LAT</th>\n",
" <th>LON</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>1168</th>\n",
" <td>Tallassee</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>NaN</td>\n",
" <td>32.512019</td>\n",
" <td>-85.985882</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1169</th>\n",
" <td>Tallassee</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>NaN</td>\n",
" <td>32.623945</td>\n",
" <td>-85.809392</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1892</th>\n",
" <td>St. Johns</td>\n",
" <td>Arizona</td>\n",
" <td>AZ</td>\n",
" <td>NaN</td>\n",
" <td>34.455877</td>\n",
" <td>-109.399306</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1893</th>\n",
" <td>St. Johns</td>\n",
" <td>Arizona</td>\n",
" <td>AZ</td>\n",
" <td>NaN</td>\n",
" <td>33.263248</td>\n",
" <td>-112.116361</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2029</th>\n",
" <td>Beaver</td>\n",
" <td>Arkansas</td>\n",
" <td>AR</td>\n",
" <td>NaN</td>\n",
" <td>36.470907</td>\n",
" <td>-93.801892</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2030</th>\n",
" <td>Beaver</td>\n",
" <td>Arkansas</td>\n",
" <td>AR</td>\n",
" <td>NaN</td>\n",
" <td>34.719002</td>\n",
" <td>-92.587489</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2050</th>\n",
" <td>Benton</td>\n",
" <td>Arkansas</td>\n",
" <td>AR</td>\n",
" <td>NaN</td>\n",
" <td>35.320424</td>\n",
" <td>-92.228274</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2051</th>\n",
" <td>Benton</td>\n",
" <td>Arkansas</td>\n",
" <td>AR</td>\n",
" <td>NaN</td>\n",
" <td>36.372923</td>\n",
" <td>-91.846359</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2067</th>\n",
" <td>Black Oak</td>\n",
" <td>Arkansas</td>\n",
" <td>AR</td>\n",
" <td>NaN</td>\n",
" <td>35.777038</td>\n",
" <td>-90.353510</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2068</th>\n",
" <td>Black Oak</td>\n",
" <td>Arkansas</td>\n",
" <td>AR</td>\n",
" <td>NaN</td>\n",
" <td>35.388468</td>\n",
" <td>-90.423326</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" NAME USPS ST ZCTA5 LAT LON\n",
"1168 Tallassee Alabama AL NaN 32.512019 -85.985882\n",
"1169 Tallassee Alabama AL NaN 32.623945 -85.809392\n",
"1892 St. Johns Arizona AZ NaN 34.455877 -109.399306\n",
"1893 St. Johns Arizona AZ NaN 33.263248 -112.116361\n",
"2029 Beaver Arkansas AR NaN 36.470907 -93.801892\n",
"2030 Beaver Arkansas AR NaN 34.719002 -92.587489\n",
"2050 Benton Arkansas AR NaN 35.320424 -92.228274\n",
"2051 Benton Arkansas AR NaN 36.372923 -91.846359\n",
"2067 Black Oak Arkansas AR NaN 35.777038 -90.353510\n",
"2068 Black Oak Arkansas AR NaN 35.388468 -90.423326"
]
},
"execution_count": 34,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"no_zip_dupes = no_zip[no_zip.duplicated(subset=['USPS', 'ST', 'NAME'], keep=False)]\n",
"no_zip_dupes.head(10)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Load the national place gazetteer from the US Census."
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {},
"outputs": [],
"source": [
"place_g = pd.read_csv(\"/Users/andrewg/Downloads/2019_Gaz_place_national.txt\", encoding='latin-1', dtype={'GEOID': 'str'}, sep='\\t')"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>USPS</th>\n",
" <th>GEOID</th>\n",
" <th>ANSICODE</th>\n",
" <th>NAME</th>\n",
" <th>LSAD</th>\n",
" <th>FUNCSTAT</th>\n",
" <th>ALAND</th>\n",
" <th>AWATER</th>\n",
" <th>ALAND_SQMI</th>\n",
" <th>AWATER_SQMI</th>\n",
" <th>INTPTLAT</th>\n",
" <th>INTPTLONG</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>AL</td>\n",
" <td>0100100</td>\n",
" <td>2582661</td>\n",
" <td>Abanda CDP</td>\n",
" <td>57</td>\n",
" <td>S</td>\n",
" <td>7764034</td>\n",
" <td>34284</td>\n",
" <td>2.998</td>\n",
" <td>0.013</td>\n",
" <td>33.091627</td>\n",
" <td>-85.527029</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>AL</td>\n",
" <td>0100124</td>\n",
" <td>2403054</td>\n",
" <td>Abbeville city</td>\n",
" <td>25</td>\n",
" <td>A</td>\n",
" <td>40255362</td>\n",
" <td>107642</td>\n",
" <td>15.543</td>\n",
" <td>0.042</td>\n",
" <td>31.564689</td>\n",
" <td>-85.259124</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>AL</td>\n",
" <td>0100460</td>\n",
" <td>2403063</td>\n",
" <td>Adamsville city</td>\n",
" <td>25</td>\n",
" <td>A</td>\n",
" <td>65193211</td>\n",
" <td>14122</td>\n",
" <td>25.171</td>\n",
" <td>0.005</td>\n",
" <td>33.605748</td>\n",
" <td>-86.974649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>AL</td>\n",
" <td>0100484</td>\n",
" <td>2405123</td>\n",
" <td>Addison town</td>\n",
" <td>43</td>\n",
" <td>A</td>\n",
" <td>9753293</td>\n",
" <td>83417</td>\n",
" <td>3.766</td>\n",
" <td>0.032</td>\n",
" <td>34.202681</td>\n",
" <td>-87.178004</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>AL</td>\n",
" <td>0100676</td>\n",
" <td>2405125</td>\n",
" <td>Akron town</td>\n",
" <td>43</td>\n",
" <td>A</td>\n",
" <td>1776163</td>\n",
" <td>13849</td>\n",
" <td>0.686</td>\n",
" <td>0.005</td>\n",
" <td>32.879495</td>\n",
" <td>-87.741679</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" USPS GEOID ANSICODE NAME LSAD FUNCSTAT ALAND AWATER \\\n",
"0 AL 0100100 2582661 Abanda CDP 57 S 7764034 34284 \n",
"1 AL 0100124 2403054 Abbeville city 25 A 40255362 107642 \n",
"2 AL 0100460 2403063 Adamsville city 25 A 65193211 14122 \n",
"3 AL 0100484 2405123 Addison town 43 A 9753293 83417 \n",
"4 AL 0100676 2405125 Akron town 43 A 1776163 13849 \n",
"\n",
" ALAND_SQMI AWATER_SQMI INTPTLAT INTPTLONG \n",
"0 2.998 0.013 33.091627 -85.527029 \n",
"1 15.543 0.042 31.564689 -85.259124 \n",
"2 25.171 0.005 33.605748 -86.974649 \n",
"3 3.766 0.032 34.202681 -87.178004 \n",
"4 0.686 0.005 32.879495 -87.741679 "
]
},
"execution_count": 36,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"place_g.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Clean up the place names by removing \"city\", \"CDP\" and \"town\"."
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
"place_g['NAME'] = place_g['NAME'].str.replace('city', '').str.replace('CDP', '').str.replace('town', '').str.rstrip()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The first line in the next cell is a little crazy. First, we get a DataFrame of all the duplicates. The problem is that the `duplicated` function doesn't have a nice way to be used to pull a single instance of duplicates. So the DataFrame that is returned can still have duplicate cities if there are 3 or more duplicates. That DataFrame is reduced to just city and state and the duplicates of that are dropped, which should give us the set of cities without zip codes that have multiple entries with conflicting lat / lon."
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {},
"outputs": [],
"source": [
"no_zip_dupes = no_zip[no_zip.duplicated(subset=['USPS', 'ST', 'NAME'])][['USPS', 'ST', 'NAME']].drop_duplicates()\n",
"merge_with_place = no_zip_dupes.merge(place_g[['USPS', 'NAME', 'INTPTLAT', 'INTPTLONG']], how='outer', left_on=['ST', 'NAME'], right_on=['USPS', 'NAME'], indicator=True)"
]
},
{
"cell_type": "code",
"execution_count": 39,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(2734, 3)"
]
},
"execution_count": 39,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"no_zip_dupes.shape"
]
},
{
"cell_type": "code",
"execution_count": 40,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(1428, 7)"
]
},
"execution_count": 40,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merge_with_place[merge_with_place._merge == 'both'].shape"
]
},
{
"cell_type": "code",
"execution_count": 41,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(1322, 7)"
]
},
"execution_count": 41,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"merge_with_place[merge_with_place._merge == 'left_only'].shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"There are 2734 unique cities in the zip code file that have conflicting lat / lon. Merging those with the place gazetteer will resolve 1428 with definitive lat / lon. There are 1322 without a match in the place file."
]
},
{
"cell_type": "code",
"execution_count": 42,
"metadata": {},
"outputs": [],
"source": [
"cities_with_no_zip_and_place = merge_with_place[merge_with_place._merge == 'left_only'].drop(columns=['_merge'])"
]
},
{
"cell_type": "code",
"execution_count": 43,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>USPS_x</th>\n",
" <th>ST</th>\n",
" <th>NAME</th>\n",
" <th>USPS_y</th>\n",
" <th>INTPTLAT</th>\n",
" <th>INTPTLONG</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>22</th>\n",
" <td>Arkansas</td>\n",
" <td>AR</td>\n",
" <td>Lake</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>53</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Ash Grove</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>55</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Banner</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>57</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Blue Mound</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>58</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Brooklyn</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>59</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Browning</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>60</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Burton</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>62</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Cincinnati</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>63</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Clayton</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>64</th>\n",
" <td>Illinois</td>\n",
" <td>IL</td>\n",
" <td>Concord</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" USPS_x ST NAME USPS_y INTPTLAT INTPTLONG\n",
"22 Arkansas AR Lake NaN NaN NaN\n",
"53 Illinois IL Ash Grove NaN NaN NaN\n",
"55 Illinois IL Banner NaN NaN NaN\n",
"57 Illinois IL Blue Mound NaN NaN NaN\n",
"58 Illinois IL Brooklyn NaN NaN NaN\n",
"59 Illinois IL Browning NaN NaN NaN\n",
"60 Illinois IL Burton NaN NaN NaN\n",
"62 Illinois IL Cincinnati NaN NaN NaN\n",
"63 Illinois IL Clayton NaN NaN NaN\n",
"64 Illinois IL Concord NaN NaN NaN"
]
},
"execution_count": 43,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"cities_with_no_zip_and_place.head(10)"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {},
"outputs": [],
"source": [
"any_with_matching_zip = cities_with_no_zip_and_place.merge(zip_export_df[['ST', 'NAME']], how=\"left\", on=['ST', 'NAME'], indicator=True)"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(839, 7)"
]
},
"execution_count": 45,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"any_with_matching_zip[any_with_matching_zip._merge == 'left_only'].shape"
]
},
{
"cell_type": "code",
"execution_count": 46,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(483, 7)"
]
},
"execution_count": 46,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"any_with_matching_zip[any_with_matching_zip._merge == 'both'].drop_duplicates().shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Of the 1322 cities that do not have a corresponding place, 483 have an existing row with a zip code. Since the data is conflicting and we are unable to verify it, it seems best to drop these from the new data set. The remaining 839 cities represent places that exist in the demographics file, do not have a row with a zip code, could not be matched to the place gazetteer and have multiple rows with conflicting zip codes.\n",
"\n",
"Moving on to the remaining 839 without a corresponding zip code, let's look at them by population."
]
},
{
"cell_type": "code",
"execution_count": 47,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>ST</th>\n",
" <th>NAME</th>\n",
" <th>POPESTIMATE2015</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>919</th>\n",
" <td>NJ</td>\n",
" <td>Hamilton</td>\n",
" <td>89030</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1037</th>\n",
" <td>OH</td>\n",
" <td>Colerain</td>\n",
" <td>58838</td>\n",
" </tr>\n",
" <tr>\n",
" <th>931</th>\n",
" <td>NJ</td>\n",
" <td>Union</td>\n",
" <td>58128</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1428</th>\n",
" <td>PA</td>\n",
" <td>Millcreek</td>\n",
" <td>54003</td>\n",
" </tr>\n",
" <tr>\n",
" <th>925</th>\n",
" <td>NJ</td>\n",
" <td>Monroe</td>\n",
" <td>44141</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" ST NAME POPESTIMATE2015\n",
"919 NJ Hamilton 89030\n",
"1037 OH Colerain 58838\n",
"931 NJ Union 58128\n",
"1428 PA Millcreek 54003\n",
"925 NJ Monroe 44141"
]
},
"execution_count": 47,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"any_with_matching_zip[any_with_matching_zip._merge == 'left_only'].merge(demographics, how='left', left_on=['USPS_x', 'NAME'], right_on=['STNAME', 'NAME']).sort_values('POPESTIMATE2015', ascending=False)[['ST', 'NAME', 'POPESTIMATE2015']].head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's plot the points for the top 3 places on a map to see how things look."
]
},
{
"cell_type": "code",
"execution_count": 48,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "938fb4e336a845ffa34565eea4c5a1a9",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map(basemap={'url': 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', 'max_zoom': 19, 'attribution': 'Map …"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"h_df = existing_zips[(existing_zips.ST == 'NJ') & (existing_zips.NAME == 'Hamilton')]\n",
"center = (h_df.LAT.mean(), h_df.LON.mean())\n",
"\n",
"m = Map(center=center, zoom=8)\n",
"\n",
"for row in h_df.itertuples():\n",
" m.add_layer(Marker(location=(row.LAT,row.LON), draggable=False))\n",
"\n",
"m"
]
},
{
"cell_type": "code",
"execution_count": 49,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d93ad83d352b48d2b254b9d709eb4651",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map(basemap={'url': 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', 'max_zoom': 19, 'attribution': 'Map …"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"c_df = existing_zips[(existing_zips.ST == 'OH') & (existing_zips.NAME == 'Colerain')]\n",
"center = (c_df.LAT.mean(), c_df.LON.mean())\n",
"\n",
"m = Map(center=center, zoom=8)\n",
"\n",
"for row in c_df.itertuples():\n",
" m.add_layer(Marker(location=(row.LAT,row.LON), draggable=False))\n",
"\n",
"m"
]
},
{
"cell_type": "code",
"execution_count": 50,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "b340bd83cd1e4502a3eadf0ebf6f786f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map(basemap={'url': 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', 'max_zoom': 19, 'attribution': 'Map …"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"u_df = existing_zips[(existing_zips.ST == 'NJ') & (existing_zips.NAME == 'Union')]\n",
"center = (u_df.LAT.mean(), u_df.LON.mean())\n",
"\n",
"m = Map(center=center, zoom=10)\n",
"\n",
"for row in u_df.itertuples():\n",
" m.add_layer(Marker(location=(row.LAT,row.LON), draggable=False))\n",
"\n",
"m"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Unfortunately, in our top three cases, things are wrong. There appears to be a point that makes sense and then points that very much do not make sense.\n",
"\n",
"We can use a geocoder to try to sort some of this out. In this case, I'll limit the geocoder to look only at cities with more than 18900 people. This cutoff was chosen because this is where the data starts to get messy. The first town under that threshold in the zip code file is Park, MI. I could not find this town through simple web search. "
]
},
{
"cell_type": "code",
"execution_count": 51,
"metadata": {},
"outputs": [],
"source": [
"sorted_by_pop = any_with_matching_zip[any_with_matching_zip._merge == 'left_only'].merge(demographics, how='left', left_on=['USPS_x', 'NAME'], right_on=['STNAME', 'NAME']).sort_values('POPESTIMATE2015', ascending=False)[['ST', 'NAME', 'STNAME','POPESTIMATE2015']]\n",
"to_code = sorted_by_pop[sorted_by_pop.POPESTIMATE2015 > 18900]"
]
},
{
"cell_type": "code",
"execution_count": 52,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>ST</th>\n",
" <th>NAME</th>\n",
" <th>STNAME</th>\n",
" <th>POPESTIMATE2015</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>919</th>\n",
" <td>NJ</td>\n",
" <td>Hamilton</td>\n",
" <td>New Jersey</td>\n",
" <td>89030</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1037</th>\n",
" <td>OH</td>\n",
" <td>Colerain</td>\n",
" <td>Ohio</td>\n",
" <td>58838</td>\n",
" </tr>\n",
" <tr>\n",
" <th>931</th>\n",
" <td>NJ</td>\n",
" <td>Union</td>\n",
" <td>New Jersey</td>\n",
" <td>58128</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1428</th>\n",
" <td>PA</td>\n",
" <td>Millcreek</td>\n",
" <td>Pennsylvania</td>\n",
" <td>54003</td>\n",
" </tr>\n",
" <tr>\n",
" <th>925</th>\n",
" <td>NJ</td>\n",
" <td>Monroe</td>\n",
" <td>New Jersey</td>\n",
" <td>44141</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" ST NAME STNAME POPESTIMATE2015\n",
"919 NJ Hamilton New Jersey 89030\n",
"1037 OH Colerain Ohio 58838\n",
"931 NJ Union New Jersey 58128\n",
"1428 PA Millcreek Pennsylvania 54003\n",
"925 NJ Monroe New Jersey 44141"
]
},
"execution_count": 52,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"to_code.head()"
]
},
{
"cell_type": "code",
"execution_count": 53,
"metadata": {},
"outputs": [],
"source": [
"to_code = to_code[['ST', 'NAME', 'STNAME']].drop_duplicates()"
]
},
{
"cell_type": "code",
"execution_count": 54,
"metadata": {},
"outputs": [],
"source": [
"coded_items = []\n",
"for row in to_code.itertuples():\n",
" state = row.ST\n",
" city = row.NAME\n",
" state_name = row.STNAME\n",
" g = geocoder.osm(f'{city}, {state}')\n",
" coded_items.append({'ST': state, 'NAME': city, 'LAT': g.y, 'LON': g.x, 'STNAME': state_name, 'confidence': g.confidence})\n",
" time.sleep(2)"
]
},
{
"cell_type": "code",
"execution_count": 55,
"metadata": {},
"outputs": [],
"source": [
"coded_df = pd.DataFrame.from_records(coded_items)"
]
},
{
"cell_type": "code",
"execution_count": 56,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>ST</th>\n",
" <th>NAME</th>\n",
" <th>LAT</th>\n",
" <th>LON</th>\n",
" <th>STNAME</th>\n",
" <th>confidence</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>NJ</td>\n",
" <td>Hamilton</td>\n",
" <td>40.207057</td>\n",
" <td>-74.081251</td>\n",
" <td>New Jersey</td>\n",
" <td>6</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>OH</td>\n",
" <td>Colerain</td>\n",
" <td>40.125904</td>\n",
" <td>-80.808697</td>\n",
" <td>Ohio</td>\n",
" <td>6</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>NJ</td>\n",
" <td>Union</td>\n",
" <td>40.665225</td>\n",
" <td>-74.304528</td>\n",
" <td>New Jersey</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>PA</td>\n",
" <td>Millcreek</td>\n",
" <td>42.101078</td>\n",
" <td>-80.020708</td>\n",
" <td>Pennsylvania</td>\n",
" <td>2</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>NJ</td>\n",
" <td>Monroe</td>\n",
" <td>40.812878</td>\n",
" <td>-74.442376</td>\n",
" <td>New Jersey</td>\n",
" <td>6</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" ST NAME LAT LON STNAME confidence\n",
"0 NJ Hamilton 40.207057 -74.081251 New Jersey 6\n",
"1 OH Colerain 40.125904 -80.808697 Ohio 6\n",
"2 NJ Union 40.665225 -74.304528 New Jersey 1\n",
"3 PA Millcreek 42.101078 -80.020708 Pennsylvania 2\n",
"4 NJ Monroe 40.812878 -74.442376 New Jersey 6"
]
},
"execution_count": 56,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"coded_df.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, let's start to check and clean up all of the cities with no zip codes and duplicate entries in the zip code file. First let's look at the ones with a matching place. We can see how their existing lat/lon values compare to the ones in the gazetteer. We had to drop the lat/lon to find the duplicates, so now we need to merge the original lat/lon values back in:"
]
},
{
"cell_type": "code",
"execution_count": 57,
"metadata": {},
"outputs": [],
"source": [
"no_original_lat_lon = merge_with_place[merge_with_place._merge == 'both'].drop(columns=['_merge', 'USPS_y']).rename(columns={'USPS_x': 'USPS'})\n",
"original_lat_lon = no_zip[no_zip.duplicated(subset=['USPS', 'ST', 'NAME'], keep=False)]\n",
"dupes_with_both_lat_lon = original_lat_lon.merge(no_original_lat_lon, how='inner', on=['USPS', 'ST', 'NAME'], indicator=True)"
]
},
{
"cell_type": "code",
"execution_count": 58,
"metadata": {},
"outputs": [],
"source": [
"dupes_with_both_lat_lon['lat_diff'] = dupes_with_both_lat_lon.LAT - dupes_with_both_lat_lon.INTPTLAT\n",
"dupes_with_both_lat_lon['lon_diff'] = dupes_with_both_lat_lon.LON - dupes_with_both_lat_lon.INTPTLONG"
]
},
{
"cell_type": "code",
"execution_count": 59,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"count 4299.000000\n",
"mean -0.081105\n",
"std 1.386245\n",
"min -6.471268\n",
"25% -0.088025\n",
"50% 0.000000\n",
"75% 0.047225\n",
"max 6.479795\n",
"Name: lon_diff, dtype: float64"
]
},
"execution_count": 59,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"dupes_with_both_lat_lon.lon_diff.describe()"
]
},
{
"cell_type": "code",
"execution_count": 60,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"count 4299.000000\n",
"mean 0.130407\n",
"std 0.891109\n",
"min -4.591193\n",
"25% -0.025385\n",
"50% 0.000000\n",
"75% 0.191900\n",
"max 4.439422\n",
"Name: lat_diff, dtype: float64"
]
},
"execution_count": 60,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"dupes_with_both_lat_lon.lat_diff.describe()"
]
},
{
"cell_type": "code",
"execution_count": 61,
"metadata": {},
"outputs": [],
"source": [
"cities_with_reasonable_points = dupes_with_both_lat_lon[(np.absolute(dupes_with_both_lat_lon.lat_diff) < 0.1) | (np.absolute(dupes_with_both_lat_lon.lon_diff) < 0.1)][['ST', 'NAME']].drop_duplicates()"
]
},
{
"cell_type": "code",
"execution_count": 62,
"metadata": {},
"outputs": [],
"source": [
"flag_for_no_reasonable = dupes_with_both_lat_lon.drop(columns=['_merge']).merge(cities_with_reasonable_points, how='left', indicator=True)"
]
},
{
"cell_type": "code",
"execution_count": 63,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(76, 2)"
]
},
"execution_count": 63,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"flag_for_no_reasonable[flag_for_no_reasonable._merge == 'left_only'][['ST', 'NAME']].drop_duplicates().shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"With duplicate cities that have a matching place in the gazetteer, we find much more messy data. We will keep all rows from the existing zip code file that are less than 0.1 degrees different for both lat and lon. Throwing out the rest leaves us with 76 cities that do not have an entry in the zip code file. For these cities, we will just take the entry in the place gazetteer. We can now build a DataFrame that is ready for export for all cities that had no zip code, but multiple entries in the zip code file."
]
},
{
"cell_type": "code",
"execution_count": 64,
"metadata": {},
"outputs": [],
"source": [
"geocoded_export_df = coded_df.drop(columns=['confidence']).rename(columns={'STNAME': 'USPS'})\n",
"geocoded_export_df['ZCTA5'] = np.nan\n",
"geocoded_export_df = geocoded_export_df[['USPS', 'ST', 'NAME', 'ZCTA5', 'LAT', 'LON']]\n",
"reasonable_places_export_df = dupes_with_both_lat_lon[(np.absolute(dupes_with_both_lat_lon.lat_diff) < 0.1) | (np.absolute(dupes_with_both_lat_lon.lon_diff) < 0.1)]\n",
"reasonable_places_export_df = reasonable_places_export_df.drop(columns=['INTPTLAT', 'INTPTLONG', '_merge', 'lat_diff', 'lon_diff'])\n",
"reasonable_places_export_df = reasonable_places_export_df[['USPS', 'ST', 'NAME', 'ZCTA5', 'LAT', 'LON']]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Getting the \"messy\" duplicate cities with no zip code and no place and less than 18900 residents is somewhat tricky because it contains entries for parts of cities that were geocoded, so we need to remove those."
]
},
{
"cell_type": "code",
"execution_count": 65,
"metadata": {},
"outputs": [],
"source": [
"low_pop_leave_alone = sorted_by_pop[sorted_by_pop.POPESTIMATE2015 < 18900]\n",
"low_pop_leave_alone = low_pop_leave_alone.merge(coded_df, how='outer', on=['ST', 'NAME', 'STNAME'], indicator=True)\n",
"low_pop_leave_alone = low_pop_leave_alone[low_pop_leave_alone._merge == 'left_only'][['ST', 'NAME', 'STNAME']].drop_duplicates()\n",
"low_pop_leave_alone = low_pop_leave_alone.merge(existing_zips, how='inner', left_on=['ST', 'NAME', 'STNAME'], right_on=['ST', 'NAME', 'USPS'], indicator=True)\n",
"low_pop_leave_alone = low_pop_leave_alone.drop(columns=['Unnamed: 0', '_merge'])\n",
"low_pop_export_df = low_pop_leave_alone[['USPS', 'ST', 'NAME', 'ZCTA5', 'LAT', 'LON']]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now get the last 76 cities with no reasonable existing points and pull locations from the place gazetteer"
]
},
{
"cell_type": "code",
"execution_count": 66,
"metadata": {},
"outputs": [],
"source": [
"no_reasonable_points = flag_for_no_reasonable[flag_for_no_reasonable._merge == 'left_only'][['ST', 'NAME', 'USPS']].drop_duplicates()\n",
"backfill = no_reasonable_points.merge(place_g, how='inner', left_on=['ST', 'NAME'], right_on=['USPS', 'NAME'])\n",
"backfill = backfill[['USPS_x', 'ST', 'NAME', 'INTPTLAT', 'INTPTLONG']]\n",
"backfill['ZCTA5'] = np.nan\n",
"backfill_export_df = backfill.rename(columns={'USPS_x': 'USPS', 'INTPTLAT': 'LAT', 'INTPTLONG': 'LON'})[['USPS', 'ST', 'NAME', 'ZCTA5', 'LAT', 'LON']]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now create the DataFrame for all rows representing cities without a zip code that had multiple entries in the original zip code file"
]
},
{
"cell_type": "code",
"execution_count": 67,
"metadata": {},
"outputs": [],
"source": [
"multi_no_zip_export_df = pd.concat([geocoded_export_df, reasonable_places_export_df, low_pop_export_df, backfill_export_df])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we can look at places in the zip code file that have only a single row, but no zip code."
]
},
{
"cell_type": "code",
"execution_count": 68,
"metadata": {},
"outputs": [],
"source": [
"non_dupes = no_zip[~no_zip.duplicated(subset=['USPS', 'ST', 'NAME'], keep=False)]"
]
},
{
"cell_type": "code",
"execution_count": 69,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(15671, 6)"
]
},
"execution_count": 69,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"non_dupes.shape"
]
},
{
"cell_type": "code",
"execution_count": 70,
"metadata": {},
"outputs": [],
"source": [
"non_with_place = non_dupes.merge(place_g[['USPS', 'NAME', 'INTPTLAT', 'INTPTLONG']], how='outer', left_on=['ST', 'NAME'], right_on=['USPS', 'NAME'], indicator=True)"
]
},
{
"cell_type": "code",
"execution_count": 71,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(6122, 10)"
]
},
"execution_count": 71,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"non_with_place[non_with_place._merge == 'both'].shape"
]
},
{
"cell_type": "code",
"execution_count": 72,
"metadata": {},
"outputs": [],
"source": [
"non_with_place['lat_diff'] = non_with_place.LAT - non_with_place.INTPTLAT\n",
"non_with_place['lon_diff'] = non_with_place.LON - non_with_place.INTPTLONG"
]
},
{
"cell_type": "code",
"execution_count": 73,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"count 6122.000000\n",
"mean 0.010262\n",
"std 0.297057\n",
"min -4.317369\n",
"25% -0.012250\n",
"50% 0.000000\n",
"75% 0.015475\n",
"max 4.954432\n",
"Name: lat_diff, dtype: float64"
]
},
"execution_count": 73,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"non_with_place.lat_diff.describe()"
]
},
{
"cell_type": "code",
"execution_count": 74,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"count 6122.000000\n",
"mean -0.009884\n",
"std 0.429038\n",
"min -5.993643\n",
"25% -0.018097\n",
"50% 0.000000\n",
"75% 0.015364\n",
"max 5.523079\n",
"Name: lon_diff, dtype: float64"
]
},
"execution_count": 74,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"non_with_place.lon_diff.describe()"
]
},
{
"cell_type": "code",
"execution_count": 75,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(819, 12)"
]
},
"execution_count": 75,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"non_with_place[(np.absolute(non_with_place.lat_diff) > 0.1) | (np.absolute(non_with_place.lon_diff) > 0.1)].shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This data appears to be less messy than the previous data set. The mean difference is fairly small. There are 819 cases where the data is off by more than 0.1. We can use the gazetter lat / lon for these places. Next, we can look at the entries that do not have a match in the place gazetteer. First we will eliminate those that have an row in the zip code file with a zip code"
]
},
{
"cell_type": "code",
"execution_count": 76,
"metadata": {},
"outputs": [],
"source": [
"no_zip_no_place_singles = non_with_place[non_with_place._merge == 'left_only'].drop(columns='_merge')\n",
"no_zip_no_place_singles = no_zip_no_place_singles.merge(zip_export_df, how='outer', left_on=['ST', 'NAME', 'USPS_x'], right_on=['ST', 'NAME', 'USPS'], indicator=True)"
]
},
{
"cell_type": "code",
"execution_count": 77,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(7344, 16)"
]
},
"execution_count": 77,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"no_zip_no_place_singles[no_zip_no_place_singles._merge == 'left_only'].shape"
]
},
{
"cell_type": "code",
"execution_count": 78,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(2223, 3)"
]
},
"execution_count": 78,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"no_zip_no_place_singles[no_zip_no_place_singles._merge == 'both'][['ST', 'NAME', 'USPS']].drop_duplicates().shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We have 7344 cities that have only a single entry in the zip code file with out a zip code and no corresponding entry with a zip code. 2223 have existing matches in the zip code file."
]
},
{
"cell_type": "code",
"execution_count": 79,
"metadata": {},
"outputs": [],
"source": [
"nznpnm = no_zip_no_place_singles[no_zip_no_place_singles._merge == 'left_only']"
]
},
{
"cell_type": "code",
"execution_count": 80,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>NAME</th>\n",
" <th>USPS_x</th>\n",
" <th>ID</th>\n",
" <th>COUNTY</th>\n",
" <th>STNAME</th>\n",
" <th>POPESTIMATE2015</th>\n",
" <th>CTYNAME</th>\n",
" <th>TOT_POP</th>\n",
" <th>TOT_MALE</th>\n",
" <th>TOT_FEMALE</th>\n",
" <th>...</th>\n",
" <th>35..50</th>\n",
" <th>50..75</th>\n",
" <th>75..100</th>\n",
" <th>100..150</th>\n",
" <th>150..200</th>\n",
" <th>200..999</th>\n",
" <th>LESS_THAN_HS</th>\n",
" <th>HS_DEGREE</th>\n",
" <th>SOME_COLLEGE</th>\n",
" <th>BS_DEGREE</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>109</th>\n",
" <td>Honolulu</td>\n",
" <td>Hawaii</td>\n",
" <td>3301</td>\n",
" <td>3</td>\n",
" <td>Hawaii</td>\n",
" <td>998714</td>\n",
" <td>Honolulu County</td>\n",
" <td>998714</td>\n",
" <td>0.508581</td>\n",
" <td>0.491419</td>\n",
" <td>...</td>\n",
" <td>0.12</td>\n",
" <td>0.18</td>\n",
" <td>0.13</td>\n",
" <td>0.16</td>\n",
" <td>0.06</td>\n",
" <td>0.07</td>\n",
" <td>0.07</td>\n",
" <td>0.28</td>\n",
" <td>0.52</td>\n",
" <td>0.11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6786</th>\n",
" <td>Henrico County</td>\n",
" <td>Virginia</td>\n",
" <td>31776</td>\n",
" <td>87</td>\n",
" <td>Virginia</td>\n",
" <td>325155</td>\n",
" <td>Henrico County</td>\n",
" <td>325155</td>\n",
" <td>0.472190</td>\n",
" <td>0.527810</td>\n",
" <td>...</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>108</th>\n",
" <td>Augusta</td>\n",
" <td>Georgia</td>\n",
" <td>3169</td>\n",
" <td>245</td>\n",
" <td>Georgia</td>\n",
" <td>197182</td>\n",
" <td>Richmond County</td>\n",
" <td>201793</td>\n",
" <td>0.484754</td>\n",
" <td>0.515246</td>\n",
" <td>...</td>\n",
" <td>0.15</td>\n",
" <td>0.15</td>\n",
" <td>0.08</td>\n",
" <td>0.06</td>\n",
" <td>0.02</td>\n",
" <td>0.01</td>\n",
" <td>0.20</td>\n",
" <td>0.35</td>\n",
" <td>0.34</td>\n",
" <td>0.09</td>\n",
" </tr>\n",
" <tr>\n",
" <th>107</th>\n",
" <td>Athens</td>\n",
" <td>Georgia</td>\n",
" <td>2805</td>\n",
" <td>59</td>\n",
" <td>Georgia</td>\n",
" <td>122604</td>\n",
" <td>Clarke County</td>\n",
" <td>123912</td>\n",
" <td>0.475450</td>\n",
" <td>0.524550</td>\n",
" <td>...</td>\n",
" <td>0.12</td>\n",
" <td>0.13</td>\n",
" <td>0.07</td>\n",
" <td>0.07</td>\n",
" <td>0.02</td>\n",
" <td>0.03</td>\n",
" <td>0.02</td>\n",
" <td>0.22</td>\n",
" <td>0.61</td>\n",
" <td>0.14</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3652</th>\n",
" <td>Edison</td>\n",
" <td>New Jersey</td>\n",
" <td>18663</td>\n",
" <td>23</td>\n",
" <td>New Jersey</td>\n",
" <td>102701</td>\n",
" <td>Middlesex County</td>\n",
" <td>840900</td>\n",
" <td>0.492243</td>\n",
" <td>0.507757</td>\n",
" <td>...</td>\n",
" <td>0.08</td>\n",
" <td>0.15</td>\n",
" <td>0.13</td>\n",
" <td>0.22</td>\n",
" <td>0.11</td>\n",
" <td>0.12</td>\n",
" <td>0.09</td>\n",
" <td>0.21</td>\n",
" <td>0.45</td>\n",
" <td>0.23</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>5 rows × 48 columns</p>\n",
"</div>"
],
"text/plain": [
" NAME USPS_x ID COUNTY STNAME POPESTIMATE2015 \\\n",
"109 Honolulu Hawaii 3301 3 Hawaii 998714 \n",
"6786 Henrico County Virginia 31776 87 Virginia 325155 \n",
"108 Augusta Georgia 3169 245 Georgia 197182 \n",
"107 Athens Georgia 2805 59 Georgia 122604 \n",
"3652 Edison New Jersey 18663 23 New Jersey 102701 \n",
"\n",
" CTYNAME TOT_POP TOT_MALE TOT_FEMALE ... 35..50 50..75 \\\n",
"109 Honolulu County 998714 0.508581 0.491419 ... 0.12 0.18 \n",
"6786 Henrico County 325155 0.472190 0.527810 ... NaN NaN \n",
"108 Richmond County 201793 0.484754 0.515246 ... 0.15 0.15 \n",
"107 Clarke County 123912 0.475450 0.524550 ... 0.12 0.13 \n",
"3652 Middlesex County 840900 0.492243 0.507757 ... 0.08 0.15 \n",
"\n",
" 75..100 100..150 150..200 200..999 LESS_THAN_HS HS_DEGREE \\\n",
"109 0.13 0.16 0.06 0.07 0.07 0.28 \n",
"6786 NaN NaN NaN NaN NaN NaN \n",
"108 0.08 0.06 0.02 0.01 0.20 0.35 \n",
"107 0.07 0.07 0.02 0.03 0.02 0.22 \n",
"3652 0.13 0.22 0.11 0.12 0.09 0.21 \n",
"\n",
" SOME_COLLEGE BS_DEGREE \n",
"109 0.52 0.11 \n",
"6786 NaN NaN \n",
"108 0.34 0.09 \n",
"107 0.61 0.14 \n",
"3652 0.45 0.23 \n",
"\n",
"[5 rows x 48 columns]"
]
},
"execution_count": 80,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"nznpnm[['NAME', 'USPS_x']].merge(demographics, how='left', left_on=['USPS_x', 'NAME'], right_on=['STNAME', 'NAME']).sort_values('POPESTIMATE2015', ascending=False).head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"A quick check by hand of the top entries by population showed these to be reasonable. We will leave them in the file as we have no other way to check them and we would lose information otherwise. It is clear that some of the data in the demographics file could use some updating. The population listed for Honolulu is for the county, not the city.\n",
"\n",
"For those with a matching zip code entry, we can check how close the entry in the existing zip code file is to other entries in the file."
]
},
{
"cell_type": "code",
"execution_count": 81,
"metadata": {},
"outputs": [],
"source": [
"single_with_zip_match = no_zip_no_place_singles[no_zip_no_place_singles._merge == 'both'][['USPS', 'NAME', 'ST', 'ZCTA5_y', 'LAT_x', 'LAT_y', 'LON_x', 'LON_y']]"
]
},
{
"cell_type": "code",
"execution_count": 82,
"metadata": {},
"outputs": [],
"source": [
"single_with_zip_match['lat_diff'] = single_with_zip_match.LAT_x - single_with_zip_match.LAT_y\n",
"single_with_zip_match['lon_diff'] = single_with_zip_match.LON_x - single_with_zip_match.LON_y"
]
},
{
"cell_type": "code",
"execution_count": 83,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(115, 2)"
]
},
"execution_count": 83,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"single_with_zip_match[(np.absolute(single_with_zip_match.lat_diff) > 0.3) | (np.absolute(single_with_zip_match.lon_diff) > 0.3)][['ST', 'NAME']].drop_duplicates().shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"It appears that the vast majority of the cities are within 0.3 degrees of a corresponding record. That's roughly within 18 miles, but obviously highly dependent on the locations of the points. We will keep the points that fall within the threshold.\n",
"\n",
"We can now get the single row, no zip code cities ready for export. "
]
},
{
"cell_type": "code",
"execution_count": 84,
"metadata": {},
"outputs": [],
"source": [
"nwp_close_export = non_with_place[(np.absolute(non_with_place.lat_diff) < 0.1) & (np.absolute(non_with_place.lon_diff) < 0.1)]\n",
"nwp_close_export = nwp_close_export[['USPS_x', 'ST', 'NAME', 'ZCTA5', 'LAT', 'LON']]\n",
"nwp_close_export = nwp_close_export.rename(columns={'USPS_x': 'USPS'})\n",
"nwp_far_export = non_with_place[(np.absolute(non_with_place.lat_diff) > 0.1) | (np.absolute(non_with_place.lon_diff) > 0.1)]\n",
"nwp_far_export = nwp_far_export[['USPS_x', 'ST', 'NAME', 'ZCTA5', 'INTPTLAT', 'INTPTLONG']]\n",
"nwp_far_export = nwp_far_export.rename(columns={'USPS_x': 'USPS', 'INTPTLAT': 'LAT', 'INTPTLONG': 'LON'})\n",
"\n",
"nznpnm_export = nznpnm[['USPS_x', 'ST', 'NAME', 'ZCTA5_x', 'LAT_x', 'LON_x']]\n",
"nznpnm_export = nznpnm_export.rename(columns={'USPS_x': 'USPS', 'ZCTA5_x': 'ZCTA5', 'LAT_x': 'LAT', 'LON_x': 'LON'})\n",
"nznpmut = single_with_zip_match[(np.absolute(single_with_zip_match.lat_diff) < 0.3) & (np.absolute(single_with_zip_match.lon_diff) < 0.3)]\n",
"nznpmut_export = nznpmut[['USPS', 'ST', 'NAME', 'LAT_x', 'LON_x']].drop_duplicates()\n",
"nznpmut_export = nznpmut_export.rename(columns={'LAT_x': 'LAT', 'LON_x': 'LON'})\n",
"nznpmut_export['ZCTA5'] = np.nan\n",
"nznpmut_export = nznpmut_export[['USPS', 'ST', 'NAME', 'ZCTA5', 'LAT', 'LON']]\n",
"\n",
"single_no_zips_export = pd.concat([nwp_close_export, nwp_far_export, nznpnm_export, nznpmut_export])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we can bring all of our export DataFrames together"
]
},
{
"cell_type": "code",
"execution_count": 85,
"metadata": {},
"outputs": [],
"source": [
"full_export_df = pd.concat([zip_export_df, multi_no_zip_export_df, single_no_zips_export]).drop_duplicates()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can apply the correct sort and add the mysterious empty column."
]
},
{
"cell_type": "code",
"execution_count": 86,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th></th>\n",
" <th>USPS</th>\n",
" <th>ST</th>\n",
" <th>NAME</th>\n",
" <th>ZCTA5</th>\n",
" <th>LAT</th>\n",
" <th>LON</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>NaN</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Abbeville</td>\n",
" <td>36310</td>\n",
" <td>31.595139</td>\n",
" <td>-85.208847</td>\n",
" </tr>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>NaN</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Abbeville</td>\n",
" <td>NaN</td>\n",
" <td>31.596562</td>\n",
" <td>-85.304308</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>NaN</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Adamsville</td>\n",
" <td>35005</td>\n",
" <td>33.595950</td>\n",
" <td>-87.000649</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>NaN</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Adamsville</td>\n",
" <td>35060</td>\n",
" <td>33.559629</td>\n",
" <td>-86.953465</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>NaN</td>\n",
" <td>Alabama</td>\n",
" <td>AL</td>\n",
" <td>Adamsville</td>\n",
" <td>35062</td>\n",
" <td>33.724920</td>\n",
" <td>-87.010252</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" USPS ST NAME ZCTA5 LAT LON\n",
"0 NaN Alabama AL Abbeville 36310 31.595139 -85.208847\n",
"0 NaN Alabama AL Abbeville NaN 31.596562 -85.304308\n",
"1 NaN Alabama AL Adamsville 35005 33.595950 -87.000649\n",
"7 NaN Alabama AL Adamsville 35060 33.559629 -86.953465\n",
"8 NaN Alabama AL Adamsville 35062 33.724920 -87.010252"
]
},
"execution_count": 86,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"full_export_df[''] = np.nan\n",
"full_export_df = full_export_df[['', 'USPS', 'ST', 'NAME', 'ZCTA5', 'LAT', 'LON']]\n",
"full_export_df = full_export_df.sort_values(['USPS', 'NAME', 'ZCTA5'])\n",
"full_export_df.head()"
]
},
{
"cell_type": "code",
"execution_count": 87,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(56933, 7)"
]
},
"execution_count": 87,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"full_export_df.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Check for integrity with the demographics file"
]
},
{
"cell_type": "code",
"execution_count": 88,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0, 54)"
]
},
"execution_count": 88,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"check_df = demographics.merge(full_export_df, how='outer', left_on=['STNAME', 'NAME'], right_on=['USPS', 'NAME'], indicator=True)\n",
"check_df[check_df._merge == 'left_only'].shape"
]
},
{
"cell_type": "code",
"execution_count": 89,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0, 54)"
]
},
"execution_count": 89,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"check_df[check_df._merge == 'right_only'].shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The merge shows that there are no cases where there is a row in the demographics file, but no corresponding row in the zip codes and likewise, there is no place in the zip code file, but no row in demographics. We can now look at plots of larger cities to see if it looks OK.\n",
"\n",
"New York City"
]
},
{
"cell_type": "code",
"execution_count": 92,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "daeccdee40024348b853d1cfe6454c4d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map(basemap={'url': 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', 'max_zoom': 19, 'attribution': 'Map …"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"check_df = full_export_df[(full_export_df.ST == 'NY') & (full_export_df.NAME == 'New York')]\n",
"center = (check_df.LAT.mean(), check_df.LON.mean())\n",
"\n",
"m = Map(center=center, zoom=10)\n",
"\n",
"for row in check_df.itertuples():\n",
" m.add_layer(Marker(location=(row.LAT,row.LON), draggable=False))\n",
"\n",
"m"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Los Angeles"
]
},
{
"cell_type": "code",
"execution_count": 94,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e112a9add9ef44469056705b4fd15119",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map(basemap={'url': 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', 'max_zoom': 19, 'attribution': 'Map …"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"check_df = full_export_df[(full_export_df.ST == 'CA') & (full_export_df.NAME == 'Los Angeles')]\n",
"center = (check_df.LAT.mean(), check_df.LON.mean())\n",
"\n",
"m = Map(center=center, zoom=10)\n",
"\n",
"for row in check_df.itertuples():\n",
" m.add_layer(Marker(location=(row.LAT,row.LON), draggable=False))\n",
"\n",
"m"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Denver"
]
},
{
"cell_type": "code",
"execution_count": 95,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bc69eeb7ecf9463fa65f462d6f975bfc",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map(basemap={'url': 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', 'max_zoom': 19, 'attribution': 'Map …"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"check_df = full_export_df[(full_export_df.ST == 'CO') & (full_export_df.NAME == 'Denver')]\n",
"center = (check_df.LAT.mean(), check_df.LON.mean())\n",
"\n",
"m = Map(center=center, zoom=10)\n",
"\n",
"for row in check_df.itertuples():\n",
" m.add_layer(Marker(location=(row.LAT,row.LON), draggable=False))\n",
"\n",
"m"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Boston"
]
},
{
"cell_type": "code",
"execution_count": 96,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a903164ec4bf45c6bd0a4712b688e8af",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map(basemap={'url': 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', 'max_zoom': 19, 'attribution': 'Map …"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"check_df = full_export_df[(full_export_df.ST == 'MA') & (full_export_df.NAME == 'Boston')]\n",
"center = (check_df.LAT.mean(), check_df.LON.mean())\n",
"\n",
"m = Map(center=center, zoom=10)\n",
"\n",
"for row in check_df.itertuples():\n",
" m.add_layer(Marker(location=(row.LAT,row.LON), draggable=False))\n",
"\n",
"m"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Export the file"
]
},
{
"cell_type": "code",
"execution_count": 98,
"metadata": {},
"outputs": [],
"source": [
"full_export_df.to_csv('new_zipcodes.csv', index=False)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"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.7.4"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"00bb0a43bec04f178411ba245c4b1838": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.601261,
-73.761646
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"00f1f2d1427d40f288e567cfcf1e9c30": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
40.6637405,
-74.61702150000002
],
"controls": [
"IPY_MODEL_c5c3402e2b034ad0be08abac9158a0e6",
"IPY_MODEL_dd4263e6d1f545228f14c4549a37c5c6"
],
"default_style": "IPY_MODEL_092319a9abea4afb945a9b825854f28a",
"dragging_style": "IPY_MODEL_a44da4a833a04f929f9fd792ead880f1",
"east": -73.94210815429689,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_21527d79847543999f6bf929017019b4",
"IPY_MODEL_1535b61c674445b5a8c28c152f1b846c",
"IPY_MODEL_0538bb50cf1b49f6a9bb4f6510a864ab"
],
"layout": "IPY_MODEL_a6c9b25c79ef4804bfc0801865504f0a",
"modisdate": "yesterday",
"north": 40.871987756697415,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 40.455307212131494,
"style": "IPY_MODEL_e86a48abc423459c9df2845713101226",
"west": -75.29067993164064,
"zoom": 10
}
},
"010c5790e2344345ae0e8b9fb722140b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"01332d27589347459e31b69aea47498c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.237912,
-118.48230600000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"015e1cc72d084dbe9e4eed81d328d12c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.706004,
-74.008785
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"01ac0576aabf4875ad3f975ad3ffa39c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.621992999999996,
-74.03013399999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"021ad94fb29245fb98dbee094ed14c58": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.114563,
-80.83346999999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"03409ea0991c4bc0a08b3a053c460a4a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.365915,
-71.12217700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"03adec8e824d48a2ad1f3d7a815dac4a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.676626,
-104.96231499999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"03d740e0c5754a3ea786b63be50f65ae": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.974026,
-118.24951000000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"04b220697ab24ebeb78d8eac72f0b88b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.06221,
-118.40196599999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"04bbb4e05aac4a2ba5ad44345f8fb0fc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.137412,
-118.20760700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"050322ab75624d78b338477fff7b610e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0538bb50cf1b49f6a9bb4f6510a864ab": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.695266,
-74.26907800000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"057fbc01b41244e4aa168f99731cd57e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.745979,
-73.95752399999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0621278531c84a6bb3d93259f04965ee": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.744091999999995,
-104.986754
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"065c1924241d4da291e52db3001cb53b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.616009999999996,
-105.069449
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0664f3f1b2dd4b65a324ba88b9444d33": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.752359000000006,
-73.972489
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"06e3d16c51694c8790a0f3ae927b1ce0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletAttributionControlModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"options": [
"position",
"prefix"
],
"position": "bottomright",
"prefix": "Leaflet"
}
},
"07eb6258c6474c6997fb237db3e685a5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.687763000000004,
-104.91133799999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0838028448ec4289aabb90159669928d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"085d4ed03f74456c945c6da316516b04": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"08675c0e248d421990c678fd9a38e62f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.358016,
-71.128608
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"087f99c2883a4f03b9b95cde44758a3c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.138735,
-118.350857
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"08b6e538327a44a0add49ab4250026dd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.011312,
-118.46976200000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"08c70d3ee2cb4624ade65864832258a4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.854746,
-104.69580400000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"092319a9abea4afb945a9b825854f28a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"0944b1e65bdc4a4fb6754736479f985f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.230854,
-118.36585600000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"09c2c03e78244a808fbe347ecae7971a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"0a2f8c9da219491499bfac49d26ebfaf": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.481603,
-74.73740699999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0bcb912179a54b118dd8ee5f3663faf9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.706581,
-104.96575
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0bddfd2d915f4e9b93942f34be018e7b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.676434,
-73.84446700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0befe479e6e646f994c0ea58b62038ba": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.725581,
-73.998078
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0c47d9e44ffb4b439c10fb019ba442bb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.754647999999996,
-73.97477099999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0c58350b6c1a46caa8ede81e663568ad": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"0cb6ddc071004c8789c037fd0a49e511": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.281486,
-118.556005
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0d0442f187ae47d9ad72d67bd223d162": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.629884999999994,
-74.17413
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0d21128712fc4c7cace2700ffdada8c3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.739104,
-73.982455
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0e385ed5802142829e994e67d68ac68e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.424961,
-82.799892
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0e9b32cbf66646cbbcd68467b613cf3e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.552684,
-73.924526
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0f4b1177a4d043b688ad205993c35b08": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.847394,
-73.840583
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0f820372a073492089fa7043c5111e7c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.660065,
-73.736012
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0fc4f858de0743788d046940bfae7f6c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.177310999999996,
-118.61570400000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"0ff15af918034424bda5fddde8dc7a5f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.694025,
-73.736223
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"102cb3c1a1614f0fb746c3dfc8c10029": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletZoomControlModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"options": [
"position",
"zoom_in_text",
"zoom_in_title",
"zoom_out_text",
"zoom_out_title"
]
}
},
"1070713073564fc6a42e63f70bd31d1d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.363174,
-71.068646
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1082e366a1064e3c8f8a0766ad37da76": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.785129,
-73.810037
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"10f7cd71074e48df96fc0f4cf6bcd9e8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.799904,
-118.29866100000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"10f96e76293c4db694d22b9d75b05cfe": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.045405,
-118.240454
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"11496b1264644071bb643f766302b4b0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.695266,
-74.26907800000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1179a5986f854ed8b6fa721781cf8b2b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1184d7d0da644c8790520296abe0d0cf": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.147149,
-118.463365
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"13a4669ececc47778148c8ea1700d204": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.819841,
-118.222378
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"13bedd23ae794486838caba44820830f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.155097,
-118.54755300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"152206166aca40e684d6ac36fa0f94c5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"1535b61c674445b5a8c28c152f1b846c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.632215,
-74.964965
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"16b055ae70b54d16a5350bdf6320c7ea": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.361984,
-71.04795899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"175bc7c13bef46f2905b94272055fcb6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.698151,
-73.786912
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"17aa67f51d214b75957f36b55b4156f0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.15404,
-118.593153
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"17be0a49f5264d64a92ec14b09deb26e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.379657,
-71.061487
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1810b84e62cd4e0d91bcae0a111b6b80": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.798452000000005,
-73.974414
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"184501b114684586bf59de5b7c78cb53": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.065975,
-118.238642
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"18a180ea79314a71ad9af7a46b232e7a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.829556,
-73.86931
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"19a26df473c8489da293ac94120144c0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.75031,
-73.992979
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1a15a00a99474dcda238eec5bce0f396": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.238208,
-118.55028999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1b40a0430ab6407d9e7034b12fcf5e33": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.324028999999996,
-71.08501700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1b78b27860bb4f6bb7f0ca85e6b9e896": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.639413,
-73.900664
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1ba211ee840e4431bd23d90b55d08f67": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.775915000000005,
-73.982602
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1c12d010b4a8439b9291d148a98c56c5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.810852000000004,
-73.96374399999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1cedbfffd27a4811a19aa91b34ac538c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.715608,
-73.768493
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1d0e87d758804ea5b7d7d751f5bdaf1d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.599148,
-73.99609
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1db21c20994246b7b4a3f4c22ea4664a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.002028,
-118.430656
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1e58cc968e8041a1a5714a0400d0661d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.051819,
-118.383582
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1e9aa43eae7d4ffb8051f7efee06799b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.772047,
-105.048027
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1f72967659204580b464b2335617835c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.947305,
-118.43984099999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"1fc47396441f4f4eb5670fad794ef32f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.714317,
-73.82724
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"201dc41b9b3a4300971cb97cb53994d4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.185767,
-118.388323
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"20b37adc0ab5454fb5e5a13225dfbd2f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.746253,
-104.989935
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"20de7e4f0b464f55a30ae7715ca5602e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.662688,
-73.98674
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"20f463d2d9234f2793cf06724b069358": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.704159999999995,
-73.921139
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"20f59e42a3f4410fa06ce87012ca6c00": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.645936,
-105.01136799999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"21527d79847543999f6bf929017019b4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"21e93836d2414d13a8e7a66ade9532eb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.598104666666664,
-82.75249933333332
],
"controls": [
"IPY_MODEL_7593455ae5024320a7e6e1657e17a3af",
"IPY_MODEL_06e3d16c51694c8790a0f3ae927b1ce0"
],
"default_style": "IPY_MODEL_2377371737ae4d89824824bf7af4b26f",
"dragging_style": "IPY_MODEL_930252696a164dbca40472429f231b37",
"east": -80.05737304687501,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_b8db22cccb974f7487aaff8f9137eaf5",
"IPY_MODEL_bc1c97255f9640689ebc314cf66013b9",
"IPY_MODEL_8c2ef1c649804434911193be5b621c75",
"IPY_MODEL_c60fe576895d4a17b65a3d0ace02699b"
],
"layout": "IPY_MODEL_dc642089e8204e509bb9fd0e17dedea0",
"modisdate": "yesterday",
"north": 40.43858586704331,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 38.74551518488265,
"style": "IPY_MODEL_e0d2c3fd7c564830b3b16a66198f157c",
"west": -85.45166015625001,
"zoom": 8
}
},
"22e571a958264535ab44e031bdc4ab53": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.286687,
-118.435079
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"22ed54487e4a439d8c1944f294685a18": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.995849,
-118.359818
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2377371737ae4d89824824bf7af4b26f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"23d6b5be9f534f11966b50635deb871c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.048041,
-118.294177
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2409260188964b27aadcba818714bba7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.197454,
-118.488978
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2453c9e38b684fdcb3112d7f881736b2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.10781,
-118.362247
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"24afa580206542b3bcc3f4ce2c018610": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"2521ad236f2a42fc909966b640f8577e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.720103,
-74.004901
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"25d07491c10841dbbc493aecf5e7d8ad": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.782259,
-118.196793
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"26afaf3f037648ec8d8ad876bd48bf15": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.988504999999996,
-118.336358
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"275f76a1abe34c98bab3c4cb14414219": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.755332,
-73.993139
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"27eeb80d491f4407b12c1fb6a1a24ba2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.114563,
-80.83346999999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"28a3fb35a64f49c9a422efbb947f8d08": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"28fbf97fd38446ddae085837660d14fc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"2a6d96842c1e4b16ad3626cc3fcda186": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"2a8b568b5316444987ebfc6f2ea798a8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.334992,
-71.03909300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2aa12c6a3cb747cd9d97e19e7c0052c0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.149588,
-118.48970800000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2bad22750ef948b69edcc7333c49e3a1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"2bf0cf1739b04f1299ceae830c1e8f86": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.890853,
-118.29796699999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2c74bf3cb87f43aabf1ef5381f491c62": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2cbd938bb24548368982cbc68044496f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.86861,
-73.848137
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2d2d772c38e64cae9c991138cd75d163": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.734012,
-74.00674599999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2d33b4cd47434ece8e0621e4e1ee4bf0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.755899,
-73.97385799999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2f1ac8033c0a44a79282b2aacaf14a0e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"2f6fa6b8d651485a93a8d39217b8e809": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.632646,
-74.116148
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2f7873fc9d8c47a488abc8d3355dc937": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.70517,
-104.93071599999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2f9555e63a7243a081811fd131e7f1b9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.57827,
-73.844762
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2f9aefafb9824305bead6838de35f114": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.698327,
-104.87881499999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"2fd9db93a6bd4024af67cff039ead4a2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.761907,
-73.949967
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3059277a5a6341d1a69bf3d32985dd73": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.926262,
-118.24988300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"30d96b53936f4e93bebd7888ed07dca5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"3100cce834194fd78e88fbc527be586c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"310f58a445d64599b3fe011436cda752": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.007090000000005,
-118.25868100000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3224f4c833214981b1319f5e13f04f5d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.129771999999996,
-118.33098899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"32d9d4ed646f4cab972f70adbaa44b64": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"340cae0d36ec46e9b7bcb89f14667094": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.199824,
-118.44760900000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"347b6bca10ef44048f44cb675e91614b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.749452000000005,
-104.98926999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"34b720ad8f174a5b9a53b5da1bd6bdbb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"34bf2effe30341c092d24927add7ebb3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.751441,
-73.975003
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"35c79ce742654b0b9e07a0067dff8cb7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.577372,
-73.98870600000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3633075e70224b19adf27bf4ab5380c9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.763622,
-73.97243900000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"36716284ee334be18a0219d66ee98998": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3806759ccce14a3887fcc0186bce5836": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.712845,
-105.09151899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"382327be3f4c449596df6c6f7e301cde": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.668564,
-73.87099
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"395cdb1387564b8bb4c74b9a89e51847": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.874375,
-73.823656
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"39fcae83c0fb4b67b140e14dab677f47": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.088475,
-118.32552700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3ab01970be1f40c7b9bd57504d73fa86": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.850482,
-73.934051
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3b0223d9523745bfa47404b5cf3e2f82": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.209532,
-118.57756299999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3b41f563cd294c0d8c9feadfd10e9068": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.100516999999996,
-118.41463
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3b5036fadb864cdc80f5b02052fd15fe": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.76185,
-104.881105
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3b860e3cb3434af2b5714c066f1bcf8c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.787628000000005,
-104.838551
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3ba3c083063f4a0090b65eb5e149756e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.671079,
-73.93634200000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3bc963af95f84260b715281a93aed452": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"3bdfca8482a041a5bb40df70368e985f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.294615,
-118.507001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3bf1333dc03741009d4260d98bafc43d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.993396000000004,
-118.465193
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3c4c77776d4f400a8c8f277018df2b93": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"3cf341af800648e7a47bf9e12559f151": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"3d84519235654a108f45bba4b0d49ab6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.77596,
-73.990341
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3dc3aea41eed477792b76248836e826b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3e42aee46d674325a570595deccb6bfe": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.09254,
-118.491064
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3ed20f4b5ebb4ea6ab9068767e95b97f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.236302,
-118.24918500000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3fca26a95d254c37a03a8efd5a546dc9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.86894,
-73.89999499999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"3fe301a5909a4e35b67b1d72cfd65570": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.350518,
-71.059077
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4041812c699c4cad81aa93b8b5e9b413": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.084196999999996,
-118.20856699999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4044ce3143f040a086b20b5e1a1288f4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.347471999999996,
-71.039271
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"40cf8e582ef241258678b247dbb7799b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.25479,
-84.624136
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"411c81ed89a54c32a5a68cc6112fc458": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.744647,
-73.920203
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4197b8b3c27247bea67a5d894aecab8b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.682306,
-73.978099
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"41ba83230fe04a2ab7852ed39a803637": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.274227,
-71.09742299999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"41d7aec2a7ca4e128d30c9a2d0a006cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"42229714262a4207b14f1e65f91462d8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.671019,
-104.92789499999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"43c72d5442eb4a2fb0065655fadcc9bc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.751908,
-104.99763300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"43efda1d4c3147aeb4e31de219da709b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.41829,
-71.001251
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"441ddf8d1def4b5583ec1b2b4df1e309": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.752131,
-73.97872199999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"442fcff275454e1da0f4be45dd28d8a1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.762299,
-104.91658100000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"44b6797371144ffe9610e20a437db9cd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.699176,
-73.70616600000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"44d5eb77aee24b2a9fd177013a367f03": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.756643,
-73.71424
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"454aa63b21cd48d3902dc36b4a845c72": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.641087,
-74.016552
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"45bdcbc37cb3440dab51c1f8093256da": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.206266,
-74.675274
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"46570f7fddf941e0bb6b84c620afcc60": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.037251,
-118.423573
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"471dee89dcc44509aaa4542e85ee0bae": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.802381,
-73.95268100000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"476034229c3d4478b8b6994be3649b22": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.222506,
-118.444689
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"478b1c8f6982463781592eba938e3af5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.716753000000004,
-73.879598
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"47a57e1c3aa74b4498ec8ed46ed23a4b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.751383000000004,
-73.997152
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"47eea7b6943c43ac942a7607a480f3af": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.605230999999996,
-74.17953399999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"485697cfffe049a8a6ab697c8d077a4a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"48b06b23652f4a088072ade3a7f73ebe": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.975409,
-118.417
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"492753e26d584a409f98e39131e6bb24": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.754391,
-73.976098
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"496262e8a41342dd8a2edbb11dbe327a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b5f0732b3d145788c91c602fc1a21ef": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.764191,
-73.772775
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4bd7c78716f946f19d2c6ccbfa424d8e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.337582,
-71.070482
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4bee803d3b6f43ae9351e3186dbd9e49": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.695266,
-74.26907800000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4c7e3698fdfd4aac88d4a99cdcd59fe9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.599263,
-74.165748
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4c8ec90daddc46708628087cab8fbd76": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.178483,
-118.43179099999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4cdc347cb7de4cc6b2a153e88eb086d6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.255441999999995,
-118.421314
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4df699dd619d4d8cb43b37013b58ad1c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.694062,
-73.858626
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4f06faebc03a4e8e867c3352f15d0862": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.774411,
-73.873272
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"4f323a2e7eb34fbc9d74c5c5d3a877ec": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.357758000000004,
-71.064899
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"50fd6fa350d14657a99a42250be8a917": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.028127000000005,
-118.28483
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5127ea18d7c64370b56e1f294c766cb8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.700647,
-73.889423
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"514d00af00a347d9a0f05c8f39646150": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.755139,
-73.975934
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"51cee152ed7d437abdf92142c412a608": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.820454,
-73.925066
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"51d1379923cf40d59030695fc387b5d8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.571768,
-74.12595
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"51dd634ab7094e43b2328a48316e8aad": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.291413,
-71.042158
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5249945eee9e490c9e2c7f9339fb5a27": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.092566999999995,
-118.53436299999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"52e80d20d875412c911b09ef0ae6e1ad": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"53d9096fe25e4d2db0b8b972f1a81bcf": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"5422ea948e3c4d8a90c1a96c3a8ff6ef": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.780348,
-73.781548
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"54855e1ad0ab4412b15bbcaa8aa2b1fa": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.206266,
-74.675274
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"552ab8a1b2b54e2eb7a0a3700fd296fa": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"55894e1eda7a427a91ee8ed159e88078": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.709627000000005,
-74.01297199999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"561431906ccd47e29f2a0385a49ee71c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.833181,
-118.29206200000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5705e68b03864bc49b8b3d0f3256dc47": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.630716,
-74.13772900000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5760936597014082ba1f4b805f8ed956": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.207341,
-118.400973
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5787c77bec3340fdaa412643593c4faf": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"5799a475d9ee4cecb62564239445ff10": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.942387,
-118.41606200000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"58b8a5da0c5b4f42bc481358f7499ad5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.306267,
-71.085897
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5954ff11f0c648958acb8d2a01175db4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.065740000000005,
-118.435025
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"59a90e56b6ad4bd49de7bbcb63220472": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.071225,
-118.443373
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5a41332bdbf344d3b0ed94e59229b331": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.760473,
-73.796373
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5a62ce1072394eaab216603b2357c47b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"5a7001b1a9fd496cbd0b57ea38fe6a8f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.347476,
-71.082035
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5b70eebd4a5e429ca01296321b330b15": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.695293,
-105.035601
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5bc2190e586d452489cd17e575fd4408": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.867076000000004,
-73.924312
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5c000f23e1494ab499fa2f5d58098c6e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.769308,
-73.949924
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5c110b10aa8f4ca192dee2cd681ec43e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.039378,
-118.2663
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5c5fe5f39b0b45dca8e66c3a32c7f5a5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"5d39f2d8c5cf4ca780886f89f2430218": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.292427,
-118.602317
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5d499829cfdb4a44be7b6b802ffe6bc2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.701190000000004,
-73.79594300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5e0781da608e4b7aa25531f12631031b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.09383,
-118.381698
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"5f9832a74e6b45778e0321146f13dd4c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.743312,
-105.069025
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"60dc498703ae407bb3212112812f8496": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.049841,
-118.33846000000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"60fe9e98fc9642e99a871562cd433a60": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.733821999999996,
-104.91656499999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"618f2607df1e47e1bdee330a90577aee": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.165783000000005,
-118.399795
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"624aebc04954489ba254c3cf34e79fc2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.089847999999996,
-118.294661
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6292033f31414432aafd26b0c1e5d37a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.206266,
-74.675274
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"630ad5101bcd4c5eab54e715bd513105": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.255083,
-71.12921999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"633d169b34b54f2a96bce0e720a6637a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.749736999999996,
-73.853045
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"635ad9a3e3ba4fc094a6bf22cf21259f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.029036,
-118.23787
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"638ffd600a8841a8afe34f8d05687a1b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.824018,
-73.82346899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"63b4d5652acc470499f7861b0f54dd8a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.204568,
-118.326365
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"63f4a1a2551b40b8b1d632dbe129e116": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.481603,
-74.73740699999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"64a2f58f24f54bfc9c797af471e38c77": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.780753000000004,
-73.825434
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"64dd1c4ff537467bbdd51bcc607aa2d2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.13946,
-118.16664899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"657d0eb384dc459f904bc25bf30b88aa": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"6588a1cb9c72482aa9f8a1c3e60fd08e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"65fa01ab744f4de6bd0f0e1866e4db05": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.862528999999995,
-73.888159
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6641cee62d05407b9e38ae322ef9ca99": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.751447999999996,
-73.977103
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"669d993e1f30484991ab3e7528b63eea": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"676374bc5bce482da7ae07879d84cc62": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.662932,
-73.91301899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"676643aabbee49d19735bb03f19d4fc0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"6803fc69159f443aa28381700df3272b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.6937,
-73.989859
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"68ccd4dd1eb343249844dcc65ce05181": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.715138,
-74.00371700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"68ee68cffcbc4f07965f8feda5426dfd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.952725,
-118.291904
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6933d2ef83804694ad02c7a2bd980438": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"69fca1fcf7554ba6b123d2ee6ce45588": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.028331,
-118.35433799999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6a0765ceb39c4ed5a672dcabcf892b40": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.618777,
-73.984831
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6ac2deb195cf466c8edb2191ad290d6c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"6b095e20f3d3440cae2b0e434d5b7cd0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.754498999999996,
-73.982256
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6b0fa72268294df68215da19bb5b090a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.880678,
-73.90654
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6b32a6f60a5746a595a8e0d6b4b6d9bd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.601293,
-73.94449300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6b7e0835b9414f98a138eb047fc6aed5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.25479,
-84.624136
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6b8faba3f21e43b39d016a3248df5566": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.698096,
-73.75899
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6bf33530130a4be69338420f841de6ef": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.25479,
-84.624136
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6c402362df9b483faaffe4e1078ee948": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.72779,
-73.94760500000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6cddf370010f4784ae2ae895af960d00": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"6cee6374f79f4e5a8ffe567ee6b6361b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.072925,
-118.37271100000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6e3c57cc045b4bc5941fe4ed3eb89f49": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.858314,
-73.930494
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6f5eca9dbdbd439bbffbbfffaefdd8bc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.708236,
-74.010541
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6fa3f1c9d10841e8838f8e7de7794231": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.825288,
-73.95004499999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"6fc17ad2df51419aa0f73cd90e977d1d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.062148,
-118.31588899999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"71435e9e2a08401ba086302bc3b90bd6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.150818,
-118.368159
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"715cdd6a95284f24a9860a8207938805": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.841736,
-73.879597
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"71fca5b12d7e4d6bae9cfac319772905": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletAttributionControlModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"options": [
"position",
"prefix"
],
"position": "bottomright",
"prefix": "Leaflet"
}
},
"733db43d16044e90a5689745105e24b9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.730145,
-73.82703000000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7388aa04a52948378e77f6ffbdbf9513": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.481603,
-74.73740699999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"73e08285f5134e5cb33d769b51b5865f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.25479,
-84.624136
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"74ac391e918d4a46ba5964cc0db1971a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.684625,
-73.849582
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7543f04bd2a849d789d9b8eca93f3802": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.002717,
-118.28748600000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7593455ae5024320a7e6e1657e17a3af": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletZoomControlModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"options": [
"position",
"zoom_in_text",
"zoom_in_title",
"zoom_out_text",
"zoom_out_title"
]
}
},
"75ff468abd2e4118a8e9963f758b419d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.805492,
-73.916604
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"76f33f28a6af454bb6f4c5e02948ad0f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.738843,
-73.878539
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"783df3fe03a6468abe8b2292024ed97a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.111885,
-118.26103300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"786ba19dfc994db899352303f7916deb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.59722324495565,
-82.75451660156251
],
"controls": [
"IPY_MODEL_7593455ae5024320a7e6e1657e17a3af",
"IPY_MODEL_06e3d16c51694c8790a0f3ae927b1ce0"
],
"default_style": "IPY_MODEL_dd059ae30b544ee997387f7b54e12b43",
"dragging_style": "IPY_MODEL_2bad22750ef948b69edcc7333c49e3a1",
"east": -180,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_a23f5c202df84c37862b25c26ef958af",
"IPY_MODEL_cc235778eac34ffe9ae0714080e8aa2f",
"IPY_MODEL_a36e2223126943d9b837d6eff5df8f92",
"IPY_MODEL_fc8d08d452794c7bbedf87fea5c58bc7"
],
"layout": "IPY_MODEL_52e80d20d875412c911b09ef0ae6e1ad",
"modisdate": "yesterday",
"north": -90,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 90,
"style": "IPY_MODEL_dd059ae30b544ee997387f7b54e12b43",
"west": 180,
"zoom": 8
}
},
"78beaf091a164088a608573b117b955d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.109595,
-118.22868899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"79c782d349b146bf912ce5b209b8fcd3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.622164,
-73.96511
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7a7a77782980406cb4bb437a568e82de": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"7a909ec0fe6d41f69712ee70c2d7a578": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.691340000000004,
-73.927879
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7ae8eabff8964e0eaf99c56ad2018776": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"7af56deb58bd4c299bd1d8d31e52428e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.869594,
-73.79584799999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7badd7be99d94e5fbd93e8b755b9c55e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.699734,
-104.83763
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7bb695d95c864ec1948c61cf58369c26": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.198291999999995,
-118.60091299999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7c41f487c81349de804fca3b86f2a97c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"7d3817021e5e4fe3909f21bc45b1cf20": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"7d84618be35b48aea8ca6c7d797225ad": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.712626,
-74.008669
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7e69951010e04fd19ed25f644789a6bf": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.773363,
-73.956222
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7f54f8339f504265913342c91dde5c1d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7fcebc0cc22e41bca6785d2562d8bdd6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.752625,
-73.975877
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"7fecee4e712046fb95c4f52f4d0bd289": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.265879,
-118.456748
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"814e499c6a514102adf788d91bfb529d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.842286020743394,
-74.70703125000001
],
"controls": [
"IPY_MODEL_7593455ae5024320a7e6e1657e17a3af",
"IPY_MODEL_06e3d16c51694c8790a0f3ae927b1ce0"
],
"default_style": "IPY_MODEL_7ae8eabff8964e0eaf99c56ad2018776",
"dragging_style": "IPY_MODEL_a6d9fdf9b87f4c9a9dfce6e84759bcec",
"east": -180,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_a15c4a2277e84c7999b631c202e55965",
"IPY_MODEL_c265262924464443b2ac34a4f1adc039",
"IPY_MODEL_73e08285f5134e5cb33d769b51b5865f",
"IPY_MODEL_d93753a1e1ca415bbbdf759c2915b54c"
],
"layout": "IPY_MODEL_86199434b86247ccaea857bb078e4a46",
"modisdate": "yesterday",
"north": -90,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 90,
"style": "IPY_MODEL_7ae8eabff8964e0eaf99c56ad2018776",
"west": 180,
"zoom": 8
}
},
"819e01c800d2443b8dddded52c83e052": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.762576,
-73.91345799999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"81f033815bc146a8aef325e8022982b1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.709781,
-73.738733
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"823db05ef12f4feda4b285cada9e68da": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.651666999999996,
-105.03957
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"82e4ebe6635e427ab2b71eeb53d7c667": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.544472999999996,
-74.182367
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"834e6078ee124202b8f1b4492b422e32": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.701954,
-73.942358
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"847dbaaa0fd647f693fbc9b68c0d5c18": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.057596999999994,
-118.41399799999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"84a2b6400a3048b3af2f6f7998104866": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.314321,
-71.152778
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"84d3c65279234d3ca7e21ba38f1c2690": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.368802,
-71.04949
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"84e465ae3ba3496b8737baef4bda59ce": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.59722324495565,
-82.75451660156251
],
"controls": [
"IPY_MODEL_8521a259c9454162b12146445e9cf965",
"IPY_MODEL_d5bca3242dfa4c17b8df8b30a52b4853"
],
"default_style": "IPY_MODEL_669d993e1f30484991ab3e7528b63eea",
"dragging_style": "IPY_MODEL_bd2dd1ccd97845999cc5fbd592b45633",
"east": -180,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_f51051ac0596467f8de9da837b245813",
"IPY_MODEL_95f1a37384094d0dbe47f4faee1a1af5",
"IPY_MODEL_40cf8e582ef241258678b247dbb7799b",
"IPY_MODEL_e75cfee5f7204be086ea898ea968398d"
],
"layout": "IPY_MODEL_fe225c6c7051485e904bb8d0fc851ce3",
"modisdate": "yesterday",
"north": -90,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 90,
"style": "IPY_MODEL_669d993e1f30484991ab3e7528b63eea",
"west": 180,
"zoom": 8
}
},
"8521a259c9454162b12146445e9cf965": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletZoomControlModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"options": [
"position",
"zoom_in_text",
"zoom_in_title",
"zoom_out_text",
"zoom_out_title"
]
}
},
"853b698b2b2c427ea85f1cb95ee28f02": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.002844,
-118.2164
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8594dc86e69c472884c50151d5df39c4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.890964000000004,
-73.846239
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8616024fca764ec398c3931a027727ae": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"86199434b86247ccaea857bb078e4a46": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"863b3e56037243c0a8a61d15642d95e8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"86970c822c67483592a3ca66896119ce": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"87746672c39a4ad2be8c261b54fa71a8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.247613,
-118.52608300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"886b53343f714b3d81d76c6bd15d646a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8abb355f40ec44c0b0da1d5626ce8bd6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.646448,
-73.956649
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8b18262753a44193b5a6470df2a07f9d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.713858,
-74.007777
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8bb8e1649bb8406d85c162bec270b7c1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"8c06d3f1f22b405aadcd2c0bd18dd00d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.127607,
-118.29638700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8c2e271ad6be4c1b835f713d1b3c0e0a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.744820000000004,
-73.90516099999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8c2ef1c649804434911193be5b621c75": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.25479,
-84.624136
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8e149606996040d48fafca6f50bf8874": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.81602,
-105.01155200000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8e349ebd5bcf472184ddcf279df950fb": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.284333000000004,
-71.126228
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8edabe35f75b48d492763ccdf463a6ce": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.632667,
-73.996669
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8fd1e98529324db29646a364fd250d6b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.767444,
-105.01973600000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8fd7b7e74698451491cc4b6673f915f7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.224191999999995,
-118.632384
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"8ff874e3b2d448ceb9a7252149e95066": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.758857,
-104.962829
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"903dfa41a9ed4577ab2bd96a7cb1bca1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.786964000000005,
-104.957599
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9081ffe94ec44b069810ba3c328f0f23": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.670757,
-73.894209
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"908b61eb56ba46e892fbe8b6b06cfa95": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.736323999999996,
-118.279183
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"910bf9cf697247e68ffca273ddfbd4a9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.285804999999996,
-71.070571
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"928653d8ebe34aef923e8818f84846ea": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.632215,
-74.964965
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"928a21a92c6940e4ba174631dd6e523c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.953617,
-118.308428
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"930252696a164dbca40472429f231b37": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"938fb4e336a845ffa34565eea4c5a1a9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.8439345,
-74.70634049999998
],
"controls": [
"IPY_MODEL_102cb3c1a1614f0fb746c3dfc8c10029",
"IPY_MODEL_71fca5b12d7e4d6bae9cfac319772905"
],
"default_style": "IPY_MODEL_5787c77bec3340fdaa412643593c4faf",
"dragging_style": "IPY_MODEL_152206166aca40e684d6ac36fa0f94c5",
"east": -72.00988769531251,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_a88dec42beb34d58b03e02a6c30962e7",
"IPY_MODEL_7388aa04a52948378e77f6ffbdbf9513",
"IPY_MODEL_6292033f31414432aafd26b0c1e5d37a"
],
"layout": "IPY_MODEL_7f54f8339f504265913342c91dde5c1d",
"modisdate": "yesterday",
"north": 40.68063802521456,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 38.993572058209466,
"style": "IPY_MODEL_34b720ad8f174a5b9a53b5da1bd6bdbb",
"west": -77.4041748046875,
"zoom": 8
}
},
"9499da8cb15e4fc38c91514b2b51eeda": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.87834,
-118.2841
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"94e97ea8e7b7484a86eaf88d0e39c93c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"95f1a37384094d0dbe47f4faee1a1af5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.114563,
-80.83346999999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"96b088e1c665463f942b451c64b17d05": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.628144,
-73.94632299999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"96d56b9a930348a0aefb33d33bb0a665": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.818690000000004,
-73.858474
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"96ea98872bd24e74a13d341c59c611bf": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.712596999999995,
-73.953098
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"976a6747596a49ddacac09aa1287cf30": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.140822,
-118.39286399999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9874a8aa93af420b960f9349897c577c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.695794,
-105.00384299999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"987d638a9aab436f8ec2f2dfe3725a1a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.700203,
-73.836012
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9903b08097c9485c9d7afca233c6800b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.85282,
-73.91230999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"998b33bd9c73428c8add481fd234c029": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.361519,
-71.00739300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9a5e69d208224dae9afab07adcf8c400": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.716901,
-74.015119
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9a708034885746a2bb2a42707685295a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.814713,
-73.90859
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9ae87bdc44994cfca84f13e36c72399c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.108957000000004,
-118.15661499999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9c47450b23f24ebbae937cab358835d2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.715359,
-73.793072
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9c500a85a592407f9033f231e0919338": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.184518,
-118.57643999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9c8702a2cb414e3d81b3c9baef69e1f5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.724744,
-73.909639
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9cddd38f988b4ae782ef07750bcb4b04": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.200175,
-118.540958
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9dcd4c1bbf3b4c8bafbe330e6daf5661": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.347635,
-71.103082
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9de2d5b8d4b5415cb7bb592dcff0c28b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.237519,
-118.51771200000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9e7e724e3afd404db495b9a851df5e56": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.811407,
-73.95306
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9eb2bba5c60149e0ae8755f3b5d1f63c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.616698,
-74.01306600000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"9f6b2ebc202146f1bc1a23337374c1e6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.988046999999995,
-118.37036100000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a048b5bb7587433dbe5b2f2fd75bfd90": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"a15c4a2277e84c7999b631c202e55965": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"a16f028f77264338b4d99796efb32f6a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.898788,
-73.90313
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a23f5c202df84c37862b25c26ef958af": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"a2446c6398e5477faae04143afe2b246": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.791763,
-73.94397
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a24b2f9f99e34c969c8a24a9a550ea44": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.678302,
-73.91993599999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a324bff5e8434f5aa9a878ca8c7713b7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.022502,
-118.19961299999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a36e2223126943d9b837d6eff5df8f92": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.25479,
-84.624136
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a3fe8a3bbfbf4b23934f969179bfcde7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.768213,
-73.827392
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a44da4a833a04f929f9fd792ead880f1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"a4676f1ef8e047a1a4ca1a8d8a6f8d23": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.596548999999996,
-74.075779
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a69a048b5e90455e8d74cd6be2b4f731": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.829886,
-73.908121
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a6c9b25c79ef4804bfc0801865504f0a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a6d9fdf9b87f4c9a9dfce6e84759bcec": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"a72ac10401f14b2bb79d7af4077293bd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.765392999999996,
-73.893191
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a76d86954ca54ed58460a088b8e5fd18": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.663559,
-104.838066
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a7afd6e4cd01476ea9b87d43bf459c92": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.731829,
-73.989181
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a7cfc55d4acd432b9f1f2a9a261e60f2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.731685999999996,
-104.98265
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a7d41e6bd78d42b2a746160b4969288d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.280454999999996,
-71.162017
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a801501e7db648e4986570918abcb60e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.1692,
-118.37226899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a88317687c8b42bb8fcc2714f18c7d8c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.8439345,
-74.70634049999998
],
"controls": [
"IPY_MODEL_c5c3402e2b034ad0be08abac9158a0e6",
"IPY_MODEL_dd4263e6d1f545228f14c4549a37c5c6"
],
"default_style": "IPY_MODEL_32d9d4ed646f4cab972f70adbaa44b64",
"dragging_style": "IPY_MODEL_db4d8b0b6fe049509b338b19d8a9236b",
"east": -72.00988769531251,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_eccf7b724d1b4a45879658d0a2447aa7",
"IPY_MODEL_0a2f8c9da219491499bfac49d26ebfaf",
"IPY_MODEL_45bdcbc37cb3440dab51c1f8093256da"
],
"layout": "IPY_MODEL_beed943ed20841289cfda94c542d1abf",
"modisdate": "yesterday",
"north": 40.68063802521456,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 38.993572058209466,
"style": "IPY_MODEL_f10ea81291fa432684e68270aed9eee7",
"west": -77.4041748046875,
"zoom": 8
}
},
"a88dec42beb34d58b03e02a6c30962e7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"a903164ec4bf45c6bd0a4712b688e8af": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
42.336722529411766,
-71.07662591176472
],
"controls": [
"IPY_MODEL_102cb3c1a1614f0fb746c3dfc8c10029",
"IPY_MODEL_71fca5b12d7e4d6bae9cfac319772905"
],
"default_style": "IPY_MODEL_657d0eb384dc459f904bc25bf30b88aa",
"dragging_style": "IPY_MODEL_09c2c03e78244a808fbe347ecae7971a",
"east": -70.40176391601564,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_6cddf370010f4784ae2ae895af960d00",
"IPY_MODEL_4f323a2e7eb34fbc9d74c5c5d3a877ec",
"IPY_MODEL_84d3c65279234d3ca7e21ba38f1c2690",
"IPY_MODEL_16b055ae70b54d16a5350bdf6320c7ea",
"IPY_MODEL_3fe301a5909a4e35b67b1d72cfd65570",
"IPY_MODEL_fc126d12aa6e40d499278194b65ce8dd",
"IPY_MODEL_1070713073564fc6a42e63f70bd31d1d",
"IPY_MODEL_f8c18e99ada94ecd87514d24884b5aa2",
"IPY_MODEL_b040c60f735940e68d232974093ee991",
"IPY_MODEL_4bd7c78716f946f19d2c6ccbfa424d8e",
"IPY_MODEL_1b40a0430ab6407d9e7034b12fcf5e33",
"IPY_MODEL_dfc40c7d5d3e4f37b259fc128591a62c",
"IPY_MODEL_58b8a5da0c5b4f42bc481358f7499ad5",
"IPY_MODEL_51dd634ab7094e43b2328a48316e8aad",
"IPY_MODEL_910bf9cf697247e68ffca273ddfbd4a9",
"IPY_MODEL_b4b5f4f725c84e61bcb047c8dfe3d660",
"IPY_MODEL_41ba83230fe04a2ab7852ed39a803637",
"IPY_MODEL_2a8b568b5316444987ebfc6f2ea798a8",
"IPY_MODEL_998b33bd9c73428c8add481fd234c029",
"IPY_MODEL_17be0a49f5264d64a92ec14b09deb26e",
"IPY_MODEL_b3b29a6209f047ca9070de86f57a0e1c",
"IPY_MODEL_8e349ebd5bcf472184ddcf279df950fb",
"IPY_MODEL_a7d41e6bd78d42b2a746160b4969288d",
"IPY_MODEL_08675c0e248d421990c678fd9a38e62f",
"IPY_MODEL_ed2e522eb7814242a38554b8e1df1d07",
"IPY_MODEL_630ad5101bcd4c5eab54e715bd513105",
"IPY_MODEL_43efda1d4c3147aeb4e31de219da709b",
"IPY_MODEL_e9486eb944984805a2525df509cf679a",
"IPY_MODEL_03409ea0991c4bc0a08b3a053c460a4a",
"IPY_MODEL_5a7001b1a9fd496cbd0b57ea38fe6a8f",
"IPY_MODEL_ba55b3cffe8c476180f5e886884c3d3f",
"IPY_MODEL_4044ce3143f040a086b20b5e1a1288f4",
"IPY_MODEL_9dcd4c1bbf3b4c8bafbe330e6daf5661",
"IPY_MODEL_84a2b6400a3048b3af2f6f7998104866",
"IPY_MODEL_c8d4e710f2364752bd471aed3e773a3f"
],
"layout": "IPY_MODEL_1179a5986f854ed8b6fa721781cf8b2b",
"modisdate": "yesterday",
"north": 42.539927630324506,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 42.13387658821469,
"style": "IPY_MODEL_94e97ea8e7b7484a86eaf88d0e39c93c",
"west": -71.75033569335939,
"zoom": 10
}
},
"a9324fd8c66d410faf9dddbae3208ca9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.754131,
-73.979364
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"a9659cf668934680849e6daf1411de51": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"aa1a21e6cb3d4516a8b248558151345d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.160236,
-118.515472
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"aaff0f5faee443958d9ea313c20a03f4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.701225,
-73.809635
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ab155a0b33fc4b65b1b0b4f907150b9e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.781428000000005,
-73.95000999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ab9e9f32e5e04fcf99cd0c20c698096e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.05038,
-118.211991
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"abc396adb3f64cc5a6f55c0b79eae06d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.742043,
-74.00062
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ac12846d9cab4af09f69160390b66af4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.639871,
-104.901711
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"acb9d745c27648d09d8fe34d6dd81cc6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"ad2b54a17fab46a98dddb2cfaf3d7f19": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.200485,
-118.66483600000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"adca722eaa74492e813299d2b0bd72dc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.061735,
-118.276757
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ae147b224b8f43ca991d37679f9e5293": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.745294,
-73.760583
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"af03bbfac72043e39700496561d6a2c9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.688638,
-73.822942
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"aff0c1a6fc7b4f6f84ba3e74670c00f8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.606435999999995,
-73.909725
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b03959dd2d094716ab7c4954b7bd234b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
40.6637405,
-74.61702150000002
],
"controls": [
"IPY_MODEL_7593455ae5024320a7e6e1657e17a3af",
"IPY_MODEL_06e3d16c51694c8790a0f3ae927b1ce0"
],
"default_style": "IPY_MODEL_28a3fb35a64f49c9a422efbb947f8d08",
"dragging_style": "IPY_MODEL_53d9096fe25e4d2db0b8b972f1a81bcf",
"east": -73.94210815429689,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_a048b5bb7587433dbe5b2f2fd75bfd90",
"IPY_MODEL_b75d6d4e6d54484da26ef0b466696a39",
"IPY_MODEL_b9e973d8aa8e4a2e8aef3c9923d4c402"
],
"layout": "IPY_MODEL_050322ab75624d78b338477fff7b610e",
"modisdate": "yesterday",
"north": 40.871987756697415,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 40.455307212131494,
"style": "IPY_MODEL_7a7a77782980406cb4bb437a568e82de",
"west": -75.29067993164064,
"zoom": 10
}
},
"b040c60f735940e68d232974093ee991": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.350578999999996,
-71.076397
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b0c1495f95db45e3b76d8f5b90a50a82": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.822725,
-118.264109
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b0dfa915ac7741eeb8fe598e510f01a3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.762211,
-73.931528
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b3002e3480a94a0f9d2223b6ffbe0ea4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"b340bd83cd1e4502a3eadf0ebf6f786f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
40.6637405,
-74.61702150000002
],
"controls": [
"IPY_MODEL_102cb3c1a1614f0fb746c3dfc8c10029",
"IPY_MODEL_71fca5b12d7e4d6bae9cfac319772905"
],
"default_style": "IPY_MODEL_30d96b53936f4e93bebd7888ed07dca5",
"dragging_style": "IPY_MODEL_bea0e88431ef4281b6c75c22b8305ead",
"east": -73.94210815429689,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_6933d2ef83804694ad02c7a2bd980438",
"IPY_MODEL_928653d8ebe34aef923e8818f84846ea",
"IPY_MODEL_11496b1264644071bb643f766302b4b0"
],
"layout": "IPY_MODEL_41d7aec2a7ca4e128d30c9a2d0a006cb",
"modisdate": "yesterday",
"north": 40.871987756697415,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 40.455307212131494,
"style": "IPY_MODEL_d2e46336a2f1458a80df2673eee0613e",
"west": -75.29067993164064,
"zoom": 10
}
},
"b35585506bb54881835902db52c3a0fa": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.869953,
-73.865765
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b3899490bf334bfa9d46964f67307bc7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.74756,
-73.938942
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b3b29a6209f047ca9070de86f57a0e1c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.309174,
-71.113835
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b3b6197b24a742bda86e03a3403fa4c8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.627505,
-74.09437700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b3fe28ce8247465dba2a937b06efbb73": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.424961,
-82.799892
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b43aefb82d6c4cab9c3c7b6bc1dd459b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.715776,
-73.986211
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b4b5f4f725c84e61bcb047c8dfe3d660": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.315682,
-71.055555
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b51ee80839f645c196f21c399dc922f8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.838792,
-73.94283
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b6dd04a338d244169d8689ee8bcb8a96": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.759114000000004,
-73.97759599999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b712ec4c15384c54a88c54a55b8bf6e4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.772884000000005,
-73.926295
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b7235827d32f42489ece6f959af4d149": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.847162,
-73.898663
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b75d6d4e6d54484da26ef0b466696a39": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.632215,
-74.964965
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b7888430ec9d42ec8a1054182c432ea6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.736462,
-73.722359
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b7ee517f124b461a91b75da8e79fa485": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.720963,
-73.84614
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b7fc239671374075aea1fa52dca51736": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.751675,
-73.883666
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b86ca95c298f4b07be3419e393809171": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.755272999999995,
-73.974315
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b89c10c7491a41d2a38b40d7878e3b37": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.677857,
-73.777073
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b8bf4ac95a914ed09f3817fcb5956556": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.723317,
-73.704949
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b8db22cccb974f7487aaff8f9137eaf5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"b91d3dfe72ed40ad90264f03260e16b8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.757779,
-73.972487
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b9c0335582124019ac465268ed42cb2d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.052876,
-118.254943
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b9e973d8aa8e4a2e8aef3c9923d4c402": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.695266,
-74.26907800000002
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"b9f7ebc5e9ae4a46a518285ecc333b69": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.173885,
-118.34693700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ba55b3cffe8c476180f5e886884c3d3f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.360588,
-71.058737
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bbb6d69ec0b446f7a8594076fbd33f05": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.709338,
-74.00254
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bbcc028ba1714d0dbe3c8a4ef2e018dd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.74212,
-118.312878
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bc0483cd001a4d6884e656ebfd35716a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.833744,
-118.314022
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bc1c97255f9640689ebc314cf66013b9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.114563,
-80.83346999999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bc3d4e8b32e74067b91880cada0ece36": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.795458,
-73.92957
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bc69eeb7ecf9463fa65f462d6f975bfc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.71782852380953,
-104.96205059523813
],
"controls": [
"IPY_MODEL_102cb3c1a1614f0fb746c3dfc8c10029",
"IPY_MODEL_71fca5b12d7e4d6bae9cfac319772905"
],
"default_style": "IPY_MODEL_f258cf450f3f48ec99b225202dc09c55",
"dragging_style": "IPY_MODEL_acb9d745c27648d09d8fe34d6dd81cc6",
"east": -104.28771972656251,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_010c5790e2344345ae0e8b9fb722140b",
"IPY_MODEL_7badd7be99d94e5fbd93e8b755b9c55e",
"IPY_MODEL_a76d86954ca54ed58460a088b8e5fd18",
"IPY_MODEL_20f59e42a3f4410fa06ce87012ca6c00",
"IPY_MODEL_c350941bcdd348beac3bd2c8af1a9047",
"IPY_MODEL_065c1924241d4da291e52db3001cb53b",
"IPY_MODEL_43c72d5442eb4a2fb0065655fadcc9bc",
"IPY_MODEL_a7cfc55d4acd432b9f1f2a9a261e60f2",
"IPY_MODEL_cd1e9dde9d7f4272afb0ad2cb17aa028",
"IPY_MODEL_8ff874e3b2d448ceb9a7252149e95066",
"IPY_MODEL_da048530c9fc47418d338251de655c8d",
"IPY_MODEL_442fcff275454e1da0f4be45dd28d8a1",
"IPY_MODEL_0bcb912179a54b118dd8ee5f3663faf9",
"IPY_MODEL_03adec8e824d48a2ad1f3d7a815dac4a",
"IPY_MODEL_8fd1e98529324db29646a364fd250d6b",
"IPY_MODEL_1e9aa43eae7d4ffb8051f7efee06799b",
"IPY_MODEL_5f9832a74e6b45778e0321146f13dd4c",
"IPY_MODEL_903dfa41a9ed4577ab2bd96a7cb1bca1",
"IPY_MODEL_f7be66aa11f84cc98e56f977a105b9b9",
"IPY_MODEL_5b70eebd4a5e429ca01296321b330b15",
"IPY_MODEL_60fe9e98fc9642e99a871562cd433a60",
"IPY_MODEL_8e149606996040d48fafca6f50bf8874",
"IPY_MODEL_42229714262a4207b14f1e65f91462d8",
"IPY_MODEL_9874a8aa93af420b960f9349897c577c",
"IPY_MODEL_07eb6258c6474c6997fb237db3e685a5",
"IPY_MODEL_3806759ccce14a3887fcc0186bce5836",
"IPY_MODEL_f7887c1fe2954956aa5cf0d45715a564",
"IPY_MODEL_c95f6105cfd64d91937f308498d0f87d",
"IPY_MODEL_ea17c9192c8a436d9f0e5ec9d706cc72",
"IPY_MODEL_d64670c52ef44b00ab910c7e94617fa8",
"IPY_MODEL_c65d1dce19e04c2bb9b9f0ea27a89a63",
"IPY_MODEL_823db05ef12f4feda4b285cada9e68da",
"IPY_MODEL_ac12846d9cab4af09f69160390b66af4",
"IPY_MODEL_d0b2d73336974e3ab64110b4ff2a88b2",
"IPY_MODEL_3b860e3cb3434af2b5714c066f1bcf8c",
"IPY_MODEL_2f7873fc9d8c47a488abc8d3355dc937",
"IPY_MODEL_2f9aefafb9824305bead6838de35f114",
"IPY_MODEL_08c70d3ee2cb4624ade65864832258a4",
"IPY_MODEL_bfdf1283401d4dd3a5322712a24d99cf",
"IPY_MODEL_0621278531c84a6bb3d93259f04965ee",
"IPY_MODEL_20b37adc0ab5454fb5e5a13225dfbd2f",
"IPY_MODEL_347b6bca10ef44048f44cb675e91614b",
"IPY_MODEL_3b5036fadb864cdc80f5b02052fd15fe"
],
"layout": "IPY_MODEL_36716284ee334be18a0219d66ee98998",
"modisdate": "yesterday",
"north": 39.928694653732364,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 39.50615988027491,
"style": "IPY_MODEL_deecdac172e147938fc6a37c27935c5b",
"west": -105.63629150390626,
"zoom": 10
}
},
"bd2dd1ccd97845999cc5fbd592b45633": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"bd6e78ba2032400a95cc2e87e890f200": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.646809000000005,
-73.786169
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bdb1823d6bee43b5a9ec69577cce43b4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.921279999999996,
-118.27418600000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bde33a01300c4fe89f9de810838f3062": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.784923,
-73.841548
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"bea0e88431ef4281b6c75c22b8305ead": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"beea07b7db43450e8e9b28bccd619f0b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.583949,
-73.949096
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"beed943ed20841289cfda94c542d1abf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bfdf1283401d4dd3a5322712a24d99cf": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.742477,
-104.985482
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c0a9b646080e46e091ab9ffd94cc8905": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.949099,
-118.24673700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c1854a495ac643508f3d6b98d95ad370": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.750636,
-73.99717700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c22b67031b2b4abdbe02404099802b4a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.605965000000005,
-74.093535
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c265262924464443b2ac34a4f1adc039": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.114563,
-80.83346999999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c2e6febac635499e89ac4f3c96b754a7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.837391,
-73.923438
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c350941bcdd348beac3bd2c8af1a9047": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.612272,
-104.87782800000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c351852265c24cfaab681ae72fcd36ff": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.721008000000005,
-73.742257
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c38f67f442e44f52a09521389cd8f94f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.889526000000004,
-73.872586
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c4589dfb86484e20b98c49c5f86ef231": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"c4ccc33afaf842aca758bd78e1d4d27b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.751463,
-73.820996
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c4e661f0f99f44488888d4a7a7559dfc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
"nan",
"nan"
],
"controls": [
"IPY_MODEL_102cb3c1a1614f0fb746c3dfc8c10029",
"IPY_MODEL_71fca5b12d7e4d6bae9cfac319772905"
],
"default_style": "IPY_MODEL_3100cce834194fd78e88fbc527be586c",
"dragging_style": "IPY_MODEL_0c58350b6c1a46caa8ede81e663568ad",
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_485697cfffe049a8a6ab697c8d077a4a"
],
"layout": "IPY_MODEL_496262e8a41342dd8a2edbb11dbe327a",
"modisdate": "yesterday",
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"style": "IPY_MODEL_7c41f487c81349de804fca3b86f2a97c",
"zoom": 10
}
},
"c522b98d08354650a7330c166e38c79a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.680769,
-73.949313
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c5c3402e2b034ad0be08abac9158a0e6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletZoomControlModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"options": [
"position",
"zoom_in_text",
"zoom_in_title",
"zoom_out_text",
"zoom_out_title"
]
}
},
"c60fe576895d4a17b65a3d0ace02699b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.424961,
-82.799892
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c65d1dce19e04c2bb9b9f0ea27a89a63": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.647607,
-105.089482
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c68624bb5ce2430eb79492c9ee3194c7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"c7c80054139943ab93ef0ceb85b593a1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.764628,
-73.963144
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c84ef8563ce74e96ac4b125bf3e9141c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.594153999999996,
-73.791986
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c8d1d2cf1f954740be78280a7685ac58": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.745221,
-73.97829399999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c8d4e710f2364752bd471aed3e773a3f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.338551,
-71.018253
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c95f6105cfd64d91937f308498d0f87d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.719471,
-104.89026399999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c96f52652743494991cbf172acefda5b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.758404,
-73.972031
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c970c300123741d7a8654574b3f4adbe": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.793803999999994,
-118.317172
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"c9a127ead890436f9b3522a65b8cb283": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.675818,
-73.796661
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ca2552fbc28649ab9675469ee7cae991": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.677915999999996,
-74.005154
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ca34e8d0faf1427783bbf3f886f92b34": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.019323,
-118.391902
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cb5e6a50798e4c61893236c2d80dae22": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.776441999999996,
-73.953513
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cc235778eac34ffe9ae0714080e8aa2f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.114563,
-80.83346999999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cc3a595d9aa44b63abfe3db5eaf2f154": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.726467,
-73.861515
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cd028e84d2ae41fcbb7c402d2b0ef64f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.003638,
-118.308806
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cd1510efe5ac4117a410624a6ef5e741": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.597143,
-73.973426
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cd1a2faa58a94e62ac2ff05a4f234571": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.028887,
-118.31718300000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cd1e9dde9d7f4272afb0ad2cb17aa028": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.734837,
-105.020395
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cd929428b19a4e129b9f216fc453427d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.070409999999995,
-118.35041100000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ce8b25db4a94472b8c183b7896504126": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.763445000000004,
-73.872334
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cf38ceb7422e435982ef927cec972f6d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.778971000000006,
-73.90625
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"cf705ac5c9524ff894c6b66b83588ada": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.030578000000006,
-118.39961299999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d026462b68e440298699575549add437": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.322618,
-118.23756999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d08c0b0380de4127b026023a5718172d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.818267,
-73.942856
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d0b2d73336974e3ab64110b4ff2a88b2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.771592,
-104.8824
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d12336e180e741b4aee6ab4eb9aad0d0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.045105,
-118.185914
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d2e46336a2f1458a80df2673eee0613e": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"d2ee6e13e40b4b6695741baad4bb402f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.043146,
-118.251746
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d317cb52e86043d8b6a10913128db21c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"d3abff43aefc4dd9bc2fe62a59a503a6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.632215,
-74.964965
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d3eedd9a8ce84549a2f781ea066c58c0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.976372999999995,
-118.45088799999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d44c247ea97549389fd4aacdec95b570": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.739634,
-73.79449
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d4b4a564bc454ce4ba0e9ba550b41f63": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.758236,
-73.978833
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d4f1e43364aa488281ab7e7114b48543": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.964131,
-118.272783
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d5bca3242dfa4c17b8df8b30a52b4853": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletAttributionControlModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"options": [
"position",
"prefix"
],
"position": "bottomright",
"prefix": "Leaflet"
}
},
"d5c98bb7a9084524a0007b47720b5231": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"d600f99bf0d144d38b8dafc6425bb92c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.078294,
-118.18578500000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d625ca0b741f47b08ea8b7191c4b7ca2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.148617,
-118.433298
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d64670c52ef44b00ab910c7e94617fa8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.686865999999995,
-105.09023400000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d70af7b030bb4cc2ab08bec446895540": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.759254,
-73.989827
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d719e4da14664494a2526cbf76f0737c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.080017,
-118.262643
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d741206554b547c1ab6270e71103b13f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.75863,
-73.967949
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d748ea1c214843d58f8473d37f6db6ef": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.052913000000004,
-118.26433999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d74f6ae26f32450b99f93b0c8ee6426b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.798601,
-73.966622
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d757567c3b2e434c98de7c5c8441b3a6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.81296,
-73.937376
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d789defdc830480d99a7316f195f3134": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.64959,
-73.934374
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d8001a9f462a40748c5c4c50770a5c1b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.753134,
-118.36797299999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d81b1c4db4184c9788fc1bc74a5f221a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.657708,
-74.004377
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d854e607106b41f0882e9c0da038e43a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d8c10dcf476141ac88c730df440bcd37": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.759167,
-73.979668
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d93753a1e1ca415bbbdf759c2915b54c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.424961,
-82.799892
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"d93ad83d352b48d2b254b9d709eb4651": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.598104666666664,
-82.75249933333332
],
"controls": [
"IPY_MODEL_102cb3c1a1614f0fb746c3dfc8c10029",
"IPY_MODEL_71fca5b12d7e4d6bae9cfac319772905"
],
"default_style": "IPY_MODEL_3bc963af95f84260b715281a93aed452",
"dragging_style": "IPY_MODEL_676643aabbee49d19735bb03f19d4fc0",
"east": -80.05737304687501,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_2a6d96842c1e4b16ad3626cc3fcda186",
"IPY_MODEL_27eeb80d491f4407b12c1fb6a1a24ba2",
"IPY_MODEL_6b7e0835b9414f98a138eb047fc6aed5",
"IPY_MODEL_0e385ed5802142829e994e67d68ac68e"
],
"layout": "IPY_MODEL_3dc3aea41eed477792b76248836e826b",
"modisdate": "yesterday",
"north": 40.43858586704331,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 38.74551518488265,
"style": "IPY_MODEL_0838028448ec4289aabb90159669928d",
"west": -85.45166015625001,
"zoom": 8
}
},
"da048530c9fc47418d338251de655c8d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.730284000000005,
-104.952595
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"da3703ebc2234fd2a210a7a3aa486e05": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.099911999999996,
-118.32691200000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"da86e6fbc41b400ca4322c3eec1579e3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.040587,
-118.255404
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"da92cce9d7264b0893832148502d40ca": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.045421000000005,
-118.44587299999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"daeccdee40024348b853d1cfe6454c4d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
40.72791571028037,
-73.92065706542056
],
"controls": [
"IPY_MODEL_102cb3c1a1614f0fb746c3dfc8c10029",
"IPY_MODEL_71fca5b12d7e4d6bae9cfac319772905"
],
"default_style": "IPY_MODEL_552ab8a1b2b54e2eb7a0a3700fd296fa",
"dragging_style": "IPY_MODEL_8bb8e1649bb8406d85c162bec270b7c1",
"east": -73.24584960937501,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_2f1ac8033c0a44a79282b2aacaf14a0e",
"IPY_MODEL_c1854a495ac643508f3d6b98d95ad370",
"IPY_MODEL_b43aefb82d6c4cab9c3c7b6bc1dd459b",
"IPY_MODEL_a7afd6e4cd01476ea9b87d43bf459c92",
"IPY_MODEL_ee06bc86a2c44d8699fd42b4e52cb6ed",
"IPY_MODEL_015e1cc72d084dbe9e4eed81d328d12c",
"IPY_MODEL_55894e1eda7a427a91ee8ed159e88078",
"IPY_MODEL_8b18262753a44193b5a6470df2a07f9d",
"IPY_MODEL_ec2ff70ab93d4279a47485068d880ab5",
"IPY_MODEL_0d21128712fc4c7cace2700ffdada8c3",
"IPY_MODEL_abc396adb3f64cc5a6f55c0b79eae06d",
"IPY_MODEL_0befe479e6e646f994c0ea58b62038ba",
"IPY_MODEL_2521ad236f2a42fc909966b640f8577e",
"IPY_MODEL_2d2d772c38e64cae9c991138cd75d163",
"IPY_MODEL_c8d1d2cf1f954740be78280a7685ac58",
"IPY_MODEL_0664f3f1b2dd4b65a324ba88b9444d33",
"IPY_MODEL_275f76a1abe34c98bab3c4cb14414219",
"IPY_MODEL_ea8b077e17da44e8af4de17ae05c4931",
"IPY_MODEL_d4b4a564bc454ce4ba0e9ba550b41f63",
"IPY_MODEL_db78c07db85240e0ae9db6c4d05b2970",
"IPY_MODEL_d741206554b547c1ab6270e71103b13f",
"IPY_MODEL_1ba211ee840e4431bd23d90b55d08f67",
"IPY_MODEL_1810b84e62cd4e0d91bcae0a111b6b80",
"IPY_MODEL_d74f6ae26f32450b99f93b0c8ee6426b",
"IPY_MODEL_471dee89dcc44509aaa4542e85ee0bae",
"IPY_MODEL_9e7e724e3afd404db495b9a851df5e56",
"IPY_MODEL_cb5e6a50798e4c61893236c2d80dae22",
"IPY_MODEL_a2446c6398e5477faae04143afe2b246",
"IPY_MODEL_d08c0b0380de4127b026023a5718172d",
"IPY_MODEL_6fa3f1c9d10841e8838f8e7de7794231",
"IPY_MODEL_b51ee80839f645c196f21c399dc922f8",
"IPY_MODEL_3ab01970be1f40c7b9bd57504d73fa86",
"IPY_MODEL_5bc2190e586d452489cd17e575fd4408",
"IPY_MODEL_bc3d4e8b32e74067b91880cada0ece36",
"IPY_MODEL_d70af7b030bb4cc2ab08bec446895540",
"IPY_MODEL_d757567c3b2e434c98de7c5c8441b3a6",
"IPY_MODEL_bbb6d69ec0b446f7a8594076fbd33f05",
"IPY_MODEL_fb8f2b0b34e94c7cb70239922594f9df",
"IPY_MODEL_6e3c57cc045b4bc5941fe4ed3eb89f49",
"IPY_MODEL_2fd9db93a6bd4024af67cff039ead4a2",
"IPY_MODEL_c7c80054139943ab93ef0ceb85b593a1",
"IPY_MODEL_3d84519235654a108f45bba4b0d49ab6",
"IPY_MODEL_7e69951010e04fd19ed25f644789a6bf",
"IPY_MODEL_deeb2c967b044a1ea91df927f28cbd43",
"IPY_MODEL_6b095e20f3d3440cae2b0e434d5b7cd0",
"IPY_MODEL_b6dd04a338d244169d8689ee8bcb8a96",
"IPY_MODEL_d8c10dcf476141ac88c730df440bcd37",
"IPY_MODEL_1c12d010b4a8439b9291d148a98c56c5",
"IPY_MODEL_19a26df473c8489da293ac94120144c0",
"IPY_MODEL_ab155a0b33fc4b65b1b0b4f907150b9e",
"IPY_MODEL_c96f52652743494991cbf172acefda5b",
"IPY_MODEL_3633075e70224b19adf27bf4ab5380c9",
"IPY_MODEL_b91d3dfe72ed40ad90264f03260e16b8",
"IPY_MODEL_5c000f23e1494ab499fa2f5d58098c6e",
"IPY_MODEL_441ddf8d1def4b5583ec1b2b4df1e309",
"IPY_MODEL_0c47d9e44ffb4b439c10fb019ba442bb",
"IPY_MODEL_6641cee62d05407b9e38ae322ef9ca99",
"IPY_MODEL_492753e26d584a409f98e39131e6bb24",
"IPY_MODEL_7fcebc0cc22e41bca6785d2562d8bdd6",
"IPY_MODEL_2d33b4cd47434ece8e0621e4e1ee4bf0",
"IPY_MODEL_b86ca95c298f4b07be3419e393809171",
"IPY_MODEL_a9324fd8c66d410faf9dddbae3208ca9",
"IPY_MODEL_34bf2effe30341c092d24927add7ebb3",
"IPY_MODEL_514d00af00a347d9a0f05c8f39646150",
"IPY_MODEL_47a57e1c3aa74b4498ec8ed46ed23a4b",
"IPY_MODEL_6f5eca9dbdbd439bbffbbfffaefdd8bc",
"IPY_MODEL_68ccd4dd1eb343249844dcc65ce05181",
"IPY_MODEL_7d84618be35b48aea8ca6c7d797225ad",
"IPY_MODEL_dfdaf09e30784a73b3edd83d95479340",
"IPY_MODEL_9a5e69d208224dae9afab07adcf8c400",
"IPY_MODEL_b3b6197b24a742bda86e03a3403fa4c8",
"IPY_MODEL_5705e68b03864bc49b8b3d0f3256dc47",
"IPY_MODEL_0d0442f187ae47d9ad72d67bd223d162",
"IPY_MODEL_c22b67031b2b4abdbe02404099802b4a",
"IPY_MODEL_a4676f1ef8e047a1a4ca1a8d8a6f8d23",
"IPY_MODEL_51d1379923cf40d59030695fc387b5d8",
"IPY_MODEL_dc13789e0da34a28afe3adc418c74dd5",
"IPY_MODEL_e7a6477e0f1641e6b30f1d6f944b7824",
"IPY_MODEL_e26aac92ccec44e5b66ea37411d4110f",
"IPY_MODEL_2f6fa6b8d651485a93a8d39217b8e809",
"IPY_MODEL_47eea7b6943c43ac942a7607a480f3af",
"IPY_MODEL_82e4ebe6635e427ab2b71eeb53d7c667",
"IPY_MODEL_4c7e3698fdfd4aac88d4a99cdcd59fe9",
"IPY_MODEL_51cee152ed7d437abdf92142c412a608",
"IPY_MODEL_c2e6febac635499e89ac4f3c96b754a7",
"IPY_MODEL_9903b08097c9485c9d7afca233c6800b",
"IPY_MODEL_75ff468abd2e4118a8e9963f758b419d",
"IPY_MODEL_9a708034885746a2bb2a42707685295a",
"IPY_MODEL_a69a048b5e90455e8d74cd6be2b4f731",
"IPY_MODEL_b7235827d32f42489ece6f959af4d149",
"IPY_MODEL_65fa01ab744f4de6bd0f0e1866e4db05",
"IPY_MODEL_f9410729804a4eeeb9740914d6c4d016",
"IPY_MODEL_715cdd6a95284f24a9860a8207938805",
"IPY_MODEL_0f4b1177a4d043b688ad205993c35b08",
"IPY_MODEL_ef2b00f6488a4797a55bc4ce69dc8ada",
"IPY_MODEL_6b0fa72268294df68215da19bb5b090a",
"IPY_MODEL_7af56deb58bd4c299bd1d8d31e52428e",
"IPY_MODEL_638ffd600a8841a8afe34f8d05687a1b",
"IPY_MODEL_8594dc86e69c472884c50151d5df39c4",
"IPY_MODEL_b35585506bb54881835902db52c3a0fa",
"IPY_MODEL_3fca26a95d254c37a03a8efd5a546dc9",
"IPY_MODEL_2cbd938bb24548368982cbc68044496f",
"IPY_MODEL_c38f67f442e44f52a09521389cd8f94f",
"IPY_MODEL_a16f028f77264338b4d99796efb32f6a",
"IPY_MODEL_18a180ea79314a71ad9af7a46b232e7a",
"IPY_MODEL_96d56b9a930348a0aefb33d33bb0a665",
"IPY_MODEL_f20f6372105749d0a8231a1d854ad1fe",
"IPY_MODEL_395cdb1387564b8bb4c74b9a89e51847",
"IPY_MODEL_b8bf4ac95a914ed09f3817fcb5956556",
"IPY_MODEL_44b6797371144ffe9610e20a437db9cd",
"IPY_MODEL_eee08832935147b4a91c5b4b5cbf3a07",
"IPY_MODEL_44d5eb77aee24b2a9fd177013a367f03",
"IPY_MODEL_f8ad7dfec63641339a2bf985cae72da1",
"IPY_MODEL_b3899490bf334bfa9d46964f67307bc7",
"IPY_MODEL_b712ec4c15384c54a88c54a55b8bf6e4",
"IPY_MODEL_819e01c800d2443b8dddded52c83e052",
"IPY_MODEL_411c81ed89a54c32a5a68cc6112fc458",
"IPY_MODEL_cf38ceb7422e435982ef927cec972f6d",
"IPY_MODEL_b0dfa915ac7741eeb8fe598e510f01a3",
"IPY_MODEL_057fbc01b41244e4aa168f99731cd57e",
"IPY_MODEL_6803fc69159f443aa28381700df3272b",
"IPY_MODEL_d789defdc830480d99a7316f195f3134",
"IPY_MODEL_6a0765ceb39c4ed5a672dcabcf892b40",
"IPY_MODEL_fbcd7aa783e64094a9071d70d9d8b7d1",
"IPY_MODEL_834e6078ee124202b8f1b4492b422e32",
"IPY_MODEL_9081ffe94ec44b069810ba3c328f0f23",
"IPY_MODEL_382327be3f4c449596df6c6f7e301cde",
"IPY_MODEL_01ac0576aabf4875ad3f975ad3ffa39c",
"IPY_MODEL_96b088e1c665463f942b451c64b17d05",
"IPY_MODEL_96ea98872bd24e74a13d341c59c611bf",
"IPY_MODEL_676374bc5bce482da7ae07879d84cc62",
"IPY_MODEL_3ba3c083063f4a0090b65eb5e149756e",
"IPY_MODEL_1d0e87d758804ea5b7d7d751f5bdaf1d",
"IPY_MODEL_20de7e4f0b464f55a30ae7715ca5602e",
"IPY_MODEL_c522b98d08354650a7330c166e38c79a",
"IPY_MODEL_4197b8b3c27247bea67a5d894aecab8b",
"IPY_MODEL_e62e6f0a5186421a997f4c8a3cf3bc7f",
"IPY_MODEL_8edabe35f75b48d492763ccdf463a6ce",
"IPY_MODEL_454aa63b21cd48d3902dc36b4a845c72",
"IPY_MODEL_7a909ec0fe6d41f69712ee70c2d7a578",
"IPY_MODEL_6c402362df9b483faaffe4e1078ee948",
"IPY_MODEL_cd1510efe5ac4117a410624a6ef5e741",
"IPY_MODEL_35c79ce742654b0b9e07a0067dff8cb7",
"IPY_MODEL_e74a779abfc84e6290e7e16a59f4b8d8",
"IPY_MODEL_8abb355f40ec44c0b0da1d5626ce8bd6",
"IPY_MODEL_9eb2bba5c60149e0ae8755f3b5d1f63c",
"IPY_MODEL_6b32a6f60a5746a595a8e0d6b4b6d9bd",
"IPY_MODEL_79c782d349b146bf912ce5b209b8fcd3",
"IPY_MODEL_ca2552fbc28649ab9675469ee7cae991",
"IPY_MODEL_d81b1c4db4184c9788fc1bc74a5f221a",
"IPY_MODEL_a24b2f9f99e34c969c8a24a9a550ea44",
"IPY_MODEL_aff0c1a6fc7b4f6f84ba3e74670c00f8",
"IPY_MODEL_beea07b7db43450e8e9b28bccd619f0b",
"IPY_MODEL_1b78b27860bb4f6bb7f0ca85e6b9e896",
"IPY_MODEL_20f463d2d9234f2793cf06724b069358",
"IPY_MODEL_db587e73649d41d1880819033cdf6337",
"IPY_MODEL_e7267ad19dd64c88906c43468ce2b8fa",
"IPY_MODEL_64a2f58f24f54bfc9c797af471e38c77",
"IPY_MODEL_a3fe8a3bbfbf4b23934f969179bfcde7",
"IPY_MODEL_c4ccc33afaf842aca758bd78e1d4d27b",
"IPY_MODEL_bde33a01300c4fe89f9de810838f3062",
"IPY_MODEL_1082e366a1064e3c8f8a0766ad37da76",
"IPY_MODEL_5a41332bdbf344d3b0ed94e59229b331",
"IPY_MODEL_e45cb62604a1411cabdda2ba4f789d36",
"IPY_MODEL_5422ea948e3c4d8a90c1a96c3a8ff6ef",
"IPY_MODEL_4b5f0732b3d145788c91c602fc1a21ef",
"IPY_MODEL_f4bac4666d5c43508dc0f8bf2ae57e25",
"IPY_MODEL_e14991211add49e0be8f228ac04f6346",
"IPY_MODEL_ae147b224b8f43ca991d37679f9e5293",
"IPY_MODEL_d44c247ea97549389fd4aacdec95b570",
"IPY_MODEL_eafd1449a339454bbcb6fe4aa788f413",
"IPY_MODEL_733db43d16044e90a5689745105e24b9",
"IPY_MODEL_633d169b34b54f2a96bce0e720a6637a",
"IPY_MODEL_ce8b25db4a94472b8c183b7896504126",
"IPY_MODEL_a72ac10401f14b2bb79d7af4077293bd",
"IPY_MODEL_4f06faebc03a4e8e867c3352f15d0862",
"IPY_MODEL_b7fc239671374075aea1fa52dca51736",
"IPY_MODEL_76f33f28a6af454bb6f4c5e02948ad0f",
"IPY_MODEL_cc3a595d9aa44b63abfe3db5eaf2f154",
"IPY_MODEL_b7ee517f124b461a91b75da8e79fa485",
"IPY_MODEL_8c2e271ad6be4c1b835f713d1b3c0e0a",
"IPY_MODEL_9c8702a2cb414e3d81b3c9baef69e1f5",
"IPY_MODEL_478b1c8f6982463781592eba938e3af5",
"IPY_MODEL_5127ea18d7c64370b56e1f294c766cb8",
"IPY_MODEL_0ff15af918034424bda5fddde8dc7a5f",
"IPY_MODEL_6b8faba3f21e43b39d016a3248df5566",
"IPY_MODEL_df83e9c8ff5647a0aa6ab1fabe7b082a",
"IPY_MODEL_fbe07ff386ac4e16a986f4786e639814",
"IPY_MODEL_fc428105513b45388a8dae71f478f9f0",
"IPY_MODEL_74ac391e918d4a46ba5964cc0db1971a",
"IPY_MODEL_0bddfd2d915f4e9b93942f34be018e7b",
"IPY_MODEL_987d638a9aab436f8ec2f2dfe3725a1a",
"IPY_MODEL_af03bbfac72043e39700496561d6a2c9",
"IPY_MODEL_f2c40cddfbb54dbdb8cca4169bf1db83",
"IPY_MODEL_4df699dd619d4d8cb43b37013b58ad1c",
"IPY_MODEL_0f820372a073492089fa7043c5111e7c",
"IPY_MODEL_1cedbfffd27a4811a19aa91b34ac538c",
"IPY_MODEL_1fc47396441f4f4eb5670fad794ef32f",
"IPY_MODEL_df81dfd0d82d4302802daa3964010c5c",
"IPY_MODEL_b7888430ec9d42ec8a1054182c432ea6",
"IPY_MODEL_e3f495344934471181f498788d4ecc6b",
"IPY_MODEL_c351852265c24cfaab681ae72fcd36ff",
"IPY_MODEL_81f033815bc146a8aef325e8022982b1",
"IPY_MODEL_bd6e78ba2032400a95cc2e87e890f200",
"IPY_MODEL_9c47450b23f24ebbae937cab358835d2",
"IPY_MODEL_175bc7c13bef46f2905b94272055fcb6",
"IPY_MODEL_b89c10c7491a41d2a38b40d7878e3b37",
"IPY_MODEL_aaff0f5faee443958d9ea313c20a03f4",
"IPY_MODEL_c9a127ead890436f9b3522a65b8cb283",
"IPY_MODEL_5d499829cfdb4a44be7b6b802ffe6bc2",
"IPY_MODEL_00bb0a43bec04f178411ba245c4b1838",
"IPY_MODEL_c84ef8563ce74e96ac4b125bf3e9141c",
"IPY_MODEL_dde59a32b6254945a705a4f738259b41",
"IPY_MODEL_2f9555e63a7243a081811fd131e7f1b9",
"IPY_MODEL_0e9b32cbf66646cbbcd68467b613cf3e"
],
"layout": "IPY_MODEL_886b53343f714b3d81d76c6bd15d646a",
"modisdate": "yesterday",
"north": 40.9353026724978,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 40.51901917108279,
"style": "IPY_MODEL_e3448c6f51444b738e5731570cc24bec",
"west": -74.59442138671876,
"zoom": 10
}
},
"db4d8b0b6fe049509b338b19d8a9236b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "move"
}
},
"db5440d7d64f4006b2837046ad0c1872": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"db587e73649d41d1880819033cdf6337": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.679169,
-73.9638
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"db5d1b4e15f0466c9b13f2428cb53fcc": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.107752000000005,
-118.61621799999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"db78c07db85240e0ae9db6c4d05b2970": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.769224,
-73.958741
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"dc13789e0da34a28afe3adc418c74dd5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.508839,
-74.240575
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"dc642089e8204e509bb9fd0e17dedea0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dc7e4f97a3164a67a2687f88b4848126": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.178521999999994,
-118.45923400000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"dd059ae30b544ee997387f7b54e12b43": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"dd4263e6d1f545228f14c4549a37c5c6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletAttributionControlModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"options": [
"position",
"prefix"
],
"position": "bottomright",
"prefix": "Leaflet"
}
},
"dde59a32b6254945a705a4f738259b41": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.590916,
-73.809715
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"deeb2c967b044a1ea91df927f28cbd43": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.76078,
-73.97766999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"deecdac172e147938fc6a37c27935c5b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"df81dfd0d82d4302802daa3964010c5c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.607719,
-74.023923
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"df83e9c8ff5647a0aa6ab1fabe7b082a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.671170000000004,
-73.752063
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"dfc40c7d5d3e4f37b259fc128591a62c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.33209,
-71.09654499999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"dfdaf09e30784a73b3edd83d95479340": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.709073,
-74.016423
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e0d2c3fd7c564830b3b16a66198f157c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"e112a9add9ef44469056705b4fd15119": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
34.07239995522387,
-118.36549903731346
],
"controls": [
"IPY_MODEL_102cb3c1a1614f0fb746c3dfc8c10029",
"IPY_MODEL_71fca5b12d7e4d6bae9cfac319772905"
],
"default_style": "IPY_MODEL_8616024fca764ec398c3931a027727ae",
"dragging_style": "IPY_MODEL_24afa580206542b3bcc3f4ce2c018610",
"east": -117.69104003906251,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_6588a1cb9c72482aa9f8a1c3e60fd08e",
"IPY_MODEL_03d740e0c5754a3ea786b63be50f65ae",
"IPY_MODEL_c0a9b646080e46e091ab9ffd94cc8905",
"IPY_MODEL_d4f1e43364aa488281ab7e7114b48543",
"IPY_MODEL_f69fcc6389044a30814cf2c29cf3d327",
"IPY_MODEL_f8eeaf822cd546819408bebc64072153",
"IPY_MODEL_23d6b5be9f534f11966b50635deb871c",
"IPY_MODEL_50fd6fa350d14657a99a42250be8a917",
"IPY_MODEL_f22891edc9b742dfbdc19170a5cac82c",
"IPY_MODEL_6fc17ad2df51419aa0f73cd90e977d1d",
"IPY_MODEL_310f58a445d64599b3fe011436cda752",
"IPY_MODEL_184501b114684586bf59de5b7c78cb53",
"IPY_MODEL_10f96e76293c4db694d22b9d75b05cfe",
"IPY_MODEL_d2ee6e13e40b4b6695741baad4bb402f",
"IPY_MODEL_5c110b10aa8f4ca192dee2cd681ec43e",
"IPY_MODEL_69fca1fcf7554ba6b123d2ee6ce45588",
"IPY_MODEL_d748ea1c214843d58f8473d37f6db6ef",
"IPY_MODEL_cd1a2faa58a94e62ac2ff05a4f234571",
"IPY_MODEL_60dc498703ae407bb3212112812f8496",
"IPY_MODEL_e1e89f69c2204de8941a700405c513a6",
"IPY_MODEL_635ad9a3e3ba4fc094a6bf22cf21259f",
"IPY_MODEL_a324bff5e8434f5aa9a878ca8c7713b7",
"IPY_MODEL_5954ff11f0c648958acb8d2a01175db4",
"IPY_MODEL_da92cce9d7264b0893832148502d40ca",
"IPY_MODEL_d719e4da14664494a2526cbf76f0737c",
"IPY_MODEL_8c06d3f1f22b405aadcd2c0bd18dd00d",
"IPY_MODEL_da3703ebc2234fd2a210a7a3aa486e05",
"IPY_MODEL_624aebc04954489ba254c3cf34e79fc2",
"IPY_MODEL_4041812c699c4cad81aa93b8b5e9b413",
"IPY_MODEL_d600f99bf0d144d38b8dafc6425bb92c",
"IPY_MODEL_ab9e9f32e5e04fcf99cd0c20c698096e",
"IPY_MODEL_cf705ac5c9524ff894c6b66b83588ada",
"IPY_MODEL_1e58cc968e8041a1a5714a0400d0661d",
"IPY_MODEL_cd929428b19a4e129b9f216fc453427d",
"IPY_MODEL_7543f04bd2a849d789d9b8eca93f3802",
"IPY_MODEL_39fcae83c0fb4b67b140e14dab677f47",
"IPY_MODEL_783df3fe03a6468abe8b2292024ed97a",
"IPY_MODEL_04bbb4e05aac4a2ba5ad44345f8fb0fc",
"IPY_MODEL_ed96a896a381495f83dddf21ad08e207",
"IPY_MODEL_26afaf3f037648ec8d8ad876bd48bf15",
"IPY_MODEL_68ee68cffcbc4f07965f8feda5426dfd",
"IPY_MODEL_5799a475d9ee4cecb62564239445ff10",
"IPY_MODEL_2453c9e38b684fdcb3112d7f881736b2",
"IPY_MODEL_928a21a92c6940e4ba174631dd6e523c",
"IPY_MODEL_6cee6374f79f4e5a8ffe567ee6b6361b",
"IPY_MODEL_3e42aee46d674325a570595deccb6bfe",
"IPY_MODEL_9f6b2ebc202146f1bc1a23337374c1e6",
"IPY_MODEL_adca722eaa74492e813299d2b0bd72dc",
"IPY_MODEL_853b698b2b2c427ea85f1cb95ee28f02",
"IPY_MODEL_3059277a5a6341d1a69bf3d32985dd73",
"IPY_MODEL_bdb1823d6bee43b5a9ec69577cce43b4",
"IPY_MODEL_cd028e84d2ae41fcbb7c402d2b0ef64f",
"IPY_MODEL_d12336e180e741b4aee6ab4eb9aad0d0",
"IPY_MODEL_46570f7fddf941e0bb6b84c620afcc60",
"IPY_MODEL_78beaf091a164088a608573b117b955d",
"IPY_MODEL_1db21c20994246b7b4a3f4c22ea4664a",
"IPY_MODEL_847dbaaa0fd647f693fbc9b68c0d5c18",
"IPY_MODEL_3224f4c833214981b1319f5e13f04f5d",
"IPY_MODEL_5e0781da608e4b7aa25531f12631031b",
"IPY_MODEL_b9c0335582124019ac465268ed42cb2d",
"IPY_MODEL_f6e1cb46fd7f4c3c985e25fea39246e0",
"IPY_MODEL_da86e6fbc41b400ca4322c3eec1579e3",
"IPY_MODEL_fef697d7ec014f3db31ded65f309b156",
"IPY_MODEL_ec4238c6d018438aa7c398d161fc3353",
"IPY_MODEL_48b06b23652f4a088072ade3a7f73ebe",
"IPY_MODEL_59a90e56b6ad4bd49de7bbcb63220472",
"IPY_MODEL_3b41f563cd294c0d8c9feadfd10e9068",
"IPY_MODEL_04b220697ab24ebeb78d8eac72f0b88b",
"IPY_MODEL_fc3cdbfeb3e5438981c94a113d605c29",
"IPY_MODEL_ca34e8d0faf1427783bbf3f886f92b34",
"IPY_MODEL_2bf0cf1739b04f1299ceae830c1e8f86",
"IPY_MODEL_9499da8cb15e4fc38c91514b2b51eeda",
"IPY_MODEL_5249945eee9e490c9e2c7f9339fb5a27",
"IPY_MODEL_d8001a9f462a40748c5c4c50770a5c1b",
"IPY_MODEL_db5d1b4e15f0466c9b13f2428cb53fcc",
"IPY_MODEL_3bf1333dc03741009d4260d98bafc43d",
"IPY_MODEL_d3eedd9a8ce84549a2f781ea066c58c0",
"IPY_MODEL_1f72967659204580b464b2335617835c",
"IPY_MODEL_fbd140ebfc62460bb6ccec9bfc55aa2c",
"IPY_MODEL_08b6e538327a44a0add49ab4250026dd",
"IPY_MODEL_bc0483cd001a4d6884e656ebfd35716a",
"IPY_MODEL_561431906ccd47e29f2a0385a49ee71c",
"IPY_MODEL_10f7cd71074e48df96fc0f4cf6bcd9e8",
"IPY_MODEL_c970c300123741d7a8654574b3f4adbe",
"IPY_MODEL_908b61eb56ba46e892fbe8b6b06cfa95",
"IPY_MODEL_bbcc028ba1714d0dbe3c8a4ef2e018dd",
"IPY_MODEL_f47bd58a411f4584818553e6d714b5e6",
"IPY_MODEL_b0c1495f95db45e3b76d8f5b90a50a82",
"IPY_MODEL_13a4669ececc47778148c8ea1700d204",
"IPY_MODEL_25d07491c10841dbbc493aecf5e7d8ad",
"IPY_MODEL_9ae87bdc44994cfca84f13e36c72399c",
"IPY_MODEL_eb6f34d8abf942b5a5a5a5589b6c82ca",
"IPY_MODEL_d026462b68e440298699575549add437",
"IPY_MODEL_64dd1c4ff537467bbdd51bcc607aa2d2",
"IPY_MODEL_3ed20f4b5ebb4ea6ab9068767e95b97f",
"IPY_MODEL_7bb695d95c864ec1948c61cf58369c26",
"IPY_MODEL_8fd7b7e74698451491cc4b6673f915f7",
"IPY_MODEL_3b0223d9523745bfa47404b5cf3e2f82",
"IPY_MODEL_ad2b54a17fab46a98dddb2cfaf3d7f19",
"IPY_MODEL_5d39f2d8c5cf4ca780886f89f2430218",
"IPY_MODEL_aa1a21e6cb3d4516a8b248558151345d",
"IPY_MODEL_1a15a00a99474dcda238eec5bce0f396",
"IPY_MODEL_9de2d5b8d4b5415cb7bb592dcff0c28b",
"IPY_MODEL_0cb6ddc071004c8789c037fd0a49e511",
"IPY_MODEL_87746672c39a4ad2be8c261b54fa71a8",
"IPY_MODEL_4cdc347cb7de4cc6b2a153e88eb086d6",
"IPY_MODEL_9cddd38f988b4ae782ef07750bcb4b04",
"IPY_MODEL_22e571a958264535ab44e031bdc4ab53",
"IPY_MODEL_fefc084457c942e0a6a6c9c1168912ab",
"IPY_MODEL_01332d27589347459e31b69aea47498c",
"IPY_MODEL_3bdfca8482a041a5bb40df70368e985f",
"IPY_MODEL_7fecee4e712046fb95c4f52f4d0bd289",
"IPY_MODEL_0944b1e65bdc4a4fb6754736479f985f",
"IPY_MODEL_13bedd23ae794486838caba44820830f",
"IPY_MODEL_17aa67f51d214b75957f36b55b4156f0",
"IPY_MODEL_0fc4f858de0743788d046940bfae7f6c",
"IPY_MODEL_9c500a85a592407f9033f231e0919338",
"IPY_MODEL_4c8ec90daddc46708628087cab8fbd76",
"IPY_MODEL_476034229c3d4478b8b6994be3649b22",
"IPY_MODEL_1184d7d0da644c8790520296abe0d0cf",
"IPY_MODEL_340cae0d36ec46e9b7bcb89f14667094",
"IPY_MODEL_2409260188964b27aadcba818714bba7",
"IPY_MODEL_dc7e4f97a3164a67a2687f88b4848126",
"IPY_MODEL_d625ca0b741f47b08ea8b7191c4b7ca2",
"IPY_MODEL_2aa12c6a3cb747cd9d97e19e7c0052c0",
"IPY_MODEL_63b4d5652acc470499f7861b0f54dd8a",
"IPY_MODEL_b9f7ebc5e9ae4a46a518285ecc333b69",
"IPY_MODEL_a801501e7db648e4986570918abcb60e",
"IPY_MODEL_71435e9e2a08401ba086302bc3b90bd6",
"IPY_MODEL_976a6747596a49ddacac09aa1287cf30",
"IPY_MODEL_5760936597014082ba1f4b805f8ed956",
"IPY_MODEL_201dc41b9b3a4300971cb97cb53994d4",
"IPY_MODEL_618f2607df1e47e1bdee330a90577aee",
"IPY_MODEL_087f99c2883a4f03b9b95cde44758a3c",
"IPY_MODEL_22ed54487e4a439d8c1944f294685a18"
],
"layout": "IPY_MODEL_db5440d7d64f4006b2837046ad0c1872",
"modisdate": "yesterday",
"north": 34.299202842785114,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 33.84418591636914,
"style": "IPY_MODEL_c4589dfb86484e20b98c49c5f86ef231",
"west": -119.03961181640625,
"zoom": 10
}
},
"e14991211add49e0be8f228ac04f6346": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.772348,
-73.74629200000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e1e89f69c2204de8941a700405c513a6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.066379,
-118.30986999999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e26aac92ccec44e5b66ea37411d4110f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.531346,
-74.21985699999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e2d390b749fe44a49af3cd7c4d94e858": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"e3448c6f51444b738e5731570cc24bec": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"e3f495344934471181f498788d4ecc6b": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.730918,
-73.745621
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e45cb62604a1411cabdda2ba4f789d36": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.791605,
-73.776724
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e46463354dee442a81cb503809cc49c4": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
40.66397287638688,
-74.61639404296876
],
"controls": [
"IPY_MODEL_8521a259c9454162b12146445e9cf965",
"IPY_MODEL_d5bca3242dfa4c17b8df8b30a52b4853"
],
"default_style": "IPY_MODEL_86970c822c67483592a3ca66896119ce",
"dragging_style": "IPY_MODEL_5c5fe5f39b0b45dca8e66c3a32c7f5a5",
"east": -180,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_6ac2deb195cf466c8edb2191ad290d6c",
"IPY_MODEL_d3abff43aefc4dd9bc2fe62a59a503a6",
"IPY_MODEL_4bee803d3b6f43ae9351e3186dbd9e49"
],
"layout": "IPY_MODEL_d854e607106b41f0882e9c0da038e43a",
"modisdate": "yesterday",
"north": -90,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 90,
"style": "IPY_MODEL_86970c822c67483592a3ca66896119ce",
"west": 180,
"zoom": 10
}
},
"e62e6f0a5186421a997f4c8a3cf3bc7f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.643477000000004,
-73.976042
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e7267ad19dd64c88906c43468ce2b8fa": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.647694,
-73.879143
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e74a779abfc84e6290e7e16a59f4b8d8": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.663046,
-73.954219
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e75cfee5f7204be086ea898ea968398d": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.424961,
-82.799892
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e7a6477e0f1641e6b30f1d6f944b7824": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.551884,
-74.147646
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"e86a48abc423459c9df2845713101226": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"e8bbb94cfda743cfb0ece60c691a7c7f": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.8439345,
-74.70634049999998
],
"controls": [
"IPY_MODEL_7593455ae5024320a7e6e1657e17a3af",
"IPY_MODEL_06e3d16c51694c8790a0f3ae927b1ce0"
],
"default_style": "IPY_MODEL_863b3e56037243c0a8a61d15642d95e8",
"dragging_style": "IPY_MODEL_b3002e3480a94a0f9d2223b6ffbe0ea4",
"east": -72.00988769531251,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_d5c98bb7a9084524a0007b47720b5231",
"IPY_MODEL_63f4a1a2551b40b8b1d632dbe129e116",
"IPY_MODEL_54855e1ad0ab4412b15bbcaa8aa2b1fa"
],
"layout": "IPY_MODEL_2c74bf3cb87f43aabf1ef5381f491c62",
"modisdate": "yesterday",
"north": 40.68063802521456,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 38.993572058209466,
"style": "IPY_MODEL_c68624bb5ce2430eb79492c9ee3194c7",
"west": -77.4041748046875,
"zoom": 8
}
},
"e9486eb944984805a2525df509cf679a": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.373055,
-70.974807
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ea17c9192c8a436d9f0e5ec9d706cc72": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.67147,
-104.887824
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ea8b077e17da44e8af4de17ae05c4931": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.765829,
-73.987341
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"eafd1449a339454bbcb6fe4aa788f413": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.728157,
-73.78501700000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"eb6f34d8abf942b5a5a5a5589b6c82ca": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.261962,
-118.336078
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ec2ff70ab93d4279a47485068d880ab5": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.726399,
-73.978633
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ec4238c6d018438aa7c398d161fc3353": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.072862,
-118.24098899999998
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"eccf7b724d1b4a45879658d0a2447aa7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"ed2e522eb7814242a38554b8e1df1d07": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.349688,
-71.153964
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ed96a896a381495f83dddf21ad08e207": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.114708,
-118.192098
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ee06bc86a2c44d8699fd42b4e52cb6ed": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.688874,
-74.018213
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"eee08832935147b4a91c5b4b5cbf3a07": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.746204999999996,
-73.71148199999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"ef2b00f6488a4797a55bc4ce69dc8ada": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.843267,
-73.860417
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f10ea81291fa432684e68270aed9eee7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"f20f6372105749d0a8231a1d854ad1fe": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.810618,
-73.884474
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f22891edc9b742dfbdc19170a5cac82c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.009552,
-118.346724
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f258cf450f3f48ec99b225202dc09c55": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapStyleModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"cursor": "grab"
}
},
"f2c40cddfbb54dbdb8cca4169bf1db83": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.673563,
-73.817829
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f3911a5c8109431d82f6ee1814d9dca3": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMapModel",
"state": {
"_dom_classes": [],
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"basemap": {
"attribution": "Map data (c) <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors",
"max_zoom": 19,
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"center": [
39.598104666666664,
-82.75249933333332
],
"controls": [
"IPY_MODEL_c5c3402e2b034ad0be08abac9158a0e6",
"IPY_MODEL_dd4263e6d1f545228f14c4549a37c5c6"
],
"default_style": "IPY_MODEL_085d4ed03f74456c945c6da316516b04",
"dragging_style": "IPY_MODEL_7d3817021e5e4fe3909f21bc45b1cf20",
"east": -80.05737304687501,
"fullscreen": false,
"interpolation": "bilinear",
"layers": [
"IPY_MODEL_5a62ce1072394eaab216603b2357c47b",
"IPY_MODEL_021ad94fb29245fb98dbee094ed14c58",
"IPY_MODEL_6bf33530130a4be69338420f841de6ef",
"IPY_MODEL_b3fe28ce8247465dba2a937b06efbb73"
],
"layout": "IPY_MODEL_a9659cf668934680849e6daf1411de51",
"modisdate": "yesterday",
"north": 40.43858586704331,
"options": [
"basemap",
"bounce_at_zoom_limits",
"box_zoom",
"center",
"close_popup_on_click",
"double_click_zoom",
"dragging",
"fullscreen",
"inertia",
"inertia_deceleration",
"inertia_max_speed",
"interpolation",
"keyboard",
"keyboard_pan_offset",
"keyboard_zoom_offset",
"max_zoom",
"min_zoom",
"scroll_wheel_zoom",
"tap",
"tap_tolerance",
"touch_zoom",
"world_copy_jump",
"zoom",
"zoom_animation_threshold",
"zoom_start"
],
"south": 38.74551518488265,
"style": "IPY_MODEL_3c4c77776d4f400a8c8f277018df2b93",
"west": -85.45166015625001,
"zoom": 8
}
},
"f47bd58a411f4584818553e6d714b5e6": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.779284000000004,
-118.261723
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f4bac4666d5c43508dc0f8bf2ae57e25": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.756632,
-73.735333
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f51051ac0596467f8de9da837b245813": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletTileLayerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"base": true,
"max_native_zoom": 18,
"max_zoom": 19,
"min_native_zoom": 0,
"min_zoom": 1,
"no_wrap": false,
"options": [
"attribution",
"detect_retina",
"max_native_zoom",
"max_zoom",
"min_native_zoom",
"min_zoom",
"no_wrap",
"tile_size",
"tms"
]
}
},
"f69fcc6389044a30814cf2c29cf3d327": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.076198,
-118.310722
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f6e1cb46fd7f4c3c985e25fea39246e0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.108022999999996,
-118.45696399999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f7887c1fe2954956aa5cf0d45715a564": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.666287,
-105.08974599999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f7be66aa11f84cc98e56f977a105b9b9": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.73106,
-104.970673
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f8ad7dfec63641339a2bf985cae72da1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.745346999999995,
-73.68029200000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f8c18e99ada94ecd87514d24884b5aa2": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.337105,
-71.105696
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f8eeaf822cd546819408bebc64072153": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.059163,
-118.30689199999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"f9410729804a4eeeb9740914d6c4d016": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.825856,
-73.89294100000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fb8f2b0b34e94c7cb70239922594f9df": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.830869,
-73.936216
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fbcd7aa783e64094a9071d70d9d8b7d1": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.694662,
-73.966241
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fbd140ebfc62460bb6ccec9bfc55aa2c": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.034665999999994,
-118.50403899999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fbe07ff386ac4e16a986f4786e639814": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.657604,
-73.84480400000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fc126d12aa6e40d499278194b65ce8dd": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
42.365331,
-71.055233
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fc3cdbfeb3e5438981c94a113d605c29": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
33.997862,
-118.39361699999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fc428105513b45388a8dae71f478f9f0": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
40.707896000000005,
-73.82829699999999
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fc8d08d452794c7bbedf87fea5c58bc7": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
39.424961,
-82.799892
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fe225c6c7051485e904bb8d0fc851ce3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fef697d7ec014f3db31ded65f309b156": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.020221,
-118.28603500000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
},
"fefc084457c942e0a6a6c9c1168912ab": {
"model_module": "jupyter-leaflet",
"model_module_version": "^0.11.3",
"model_name": "LeafletMarkerModel",
"state": {
"_model_module_version": "^0.11.3",
"_view_count": null,
"_view_module_version": "^0.11.3",
"draggable": false,
"location": [
34.326584000000004,
-118.38226100000001
],
"options": [
"alt",
"draggable",
"keyboard",
"rise_offset",
"rise_on_hover",
"rotation_angle",
"rotation_origin",
"title",
"z_index_offset"
]
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment