Skip to content

Instantly share code, notes, and snippets.

@empet
Created August 27, 2018 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save empet/65d6bb07352993e1f8b5cddce815616a to your computer and use it in GitHub Desktop.
Save empet/65d6bb07352993e1f8b5cddce815616a to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## <center> Updating a FigureWidget while hovering over the points of another FigureWidget</center>"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import plotly.graph_objs as go\n",
"import ipywidgets as ipw\n",
"import numpy as np\n",
"import json"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Read the geojson file that records geo and election data for Illinois state. This file is created from the second table listed here \n",
"[https://www.nytimes.com/elections/results/illinois](https://www.nytimes.com/elections/results/illinois), and the topojson file\n",
"[https://github.com/deldersveld/topojson/blob/master/countries/us-states/IL-17-illinois-counties.json](https://github.com/deldersveld/topojson/blob/master/countries/us-states/IL-17-illinois-counties.json) for Illinois counties."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"with open(\"illinois-election.geojson\") as json_file:#https://gist.github.com/empet/5e35f2aba6df23011c7192edfa97ca0a\n",
" jdata = json_file.read()\n",
" geoJSON = json.loads(jdata)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'Clinton_Trump': [1789.0, 3785.0],\n",
" 'center_lon_lat': [-89.34355051659558, 41.03517190637024],\n",
" 'county_name': 'Marshall',\n",
" 'party': 1}"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"geoJSON['features'][0]['properties']#party=1 if Trump nr votes > Clinton nr votes; party=0 otherwise"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"votes_Clinton_Trump=[geo['properties']['Clinton_Trump'] for geo in geoJSON['features']]"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"pts=[]#list of points defining boundaries of county polygons\n",
"for feature in geoJSON['features']:\n",
" if feature['geometry']['type']=='Polygon':\n",
" pts.extend(feature['geometry']['coordinates'][0]) \n",
" pts.append([None, None])#mark the end of a polygon \n",
" \n",
" elif feature['geometry']['type']=='MultiPolygon':\n",
" for polyg in feature['geometry']['coordinates']:\n",
" pts.extend(polyg[0])\n",
" pts.append([None, None])#end of polygon\n",
" else: raise ValueError(\"geometry type irrelevant for map\") "
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"line_lons=[pt[0] for pt in pts]\n",
"line_lats=[pt[1] for pt in pts]"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"sources=[]\n",
"for feat in geoJSON['features']: \n",
" sources.append({\"type\": \"FeatureCollection\", 'features': [feat]})"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"lons=[]\n",
"lats=[]\n",
"color_vals=[]\n",
"county_name=[]\n",
"for geo in geoJSON['features']:\n",
" lons.append(geo['properties']['center_lon_lat'][0])\n",
" lats.append(geo['properties']['center_lon_lat'][1])\n",
" color_vals.append(int(geo['properties']['party']))\n",
" county_name.append(geo['properties']['county_name'])\n",
"\n",
"county_name=[name+' County' for name in county_name]"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"mapbox_access_token = ''"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"party_color=['rgba(97,117,193, 0.8)', 'rgba(176,18,44, 0.8)']#converted from '#6175c1' and '#B0122C'\n",
"county_color=['#6175c1' if cval==0 else '#B0122C' for cval in color_vals]"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"Illinois0 = dict(type='scattermapbox',#the scattermapbox of center points in each county\n",
" lat=lats, \n",
" lon=lons,\n",
" mode='markers',\n",
" text=county_name,\n",
" marker=dict(size=2, color='white'),\n",
" hoverinfo='text',\n",
" showlegend=False\n",
" )\n",
"\n",
"Illinois1 = dict(type='scattermapbox',#county boundaries\n",
" lat=line_lats, \n",
" lon=line_lons,\n",
" mode='lines',\n",
" line=dict(width=0.5, color='rgb(220,220,220)'),\n",
" hoverinfo='none',\n",
" showlegend=False \n",
" )\n"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"layers=[dict(sourcetype = 'geojson',#the county shapes colored according to the party that won there (0 dem, 1 rep)\n",
" source =sources[k],\n",
" below=\"water\", \n",
" type = 'fill', \n",
" color = county_color[k],\n",
" opacity=0.8\n",
" ) for k in range(len(sources))]"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"layout = dict(title='Presidential Election in Illinois, 2016',\n",
" font=dict(family='Balto'),\n",
" autosize=False,\n",
" width=600,\n",
" height=700,\n",
" hovermode='closest',\n",
" \n",
" mapbox=dict(accesstoken=mapbox_access_token,\n",
" layers=layers,\n",
" bearing=0,\n",
" center=dict(\n",
" lat=lats[79], #Macon County center\n",
" lon=lons[79]),\n",
" pitch=0,\n",
" zoom=5.61,\n",
" ) \n",
" )\n",
"\n",
"fig = go.FigureWidget(data=[Illinois0, Illinois1], layout=layout)\n"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "59acc98db8bf4428b446a88e2953c47e",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"FigureWidget({\n",
" 'data': [{'hoverinfo': 'text',\n",
" 'lat': [41.03517190637024, 39.27502107215389, …"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"fig"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"def get_bar_fig(y_vals, bar_colors, width=300, height=500, left=50, top=100, right=50, bottom=50):\n",
" #Defines the bar chart of (Clinton, Trump) vote numbers and returns the corresponding FigureWidget \n",
" \n",
" vote_bar = dict(type='bar',#The bar char pointing out the vote number for each candidate\n",
" x=['Clinton', 'Trump'],\n",
" y=y_vals,\n",
" marker=dict(color=bar_colors),\n",
" hoverinfo='y')\n",
" bar_layout = dict(title=county_name[0],\n",
" width=width, height=height,\n",
" font=dict(family='Balto'),\n",
" xaxis=dict(showline=True, zeroline=False, showgrid=False, showticklabels=True),\n",
" yaxis=dict(showline=False, gridcolor='white', ticklen=4),\n",
" bargap=0.01,\n",
" margin=dict(l=left, r=right, b=bottom, t=top),\n",
" hovermode='x',\n",
" plot_bgcolor='rgb(240,240,240)')\n",
" \n",
" return go.FigureWidget(data=[vote_bar], layout=bar_layout)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
"def hovering(fw, votes_Clinton_Trump, county_name, bar_colors, width_figd=300, height_figd=400, top_figd=100):\n",
" \n",
" fwd=get_bar_fig(votes_Clinton_Trump[0], bar_colors, width=width_figd, height=height_figd, top=top_figd)\n",
" \n",
" def trigger_update(trace, points, state):\n",
" ind = points.point_inds[0]#get the index of the scatter point that is hovered on\n",
" \n",
" with fwd.batch_update():#update data and layout in the bar chart\n",
" fwd.data[0].y = votes_Clinton_Trump[ind]\n",
" fwd.layout.title = county_name[ind]\n",
" \n",
" \n",
" fw.data[0].on_hover(trigger_update)\n",
" return ipw.HBox([fw, fwd])\n"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
"dashboard=hovering(fig, votes_Clinton_Trump, county_name, party_color)"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "83a8043d8cf34c9089e2d7e0759662a7",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(FigureWidget({\n",
" 'data': [{'hoverinfo': 'text',\n",
" 'lat': [41.03517190637024, 39.2…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"dashboard"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"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.6.4"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"074b63647149423d9d29d791bffb438f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"09f12bdce67f4feca379892615f6d538": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"0a7601278cbf42a8a3cdbfddafb7dc80": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"0bf10959d8844dbd8117eee7fc13ff2b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"0ccfd5100f6b457dba0aca67ce85baea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ee9eb92abd754264b3435457c03176e5",
"IPY_MODEL_65976b1ea07d4509b4751d8f4617264d"
],
"layout": "IPY_MODEL_374741cd30bc451390a85b55511b8518"
}
},
"0db25d8126b4494da04eaed0afef7ff7": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "text",
"lat": [
41.03517190637024,
39.27502107215389,
39.765371056765666,
40.86569897649171,
38.88498410853639,
41.10433181525449,
39.261313702825476,
38.70990361847805,
38.06316501107396,
38.57968360985816,
37.993382039947505,
41.286265989977025,
37.46564832080371,
42.06384766824323,
40.848253233710096,
42.04515580097721,
40.74794021271582,
41.20713708521757,
39.97160465893403,
40.69809523333978,
40.457593207850394,
37.20396217907951,
41.59094342641306,
41.27816618082842,
39.65508903989618,
40.13235471742175,
37.73044977373891,
41.36726408146309,
38.299305600867946,
38.43949460536305,
40.165377016258375,
38.08434912730878,
42.351079361897646,
39.69870339685021,
40.931743574164955,
41.746708986963185,
38.82766238225395,
37.753503076700326,
41.46508485348857,
39.09059464846255,
39.619574492090756,
39.53109965369829,
40.02768026073207,
38.00958165824473,
40.533606801398854,
40.17970744782898,
41.890636364911494,
37.744780205309524,
39.319881553592325,
40.76102451980202,
39.010842681460886,
39.998396335348644,
39.26193676506768,
38.756633286643094,
42.32366462324082,
40.8526146694055,
39.06380297204793,
38.08123381609778,
39.62082061657516,
38.412702928948434,
40.74357877702042,
39.01271186818749,
37.2027160545951,
37.15847863539887,
39.74917143846845,
39.58592913101192,
41.199037276068964,
37.76284901033333,
37.334182187699405,
39.680011529584206,
39.13545512990098,
40.44949339870179,
38.64946658098461,
38.43077173397224,
41.81213052239423,
39.97845834359823,
41.83892219880885,
41.555428878607636,
38.70928055623585,
39.85384589515813,
40.12051653481994,
38.40335699531542,
40.415848037622965,
40.51927636982825,
39.32237380256113,
42.32428768548303,
38.30304397432114,
39.435148068399414,
42.325533809967425,
37.50303205533574,
40.139208402085956,
38.36535019854119,
41.757301045080595,
37.446956453537695,
41.146700047724124,
41.36726408146309,
38.97719732038206,
42.32366462324082,
40.24512898326003,
41.93674297083433,
42.351079361897646,
40.03640313212287
],
"lon": [
-89.34355051659558,
-88.2393312351717,
-88.20576296901643,
-88.58384765097595,
-89.44513869048659,
-89.81085611649416,
-89.92481154633712,
-88.10329141970028,
-88.15187706808294,
-89.42217092943297,
-88.9416146981573,
-88.41865644647496,
-89.27641398428503,
-89.99989845747395,
-90.61384437794563,
-89.31439912756599,
-87.82856166248203,
-89.31528250299114,
-90.71366580098635,
-88.19692921476502,
-90.6765640331305,
-89.0953220221315,
-88.42749020072634,
-88.87801166754727,
-90.47250430992337,
-90.55642497531159,
-88.93101419305563,
-90.14742215347218,
-88.92483056507966,
-89.98134757354603,
-88.86211090989478,
-89.35503439712241,
-90.28257859351845,
-90.26137758331512,
-90.21367531035762,
-89.28524773853641,
-89.93541205143879,
-88.54232900599442,
-87.89393144394232,
-90.37444963773294,
-88.64215042903514,
-88.21636347411808,
-89.78523822916515,
-89.89919365900809,
-89.5944291373351,
-87.73492386741728,
-88.76582298855462,
-88.20222946731586,
-90.3806332657089,
-89.24549584440516,
-88.15452719435835,
-90.28876222149444,
-89.42040417858269,
-88.47607584910898,
-88.82324239118866,
-90.98486205650406,
-88.5847310264011,
-88.53879550429386,
-90.96984467427669,
-88.05117226961707,
-89.71810169685457,
-87.73934074454297,
-88.71017033677086,
-89.32323288181739,
-89.60591301786191,
-89.27994748598557,
-90.7737353298958,
-89.41863742773242,
-88.56176326534748,
-87.74994124964465,
-90.69334816620814,
-90.1615561602744,
-88.92041368795395,
-88.42484007445091,
-87.89393144394232,
-91.2118895407648,
-88.08915741289806,
-90.61649450422104,
-87.70577247838769,
-88.9822499677137,
-89.37270190562518,
-87.81972790823063,
-91.20482253736368,
-88.8647610361702,
-87.77290901069826,
-88.45310808805537,
-90.13505489752023,
-88.80557488268587,
-89.17129230869347,
-88.2393312351717,
-88.19869596561531,
-89.42393768028325,
-89.93452867601366,
-88.87712829212214,
-87.88951456681662,
-89.5131585982223,
-88.97606633973771,
-87.9796188601808,
-89.97781407184547,
-88.42130657275035,
-89.66156566964567,
-88.60328191032902
],
"marker": {
"color": "white",
"size": 2
},
"mode": "markers",
"showlegend": false,
"text": [
"Marshall County",
"Cumberland County",
"Douglas County",
"Livingston County",
"Bond County",
"Stark County",
"Macoupin County",
"Richland County",
"White County",
"Clinton County",
"Franklin County",
"Grundy County",
"Union County",
"Carroll County",
"Warren County",
"Ogle County",
"Iroquois County",
"Putnam County",
"Brown County",
"Ford County",
"McDonough County",
"Pulaski County",
"Kendall County",
"LaSalle County",
"Scott County",
"Schuyler County",
"Williamson County",
"Henry County",
"Jefferson County",
"St. Clair County",
"De Witt County",
"Perry County",
"Jo Daviess County",
"Morgan County",
"Knox County",
"Lee County",
"Madison County",
"Saline County",
"Will County",
"Jersey County",
"Moultrie County",
"Coles County",
"Menard County",
"Randolph County",
"Tazewell County",
"Vermilion County",
"DeKalb County",
"Gallatin County",
"Greene County",
"Woodford County",
"Jasper County",
"Cass County",
"Montgomery County",
"Clay County",
"Boone County",
"Henderson County",
"Effingham County",
"Hamilton County",
"Pike County",
"Edwards County",
"Peoria County",
"Crawford County",
"Massac County",
"Alexander County",
"Sangamon County",
"Christian County",
"Mercer County",
"Jackson County",
"Pope County",
"Edgar County",
"Calhoun County",
"Fulton County",
"Marion County",
"Wayne County",
"Cook County",
"Adams County",
"DuPage County",
"Rock Island County",
"Lawrence County",
"Macon County",
"Logan County",
"Wabash County",
"Hancock County",
"McLean County",
"Clark County",
"McHenry County",
"Monroe County",
"Shelby County",
"Winnebago County",
"Hardin County",
"Champaign County",
"Washington County",
"Whiteside County",
"Johnson County",
"Kankakee County",
"Bureau County",
"Fayette County",
"Lake County",
"Mason County",
"Kane County",
"Stephenson County",
"Piatt County"
],
"type": "scattermapbox",
"uid": "46980806-a977-11e8-8636-e377df750c87"
},
{
"hoverinfo": "none",
"lat": [
41.148569234450726,
41.148569234450726,
41.148569234450726,
41.10370875301229,
41.10495487749669,
41.10495487749669,
40.92551295174295,
40.926759076227356,
40.92177457828975,
40.97286568215019,
40.97411180663459,
41.14109248754432,
41.148569234450726,
null,
39.21583015914484,
39.37533409314817,
39.37907246660137,
39.17470805115961,
39.17096967770641,
39.17221580219081,
39.21583015914484,
null,
39.791539670938086,
39.80150866681329,
39.878768384846154,
39.878768384846154,
39.878768384846154,
39.791539670938086,
39.68686521424841,
39.65321985316958,
39.65197372868518,
39.791539670938086,
null,
41.10869325094989,
41.1149238733719,
40.99529592286941,
40.61772020409592,
40.61772020409592,
40.616474079611514,
40.757286146348825,
40.75354777289562,
40.92800520071175,
41.10620100198109,
41.10869325094989,
null,
38.99900449885908,
39.0289114864847,
39.0276653620003,
38.99900449885908,
38.91676028288862,
38.74230285507248,
38.741056730588085,
38.743548979556884,
38.87439205041898,
38.91800640737302,
38.91800640737302,
38.99900449885908,
null,
41.14981535893513,
41.14981535893513,
41.21710608109278,
41.23455182387439,
41.23455182387439,
41.148569234450726,
41.14109248754432,
40.97411180663459,
40.97411180663459,
41.14981535893513,
null,
39.52113065782308,
39.52237678230748,
39.52362290679188,
38.99900449885908,
38.99900449885908,
39.00025062334348,
39.26193676506768,
39.52113065782308,
null,
38.84697731176216,
38.85071568521536,
38.85071568521536,
38.57033767622515,
38.57033767622515,
38.56909155174075,
38.597752414881974,
38.59899853936637,
38.6338900249296,
38.73108773471287,
38.84697731176216,
null,
38.25506818167171,
38.25631430615611,
38.25506818167171,
38.25880655512491,
38.236376314405696,
38.230145691983694,
38.197746455389264,
38.151639849466434,
38.09930262112159,
38.05568826416756,
38.03076577447954,
37.96098280335308,
37.892445956711036,
37.86752346702301,
37.91487619743025,
37.90739945052385,
38.25506818167171,
null,
38.65507414116442,
38.656320265648816,
38.743548979556884,
38.741056730588085,
38.74230285507248,
38.73607223265048,
38.5030469540675,
38.51800044788031,
38.46815546850427,
38.471893841957474,
38.41581824015943,
38.65507414116442,
null,
37.949767682993475,
38.08559525179318,
38.12422511080961,
38.12422511080961,
37.906153326039444,
37.86378509356981,
37.862538969085406,
37.944783185055876,
37.949767682993475,
null,
41.45760810658216,
41.463838729004166,
41.20215258727997,
41.12987736718471,
41.1149238733719,
41.10869325094989,
41.45760810658216,
null,
37.55973071937598,
37.570945839735586,
37.60085282736121,
37.60085282736121,
37.597114453908006,
37.3304438142462,
37.33542831218381,
37.33542831218381,
37.35661242841862,
37.407703532279065,
37.46627138304591,
37.529823731750355,
37.55973071937598,
null,
42.19406767686313,
42.19655992583193,
42.19655992583193,
42.19905217480073,
41.92988928617012,
41.92864316168572,
41.92988928617012,
41.93736603307653,
41.99593388384337,
42.0333176183754,
42.03954824079741,
42.105592838470656,
42.149207195424694,
42.17412968511271,
42.19406767686313,
null,
41.06881726744906,
41.06383276951146,
40.71491791387919,
40.62768919997112,
40.63516594687753,
41.06881726744906,
null,
42.19905217480073,
42.20154442376953,
42.20403667273833,
42.15045331990909,
42.15045331990909,
42.15169944439349,
41.89125942715369,
41.886274929216086,
41.907459045450906,
41.9012284230289,
41.92988928617012,
42.19905217480073,
null,
40.99778817183821,
41.01024941668222,
40.89560596411733,
40.73734815459841,
40.535475988125455,
40.49061550668702,
40.485631008749415,
40.48812325771822,
40.51678412085944,
40.99778817183821,
null,
41.31056541742285,
41.10495487749669,
41.10370875301229,
41.148569234450726,
41.148569234450726,
41.23455182387439,
41.23330569938999,
41.30184254603204,
41.31056541742285,
null,
40.10431691652273,
40.103070792038324,
39.980950592567034,
39.987181214989036,
39.96475097426982,
39.87627613587735,
39.83889240134532,
39.84013852582972,
39.84512302376733,
40.10431691652273,
null,
40.61772020409592,
40.61772020409592,
40.99529592286941,
40.99778817183821,
40.51678412085944,
40.48812325771822,
40.485631008749415,
40.39964841932575,
40.39840229484135,
40.39840229484135,
40.61772020409592,
null,
40.63890432033074,
40.63516594687753,
40.62768919997112,
40.27628209537006,
40.28375884227646,
40.63890432033074,
null,
37.33542831218381,
37.3304438142462,
37.29430620419858,
37.30302907558938,
37.227015482040926,
37.22826160652532,
37.22826160652532,
37.22452323307212,
37.188385623024494,
37.14103289261726,
37.0737421704596,
37.07249604597521,
37.10614140705403,
37.33542831218381,
null,
41.71929424830636,
41.72178649727516,
41.72178649727516,
41.72427874624397,
41.69561788310274,
41.59343567538186,
41.52116045528661,
41.463838729004166,
41.45760810658216,
41.6308194099139,
41.71929424830636,
null,
41.62832716094509,
41.6308194099139,
41.629573285429494,
41.6308194099139,
41.45760810658216,
41.10869325094989,
41.10620100198109,
40.92800520071175,
40.92551295174295,
41.10495487749669,
41.10495487749669,
41.31056541742285,
41.585958928475456,
41.62832716094509,
41.62832716094509,
null,
39.789047421969286,
39.789047421969286,
39.752909811921654,
39.752909811921654,
39.66692722249799,
39.63702023487237,
39.52113065782308,
39.52237678230748,
39.70431095703002,
39.789047421969286,
null,
40.19279175491519,
40.28375884227646,
40.27628209537006,
40.18905338146199,
40.18406888352439,
40.15540802038316,
40.12425490827314,
40.01958045158346,
39.987181214989036,
39.980950592567034,
40.103070792038324,
40.10431691652273,
40.19279175491519,
null,
37.862538969085406,
37.86378509356981,
37.599606702876805,
37.597114453908006,
37.60085282736121,
37.862538969085406,
null,
41.32801116020446,
41.45760810658216,
41.5149298328646,
41.54109844703702,
41.58471280399106,
41.58471280399106,
41.23455182387439,
41.21710608109278,
41.14981535893513,
41.14981535893513,
41.151061483419525,
41.32801116020446,
null,
38.212699949202076,
38.47313996644188,
38.47438609092628,
38.25631430615611,
38.12422511080961,
38.12422511080961,
38.130455733231614,
38.212699949202076,
null,
38.53046169272432,
38.54416906205273,
38.61145978421038,
38.66005863910202,
38.66005863910202,
38.65881251461762,
38.65507414116442,
38.41581824015943,
38.218930571624085,
38.22017669610848,
38.297436414141345,
38.30865153450095,
38.51800044788031,
38.53046169272432,
null,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.09808629410072,
40.05447193714669,
40.048241314724685,
40.28126659330766,
null,
38.218930571624085,
38.212699949202076,
38.130455733231614,
38.12422511080961,
38.08559525179318,
37.949767682993475,
37.95475218093108,
38.218930571624085,
null,
42.508091046932165,
42.50684492244776,
42.50684492244776,
42.508091046932165,
42.505598797963366,
42.19655992583193,
42.19406767686313,
42.20279054825393,
42.23892815830156,
42.277558017317986,
42.31992624978762,
42.35730998431965,
42.38098634952327,
42.403416590242486,
42.43830807580571,
42.44703094719652,
42.47195343688453,
42.508091046932165,
null,
39.83889240134532,
39.87627613587735,
39.872537762424145,
39.78530904851608,
39.52237678230748,
39.52113065782308,
39.52113065782308,
39.63702023487237,
39.66692722249799,
39.752909811921654,
39.752909811921654,
39.789047421969286,
39.789047421969286,
39.83889240134532,
null,
41.06383276951146,
41.151061483419525,
41.14981535893513,
40.97411180663459,
40.71242566491039,
40.71491791387919,
41.06383276951146,
null,
41.9012284230289,
41.907459045450906,
41.886274929216086,
41.89125942715369,
41.62832716094509,
41.62832716094509,
41.585958928475456,
41.585958928475456,
41.9012284230289,
null,
39.00025062334348,
38.99900449885908,
38.99900449885908,
38.99900449885908,
38.91800640737302,
38.91800640737302,
38.87439205041898,
38.743548979556884,
38.656320265648816,
38.65507414116442,
38.65881251461762,
38.66005863910202,
38.68747337775884,
38.72610323677527,
38.7722098426981,
38.7722098426981,
38.80585520377693,
38.84946956073097,
38.89931454010701,
38.910529660466615,
38.91925253185742,
38.99900449885908,
39.00025062334348,
null,
37.86378509356981,
37.906153326039444,
37.90739945052385,
37.599606702876805,
37.60085282736121,
37.599606702876805,
37.86378509356981,
null,
41.72427874624397,
41.725524870728364,
41.72801711969717,
41.68440276274313,
41.66944926893032,
41.6432806547579,
41.55729806533424,
41.55854418981864,
41.52863720219302,
41.47006935142617,
41.47131547591057,
41.29810417257884,
41.29810417257884,
41.29311967464123,
41.20589096073317,
41.20215258727997,
41.463838729004166,
41.52116045528661,
41.59343567538186,
41.69561788310274,
41.72427874624397,
null,
39.26193676506768,
39.00025062334348,
38.99900449885908,
38.91925253185742,
38.92299090531062,
38.96037463984265,
38.96162076432705,
38.96909751123346,
38.95912851535825,
39.117386324877174,
39.184677047034825,
39.17470805115961,
39.225799155020056,
39.26193676506768,
null,
39.791539670938086,
39.791539670938086,
39.65197372868518,
39.447609313243426,
39.447609313243426,
39.52113065782308,
39.52113065782308,
39.57969850858992,
39.580944633074324,
39.65321985316958,
39.741694691562046,
39.791539670938086,
null,
39.65197372868518,
39.65321985316958,
39.68686521424841,
39.48125467432225,
39.48125467432225,
39.37907246660137,
39.37533409314817,
39.447609313243426,
39.65197372868518,
null,
40.10805528997593,
40.141700651054755,
40.126747157241944,
40.15416189589877,
40.12176265930434,
40.091855671678715,
39.97596609462943,
39.974719970145024,
39.91615211937818,
39.90244475004977,
39.90119862556537,
40.10805528997593,
null,
38.08808750076198,
38.13544023116922,
38.22266894507729,
38.22017669610848,
38.218930571624085,
38.218930571624085,
37.95475218093108,
37.830139732490984,
37.79649437141216,
37.81518623867817,
37.855062222179,
37.903661077070645,
37.871261840476215,
37.88123083635143,
37.918614570883456,
37.96596730129069,
37.96970567474389,
38.014566156182326,
38.049457641745555,
38.08808750076198,
null,
40.51304574740624,
40.552921730907066,
40.55416785539147,
40.68501092625357,
40.70619504248839,
40.74731715047362,
40.748563274958016,
40.61522795512712,
40.5940438388923,
40.324880950261694,
40.31989645232409,
40.31865032783969,
40.43578602937338,
40.43578602937338,
40.491861631171425,
40.51304574740624,
null,
40.39964841932575,
40.485631008749415,
40.49061550668702,
40.47690813735861,
40.25011348119764,
40.14793127347676,
40.010857580192656,
39.88250675829936,
39.86879938897094,
39.881260633814954,
39.878768384846154,
40.22519099150962,
40.39964841932575,
null,
42.15169944439349,
42.1529455688779,
42.1529455688779,
42.06571685496983,
42.01711800007819,
41.71929424830636,
41.6308194099139,
41.629573285429494,
41.6308194099139,
41.62832716094509,
41.89125942715369,
42.15169944439349,
null,
37.90739945052385,
37.91487619743025,
37.86752346702301,
37.856308346663404,
37.80023274486536,
37.742911018582916,
37.69805053714448,
37.65443618019045,
37.57468421318879,
37.599606702876805,
37.599606702876805,
37.90739945052385,
null,
39.39651820938298,
39.45757830911863,
39.52237678230748,
39.52113065782308,
39.52113065782308,
39.26193676506768,
39.225799155020056,
39.17470805115961,
39.184677047034825,
39.117386324877174,
39.14230881456519,
39.19838441636323,
39.39651820938298,
null,
40.92177457828975,
40.926759076227356,
40.92551295174295,
40.92800520071175,
40.75354777289562,
40.75230164841122,
40.66507293450316,
40.62768919997112,
40.596536087861104,
40.5940438388923,
40.61522795512712,
40.748563274958016,
40.74731715047362,
40.79342375639645,
40.92177457828975,
null,
38.910529660466615,
39.17096967770641,
39.17470805115961,
39.17470805115961,
38.85071568521536,
38.84697731176216,
38.851961809699766,
38.910529660466615,
null,
39.987181214989036,
40.01958045158346,
40.12425490827314,
40.05447193714669,
40.06194868405309,
40.10805528997593,
39.90119862556537,
39.872537762424145,
39.87627613587735,
39.96475097426982,
39.987181214989036,
null,
39.52362290679188,
39.52486903127628,
39.34916547897575,
39.34916547897575,
39.21832240811365,
39.21832240811365,
39.0276653620003,
39.0289114864847,
38.99900449885908,
38.99900449885908,
39.52362290679188,
null,
38.825793195527346,
38.91426803391982,
38.910529660466615,
38.851961809699766,
38.84697731176216,
38.73108773471287,
38.6338900249296,
38.59899853936637,
38.606475286272776,
38.606475286272776,
38.825793195527346,
null,
42.49562980208815,
42.49438367760376,
42.493137553119354,
42.493137553119354,
42.1529455688779,
42.15169944439349,
42.49562980208815,
null,
40.69996442006638,
40.7248869097544,
40.77971638706804,
40.82083849505327,
40.86819122546051,
40.911805582414544,
40.95417381488418,
41.01897228807302,
41.070063391933466,
41.06881726744906,
40.63516594687753,
40.63890432033074,
40.63516594687753,
40.637658195846335,
40.67254968140956,
40.69996442006638,
null,
39.21707628362925,
39.21583015914484,
39.17221580219081,
39.17096967770641,
38.910529660466615,
38.91426803391982,
38.91177578495101,
39.21707628362925,
null,
38.12422511080961,
38.25631430615611,
38.25506818167171,
37.90739945052385,
37.906153326039444,
38.12422511080961,
null,
39.75789430985926,
39.75664818537486,
39.84512302376733,
39.84013852582972,
39.83889240134532,
39.789047421969286,
39.70431095703002,
39.52237678230748,
39.45757830911863,
39.39651820938298,
39.400256582836185,
39.40150270732059,
39.44885543772782,
39.49496204365066,
39.53857640060469,
39.546053147511095,
39.59215975343393,
39.598390375855935,
39.66692722249799,
39.68686521424841,
39.72923344671804,
39.75789430985926,
null,
38.56909155174075,
38.57033767622515,
38.399618621862224,
38.28995966723494,
38.25880655512491,
38.25506818167171,
38.25631430615611,
38.56909155174075,
null,
40.71242566491039,
40.97411180663459,
40.97411180663459,
40.97286568215019,
40.92177457828975,
40.79342375639645,
40.74731715047362,
40.70619504248839,
40.68501092625357,
40.55416785539147,
40.552921730907066,
40.51304574740624,
40.62395082651792,
40.62519695100232,
40.71242566491039,
null,
39.17470805115961,
39.17221580219081,
39.157262308378,
39.102432831064355,
39.05757234962592,
39.00149674782788,
38.97158976020226,
38.90803741149781,
38.90554516252901,
38.875638174903386,
38.851961809699766,
38.85071568521536,
38.85071568521536,
39.17470805115961,
null,
37.30302907558938,
37.33542831218381,
37.33792056115261,
37.159724759883275,
37.0675115480376,
37.0675115480376,
37.083711166334815,
37.112372029476035,
37.14103289261726,
37.15474026194567,
37.1971084944153,
37.227015482040926,
37.30302907558938,
null,
37.33542831218381,
37.33542831218381,
37.10614140705403,
37.07249604597521,
37.01766656866156,
36.981528958613936,
36.990251830004745,
37.01517431969276,
37.02888168902117,
37.042589058349584,
37.103649158085226,
37.188385623024494,
37.253184096213346,
37.26066084311975,
37.281844959354565,
37.325459316308596,
37.33542831218381,
null,
39.90119862556537,
39.90244475004977,
39.91615211937818,
39.974719970145024,
39.97596609462943,
39.97596609462943,
39.91739824386258,
39.91615211937818,
39.8127237871729,
39.82518503201691,
39.77534005264087,
39.74667918949965,
39.68437296527961,
39.68437296527961,
39.64200473280997,
39.64200473280997,
39.613343869668746,
39.52486903127628,
39.52362290679188,
39.52237678230748,
39.78530904851608,
39.872537762424145,
39.90119862556537,
null,
39.8127237871729,
39.800262542328895,
39.65571210213838,
39.654465977653985,
39.34667323000694,
39.34916547897575,
39.34916547897575,
39.52486903127628,
39.613343869668746,
39.64200473280997,
39.64200473280997,
39.68437296527961,
39.68437296527961,
39.74667918949965,
39.77534005264087,
39.82518503201691,
39.8127237871729,
null,
41.334241782626464,
41.334241782626464,
41.32801116020446,
41.151061483419525,
41.06383276951146,
41.06881726744906,
41.070063391933466,
41.072555640902266,
41.1111854999187,
41.16352272826354,
41.16601497723234,
41.21461383212397,
41.250751442171605,
41.334241782626464,
null,
37.79649437141216,
37.830139732490984,
37.95475218093108,
37.949767682993475,
37.944783185055876,
37.862538969085406,
37.60085282736121,
37.60085282736121,
37.570945839735586,
37.58091483561079,
37.62577531704923,
37.696804412660086,
37.7242191513169,
37.760356761364534,
37.79649437141216,
null,
37.599606702876805,
37.60085282736121,
37.42141090160747,
37.422657026091876,
37.40022678537266,
37.34041281012141,
37.290567830745374,
37.22078485961892,
37.14975576400806,
37.09866466014763,
37.068757672522004,
37.068757672522004,
37.0675115480376,
37.159724759883275,
37.33792056115261,
37.599606702876805,
null,
39.878768384846154,
39.881260633814954,
39.86879938897094,
39.88250675829936,
39.66568109801359,
39.60835937173115,
39.47751630086905,
39.487485296744254,
39.48125467432225,
39.68686521424841,
39.791539670938086,
39.878768384846154,
null,
39.400256582836185,
39.39651820938298,
39.19838441636323,
39.14230881456519,
39.117386324877174,
38.95912851535825,
38.96909751123346,
38.96162076432705,
38.96162076432705,
38.910529660466615,
38.87065367696578,
38.875638174903386,
38.92049865634182,
38.93420602567023,
38.98405100504627,
39.05383397617272,
39.10118670657996,
39.151031685956,
39.22455303053565,
39.25570614264568,
39.34044260758494,
39.400256582836185,
null,
40.27628209537006,
40.62768919997112,
40.71491791387919,
40.71242566491039,
40.62519695100232,
40.62395082651792,
40.51304574740624,
40.491861631171425,
40.43578602937338,
40.374725929637734,
40.235159987384826,
40.18406888352439,
40.18905338146199,
40.27628209537006,
null,
38.5030469540675,
38.73607223265048,
38.82454707104294,
38.825793195527346,
38.606475286272776,
38.47438609092628,
38.47313996644188,
38.5030469540675,
null,
38.47438609092628,
38.606475286272776,
38.606475286272776,
38.59899853936637,
38.597752414881974,
38.56909155174075,
38.25631430615611,
38.25506818167171,
38.25631430615611,
38.47438609092628,
null,
42.15419169336229,
42.15419169336229,
42.1529455688779,
42.1529455688779,
42.1529455688779,
42.15169944439349,
42.12802307918987,
42.12802307918987,
42.12802307918987,
42.081916473267036,
42.07568585084503,
42.0283331204378,
41.93238153513892,
41.9062129209665,
41.903720671997704,
41.892505551638095,
41.883782680247286,
41.87007531091888,
41.845152821230855,
41.81026133566763,
41.799046215308024,
41.7654008542292,
41.74795511144758,
41.723032621759565,
41.70807912794675,
41.529883326677414,
41.47131547591057,
41.47006935142617,
41.52863720219302,
41.55854418981864,
41.55729806533424,
41.6432806547579,
41.66944926893032,
41.68440276274313,
41.685648887227536,
41.685648887227536,
41.68689501171194,
41.68689501171194,
41.69312563413394,
41.694371758618345,
41.69811013207155,
41.70309463000915,
41.71929424830636,
41.7716314766512,
41.790323343917215,
41.79530784185482,
41.9062129209665,
41.94110440652973,
41.99344163487457,
41.98721101245257,
41.985964887968166,
42.014625751109385,
42.06571685496983,
42.09188546914225,
42.15419169336229,
null,
40.2002685018216,
40.19279175491519,
40.10431691652273,
39.84512302376733,
39.75664818537486,
39.75789430985926,
39.78655517300048,
39.820200534079305,
39.84512302376733,
39.90742924798737,
39.9448129825194,
39.946059107003805,
40.01833432709906,
40.07814830235031,
40.170361514195974,
40.2002685018216,
null,
41.985964887968166,
41.98721101245257,
41.99344163487457,
41.94110440652973,
41.9062129209665,
41.79530784185482,
41.790323343917215,
41.7716314766512,
41.71929424830636,
41.70309463000915,
41.69811013207155,
41.694371758618345,
41.69312563413394,
41.68689501171194,
41.68689501171194,
41.685648887227536,
41.685648887227536,
41.68440276274313,
41.72801711969717,
41.725524870728364,
41.72427874624397,
41.81150746015203,
41.81150746015203,
41.88253655576288,
41.8987361740601,
41.985964887968166,
null,
41.453869733128954,
41.45511585761336,
41.48502284523898,
41.51742208183341,
41.51991433080221,
41.52365270425541,
41.56352868775624,
41.579728306053454,
41.59842017331947,
41.66446477099272,
41.694371758618345,
41.72801711969717,
41.74172448902558,
41.77910822355761,
41.78284659701081,
41.67443376686793,
41.6432806547579,
41.58471280399106,
41.54109844703702,
41.5149298328646,
41.45760810658216,
41.32801116020446,
41.334241782626464,
41.34047240504847,
41.36913326818969,
41.42396274550333,
41.43019336792534,
41.42396274550333,
41.448885235191355,
41.453869733128954,
null,
38.85071568521536,
38.851961809699766,
38.82703932001175,
38.75725634888529,
38.67750438188364,
38.638874522867205,
38.58778341900676,
38.56659930277195,
38.57033767622515,
38.85071568521536,
null,
39.91615211937818,
39.91739824386258,
40.048241314724685,
40.05447193714669,
39.791539670938086,
39.741694691562046,
39.65321985316958,
39.654465977653985,
39.65571210213838,
39.800262542328895,
39.8127237871729,
39.91615211937818,
null,
40.31989645232409,
40.324880950261694,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.048241314724685,
39.91739824386258,
39.91615211937818,
39.91739824386258,
39.97596609462943,
39.97596609462943,
40.091855671678715,
40.12176265930434,
40.31989645232409,
null,
38.25880655512491,
38.28995966723494,
38.399618621862224,
38.57033767622515,
38.57033767622515,
38.56659930277195,
38.54043068859953,
38.51176982545831,
38.47937058886388,
38.43575623190985,
38.41831048912824,
38.370957758721,
38.30740541001655,
38.26877555100012,
38.236376314405696,
38.25880655512491,
null,
40.248867356713234,
40.270051472948055,
40.322388701292894,
40.37846430309094,
40.39840229484135,
40.45198564767059,
40.51055349843744,
40.53422986364105,
40.58282871853269,
40.613981830642714,
40.63890432033074,
40.637658195846335,
40.637658195846335,
40.63516594687753,
40.63890432033074,
40.28375884227646,
40.19279175491519,
40.2002685018216,
40.248867356713234,
null,
40.5940438388923,
40.596536087861104,
40.62768919997112,
40.66507293450316,
40.75230164841122,
40.75354777289562,
40.757286146348825,
40.616474079611514,
40.61772020409592,
40.39840229484135,
40.28126659330766,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.324880950261694,
40.5940438388923,
null,
39.48125467432225,
39.487485296744254,
39.47751630086905,
39.47003955396264,
39.347919354491346,
39.34044260758494,
39.31302786892812,
39.25944451609888,
39.24822939573927,
39.210845661207244,
39.16723130425321,
39.157262308378,
39.17221580219081,
39.17470805115961,
39.17470805115961,
39.37907246660137,
39.48125467432225,
39.48125467432225,
null,
42.493137553119354,
42.49438367760376,
42.49562980208815,
42.49562980208815,
42.49562980208815,
42.41587783508649,
42.32864912117843,
42.24142040727036,
42.24142040727036,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.1529455688779,
42.1529455688779,
42.493137553119354,
null,
38.38715737701821,
38.43824848087865,
38.495570207161094,
38.51800044788031,
38.30865153450095,
38.297436414141345,
38.22017669610848,
38.22266894507729,
38.13544023116922,
38.08808750076198,
38.09431812318399,
38.12671735977841,
38.12671735977841,
38.18154683709206,
38.218930571624085,
38.236376314405696,
38.323605028313764,
38.377188381143,
38.384665128049406,
38.38715737701821,
null,
39.34916547897575,
39.34667323000694,
39.654465977653985,
39.65321985316958,
39.580944633074324,
39.57969850858992,
39.52113065782308,
39.52113065782308,
39.447609313243426,
39.447609313243426,
39.37533409314817,
39.21583015914484,
39.21707628362925,
39.21707628362925,
39.21832240811365,
39.34916547897575,
null,
42.50061430002576,
42.50061430002576,
42.49562980208815,
42.49562980208815,
42.49562980208815,
42.15169944439349,
42.15045331990909,
42.15045331990909,
42.20403667273833,
42.20154442376953,
42.30746500494361,
42.50061430002576,
null,
37.60085282736121,
37.599606702876805,
37.599606702876805,
37.57468421318879,
37.573438088704386,
37.52857760726595,
37.50490124206234,
37.488701623765124,
37.46751750753031,
37.4525640137175,
37.40521128331026,
37.42141090160747,
37.60085282736121,
null,
40.28126659330766,
40.39840229484135,
40.39840229484135,
40.39964841932575,
40.22519099150962,
39.878768384846154,
39.878768384846154,
39.878768384846154,
40.141700651054755,
40.28126659330766,
null,
38.41581824015943,
38.471893841957474,
38.46815546850427,
38.51800044788031,
38.5030469540675,
38.47313996644188,
38.212699949202076,
38.218930571624085,
38.218930571624085,
38.41581824015943,
null,
41.78284659701081,
41.81150746015203,
41.84390669674646,
41.883782680247286,
41.92988928617012,
41.92864316168572,
41.92988928617012,
41.9012284230289,
41.585958928475456,
41.58471280399106,
41.58471280399106,
41.6432806547579,
41.67443376686793,
41.78284659701081,
null,
37.3304438142462,
37.597114453908006,
37.599606702876805,
37.33792056115261,
37.33542831218381,
37.30302907558938,
37.29430620419858,
37.3304438142462,
null,
41.1149238733719,
41.12987736718471,
41.20215258727997,
41.20589096073317,
41.29311967464123,
41.29810417257884,
41.16601497723234,
41.02520291049503,
41.01024941668222,
40.99778817183821,
40.99529592286941,
41.1149238733719,
null,
41.58471280399106,
41.585958928475456,
41.585958928475456,
41.31056541742285,
41.30184254603204,
41.23330569938999,
41.23455182387439,
41.148569234450726,
41.148569234450726,
41.23455182387439,
41.23455182387439,
41.58471280399106,
null,
39.0276653620003,
39.21832240811365,
39.21832240811365,
39.21707628362925,
39.21707628362925,
38.91177578495101,
38.91426803391982,
38.825793195527346,
38.82454707104294,
38.73607223265048,
38.74230285507248,
38.91676028288862,
38.99900449885908,
39.0276653620003,
null,
42.49562980208815,
42.493137553119354,
42.49189142863495,
42.4208623330241,
42.36104835777285,
42.301234382521606,
42.297496009068404,
42.207775046191536,
42.205282797222736,
42.15169944439349,
42.1529455688779,
42.1529455688779,
42.1529455688779,
42.15419169336229,
42.24142040727036,
42.24142040727036,
42.32864912117843,
42.41587783508649,
42.49562980208815,
null,
40.12425490827314,
40.15540802038316,
40.18406888352439,
40.235159987384826,
40.374725929637734,
40.43578602937338,
40.43578602937338,
40.31865032783969,
40.31989645232409,
40.12176265930434,
40.15416189589877,
40.126747157241944,
40.141700651054755,
40.10805528997593,
40.06194868405309,
40.05447193714669,
40.12425490827314,
null,
42.1529455688779,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.09188546914225,
42.06571685496983,
42.014625751109385,
41.985964887968166,
41.8987361740601,
41.88253655576288,
41.81150746015203,
41.81150746015203,
41.72427874624397,
41.72178649727516,
41.72178649727516,
41.71929424830636,
42.01711800007819,
42.06571685496983,
42.1529455688779,
null,
42.50435267347896,
42.50186042451016,
42.50061430002576,
42.30746500494361,
42.20154442376953,
42.19905217480073,
42.19655992583193,
42.19655992583193,
42.505598797963366,
42.505598797963366,
42.50435267347896,
null,
40.05447193714669,
40.09808629410072,
40.28126659330766,
40.28126659330766,
40.141700651054755,
39.878768384846154,
39.80150866681329,
39.791539670938086,
39.791539670938086,
40.05447193714669,
null
],
"line": {
"color": "rgb(220,220,220)",
"width": 0.5
},
"lon": [
-89.63683115774177,
-89.46722307611506,
-89.32941650979336,
-89.35945127424809,
-89.16334192986722,
-89.04850312459912,
-89.04850312459912,
-89.16157517901694,
-89.4725233286659,
-89.447788816762,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
null,
-88.47077559655816,
-88.47077559655816,
-88.01318712633609,
-88.00788687378527,
-88.3612370438409,
-88.47077559655816,
-88.47077559655816,
null,
-88.47430909825871,
-88.46194184230676,
-88.46194184230676,
-88.34886978788896,
-87.93721683977414,
-87.96901835507914,
-87.96725160422886,
-88.06442290099416,
-88.47254234740844,
-88.47430909825871,
null,
-88.58738115267651,
-88.25169849112365,
-88.2481649894231,
-88.23579773347114,
-88.46017509145648,
-88.57501389672457,
-88.58561440182623,
-88.93013081763048,
-88.93189756848076,
-88.93189756848076,
-88.58738115267651,
null,
-89.63859790859205,
-89.5855953830837,
-89.25167947238113,
-89.25874647578223,
-89.25697972493195,
-89.25521297408167,
-89.48312383376756,
-89.59619588818538,
-89.59796263903566,
-89.63683115774177,
-89.63683115774177,
-89.63859790859205,
null,
-89.9831143243963,
-89.86827551912822,
-89.86650876827794,
-89.85767501402655,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
-89.63859790859205,
-89.98488107524658,
-89.9831143243963,
null,
-90.15272240602302,
-89.92481154633712,
-89.70043418835179,
-89.69690068665123,
-90.11562063816717,
-90.1456554026219,
-90.14742215347218,
-90.15272240602302,
null,
-88.25876549452477,
-87.94605059402552,
-87.90894882616968,
-87.91248232787024,
-87.95488434827692,
-88.14746019095725,
-88.14746019095725,
-88.25346524197393,
-88.29763401323089,
-88.25876549452477,
-88.25876549452477,
null,
-88.3700707980923,
-88.15099369265779,
-88.02732113313832,
-87.99021936528248,
-87.96901835507914,
-87.97078510592942,
-87.97608535848025,
-87.92838308552274,
-87.96195135167802,
-87.9884526144322,
-88.03085463483887,
-88.01672062803665,
-88.04145513994055,
-88.05912264844333,
-88.13685968585557,
-88.37537105064312,
-88.3700707980923,
null,
-89.70573444090262,
-89.5944291373351,
-89.59619588818538,
-89.48312383376756,
-89.25521297408167,
-89.13860741796331,
-89.14390767051415,
-89.35238427084698,
-89.48312383376756,
-89.61386339668816,
-89.70396769005235,
-89.70573444090262,
null,
-89.17747593666944,
-89.1156396569097,
-89.12977366371193,
-88.70575345964515,
-88.70752021049543,
-88.70752021049543,
-89.15274142476554,
-89.15097467391527,
-89.17747593666944,
null,
-88.59621490692791,
-88.25169849112365,
-88.24463148772254,
-88.24109798602198,
-88.25169849112365,
-88.58738115267651,
-88.59621490692791,
null,
-89.50255809312063,
-89.49902459142007,
-89.45308906931284,
-89.15450817561582,
-89.04143612119802,
-89.04496962289858,
-89.24991272153085,
-89.47429007951618,
-89.42835455740894,
-89.42658780655867,
-89.4725233286659,
-89.51139184737202,
-89.50255809312063,
null,
-90.3152634842486,
-89.91951129378629,
-89.89654353273266,
-89.68806693239983,
-89.68453343069929,
-90.12798789411912,
-90.15802265857384,
-90.15625590772356,
-90.14035515007106,
-90.15978940942412,
-90.16332291112468,
-90.15978940942412,
-90.20749168238163,
-90.26932796214138,
-90.3152634842486,
null,
-90.78521921042261,
-90.43893604376808,
-90.44423629631892,
-90.44423629631892,
-90.78875271212317,
-90.78521921042261,
null,
-89.68806693239983,
-89.39655304210393,
-89.17394243496888,
-89.17394243496888,
-89.09267189585609,
-88.94073132273216,
-88.94249807358244,
-89.415987301457,
-89.42835455740894,
-89.62799740349038,
-89.68453343069929,
-89.68806693239983,
null,
-88.13155943330473,
-87.52733064250958,
-87.52556389165932,
-87.52556389165932,
-87.52556389165932,
-87.52733064250958,
-87.93545008892386,
-88.1174254265025,
-88.11919217735279,
-88.13155943330473,
null,
-89.1651086807175,
-89.16334192986722,
-89.35945127424809,
-89.32941650979336,
-89.46722307611506,
-89.46722307611506,
-89.35768452339782,
-89.33648351319448,
-89.1651086807175,
null,
-90.91419202249293,
-90.69511491705842,
-90.6067773745445,
-90.51313957947977,
-90.51137282862949,
-90.5838096134909,
-90.57144235753894,
-90.88945751058903,
-90.91595877334319,
-90.91419202249293,
null,
-88.46017509145648,
-88.23579773347114,
-88.2481649894231,
-88.13155943330473,
-88.11919217735279,
-88.1174254265025,
-87.93545008892386,
-87.93368333807358,
-88.34710303703868,
-88.46017509145648,
-88.46017509145648,
null,
-90.90359151739125,
-90.78875271212317,
-90.44423629631892,
-90.44953654886974,
-90.90889176994209,
-90.90359151739125,
null,
-89.24991272153085,
-89.04496962289858,
-89.04496962289858,
-88.93013081763048,
-88.9283640667802,
-88.93189756848076,
-88.93366431933104,
-89.00080085164161,
-89.0591036297008,
-89.09973889925719,
-89.16864218241804,
-89.16687543156777,
-89.26227997748279,
-89.24991272153085,
null,
-88.60328191032902,
-88.40540581509786,
-88.37537105064312,
-88.26229899622533,
-88.26053224537505,
-88.25699874367449,
-88.2552319928242,
-88.25169849112365,
-88.59621490692791,
-88.60328191032902,
-88.60328191032902,
null,
-88.93896457188188,
-88.81882551406296,
-88.71282046304627,
-88.60328191032902,
-88.59621490692791,
-88.58738115267651,
-88.93189756848076,
-88.93189756848076,
-89.04850312459912,
-89.04850312459912,
-89.16334192986722,
-89.1651086807175,
-89.16687543156777,
-89.16864218241804,
-88.93896457188188,
null,
-90.59794362029312,
-90.48310481502503,
-90.48310481502503,
-90.37003276060723,
-90.37179951145751,
-90.2993627265961,
-90.30112947744638,
-90.58027611179034,
-90.64564589325063,
-90.59794362029312,
null,
-90.91242527164265,
-90.90889176994209,
-90.44953654886974,
-90.45130329972002,
-90.19865792813025,
-90.20572493153136,
-90.35413200295473,
-90.43540254206752,
-90.51313957947977,
-90.6067773745445,
-90.69511491705842,
-90.91419202249293,
-90.91242527164265,
null,
-89.15274142476554,
-88.70752021049543,
-88.70928696134571,
-89.04143612119802,
-89.15450817561582,
-89.15274142476554,
null,
-90.43363579121724,
-90.43186904036696,
-90.33293099275139,
-90.19512442642969,
-90.18452392132802,
-89.8612085157271,
-89.85767501402655,
-89.86650876827794,
-89.86827551912822,
-89.9831143243963,
-90.4371692929178,
-90.43363579121724,
null,
-89.14744117221471,
-89.14567442136443,
-88.69868645624405,
-88.70221995794459,
-88.70575345964515,
-89.12977366371193,
-89.15097467391527,
-89.14744117221471,
null,
-90.25519395533915,
-90.24812695193803,
-90.18452392132802,
-90.18099041962746,
-90.18099041962746,
-90.03611684990464,
-89.70573444090262,
-89.70396769005235,
-89.70220093920207,
-89.89831028358294,
-89.90361053613378,
-90.03611684990464,
-90.26049420788998,
-90.25519395533915,
null,
-89.14920792306499,
-88.91953031252882,
-88.57501389672457,
-88.74638872920156,
-88.74638872920156,
-89.14567442136443,
-89.14920792306499,
null,
-89.59266238648482,
-89.14744117221471,
-89.15097467391527,
-89.12977366371193,
-89.1156396569097,
-89.17747593666944,
-89.5944291373351,
-89.59266238648482,
null,
-90.64211239155007,
-90.4371692929178,
-90.42656878781614,
-90.22339244003413,
-89.9265782971874,
-89.91951129378629,
-90.3152634842486,
-90.33823124530223,
-90.40006752506196,
-90.4301022895167,
-90.41596828271446,
-90.4460030471692,
-90.48310481502503,
-90.51667308118033,
-90.56437535413784,
-90.590876616892,
-90.64564589325063,
-90.64211239155007,
null,
-90.57144235753894,
-90.5838096134909,
-89.99371482949797,
-89.99371482949797,
-89.92481154633712,
-90.15272240602302,
-90.30112947744638,
-90.2993627265961,
-90.37179951145751,
-90.37003276060723,
-90.48310481502503,
-90.48310481502503,
-90.59794362029312,
-90.57144235753894,
null,
-90.43893604376808,
-90.4371692929178,
-89.9831143243963,
-89.98488107524658,
-89.98488107524658,
-90.44423629631892,
-90.43893604376808,
null,
-89.62799740349038,
-89.42835455740894,
-89.415987301457,
-88.94249807358244,
-88.93896457188188,
-89.16864218241804,
-89.16687543156777,
-89.63153090519094,
-89.62799740349038,
null,
-90.1456554026219,
-90.11562063816717,
-89.69690068665123,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
-89.59796263903566,
-89.59619588818538,
-89.5944291373351,
-89.70573444090262,
-90.03611684990464,
-90.18099041962746,
-90.19512442642969,
-90.20925843323191,
-90.16685641282524,
-90.16508966197496,
-90.11738738901745,
-90.11208713646661,
-90.20749168238163,
-90.23045944343525,
-90.27639496554248,
-90.27286146384193,
-90.1456554026219,
null,
-88.70752021049543,
-88.70752021049543,
-88.37537105064312,
-88.37537105064312,
-88.41247281849897,
-88.70928696134571,
-88.70752021049543,
null,
-88.26229899622533,
-88.14922694180751,
-88.03085463483887,
-88.0290878839886,
-88.0290878839886,
-87.91248232787024,
-87.90894882616968,
-87.81177752940438,
-87.79057651920104,
-87.78704301750048,
-87.52556389165932,
-87.52733064250958,
-87.52733064250958,
-88.01495387718637,
-88.01142037548581,
-88.24463148772254,
-88.25169849112365,
-88.2552319928242,
-88.25699874367449,
-88.26053224537505,
-88.26229899622533,
null,
-90.14742215347218,
-90.1456554026219,
-90.27286146384193,
-90.27639496554248,
-90.29759597574582,
-90.39476727251113,
-90.45130329972002,
-90.46720405737253,
-90.5343405896831,
-90.60324387284396,
-90.58027611179034,
-90.31349673339832,
-90.31349673339832,
-90.14742215347218,
null,
-88.74638872920156,
-88.47430909825871,
-88.47254234740844,
-88.47077559655816,
-88.58561440182623,
-88.64215042903514,
-88.71812071559711,
-88.71812071559711,
-88.80999175981157,
-88.81175851066185,
-88.81352526151213,
-88.74638872920156,
null,
-88.47254234740844,
-88.06442290099416,
-87.96725160422886,
-87.96018460082774,
-88.01495387718637,
-88.01318712633609,
-88.47077559655816,
-88.47077559655816,
-88.47254234740844,
null,
-89.99371482949797,
-89.96898031759407,
-89.7481364613093,
-89.63683115774177,
-89.6014961407362,
-89.5785283796826,
-89.57676162883232,
-89.69690068665123,
-89.70043418835179,
-89.76933747151264,
-89.99371482949797,
-89.99371482949797,
null,
-90.20572493153136,
-90.03611684990464,
-90.03611684990464,
-89.89831028358294,
-89.70220093920207,
-89.59266238648482,
-89.5944291373351,
-89.66333242049595,
-89.68630018154957,
-89.69513393580095,
-89.78170472746459,
-89.85060801062544,
-89.92304479548685,
-89.93187854973823,
-89.97428057014491,
-89.95484631079185,
-90.0078488363002,
-90.08028562116161,
-90.12622114326884,
-90.20572493153136,
null,
-89.87180902082878,
-89.76933747151264,
-89.67393292559761,
-89.59089563563454,
-89.55202711692841,
-89.5537938677787,
-89.33118326064364,
-89.32764975894308,
-89.26934698088391,
-89.26404672833307,
-89.6014961407362,
-89.71456819515402,
-89.7163349460043,
-89.92481154633712,
-89.88417627678072,
-89.87180902082878,
null,
-87.93368333807358,
-87.93545008892386,
-87.52733064250958,
-87.52733064250958,
-87.53086414421014,
-87.53086414421014,
-87.53263089506042,
-87.53263089506042,
-87.55736540696432,
-87.6156681850235,
-87.93721683977414,
-87.94251709232496,
-87.93368333807358,
null,
-88.94073132273216,
-88.70575345964515,
-88.5891479035268,
-88.5891479035268,
-88.60151515947874,
-88.60328191032902,
-88.60328191032902,
-88.71282046304627,
-88.81882551406296,
-88.93896457188188,
-88.94249807358244,
-88.94073132273216,
null,
-88.37537105064312,
-88.13685968585557,
-88.05912264844333,
-88.06795640269472,
-88.0290878839886,
-88.05912264844333,
-88.13332618415501,
-88.15982744690919,
-88.13155943330473,
-88.17926170626225,
-88.37537105064312,
-88.37537105064312,
null,
-90.61384437794563,
-90.61031087624507,
-90.58027611179034,
-90.30112947744638,
-90.15272240602302,
-90.14742215347218,
-90.31349673339832,
-90.31349673339832,
-90.58027611179034,
-90.60324387284396,
-90.61384437794563,
-90.590876616892,
-90.61384437794563,
null,
-89.4725233286659,
-89.16157517901694,
-89.04850312459912,
-88.93189756848076,
-88.93013081763048,
-88.98843359568967,
-88.98490009398911,
-89.04496962289858,
-89.13507391626275,
-89.26934698088391,
-89.32764975894308,
-89.33118326064364,
-89.5537938677787,
-89.56086087117981,
-89.4725233286659,
null,
-88.36300379469118,
-88.3612370438409,
-88.00788687378527,
-87.95135084657636,
-87.94605059402552,
-88.25876549452477,
-88.36300379469118,
-88.36300379469118,
null,
-90.51313957947977,
-90.43540254206752,
-90.35413200295473,
-90.28699547064416,
-90.13328814666995,
-89.99371482949797,
-89.99371482949797,
-89.99371482949797,
-90.5838096134909,
-90.51137282862949,
-90.51313957947977,
null,
-89.70043418835179,
-89.53259285757535,
-89.53082610672509,
-89.1403741688136,
-89.1403741688136,
-89.25167947238113,
-89.25167947238113,
-89.5855953830837,
-89.63859790859205,
-89.69690068665123,
-89.70043418835179,
null,
-88.69515295454349,
-88.69338620369321,
-88.36300379469118,
-88.36300379469118,
-88.25876549452477,
-88.25876549452477,
-88.29763401323089,
-88.25346524197393,
-88.56441339162289,
-88.69868645624405,
-88.69515295454349,
null,
-88.94073132273216,
-88.77642349365628,
-88.70752021049543,
-88.70752021049543,
-88.70575345964515,
-88.94073132273216,
-88.94073132273216,
null,
-91.11736837027492,
-91.11560161942464,
-91.09086710752074,
-91.09263385837102,
-91.04493158541351,
-90.98486205650404,
-90.95129379034876,
-90.94422678694765,
-90.95129379034876,
-90.78521921042261,
-90.78875271212317,
-90.90359151739125,
-91.02196382435989,
-91.18450490258549,
-91.12090187197548,
-91.11736837027492,
null,
-88.80645825811101,
-88.47077559655816,
-88.47077559655816,
-88.3612370438409,
-88.36300379469118,
-88.69338620369321,
-88.80822500896129,
-88.80645825811101,
null,
-88.70575345964515,
-88.70221995794459,
-88.3700707980923,
-88.37537105064312,
-88.70752021049543,
-88.70575345964515,
null,
-91.36471348931386,
-90.91595877334319,
-90.91595877334319,
-90.88945751058903,
-90.57144235753894,
-90.59794362029312,
-90.64564589325063,
-90.58027611179034,
-90.61031087624507,
-90.61384437794563,
-90.93539303269625,
-90.93715978354653,
-91.03786458201239,
-91.06436584476657,
-91.09970086177213,
-91.14740313472964,
-91.17390439748382,
-91.18273815173521,
-91.27637594679996,
-91.30641071125468,
-91.36824699101442,
-91.36471348931386,
null,
-88.14746019095725,
-87.95488434827692,
-87.97608535848025,
-87.95135084657636,
-87.99021936528248,
-88.02732113313832,
-88.15099369265779,
-88.14746019095725,
null,
-89.98488107524658,
-89.98488107524658,
-89.63859790859205,
-89.447788816762,
-89.4725233286659,
-89.56086087117981,
-89.5537938677787,
-89.55202711692841,
-89.59089563563454,
-89.67393292559761,
-89.76933747151264,
-89.87180902082878,
-89.87357577167906,
-89.98841457694714,
-89.98488107524658,
null,
-87.95135084657636,
-87.6563034545799,
-87.63863594607712,
-87.62626869012517,
-87.57326616461683,
-87.57856641716765,
-87.52909739335986,
-87.52733064250958,
-87.52909739335986,
-87.54676490186264,
-87.5343976459107,
-87.90894882616968,
-87.94605059402552,
-87.95135084657636,
null,
-88.93013081763048,
-88.90892980742714,
-88.71105371219599,
-88.49020985591122,
-88.49020985591122,
-88.53261187631789,
-88.56087988992235,
-88.61211566458041,
-88.69515295454349,
-88.75345573260267,
-88.83649302256575,
-88.9283640667802,
-88.93013081763048,
null,
-89.47429007951618,
-89.24991272153085,
-89.26227997748279,
-89.16687543156777,
-89.12977366371193,
-89.13330716541249,
-89.19514344517222,
-89.25874647578223,
-89.30821549959002,
-89.35945127424809,
-89.38418578615199,
-89.4566225710134,
-89.47075657781562,
-89.48312383376756,
-89.51669209992285,
-89.49549108971952,
-89.47429007951618,
null,
-89.99371482949797,
-89.76933747151264,
-89.70043418835179,
-89.69690068665123,
-89.57676162883232,
-89.48489058461784,
-89.40538679635533,
-89.21811120622584,
-89.21811120622584,
-89.24814597068057,
-89.30468199788947,
-89.42658780655867,
-89.42658780655867,
-89.479590332067,
-89.479590332067,
-89.53435960842563,
-89.53435960842563,
-89.53259285757535,
-89.70043418835179,
-89.92481154633712,
-89.99371482949797,
-89.99371482949797,
-89.99371482949797,
null,
-89.21811120622584,
-89.14214091966387,
-89.1403741688136,
-89.02553536354552,
-89.02553536354552,
-89.1403741688136,
-89.53082610672509,
-89.53259285757535,
-89.53435960842563,
-89.53435960842563,
-89.479590332067,
-89.479590332067,
-89.42658780655867,
-89.42658780655867,
-89.30468199788947,
-89.24814597068057,
-89.21811120622584,
null,
-91.07496634986823,
-91.07319959901795,
-90.43363579121724,
-90.4371692929178,
-90.43893604376808,
-90.78521921042261,
-90.95129379034876,
-90.95129379034876,
-90.9565940428996,
-90.997229312456,
-91.04139808371295,
-91.08203335326935,
-91.11383486857436,
-91.07496634986823,
null,
-89.68630018154957,
-89.66333242049595,
-89.5944291373351,
-89.17747593666944,
-89.15097467391527,
-89.15274142476554,
-89.15450817561582,
-89.45308906931284,
-89.49902459142007,
-89.49549108971952,
-89.50609159482119,
-89.52022560162341,
-89.59089563563454,
-89.66686592219651,
-89.68630018154957,
null,
-88.70928696134571,
-88.41247281849897,
-88.41600632019953,
-88.41953982190009,
-88.46547534400732,
-88.48667635421066,
-88.5149443678151,
-88.47254234740844,
-88.42484007445091,
-88.44427433380397,
-88.476075849109,
-88.48490960336038,
-88.49020985591122,
-88.49020985591122,
-88.71105371219599,
-88.70928696134571,
null,
-87.93721683977414,
-87.6156681850235,
-87.55736540696432,
-87.53263089506042,
-87.53263089506042,
-87.53263089506042,
-87.53086414421014,
-87.6881049698849,
-87.96018460082774,
-87.96725160422886,
-87.96901835507914,
-87.93721683977414,
null,
-90.93539303269625,
-90.61384437794563,
-90.590876616892,
-90.61384437794563,
-90.60324387284396,
-90.5343405896831,
-90.46720405737253,
-90.45130329972002,
-90.46720405737253,
-90.49900557267755,
-90.55554159988644,
-90.59441011859256,
-90.6562463983523,
-90.66154665090313,
-90.67568065770536,
-90.7127824255612,
-90.6809809102562,
-90.70748217301036,
-90.72338293066288,
-90.73044993406398,
-90.83998848678124,
-90.93539303269625,
null,
-90.44953654886974,
-90.44423629631892,
-90.44423629631892,
-89.98488107524658,
-89.98841457694714,
-89.87357577167906,
-89.87180902082878,
-89.88417627678072,
-89.92481154633712,
-90.03788360075492,
-90.11915413986773,
-90.19865792813025,
-90.45130329972002,
-90.44953654886974,
null,
-89.14390767051415,
-89.13860741796331,
-89.13860741796331,
-88.69515295454349,
-88.69868645624405,
-88.69868645624405,
-89.14567442136443,
-89.14390767051415,
null,
-88.69868645624405,
-88.69868645624405,
-88.56441339162289,
-88.25346524197393,
-88.14746019095725,
-88.14746019095725,
-88.15099369265779,
-88.3700707980923,
-88.70221995794459,
-88.69868645624405,
null,
-88.2393312351717,
-88.20046271646558,
-88.02378763143777,
-88.00435337208471,
-87.94605059402552,
-87.75877500389603,
-87.74110749539325,
-87.74110749539325,
-87.74110749539325,
-87.68987172073518,
-87.68280471733407,
-87.66867071053184,
-87.63510244437656,
-87.6245019392749,
-87.6245019392749,
-87.61213468332295,
-87.61390143417321,
-87.6156681850235,
-87.61036793247267,
-87.58916692226933,
-87.58209991886821,
-87.56089890866487,
-87.53086414421014,
-87.52379714080904,
-87.52379714080904,
-87.52556389165932,
-87.52556389165932,
-87.78704301750048,
-87.79057651920104,
-87.81177752940438,
-87.90894882616968,
-87.91248232787024,
-88.0290878839886,
-88.0290878839886,
-88.00435337208471,
-87.98315236188137,
-87.9796188601808,
-87.96725160422886,
-87.95488434827692,
-87.94958409572608,
-87.94251709232496,
-87.94075034147468,
-87.91424907872052,
-87.9160158295708,
-87.91778258042108,
-87.91778258042108,
-87.92131608212163,
-87.92131608212163,
-87.93898359062442,
-88.17396145371141,
-88.2640657470756,
-88.2640657470756,
-88.2640657470756,
-88.2393312351717,
-88.2393312351717,
null,
-91.50605355733612,
-90.91242527164265,
-90.91419202249293,
-90.91595877334319,
-90.91595877334319,
-91.36471348931386,
-91.36117998761331,
-91.39828175546916,
-91.43538352332499,
-91.42831651992388,
-91.43715027417527,
-91.43715027417527,
-91.48485254713279,
-91.49721980308473,
-91.51135380988696,
-91.50605355733612,
null,
-88.2640657470756,
-88.17396145371141,
-87.93898359062442,
-87.92131608212163,
-87.92131608212163,
-87.91778258042108,
-87.91778258042108,
-87.9160158295708,
-87.91424907872052,
-87.94075034147468,
-87.94251709232496,
-87.94958409572608,
-87.95488434827692,
-87.96725160422886,
-87.9796188601808,
-87.98315236188137,
-88.00435337208471,
-88.0290878839886,
-88.03085463483887,
-88.14922694180751,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.2640657470756,
null,
-90.78521921042261,
-90.70041516960926,
-90.61737787964618,
-90.57144235753894,
-90.51313957947977,
-90.46013705397142,
-90.41596828271446,
-90.36296575720611,
-90.33823124530223,
-90.33646449445195,
-90.31349673339832,
-90.31172998254804,
-90.30996323169776,
-90.24812695193803,
-90.24105994853691,
-90.22869269258497,
-90.15978940942412,
-90.18452392132802,
-90.19512442642969,
-90.33293099275139,
-90.43186904036696,
-90.43363579121724,
-91.07319959901795,
-91.07143284816767,
-91.06436584476657,
-91.02726407691073,
-90.96719454800126,
-90.92479252759459,
-90.8664897495354,
-90.78521921042261,
null,
-87.90894882616968,
-87.5343976459107,
-87.52203038995876,
-87.49906262890514,
-87.54499815101236,
-87.62096843757433,
-87.63863594607712,
-87.64923645117878,
-87.91248232787024,
-87.90894882616968,
null,
-89.21811120622584,
-89.14390767051415,
-89.14567442136443,
-88.74638872920156,
-88.74638872920156,
-88.81352526151213,
-88.81175851066185,
-89.02553536354552,
-89.1403741688136,
-89.14214091966387,
-89.21811120622584,
-89.21811120622584,
null,
-89.6014961407362,
-89.26404672833307,
-89.26404672833307,
-89.14920792306499,
-89.14920792306499,
-89.14567442136443,
-89.14390767051415,
-89.21811120622584,
-89.40538679635533,
-89.48489058461784,
-89.57676162883232,
-89.5785283796826,
-89.6014961407362,
-89.6014961407362,
null,
-87.99021936528248,
-87.95135084657636,
-87.97608535848025,
-87.95488434827692,
-87.91248232787024,
-87.64923645117878,
-87.66160370713074,
-87.65453670372962,
-87.71460623263908,
-87.74110749539325,
-87.75170800049492,
-87.77997601409938,
-87.83297853960772,
-87.90894882616968,
-87.96901835507914,
-87.99021936528248,
null,
-91.49721980308473,
-91.49368630138417,
-91.46895178948027,
-91.41948276567248,
-91.37354724356526,
-91.38061424696637,
-91.36824699101442,
-91.3947482537686,
-91.37354724356526,
-91.33997897740997,
-91.2481079331955,
-91.18627165343577,
-91.18450490258549,
-91.02196382435989,
-90.90359151739125,
-90.90889176994209,
-90.91242527164265,
-91.50605355733612,
-91.49721980308473,
null,
-89.26934698088391,
-89.13507391626275,
-89.04496962289858,
-88.98490009398911,
-88.98843359568967,
-88.93013081763048,
-88.58561440182623,
-88.57501389672457,
-88.46017509145648,
-88.46017509145648,
-88.46017509145648,
-88.57501389672457,
-88.91953031252882,
-89.14920792306499,
-89.14920792306499,
-89.26404672833307,
-89.26404672833307,
-89.26934698088391,
null,
-87.96018460082774,
-87.6881049698849,
-87.53086414421014,
-87.53086414421014,
-87.53086414421014,
-87.57856641716765,
-87.59976742737099,
-87.59446717482017,
-87.59270042396989,
-87.57679966631738,
-87.6404026969274,
-87.63863594607712,
-87.6563034545799,
-87.95135084657636,
-88.00788687378527,
-88.01318712633609,
-88.01495387718637,
-87.96018460082774,
null,
-88.70752021049543,
-88.507877364414,
-88.304701016632,
-88.2163634741181,
-88.20046271646558,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.20046271646558,
-88.2393312351717,
-88.25876549452477,
-88.3541700404398,
-88.39480530999619,
-88.5891479035268,
-88.70575345964515,
-88.70752021049543,
null,
-90.3399979961525,
-90.28876222149444,
-90.27109471299165,
-90.26049420788998,
-90.03611684990464,
-89.90361053613378,
-89.89831028358294,
-90.03611684990464,
-90.03611684990464,
-90.20572493153136,
-90.21809218748331,
-90.25166045363859,
-90.25166045363859,
-90.32233048764972,
-90.35059850125417,
-90.36296575720611,
-90.37179951145751,
-90.34883175040389,
-90.34176474700278,
-90.3399979961525,
null,
-89.1403741688136,
-89.02553536354552,
-89.02553536354552,
-88.81175851066185,
-88.80999175981157,
-88.71812071559711,
-88.71812071559711,
-88.64215042903514,
-88.58561440182623,
-88.47077559655816,
-88.47077559655816,
-88.47077559655816,
-88.80645825811101,
-89.11740640775997,
-89.1403741688136,
-89.1403741688136,
null,
-89.40185329465477,
-89.3665182776492,
-89.0432028720483,
-88.99373384824051,
-88.94073132273216,
-88.94073132273216,
-89.09267189585609,
-89.17394243496888,
-89.17394243496888,
-89.39655304210393,
-89.39831979295421,
-89.40185329465477,
null,
-88.41247281849897,
-88.37537105064312,
-88.17926170626225,
-88.13155943330473,
-88.13155943330473,
-88.07325665524556,
-88.06618965184444,
-88.06265615014388,
-88.15806069605891,
-88.28173325557839,
-88.35947029299062,
-88.41600632019953,
-88.41247281849897,
null,
-88.46017509145648,
-88.46017509145648,
-88.34710303703868,
-87.93368333807358,
-87.94251709232496,
-87.93721683977414,
-88.34886978788896,
-88.46194184230676,
-88.46370859315704,
-88.46017509145648,
null,
-89.70396769005235,
-89.61386339668816,
-89.48312383376756,
-89.35238427084698,
-89.14390767051415,
-89.14567442136443,
-89.14744117221471,
-89.59266238648482,
-89.70220093920207,
-89.70396769005235,
null,
-90.24105994853691,
-90.17922366877718,
-90.18099041962746,
-90.16508966197496,
-90.15802265857384,
-90.12798789411912,
-89.68453343069929,
-89.62799740349038,
-89.63153090519094,
-89.8612085157271,
-90.18452392132802,
-90.15978940942412,
-90.22869269258497,
-90.24105994853691,
null,
-89.04496962289858,
-89.04143612119802,
-88.70928696134571,
-88.71105371219599,
-88.90892980742714,
-88.93013081763048,
-89.04496962289858,
-89.04496962289858,
null,
-88.25169849112365,
-88.24109798602198,
-88.24463148772254,
-88.01142037548581,
-88.01495387718637,
-87.52733064250958,
-87.52733064250958,
-87.52733064250958,
-87.52733064250958,
-88.13155943330473,
-88.2481649894231,
-88.25169849112365,
null,
-89.8612085157271,
-89.63153090519094,
-89.16687543156777,
-89.1651086807175,
-89.33648351319448,
-89.35768452339782,
-89.46722307611506,
-89.46722307611506,
-89.63683115774177,
-89.63859790859205,
-89.85767501402655,
-89.8612085157271,
null,
-89.25167947238113,
-89.25167947238113,
-89.1403741688136,
-89.11740640775997,
-88.80645825811101,
-88.80822500896129,
-88.69338620369321,
-88.69515295454349,
-89.13860741796331,
-89.13860741796331,
-89.25521297408167,
-89.25697972493195,
-89.25874647578223,
-89.25167947238113,
null,
-88.20046271646558,
-87.89834832106801,
-87.80117702430272,
-87.80294377515298,
-87.82061128365577,
-87.834745290458,
-87.83297853960772,
-87.79941027345244,
-87.79941027345244,
-87.75877500389603,
-87.94605059402552,
-88.00435337208471,
-88.02378763143777,
-88.20046271646558,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.20046271646558,
null,
-90.35413200295473,
-90.20572493153136,
-90.19865792813025,
-90.11915413986773,
-90.03788360075492,
-89.92481154633712,
-89.7163349460043,
-89.71456819515402,
-89.6014961407362,
-89.6014961407362,
-89.63683115774177,
-89.7481364613093,
-89.96898031759407,
-89.99371482949797,
-90.13328814666995,
-90.28699547064416,
-90.35413200295473,
null,
-88.5891479035268,
-88.39480530999619,
-88.3541700404398,
-88.25876549452477,
-88.2393312351717,
-88.2393312351717,
-88.2640657470756,
-88.2640657470756,
-88.2640657470756,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.37537105064312,
-88.40540581509786,
-88.60328191032902,
-88.60151515947874,
-88.5891479035268,
-88.5891479035268,
null,
-89.83647400382321,
-89.49372433886924,
-89.40185329465477,
-89.39831979295421,
-89.39655304210393,
-89.68806693239983,
-89.89654353273266,
-89.91951129378629,
-89.9265782971874,
-89.9265782971874,
-89.83647400382321,
null,
-88.74638872920156,
-88.74638872920156,
-88.57501389672457,
-88.46017509145648,
-88.46370859315704,
-88.46194184230676,
-88.46194184230676,
-88.47430909825871,
-88.74638872920156,
-88.74638872920156,
null
],
"mode": "lines",
"showlegend": false,
"type": "scattermapbox",
"uid": "46980807-a977-11e8-9263-e377df750c87"
}
],
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_layout": {
"autosize": false,
"font": {
"family": "Balto"
},
"height": 700,
"hovermode": "closest",
"mapbox": {
"accesstoken": "pk.eyJ1IjoiZW1wZXQiLCJhIjoiY2l4OXdlYXh4MDAzNDJvbWdwcGdlemhkdyJ9.hPC39hOpk1pO09UHoEGNIw",
"bearing": 0,
"center": {
"lat": 39.85384589515813,
"lon": -88.9822499677137
},
"layers": [
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.63683115774177,
41.148569234450726
],
[
-89.46722307611506,
41.148569234450726
],
[
-89.32941650979336,
41.148569234450726
],
[
-89.35945127424809,
41.10370875301229
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.04850312459912,
41.10495487749669
],
[
-89.04850312459912,
40.92551295174295
],
[
-89.16157517901694,
40.926759076227356
],
[
-89.4725233286659,
40.92177457828975
],
[
-89.447788816762,
40.97286568215019
],
[
-89.63859790859205,
40.97411180663459
],
[
-89.63683115774177,
41.14109248754432
],
[
-89.63683115774177,
41.148569234450726
]
]
],
"type": "Polygon"
},
"id": 0,
"properties": {
"Clinton_Trump": [
1789,
3785
],
"center_lon_lat": [
-89.34355051659558,
41.03517190637024
],
"county_name": "Marshall",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47077559655816,
39.21583015914484
],
[
-88.47077559655816,
39.37533409314817
],
[
-88.01318712633609,
39.37907246660137
],
[
-88.00788687378527,
39.17470805115961
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.47077559655816,
39.17221580219081
],
[
-88.47077559655816,
39.21583015914484
]
]
],
"type": "Polygon"
},
"id": 1,
"properties": {
"Clinton_Trump": [
1031,
4206
],
"center_lon_lat": [
-88.2393312351717,
39.27502107215389
],
"county_name": "Cumberland",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47430909825871,
39.791539670938086
],
[
-88.46194184230676,
39.80150866681329
],
[
-88.46194184230676,
39.878768384846154
],
[
-88.34886978788896,
39.878768384846154
],
[
-87.93721683977414,
39.878768384846154
],
[
-87.96901835507914,
39.791539670938086
],
[
-87.96725160422886,
39.68686521424841
],
[
-88.06442290099416,
39.65321985316958
],
[
-88.47254234740844,
39.65197372868518
],
[
-88.47430909825871,
39.791539670938086
]
]
],
"type": "Polygon"
},
"id": 2,
"properties": {
"Clinton_Trump": [
1949,
5698
],
"center_lon_lat": [
-88.20576296901643,
39.765371056765666
],
"county_name": "Douglas",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.58738115267651,
41.10869325094989
],
[
-88.25169849112365,
41.1149238733719
],
[
-88.2481649894231,
40.99529592286941
],
[
-88.23579773347114,
40.61772020409592
],
[
-88.46017509145648,
40.61772020409592
],
[
-88.57501389672457,
40.616474079611514
],
[
-88.58561440182623,
40.757286146348825
],
[
-88.93013081763048,
40.75354777289562
],
[
-88.93189756848076,
40.92800520071175
],
[
-88.93189756848076,
41.10620100198109
],
[
-88.58738115267651,
41.10869325094989
]
]
],
"type": "Polygon"
},
"id": 3,
"properties": {
"Clinton_Trump": [
4023,
10208
],
"center_lon_lat": [
-88.58384765097595,
40.86569897649171
],
"county_name": "Livingston",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.63859790859205,
38.99900449885908
],
[
-89.5855953830837,
39.0289114864847
],
[
-89.25167947238113,
39.0276653620003
],
[
-89.25874647578223,
38.99900449885908
],
[
-89.25697972493195,
38.91676028288862
],
[
-89.25521297408167,
38.74230285507248
],
[
-89.48312383376756,
38.741056730588085
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.59796263903566,
38.87439205041898
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63859790859205,
38.99900449885908
]
]
],
"type": "Polygon"
},
"id": 4,
"properties": {
"Clinton_Trump": [
2068,
4888
],
"center_lon_lat": [
-89.44513869048659,
38.88498410853639
],
"county_name": "Bond",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.9831143243963,
41.14981535893513
],
[
-89.86827551912822,
41.14981535893513
],
[
-89.86650876827794,
41.21710608109278
],
[
-89.85767501402655,
41.23455182387439
],
[
-89.63859790859205,
41.23455182387439
],
[
-89.63683115774177,
41.148569234450726
],
[
-89.63683115774177,
41.14109248754432
],
[
-89.63859790859205,
40.97411180663459
],
[
-89.98488107524658,
40.97411180663459
],
[
-89.9831143243963,
41.14981535893513
]
]
],
"type": "Polygon"
},
"id": 5,
"properties": {
"Clinton_Trump": [
751,
1778
],
"center_lon_lat": [
-89.81085611649416,
41.10433181525449
],
"county_name": "Stark",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.15272240602302,
39.52113065782308
],
[
-89.92481154633712,
39.52237678230748
],
[
-89.70043418835179,
39.52362290679188
],
[
-89.69690068665123,
38.99900449885908
],
[
-90.11562063816717,
38.99900449885908
],
[
-90.1456554026219,
39.00025062334348
],
[
-90.14742215347218,
39.26193676506768
],
[
-90.15272240602302,
39.52113065782308
]
]
],
"type": "Polygon"
},
"id": 6,
"properties": {
"Clinton_Trump": [
6689,
14322
],
"center_lon_lat": [
-89.92481154633712,
39.261313702825476
],
"county_name": "Macoupin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.25876549452477,
38.84697731176216
],
[
-87.94605059402552,
38.85071568521536
],
[
-87.90894882616968,
38.85071568521536
],
[
-87.91248232787024,
38.57033767622515
],
[
-87.95488434827692,
38.57033767622515
],
[
-88.14746019095725,
38.56909155174075
],
[
-88.14746019095725,
38.597752414881974
],
[
-88.25346524197393,
38.59899853936637
],
[
-88.29763401323089,
38.6338900249296
],
[
-88.25876549452477,
38.73108773471287
],
[
-88.25876549452477,
38.84697731176216
]
]
],
"type": "Polygon"
},
"id": 7,
"properties": {
"Clinton_Trump": [
1584,
5739
],
"center_lon_lat": [
-88.10329141970028,
38.70990361847805
],
"county_name": "Richland",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.3700707980923,
38.25506818167171
],
[
-88.15099369265779,
38.25631430615611
],
[
-88.02732113313832,
38.25506818167171
],
[
-87.99021936528248,
38.25880655512491
],
[
-87.96901835507914,
38.236376314405696
],
[
-87.97078510592942,
38.230145691983694
],
[
-87.97608535848025,
38.197746455389264
],
[
-87.92838308552274,
38.151639849466434
],
[
-87.96195135167802,
38.09930262112159
],
[
-87.9884526144322,
38.05568826416756
],
[
-88.03085463483887,
38.03076577447954
],
[
-88.01672062803665,
37.96098280335308
],
[
-88.04145513994055,
37.892445956711036
],
[
-88.05912264844333,
37.86752346702301
],
[
-88.13685968585557,
37.91487619743025
],
[
-88.37537105064312,
37.90739945052385
],
[
-88.3700707980923,
38.25506818167171
]
]
],
"type": "Polygon"
},
"id": 8,
"properties": {
"Clinton_Trump": [
1412,
5640
],
"center_lon_lat": [
-88.15187706808294,
38.06316501107396
],
"county_name": "White",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.70573444090262,
38.65507414116442
],
[
-89.5944291373351,
38.656320265648816
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.48312383376756,
38.741056730588085
],
[
-89.25521297408167,
38.74230285507248
],
[
-89.13860741796331,
38.73607223265048
],
[
-89.14390767051415,
38.5030469540675
],
[
-89.35238427084698,
38.51800044788031
],
[
-89.48312383376756,
38.46815546850427
],
[
-89.61386339668816,
38.471893841957474
],
[
-89.70396769005235,
38.41581824015943
],
[
-89.70573444090262,
38.65507414116442
]
]
],
"type": "Polygon"
},
"id": 9,
"properties": {
"Clinton_Trump": [
3945,
12412
],
"center_lon_lat": [
-89.42217092943297,
38.57968360985816
],
"county_name": "Clinton",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.17747593666944,
37.949767682993475
],
[
-89.1156396569097,
38.08559525179318
],
[
-89.12977366371193,
38.12422511080961
],
[
-88.70575345964515,
38.12422511080961
],
[
-88.70752021049543,
37.906153326039444
],
[
-88.70752021049543,
37.86378509356981
],
[
-89.15274142476554,
37.862538969085406
],
[
-89.15097467391527,
37.944783185055876
],
[
-89.17747593666944,
37.949767682993475
]
]
],
"type": "Polygon"
},
"id": 10,
"properties": {
"Clinton_Trump": [
4727,
13116
],
"center_lon_lat": [
-88.9416146981573,
37.993382039947505
],
"county_name": "Franklin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.59621490692791,
41.45760810658216
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.24463148772254,
41.20215258727997
],
[
-88.24109798602198,
41.12987736718471
],
[
-88.25169849112365,
41.1149238733719
],
[
-88.58738115267651,
41.10869325094989
],
[
-88.59621490692791,
41.45760810658216
]
]
],
"type": "Polygon"
},
"id": 11,
"properties": {
"Clinton_Trump": [
8065,
13454
],
"center_lon_lat": [
-88.41865644647496,
41.286265989977025
],
"county_name": "Grundy",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.50255809312063,
37.55973071937598
],
[
-89.49902459142007,
37.570945839735586
],
[
-89.45308906931284,
37.60085282736121
],
[
-89.15450817561582,
37.60085282736121
],
[
-89.04143612119802,
37.597114453908006
],
[
-89.04496962289858,
37.3304438142462
],
[
-89.24991272153085,
37.33542831218381
],
[
-89.47429007951618,
37.33542831218381
],
[
-89.42835455740894,
37.35661242841862
],
[
-89.42658780655867,
37.407703532279065
],
[
-89.4725233286659,
37.46627138304591
],
[
-89.51139184737202,
37.529823731750355
],
[
-89.50255809312063,
37.55973071937598
]
]
],
"type": "Polygon"
},
"id": 12,
"properties": {
"Clinton_Trump": [
2402,
5790
],
"center_lon_lat": [
-89.27641398428503,
37.46564832080371
],
"county_name": "Union",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.3152634842486,
42.19406767686313
],
[
-89.91951129378629,
42.19655992583193
],
[
-89.89654353273266,
42.19655992583193
],
[
-89.68806693239983,
42.19905217480073
],
[
-89.68453343069929,
41.92988928617012
],
[
-90.12798789411912,
41.92864316168572
],
[
-90.15802265857384,
41.92988928617012
],
[
-90.15625590772356,
41.93736603307653
],
[
-90.14035515007106,
41.99593388384337
],
[
-90.15978940942412,
42.0333176183754
],
[
-90.16332291112468,
42.03954824079741
],
[
-90.15978940942412,
42.105592838470656
],
[
-90.20749168238163,
42.149207195424694
],
[
-90.26932796214138,
42.17412968511271
],
[
-90.3152634842486,
42.19406767686313
]
]
],
"type": "Polygon"
},
"id": 13,
"properties": {
"Clinton_Trump": [
2447,
4434
],
"center_lon_lat": [
-89.99989845747395,
42.06384766824323
],
"county_name": "Carroll",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.78521921042261,
41.06881726744906
],
[
-90.43893604376808,
41.06383276951146
],
[
-90.44423629631892,
40.71491791387919
],
[
-90.44423629631892,
40.62768919997112
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.78521921042261,
41.06881726744906
]
]
],
"type": "Polygon"
},
"id": 14,
"properties": {
"Clinton_Trump": [
2987,
4275
],
"center_lon_lat": [
-90.61384437794563,
40.848253233710096
],
"county_name": "Warren",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.68806693239983,
42.19905217480073
],
[
-89.39655304210393,
42.20154442376953
],
[
-89.17394243496888,
42.20403667273833
],
[
-89.17394243496888,
42.15045331990909
],
[
-89.09267189585609,
42.15045331990909
],
[
-88.94073132273216,
42.15169944439349
],
[
-88.94249807358244,
41.89125942715369
],
[
-89.415987301457,
41.886274929216086
],
[
-89.42835455740894,
41.907459045450906
],
[
-89.62799740349038,
41.9012284230289
],
[
-89.68453343069929,
41.92988928617012
],
[
-89.68806693239983,
42.19905217480073
]
]
],
"type": "Polygon"
},
"id": 15,
"properties": {
"Clinton_Trump": [
8050,
14352
],
"center_lon_lat": [
-89.31439912756599,
42.04515580097721
],
"county_name": "Ogle",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.13155943330473,
40.99778817183821
],
[
-87.52733064250958,
41.01024941668222
],
[
-87.52556389165932,
40.89560596411733
],
[
-87.52556389165932,
40.73734815459841
],
[
-87.52556389165932,
40.535475988125455
],
[
-87.52733064250958,
40.49061550668702
],
[
-87.93545008892386,
40.485631008749415
],
[
-88.1174254265025,
40.48812325771822
],
[
-88.11919217735279,
40.51678412085944
],
[
-88.13155943330473,
40.99778817183821
]
]
],
"type": "Polygon"
},
"id": 16,
"properties": {
"Clinton_Trump": [
2504,
9750
],
"center_lon_lat": [
-87.82856166248203,
40.74794021271582
],
"county_name": "Iroquois",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.1651086807175,
41.31056541742285
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.35945127424809,
41.10370875301229
],
[
-89.32941650979336,
41.148569234450726
],
[
-89.46722307611506,
41.148569234450726
],
[
-89.46722307611506,
41.23455182387439
],
[
-89.35768452339782,
41.23330569938999
],
[
-89.33648351319448,
41.30184254603204
],
[
-89.1651086807175,
41.31056541742285
]
]
],
"type": "Polygon"
},
"id": 17,
"properties": {
"Clinton_Trump": [
1147,
1767
],
"center_lon_lat": [
-89.31528250299114,
41.20713708521757
],
"county_name": "Putnam",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.91419202249293,
40.10431691652273
],
[
-90.69511491705842,
40.103070792038324
],
[
-90.6067773745445,
39.980950592567034
],
[
-90.51313957947977,
39.987181214989036
],
[
-90.51137282862949,
39.96475097426982
],
[
-90.5838096134909,
39.87627613587735
],
[
-90.57144235753894,
39.83889240134532
],
[
-90.88945751058903,
39.84013852582972
],
[
-90.91595877334319,
39.84512302376733
],
[
-90.91419202249293,
40.10431691652273
]
]
],
"type": "Polygon"
},
"id": 18,
"properties": {
"Clinton_Trump": [
476,
1796
],
"center_lon_lat": [
-90.71366580098635,
39.97160465893403
],
"county_name": "Brown",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.46017509145648,
40.61772020409592
],
[
-88.23579773347114,
40.61772020409592
],
[
-88.2481649894231,
40.99529592286941
],
[
-88.13155943330473,
40.99778817183821
],
[
-88.11919217735279,
40.51678412085944
],
[
-88.1174254265025,
40.48812325771822
],
[
-87.93545008892386,
40.485631008749415
],
[
-87.93368333807358,
40.39964841932575
],
[
-88.34710303703868,
40.39840229484135
],
[
-88.46017509145648,
40.39840229484135
],
[
-88.46017509145648,
40.61772020409592
]
]
],
"type": "Polygon"
},
"id": 19,
"properties": {
"Clinton_Trump": [
1414,
4480
],
"center_lon_lat": [
-88.19692921476502,
40.69809523333978
],
"county_name": "Ford",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.90359151739125,
40.63890432033074
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.44423629631892,
40.62768919997112
],
[
-90.44953654886974,
40.27628209537006
],
[
-90.90889176994209,
40.28375884227646
],
[
-90.90359151739125,
40.63890432033074
]
]
],
"type": "Polygon"
},
"id": 20,
"properties": {
"Clinton_Trump": [
5288,
6795
],
"center_lon_lat": [
-90.6765640331305,
40.457593207850394
],
"county_name": "McDonough",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.24991272153085,
37.33542831218381
],
[
-89.04496962289858,
37.3304438142462
],
[
-89.04496962289858,
37.29430620419858
],
[
-88.93013081763048,
37.30302907558938
],
[
-88.9283640667802,
37.227015482040926
],
[
-88.93189756848076,
37.22826160652532
],
[
-88.93366431933104,
37.22826160652532
],
[
-89.00080085164161,
37.22452323307212
],
[
-89.0591036297008,
37.188385623024494
],
[
-89.09973889925719,
37.14103289261726
],
[
-89.16864218241804,
37.0737421704596
],
[
-89.16687543156777,
37.07249604597521
],
[
-89.26227997748279,
37.10614140705403
],
[
-89.24991272153085,
37.33542831218381
]
]
],
"type": "Polygon"
},
"id": 21,
"properties": {
"Clinton_Trump": [
962,
1675
],
"center_lon_lat": [
-89.0953220221315,
37.20396217907951
],
"county_name": "Pulaski",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.60328191032902,
41.71929424830636
],
[
-88.40540581509786,
41.72178649727516
],
[
-88.37537105064312,
41.72178649727516
],
[
-88.26229899622533,
41.72427874624397
],
[
-88.26053224537505,
41.69561788310274
],
[
-88.25699874367449,
41.59343567538186
],
[
-88.2552319928242,
41.52116045528661
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.59621490692791,
41.45760810658216
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.60328191032902,
41.71929424830636
]
]
],
"type": "Polygon"
},
"id": 22,
"properties": {
"Clinton_Trump": [
24884,
24961
],
"center_lon_lat": [
-88.42749020072634,
41.59094342641306
],
"county_name": "Kendall",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.93896457188188,
41.62832716094509
],
[
-88.81882551406296,
41.6308194099139
],
[
-88.71282046304627,
41.629573285429494
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.59621490692791,
41.45760810658216
],
[
-88.58738115267651,
41.10869325094989
],
[
-88.93189756848076,
41.10620100198109
],
[
-88.93189756848076,
40.92800520071175
],
[
-89.04850312459912,
40.92551295174295
],
[
-89.04850312459912,
41.10495487749669
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.1651086807175,
41.31056541742285
],
[
-89.16687543156777,
41.585958928475456
],
[
-89.16864218241804,
41.62832716094509
],
[
-88.93896457188188,
41.62832716094509
]
]
],
"type": "Polygon"
},
"id": 23,
"properties": {
"Clinton_Trump": [
19543,
26689
],
"center_lon_lat": [
-88.87801166754727,
41.27816618082842
],
"county_name": "LaSalle",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.59794362029312,
39.789047421969286
],
[
-90.48310481502503,
39.789047421969286
],
[
-90.48310481502503,
39.752909811921654
],
[
-90.37003276060723,
39.752909811921654
],
[
-90.37179951145751,
39.66692722249799
],
[
-90.2993627265961,
39.63702023487237
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.58027611179034,
39.52237678230748
],
[
-90.64564589325063,
39.70431095703002
],
[
-90.59794362029312,
39.789047421969286
]
]
],
"type": "Polygon"
},
"id": 24,
"properties": {
"Clinton_Trump": [
535,
1966
],
"center_lon_lat": [
-90.47250430992337,
39.65508903989618
],
"county_name": "Scott",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.91242527164265,
40.19279175491519
],
[
-90.90889176994209,
40.28375884227646
],
[
-90.44953654886974,
40.27628209537006
],
[
-90.45130329972002,
40.18905338146199
],
[
-90.19865792813025,
40.18406888352439
],
[
-90.20572493153136,
40.15540802038316
],
[
-90.35413200295473,
40.12425490827314
],
[
-90.43540254206752,
40.01958045158346
],
[
-90.51313957947977,
39.987181214989036
],
[
-90.6067773745445,
39.980950592567034
],
[
-90.69511491705842,
40.103070792038324
],
[
-90.91419202249293,
40.10431691652273
],
[
-90.91242527164265,
40.19279175491519
]
]
],
"type": "Polygon"
},
"id": 25,
"properties": {
"Clinton_Trump": [
1075,
2524
],
"center_lon_lat": [
-90.55642497531159,
40.13235471742175
],
"county_name": "Schuyler",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.15274142476554,
37.862538969085406
],
[
-88.70752021049543,
37.86378509356981
],
[
-88.70928696134571,
37.599606702876805
],
[
-89.04143612119802,
37.597114453908006
],
[
-89.15450817561582,
37.60085282736121
],
[
-89.15274142476554,
37.862538969085406
]
]
],
"type": "Polygon"
},
"id": 26,
"properties": {
"Clinton_Trump": [
8581,
21570
],
"center_lon_lat": [
-88.93101419305563,
37.73044977373891
],
"county_name": "Williamson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.43363579121724,
41.32801116020446
],
[
-90.43186904036696,
41.45760810658216
],
[
-90.33293099275139,
41.5149298328646
],
[
-90.19512442642969,
41.54109844703702
],
[
-90.18452392132802,
41.58471280399106
],
[
-89.8612085157271,
41.58471280399106
],
[
-89.85767501402655,
41.23455182387439
],
[
-89.86650876827794,
41.21710608109278
],
[
-89.86827551912822,
41.14981535893513
],
[
-89.9831143243963,
41.14981535893513
],
[
-90.4371692929178,
41.151061483419525
],
[
-90.43363579121724,
41.32801116020446
]
]
],
"type": "Polygon"
},
"id": 27,
"properties": {
"Clinton_Trump": [
8871,
13985
],
"center_lon_lat": [
-90.14742215347218,
41.36726408146309
],
"county_name": "Henry",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.14744117221471,
38.212699949202076
],
[
-89.14567442136443,
38.47313996644188
],
[
-88.69868645624405,
38.47438609092628
],
[
-88.70221995794459,
38.25631430615611
],
[
-88.70575345964515,
38.12422511080961
],
[
-89.12977366371193,
38.12422511080961
],
[
-89.15097467391527,
38.130455733231614
],
[
-89.14744117221471,
38.212699949202076
]
]
],
"type": "Polygon"
},
"id": 28,
"properties": {
"Clinton_Trump": [
4425,
11695
],
"center_lon_lat": [
-88.92483056507966,
38.299305600867946
],
"county_name": "Jefferson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.25519395533915,
38.53046169272432
],
[
-90.24812695193803,
38.54416906205273
],
[
-90.18452392132802,
38.61145978421038
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.03611684990464,
38.65881251461762
],
[
-89.70573444090262,
38.65507414116442
],
[
-89.70396769005235,
38.41581824015943
],
[
-89.70220093920207,
38.218930571624085
],
[
-89.89831028358294,
38.22017669610848
],
[
-89.90361053613378,
38.297436414141345
],
[
-90.03611684990464,
38.30865153450095
],
[
-90.26049420788998,
38.51800044788031
],
[
-90.25519395533915,
38.53046169272432
]
]
],
"type": "Polygon"
},
"id": 29,
"properties": {
"Clinton_Trump": [
60756,
53857
],
"center_lon_lat": [
-89.98134757354603,
38.43949460536305
],
"county_name": "St. Clair",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.14920792306499,
40.28126659330766
],
[
-88.91953031252882,
40.28251271779206
],
[
-88.57501389672457,
40.28126659330766
],
[
-88.74638872920156,
40.09808629410072
],
[
-88.74638872920156,
40.05447193714669
],
[
-89.14567442136443,
40.048241314724685
],
[
-89.14920792306499,
40.28126659330766
]
]
],
"type": "Polygon"
},
"id": 30,
"properties": {
"Clinton_Trump": [
1910,
5077
],
"center_lon_lat": [
-88.86211090989478,
40.165377016258375
],
"county_name": "De Witt",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.59266238648482,
38.218930571624085
],
[
-89.14744117221471,
38.212699949202076
],
[
-89.15097467391527,
38.130455733231614
],
[
-89.12977366371193,
38.12422511080961
],
[
-89.1156396569097,
38.08559525179318
],
[
-89.17747593666944,
37.949767682993475
],
[
-89.5944291373351,
37.95475218093108
],
[
-89.59266238648482,
38.218930571624085
]
]
],
"type": "Polygon"
},
"id": 31,
"properties": {
"Clinton_Trump": [
2462,
6855
],
"center_lon_lat": [
-89.35503439712241,
38.08434912730878
],
"county_name": "Perry",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.64211239155007,
42.508091046932165
],
[
-90.4371692929178,
42.50684492244776
],
[
-90.42656878781614,
42.50684492244776
],
[
-90.22339244003413,
42.508091046932165
],
[
-89.9265782971874,
42.505598797963366
],
[
-89.91951129378629,
42.19655992583193
],
[
-90.3152634842486,
42.19406767686313
],
[
-90.33823124530223,
42.20279054825393
],
[
-90.40006752506196,
42.23892815830156
],
[
-90.4301022895167,
42.277558017317986
],
[
-90.41596828271446,
42.31992624978762
],
[
-90.4460030471692,
42.35730998431965
],
[
-90.48310481502503,
42.38098634952327
],
[
-90.51667308118033,
42.403416590242486
],
[
-90.56437535413784,
42.43830807580571
],
[
-90.590876616892,
42.44703094719652
],
[
-90.64564589325063,
42.47195343688453
],
[
-90.64211239155007,
42.508091046932165
]
]
],
"type": "Polygon"
},
"id": 32,
"properties": {
"Clinton_Trump": [
4462,
6121
],
"center_lon_lat": [
-90.28257859351845,
42.351079361897646
],
"county_name": "Jo Daviess",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.57144235753894,
39.83889240134532
],
[
-90.5838096134909,
39.87627613587735
],
[
-89.99371482949797,
39.872537762424145
],
[
-89.99371482949797,
39.78530904851608
],
[
-89.92481154633712,
39.52237678230748
],
[
-90.15272240602302,
39.52113065782308
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.2993627265961,
39.63702023487237
],
[
-90.37179951145751,
39.66692722249799
],
[
-90.37003276060723,
39.752909811921654
],
[
-90.48310481502503,
39.752909811921654
],
[
-90.48310481502503,
39.789047421969286
],
[
-90.59794362029312,
39.789047421969286
],
[
-90.57144235753894,
39.83889240134532
]
]
],
"type": "Polygon"
},
"id": 33,
"properties": {
"Clinton_Trump": [
4696,
9076
],
"center_lon_lat": [
-90.26137758331512,
39.69870339685021
],
"county_name": "Morgan",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.43893604376808,
41.06383276951146
],
[
-90.4371692929178,
41.151061483419525
],
[
-89.9831143243963,
41.14981535893513
],
[
-89.98488107524658,
40.97411180663459
],
[
-89.98488107524658,
40.71242566491039
],
[
-90.44423629631892,
40.71491791387919
],
[
-90.43893604376808,
41.06383276951146
]
]
],
"type": "Polygon"
},
"id": 34,
"properties": {
"Clinton_Trump": [
10083,
10737
],
"center_lon_lat": [
-90.21367531035762,
40.931743574164955
],
"county_name": "Knox",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.62799740349038,
41.9012284230289
],
[
-89.42835455740894,
41.907459045450906
],
[
-89.415987301457,
41.886274929216086
],
[
-88.94249807358244,
41.89125942715369
],
[
-88.93896457188188,
41.62832716094509
],
[
-89.16864218241804,
41.62832716094509
],
[
-89.16687543156777,
41.585958928475456
],
[
-89.63153090519094,
41.585958928475456
],
[
-89.62799740349038,
41.9012284230289
]
]
],
"type": "Polygon"
},
"id": 35,
"properties": {
"Clinton_Trump": [
5528,
8612
],
"center_lon_lat": [
-89.28524773853641,
41.746708986963185
],
"county_name": "Lee",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.1456554026219,
39.00025062334348
],
[
-90.11562063816717,
38.99900449885908
],
[
-89.69690068665123,
38.99900449885908
],
[
-89.63859790859205,
38.99900449885908
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.59796263903566,
38.87439205041898
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.5944291373351,
38.656320265648816
],
[
-89.70573444090262,
38.65507414116442
],
[
-90.03611684990464,
38.65881251461762
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.19512442642969,
38.68747337775884
],
[
-90.20925843323191,
38.72610323677527
],
[
-90.16685641282524,
38.7722098426981
],
[
-90.16508966197496,
38.7722098426981
],
[
-90.11738738901745,
38.80585520377693
],
[
-90.11208713646661,
38.84946956073097
],
[
-90.20749168238163,
38.89931454010701
],
[
-90.23045944343525,
38.910529660466615
],
[
-90.27639496554248,
38.91925253185742
],
[
-90.27286146384193,
38.99900449885908
],
[
-90.1456554026219,
39.00025062334348
]
]
],
"type": "Polygon"
},
"id": 36,
"properties": {
"Clinton_Trump": [
50587,
70490
],
"center_lon_lat": [
-89.93541205143879,
38.82766238225395
],
"county_name": "Madison",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70752021049543,
37.86378509356981
],
[
-88.70752021049543,
37.906153326039444
],
[
-88.37537105064312,
37.90739945052385
],
[
-88.37537105064312,
37.599606702876805
],
[
-88.41247281849897,
37.60085282736121
],
[
-88.70928696134571,
37.599606702876805
],
[
-88.70752021049543,
37.86378509356981
]
]
],
"type": "Polygon"
},
"id": 37,
"properties": {
"Clinton_Trump": [
2572,
8276
],
"center_lon_lat": [
-88.54232900599442,
37.753503076700326
],
"county_name": "Saline",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.26229899622533,
41.72427874624397
],
[
-88.14922694180751,
41.725524870728364
],
[
-88.03085463483887,
41.72801711969717
],
[
-88.0290878839886,
41.68440276274313
],
[
-88.0290878839886,
41.66944926893032
],
[
-87.91248232787024,
41.6432806547579
],
[
-87.90894882616968,
41.55729806533424
],
[
-87.81177752940438,
41.55854418981864
],
[
-87.79057651920104,
41.52863720219302
],
[
-87.78704301750048,
41.47006935142617
],
[
-87.52556389165932,
41.47131547591057
],
[
-87.52733064250958,
41.29810417257884
],
[
-87.52733064250958,
41.29810417257884
],
[
-88.01495387718637,
41.29311967464123
],
[
-88.01142037548581,
41.20589096073317
],
[
-88.24463148772254,
41.20215258727997
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.2552319928242,
41.52116045528661
],
[
-88.25699874367449,
41.59343567538186
],
[
-88.26053224537505,
41.69561788310274
],
[
-88.26229899622533,
41.72427874624397
]
]
],
"type": "Polygon"
},
"id": 38,
"properties": {
"Clinton_Trump": [
151927,
132720
],
"center_lon_lat": [
-87.89393144394232,
41.46508485348857
],
"county_name": "Will",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.14742215347218,
39.26193676506768
],
[
-90.1456554026219,
39.00025062334348
],
[
-90.27286146384193,
38.99900449885908
],
[
-90.27639496554248,
38.91925253185742
],
[
-90.29759597574582,
38.92299090531062
],
[
-90.39476727251113,
38.96037463984265
],
[
-90.45130329972002,
38.96162076432705
],
[
-90.46720405737253,
38.96909751123346
],
[
-90.5343405896831,
38.95912851535825
],
[
-90.60324387284396,
39.117386324877174
],
[
-90.58027611179034,
39.184677047034825
],
[
-90.31349673339832,
39.17470805115961
],
[
-90.31349673339832,
39.225799155020056
],
[
-90.14742215347218,
39.26193676506768
]
]
],
"type": "Polygon"
},
"id": 39,
"properties": {
"Clinton_Trump": [
2679,
7748
],
"center_lon_lat": [
-90.37444963773294,
39.09059464846255
],
"county_name": "Jersey",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.74638872920156,
39.791539670938086
],
[
-88.47430909825871,
39.791539670938086
],
[
-88.47254234740844,
39.65197372868518
],
[
-88.47077559655816,
39.447609313243426
],
[
-88.58561440182623,
39.447609313243426
],
[
-88.64215042903514,
39.52113065782308
],
[
-88.71812071559711,
39.52113065782308
],
[
-88.71812071559711,
39.57969850858992
],
[
-88.80999175981157,
39.580944633074324
],
[
-88.81175851066185,
39.65321985316958
],
[
-88.81352526151213,
39.741694691562046
],
[
-88.74638872920156,
39.791539670938086
]
]
],
"type": "Polygon"
},
"id": 40,
"properties": {
"Clinton_Trump": [
1481,
4455
],
"center_lon_lat": [
-88.64215042903514,
39.619574492090756
],
"county_name": "Moultrie",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47254234740844,
39.65197372868518
],
[
-88.06442290099416,
39.65321985316958
],
[
-87.96725160422886,
39.68686521424841
],
[
-87.96018460082774,
39.48125467432225
],
[
-88.01495387718637,
39.48125467432225
],
[
-88.01318712633609,
39.37907246660137
],
[
-88.47077559655816,
39.37533409314817
],
[
-88.47077559655816,
39.447609313243426
],
[
-88.47254234740844,
39.65197372868518
]
]
],
"type": "Polygon"
},
"id": 41,
"properties": {
"Clinton_Trump": [
7309,
13003
],
"center_lon_lat": [
-88.21636347411808,
39.53109965369829
],
"county_name": "Coles",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.99371482949797,
40.10805528997593
],
[
-89.96898031759407,
40.141700651054755
],
[
-89.7481364613093,
40.126747157241944
],
[
-89.63683115774177,
40.15416189589877
],
[
-89.6014961407362,
40.12176265930434
],
[
-89.5785283796826,
40.091855671678715
],
[
-89.57676162883232,
39.97596609462943
],
[
-89.69690068665123,
39.974719970145024
],
[
-89.70043418835179,
39.91615211937818
],
[
-89.76933747151264,
39.90244475004977
],
[
-89.99371482949797,
39.90119862556537
],
[
-89.99371482949797,
40.10805528997593
]
]
],
"type": "Polygon"
},
"id": 42,
"properties": {
"Clinton_Trump": [
1817,
4231
],
"center_lon_lat": [
-89.78523822916515,
40.02768026073207
],
"county_name": "Menard",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.20572493153136,
38.08808750076198
],
[
-90.03611684990464,
38.13544023116922
],
[
-90.03611684990464,
38.22266894507729
],
[
-89.89831028358294,
38.22017669610848
],
[
-89.70220093920207,
38.218930571624085
],
[
-89.59266238648482,
38.218930571624085
],
[
-89.5944291373351,
37.95475218093108
],
[
-89.66333242049595,
37.830139732490984
],
[
-89.68630018154957,
37.79649437141216
],
[
-89.69513393580095,
37.81518623867817
],
[
-89.78170472746459,
37.855062222179
],
[
-89.85060801062544,
37.903661077070645
],
[
-89.92304479548685,
37.871261840476215
],
[
-89.93187854973823,
37.88123083635143
],
[
-89.97428057014491,
37.918614570883456
],
[
-89.95484631079185,
37.96596730129069
],
[
-90.0078488363002,
37.96970567474389
],
[
-90.08028562116161,
38.014566156182326
],
[
-90.12622114326884,
38.049457641745555
],
[
-90.20572493153136,
38.08808750076198
]
]
],
"type": "Polygon"
},
"id": 43,
"properties": {
"Clinton_Trump": [
3439,
10023
],
"center_lon_lat": [
-89.89919365900809,
38.00958165824473
],
"county_name": "Randolph",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.87180902082878,
40.51304574740624
],
[
-89.76933747151264,
40.552921730907066
],
[
-89.67393292559761,
40.55416785539147
],
[
-89.59089563563454,
40.68501092625357
],
[
-89.55202711692841,
40.70619504248839
],
[
-89.5537938677787,
40.74731715047362
],
[
-89.33118326064364,
40.748563274958016
],
[
-89.32764975894308,
40.61522795512712
],
[
-89.26934698088391,
40.5940438388923
],
[
-89.26404672833307,
40.324880950261694
],
[
-89.6014961407362,
40.31989645232409
],
[
-89.71456819515402,
40.31865032783969
],
[
-89.7163349460043,
40.43578602937338
],
[
-89.92481154633712,
40.43578602937338
],
[
-89.88417627678072,
40.491861631171425
],
[
-89.87180902082878,
40.51304574740624
]
]
],
"type": "Polygon"
},
"id": 44,
"properties": {
"Clinton_Trump": [
20685,
38707
],
"center_lon_lat": [
-89.5944291373351,
40.533606801398854
],
"county_name": "Tazewell",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.93368333807358,
40.39964841932575
],
[
-87.93545008892386,
40.485631008749415
],
[
-87.52733064250958,
40.49061550668702
],
[
-87.52733064250958,
40.47690813735861
],
[
-87.53086414421014,
40.25011348119764
],
[
-87.53086414421014,
40.14793127347676
],
[
-87.53263089506042,
40.010857580192656
],
[
-87.53263089506042,
39.88250675829936
],
[
-87.55736540696432,
39.86879938897094
],
[
-87.6156681850235,
39.881260633814954
],
[
-87.93721683977414,
39.878768384846154
],
[
-87.94251709232496,
40.22519099150962
],
[
-87.93368333807358,
40.39964841932575
]
]
],
"type": "Polygon"
},
"id": 45,
"properties": {
"Clinton_Trump": [
10039,
19087
],
"center_lon_lat": [
-87.73492386741728,
40.17970744782898
],
"county_name": "Vermilion",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.94073132273216,
42.15169944439349
],
[
-88.70575345964515,
42.1529455688779
],
[
-88.5891479035268,
42.1529455688779
],
[
-88.5891479035268,
42.06571685496983
],
[
-88.60151515947874,
42.01711800007819
],
[
-88.60328191032902,
41.71929424830636
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.71282046304627,
41.629573285429494
],
[
-88.81882551406296,
41.6308194099139
],
[
-88.93896457188188,
41.62832716094509
],
[
-88.94249807358244,
41.89125942715369
],
[
-88.94073132273216,
42.15169944439349
]
]
],
"type": "Polygon"
},
"id": 46,
"properties": {
"Clinton_Trump": [
20466,
19091
],
"center_lon_lat": [
-88.76582298855462,
41.890636364911494
],
"county_name": "DeKalb",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.37537105064312,
37.90739945052385
],
[
-88.13685968585557,
37.91487619743025
],
[
-88.05912264844333,
37.86752346702301
],
[
-88.06795640269472,
37.856308346663404
],
[
-88.0290878839886,
37.80023274486536
],
[
-88.05912264844333,
37.742911018582916
],
[
-88.13332618415501,
37.69805053714448
],
[
-88.15982744690919,
37.65443618019045
],
[
-88.13155943330473,
37.57468421318879
],
[
-88.17926170626225,
37.599606702876805
],
[
-88.37537105064312,
37.599606702876805
],
[
-88.37537105064312,
37.90739945052385
]
]
],
"type": "Polygon"
},
"id": 47,
"properties": {
"Clinton_Trump": [
657,
1942
],
"center_lon_lat": [
-88.20222946731586,
37.744780205309524
],
"county_name": "Gallatin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.61384437794563,
39.39651820938298
],
[
-90.61031087624507,
39.45757830911863
],
[
-90.58027611179034,
39.52237678230748
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.15272240602302,
39.52113065782308
],
[
-90.14742215347218,
39.26193676506768
],
[
-90.31349673339832,
39.225799155020056
],
[
-90.31349673339832,
39.17470805115961
],
[
-90.58027611179034,
39.184677047034825
],
[
-90.60324387284396,
39.117386324877174
],
[
-90.61384437794563,
39.14230881456519
],
[
-90.590876616892,
39.19838441636323
],
[
-90.61384437794563,
39.39651820938298
]
]
],
"type": "Polygon"
},
"id": 48,
"properties": {
"Clinton_Trump": [
1205,
4145
],
"center_lon_lat": [
-90.3806332657089,
39.319881553592325
],
"county_name": "Greene",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.4725233286659,
40.92177457828975
],
[
-89.16157517901694,
40.926759076227356
],
[
-89.04850312459912,
40.92551295174295
],
[
-88.93189756848076,
40.92800520071175
],
[
-88.93013081763048,
40.75354777289562
],
[
-88.98843359568967,
40.75230164841122
],
[
-88.98490009398911,
40.66507293450316
],
[
-89.04496962289858,
40.62768919997112
],
[
-89.13507391626275,
40.596536087861104
],
[
-89.26934698088391,
40.5940438388923
],
[
-89.32764975894308,
40.61522795512712
],
[
-89.33118326064364,
40.748563274958016
],
[
-89.5537938677787,
40.74731715047362
],
[
-89.56086087117981,
40.79342375639645
],
[
-89.4725233286659,
40.92177457828975
]
]
],
"type": "Polygon"
},
"id": 49,
"properties": {
"Clinton_Trump": [
5092,
13207
],
"center_lon_lat": [
-89.24549584440516,
40.76102451980202
],
"county_name": "Woodford",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.36300379469118,
38.910529660466615
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.00788687378527,
39.17470805115961
],
[
-87.95135084657636,
39.17470805115961
],
[
-87.94605059402552,
38.85071568521536
],
[
-88.25876549452477,
38.84697731176216
],
[
-88.36300379469118,
38.851961809699766
],
[
-88.36300379469118,
38.910529660466615
]
]
],
"type": "Polygon"
},
"id": 50,
"properties": {
"Clinton_Trump": [
924,
3975
],
"center_lon_lat": [
-88.15452719435835,
39.010842681460886
],
"county_name": "Jasper",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.51313957947977,
39.987181214989036
],
[
-90.43540254206752,
40.01958045158346
],
[
-90.35413200295473,
40.12425490827314
],
[
-90.28699547064416,
40.05447193714669
],
[
-90.13328814666995,
40.06194868405309
],
[
-89.99371482949797,
40.10805528997593
],
[
-89.99371482949797,
39.90119862556537
],
[
-89.99371482949797,
39.872537762424145
],
[
-90.5838096134909,
39.87627613587735
],
[
-90.51137282862949,
39.96475097426982
],
[
-90.51313957947977,
39.987181214989036
]
]
],
"type": "Polygon"
},
"id": 51,
"properties": {
"Clinton_Trump": [
1621,
3216
],
"center_lon_lat": [
-90.28876222149444,
39.998396335348644
],
"county_name": "Cass",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.70043418835179,
39.52362290679188
],
[
-89.53259285757535,
39.52486903127628
],
[
-89.53082610672509,
39.34916547897575
],
[
-89.1403741688136,
39.34916547897575
],
[
-89.1403741688136,
39.21832240811365
],
[
-89.25167947238113,
39.21832240811365
],
[
-89.25167947238113,
39.0276653620003
],
[
-89.5855953830837,
39.0289114864847
],
[
-89.63859790859205,
38.99900449885908
],
[
-89.69690068665123,
38.99900449885908
],
[
-89.70043418835179,
39.52362290679188
]
]
],
"type": "Polygon"
},
"id": 52,
"properties": {
"Clinton_Trump": [
3504,
8630
],
"center_lon_lat": [
-89.42040417858269,
39.26193676506768
],
"county_name": "Montgomery",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.69515295454349,
38.825793195527346
],
[
-88.69338620369321,
38.91426803391982
],
[
-88.36300379469118,
38.910529660466615
],
[
-88.36300379469118,
38.851961809699766
],
[
-88.25876549452477,
38.84697731176216
],
[
-88.25876549452477,
38.73108773471287
],
[
-88.29763401323089,
38.6338900249296
],
[
-88.25346524197393,
38.59899853936637
],
[
-88.56441339162289,
38.606475286272776
],
[
-88.69868645624405,
38.606475286272776
],
[
-88.69515295454349,
38.825793195527346
]
]
],
"type": "Polygon"
},
"id": 53,
"properties": {
"Clinton_Trump": [
1020,
5021
],
"center_lon_lat": [
-88.47607584910898,
38.756633286643094
],
"county_name": "Clay",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.94073132273216,
42.49562980208815
],
[
-88.77642349365628,
42.49438367760376
],
[
-88.70752021049543,
42.493137553119354
],
[
-88.70752021049543,
42.493137553119354
],
[
-88.70575345964515,
42.1529455688779
],
[
-88.94073132273216,
42.15169944439349
],
[
-88.94073132273216,
42.49562980208815
]
]
],
"type": "Polygon"
},
"id": 54,
"properties": {
"Clinton_Trump": [
8986,
12282
],
"center_lon_lat": [
-88.82324239118866,
42.32366462324082
],
"county_name": "Boone",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.11736837027492,
40.69996442006638
],
[
-91.11560161942464,
40.7248869097544
],
[
-91.09086710752074,
40.77971638706804
],
[
-91.09263385837102,
40.82083849505327
],
[
-91.04493158541351,
40.86819122546051
],
[
-90.98486205650404,
40.911805582414544
],
[
-90.95129379034876,
40.95417381488418
],
[
-90.94422678694765,
41.01897228807302
],
[
-90.95129379034876,
41.070063391933466
],
[
-90.78521921042261,
41.06881726744906
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.90359151739125,
40.63890432033074
],
[
-91.02196382435989,
40.63516594687753
],
[
-91.18450490258549,
40.637658195846335
],
[
-91.12090187197548,
40.67254968140956
],
[
-91.11736837027492,
40.69996442006638
]
]
],
"type": "Polygon"
},
"id": 55,
"properties": {
"Clinton_Trump": [
1155,
2155
],
"center_lon_lat": [
-90.98486205650406,
40.8526146694055
],
"county_name": "Henderson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.80645825811101,
39.21707628362925
],
[
-88.47077559655816,
39.21583015914484
],
[
-88.47077559655816,
39.17221580219081
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.36300379469118,
38.910529660466615
],
[
-88.69338620369321,
38.91426803391982
],
[
-88.80822500896129,
38.91177578495101
],
[
-88.80645825811101,
39.21707628362925
]
]
],
"type": "Polygon"
},
"id": 56,
"properties": {
"Clinton_Trump": [
3083,
13635
],
"center_lon_lat": [
-88.5847310264011,
39.06380297204793
],
"county_name": "Effingham",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70575345964515,
38.12422511080961
],
[
-88.70221995794459,
38.25631430615611
],
[
-88.3700707980923,
38.25506818167171
],
[
-88.37537105064312,
37.90739945052385
],
[
-88.70752021049543,
37.906153326039444
],
[
-88.70575345964515,
38.12422511080961
]
]
],
"type": "Polygon"
},
"id": 57,
"properties": {
"Clinton_Trump": [
802,
3206
],
"center_lon_lat": [
-88.53879550429386,
38.08123381609778
],
"county_name": "Hamilton",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.36471348931386,
39.75789430985926
],
[
-90.91595877334319,
39.75664818537486
],
[
-90.91595877334319,
39.84512302376733
],
[
-90.88945751058903,
39.84013852582972
],
[
-90.57144235753894,
39.83889240134532
],
[
-90.59794362029312,
39.789047421969286
],
[
-90.64564589325063,
39.70431095703002
],
[
-90.58027611179034,
39.52237678230748
],
[
-90.61031087624507,
39.45757830911863
],
[
-90.61384437794563,
39.39651820938298
],
[
-90.93539303269625,
39.400256582836185
],
[
-90.93715978354653,
39.40150270732059
],
[
-91.03786458201239,
39.44885543772782
],
[
-91.06436584476657,
39.49496204365066
],
[
-91.09970086177213,
39.53857640060469
],
[
-91.14740313472964,
39.546053147511095
],
[
-91.17390439748382,
39.59215975343393
],
[
-91.18273815173521,
39.598390375855935
],
[
-91.27637594679996,
39.66692722249799
],
[
-91.30641071125468,
39.68686521424841
],
[
-91.36824699101442,
39.72923344671804
],
[
-91.36471348931386,
39.75789430985926
]
]
],
"type": "Polygon"
},
"id": 58,
"properties": {
"Clinton_Trump": [
1413,
5754
],
"center_lon_lat": [
-90.96984467427669,
39.62082061657516
],
"county_name": "Pike",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.14746019095725,
38.56909155174075
],
[
-87.95488434827692,
38.57033767622515
],
[
-87.97608535848025,
38.399618621862224
],
[
-87.95135084657636,
38.28995966723494
],
[
-87.99021936528248,
38.25880655512491
],
[
-88.02732113313832,
38.25506818167171
],
[
-88.15099369265779,
38.25631430615611
],
[
-88.14746019095725,
38.56909155174075
]
]
],
"type": "Polygon"
},
"id": 59,
"properties": {
"Clinton_Trump": [
434,
2778
],
"center_lon_lat": [
-88.05117226961707,
38.412702928948434
],
"county_name": "Edwards",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.98488107524658,
40.71242566491039
],
[
-89.98488107524658,
40.97411180663459
],
[
-89.63859790859205,
40.97411180663459
],
[
-89.447788816762,
40.97286568215019
],
[
-89.4725233286659,
40.92177457828975
],
[
-89.56086087117981,
40.79342375639645
],
[
-89.5537938677787,
40.74731715047362
],
[
-89.55202711692841,
40.70619504248839
],
[
-89.59089563563454,
40.68501092625357
],
[
-89.67393292559761,
40.55416785539147
],
[
-89.76933747151264,
40.552921730907066
],
[
-89.87180902082878,
40.51304574740624
],
[
-89.87357577167906,
40.62395082651792
],
[
-89.98841457694714,
40.62519695100232
],
[
-89.98488107524658,
40.71242566491039
]
]
],
"type": "Polygon"
},
"id": 60,
"properties": {
"Clinton_Trump": [
38060,
35633
],
"center_lon_lat": [
-89.71810169685457,
40.74357877702042
],
"county_name": "Peoria",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.95135084657636,
39.17470805115961
],
[
-87.6563034545799,
39.17221580219081
],
[
-87.63863594607712,
39.157262308378
],
[
-87.62626869012517,
39.102432831064355
],
[
-87.57326616461683,
39.05757234962592
],
[
-87.57856641716765,
39.00149674782788
],
[
-87.52909739335986,
38.97158976020226
],
[
-87.52733064250958,
38.90803741149781
],
[
-87.52909739335986,
38.90554516252901
],
[
-87.54676490186264,
38.875638174903386
],
[
-87.5343976459107,
38.851961809699766
],
[
-87.90894882616968,
38.85071568521536
],
[
-87.94605059402552,
38.85071568521536
],
[
-87.95135084657636,
39.17470805115961
]
]
],
"type": "Polygon"
},
"id": 61,
"properties": {
"Clinton_Trump": [
1992,
6277
],
"center_lon_lat": [
-87.73934074454297,
39.01271186818749
],
"county_name": "Crawford",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.93013081763048,
37.30302907558938
],
[
-88.90892980742714,
37.33542831218381
],
[
-88.71105371219599,
37.33792056115261
],
[
-88.49020985591122,
37.159724759883275
],
[
-88.49020985591122,
37.0675115480376
],
[
-88.53261187631789,
37.0675115480376
],
[
-88.56087988992235,
37.083711166334815
],
[
-88.61211566458041,
37.112372029476035
],
[
-88.69515295454349,
37.14103289261726
],
[
-88.75345573260267,
37.15474026194567
],
[
-88.83649302256575,
37.1971084944153
],
[
-88.9283640667802,
37.227015482040926
],
[
-88.93013081763048,
37.30302907558938
]
]
],
"type": "Polygon"
},
"id": 62,
"properties": {
"Clinton_Trump": [
1558,
4846
],
"center_lon_lat": [
-88.71017033677086,
37.2027160545951
],
"county_name": "Massac",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.47429007951618,
37.33542831218381
],
[
-89.24991272153085,
37.33542831218381
],
[
-89.26227997748279,
37.10614140705403
],
[
-89.16687543156777,
37.07249604597521
],
[
-89.12977366371193,
37.01766656866156
],
[
-89.13330716541249,
36.981528958613936
],
[
-89.19514344517222,
36.990251830004745
],
[
-89.25874647578223,
37.01517431969276
],
[
-89.30821549959002,
37.02888168902117
],
[
-89.35945127424809,
37.042589058349584
],
[
-89.38418578615199,
37.103649158085226
],
[
-89.4566225710134,
37.188385623024494
],
[
-89.47075657781562,
37.253184096213346
],
[
-89.48312383376756,
37.26066084311975
],
[
-89.51669209992285,
37.281844959354565
],
[
-89.49549108971952,
37.325459316308596
],
[
-89.47429007951618,
37.33542831218381
]
]
],
"type": "Polygon"
},
"id": 63,
"properties": {
"Clinton_Trump": [
1262,
1496
],
"center_lon_lat": [
-89.32323288181739,
37.15847863539887
],
"county_name": "Alexander",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.99371482949797,
39.90119862556537
],
[
-89.76933747151264,
39.90244475004977
],
[
-89.70043418835179,
39.91615211937818
],
[
-89.69690068665123,
39.974719970145024
],
[
-89.57676162883232,
39.97596609462943
],
[
-89.48489058461784,
39.97596609462943
],
[
-89.40538679635533,
39.91739824386258
],
[
-89.21811120622584,
39.91615211937818
],
[
-89.21811120622584,
39.8127237871729
],
[
-89.24814597068057,
39.82518503201691
],
[
-89.30468199788947,
39.77534005264087
],
[
-89.42658780655867,
39.74667918949965
],
[
-89.42658780655867,
39.68437296527961
],
[
-89.479590332067,
39.68437296527961
],
[
-89.479590332067,
39.64200473280997
],
[
-89.53435960842563,
39.64200473280997
],
[
-89.53435960842563,
39.613343869668746
],
[
-89.53259285757535,
39.52486903127628
],
[
-89.70043418835179,
39.52362290679188
],
[
-89.92481154633712,
39.52237678230748
],
[
-89.99371482949797,
39.78530904851608
],
[
-89.99371482949797,
39.872537762424145
],
[
-89.99371482949797,
39.90119862556537
]
]
],
"type": "Polygon"
},
"id": 64,
"properties": {
"Clinton_Trump": [
40907,
49944
],
"center_lon_lat": [
-89.60591301786191,
39.74917143846845
],
"county_name": "Sangamon",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.21811120622584,
39.8127237871729
],
[
-89.14214091966387,
39.800262542328895
],
[
-89.1403741688136,
39.65571210213838
],
[
-89.02553536354552,
39.654465977653985
],
[
-89.02553536354552,
39.34667323000694
],
[
-89.1403741688136,
39.34916547897575
],
[
-89.53082610672509,
39.34916547897575
],
[
-89.53259285757535,
39.52486903127628
],
[
-89.53435960842563,
39.613343869668746
],
[
-89.53435960842563,
39.64200473280997
],
[
-89.479590332067,
39.64200473280997
],
[
-89.479590332067,
39.68437296527961
],
[
-89.42658780655867,
39.68437296527961
],
[
-89.42658780655867,
39.74667918949965
],
[
-89.30468199788947,
39.77534005264087
],
[
-89.24814597068057,
39.82518503201691
],
[
-89.21811120622584,
39.8127237871729
]
]
],
"type": "Polygon"
},
"id": 65,
"properties": {
"Clinton_Trump": [
3992,
10543
],
"center_lon_lat": [
-89.27994748598557,
39.58592913101192
],
"county_name": "Christian",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.07496634986823,
41.334241782626464
],
[
-91.07319959901795,
41.334241782626464
],
[
-90.43363579121724,
41.32801116020446
],
[
-90.4371692929178,
41.151061483419525
],
[
-90.43893604376808,
41.06383276951146
],
[
-90.78521921042261,
41.06881726744906
],
[
-90.95129379034876,
41.070063391933466
],
[
-90.95129379034876,
41.072555640902266
],
[
-90.9565940428996,
41.1111854999187
],
[
-90.997229312456,
41.16352272826354
],
[
-91.04139808371295,
41.16601497723234
],
[
-91.08203335326935,
41.21461383212397
],
[
-91.11383486857436,
41.250751442171605
],
[
-91.07496634986823,
41.334241782626464
]
]
],
"type": "Polygon"
},
"id": 66,
"properties": {
"Clinton_Trump": [
3071,
4807
],
"center_lon_lat": [
-90.7737353298958,
41.199037276068964
],
"county_name": "Mercer",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.68630018154957,
37.79649437141216
],
[
-89.66333242049595,
37.830139732490984
],
[
-89.5944291373351,
37.95475218093108
],
[
-89.17747593666944,
37.949767682993475
],
[
-89.15097467391527,
37.944783185055876
],
[
-89.15274142476554,
37.862538969085406
],
[
-89.15450817561582,
37.60085282736121
],
[
-89.45308906931284,
37.60085282736121
],
[
-89.49902459142007,
37.570945839735586
],
[
-89.49549108971952,
37.58091483561079
],
[
-89.50609159482119,
37.62577531704923
],
[
-89.52022560162341,
37.696804412660086
],
[
-89.59089563563454,
37.7242191513169
],
[
-89.66686592219651,
37.760356761364534
],
[
-89.68630018154957,
37.79649437141216
]
]
],
"type": "Polygon"
},
"id": 67,
"properties": {
"Clinton_Trump": [
11634,
10843
],
"center_lon_lat": [
-89.41863742773242,
37.76284901033333
],
"county_name": "Jackson",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70928696134571,
37.599606702876805
],
[
-88.41247281849897,
37.60085282736121
],
[
-88.41600632019953,
37.42141090160747
],
[
-88.41953982190009,
37.422657026091876
],
[
-88.46547534400732,
37.40022678537266
],
[
-88.48667635421066,
37.34041281012141
],
[
-88.5149443678151,
37.290567830745374
],
[
-88.47254234740844,
37.22078485961892
],
[
-88.42484007445091,
37.14975576400806
],
[
-88.44427433380397,
37.09866466014763
],
[
-88.476075849109,
37.068757672522004
],
[
-88.48490960336038,
37.068757672522004
],
[
-88.49020985591122,
37.0675115480376
],
[
-88.49020985591122,
37.159724759883275
],
[
-88.71105371219599,
37.33792056115261
],
[
-88.70928696134571,
37.599606702876805
]
]
],
"type": "Polygon"
},
"id": 68,
"properties": {
"Clinton_Trump": [
375,
1678
],
"center_lon_lat": [
-88.56176326534748,
37.334182187699405
],
"county_name": "Pope",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.93721683977414,
39.878768384846154
],
[
-87.6156681850235,
39.881260633814954
],
[
-87.55736540696432,
39.86879938897094
],
[
-87.53263089506042,
39.88250675829936
],
[
-87.53263089506042,
39.66568109801359
],
[
-87.53263089506042,
39.60835937173115
],
[
-87.53086414421014,
39.47751630086905
],
[
-87.6881049698849,
39.487485296744254
],
[
-87.96018460082774,
39.48125467432225
],
[
-87.96725160422886,
39.68686521424841
],
[
-87.96901835507914,
39.791539670938086
],
[
-87.93721683977414,
39.878768384846154
]
]
],
"type": "Polygon"
},
"id": 69,
"properties": {
"Clinton_Trump": [
1793,
5645
],
"center_lon_lat": [
-87.74994124964465,
39.680011529584206
],
"county_name": "Edgar",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.93539303269625,
39.400256582836185
],
[
-90.61384437794563,
39.39651820938298
],
[
-90.590876616892,
39.19838441636323
],
[
-90.61384437794563,
39.14230881456519
],
[
-90.60324387284396,
39.117386324877174
],
[
-90.5343405896831,
38.95912851535825
],
[
-90.46720405737253,
38.96909751123346
],
[
-90.45130329972002,
38.96162076432705
],
[
-90.46720405737253,
38.96162076432705
],
[
-90.49900557267755,
38.910529660466615
],
[
-90.55554159988644,
38.87065367696578
],
[
-90.59441011859256,
38.875638174903386
],
[
-90.6562463983523,
38.92049865634182
],
[
-90.66154665090313,
38.93420602567023
],
[
-90.67568065770536,
38.98405100504627
],
[
-90.7127824255612,
39.05383397617272
],
[
-90.6809809102562,
39.10118670657996
],
[
-90.70748217301036,
39.151031685956
],
[
-90.72338293066288,
39.22455303053565
],
[
-90.73044993406398,
39.25570614264568
],
[
-90.83998848678124,
39.34044260758494
],
[
-90.93539303269625,
39.400256582836185
]
]
],
"type": "Polygon"
},
"id": 70,
"properties": {
"Clinton_Trump": [
739,
1721
],
"center_lon_lat": [
-90.69334816620814,
39.13545512990098
],
"county_name": "Calhoun",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.44953654886974,
40.27628209537006
],
[
-90.44423629631892,
40.62768919997112
],
[
-90.44423629631892,
40.71491791387919
],
[
-89.98488107524658,
40.71242566491039
],
[
-89.98841457694714,
40.62519695100232
],
[
-89.87357577167906,
40.62395082651792
],
[
-89.87180902082878,
40.51304574740624
],
[
-89.88417627678072,
40.491861631171425
],
[
-89.92481154633712,
40.43578602937338
],
[
-90.03788360075492,
40.374725929637734
],
[
-90.11915413986773,
40.235159987384826
],
[
-90.19865792813025,
40.18406888352439
],
[
-90.45130329972002,
40.18905338146199
],
[
-90.44953654886974,
40.27628209537006
]
]
],
"type": "Polygon"
},
"id": 71,
"properties": {
"Clinton_Trump": [
6133,
8492
],
"center_lon_lat": [
-90.1615561602744,
40.44949339870179
],
"county_name": "Fulton",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.14390767051415,
38.5030469540675
],
[
-89.13860741796331,
38.73607223265048
],
[
-89.13860741796331,
38.82454707104294
],
[
-88.69515295454349,
38.825793195527346
],
[
-88.69868645624405,
38.606475286272776
],
[
-88.69868645624405,
38.47438609092628
],
[
-89.14567442136443,
38.47313996644188
],
[
-89.14390767051415,
38.5030469540675
]
]
],
"type": "Polygon"
},
"id": 72,
"properties": {
"Clinton_Trump": [
4369,
11859
],
"center_lon_lat": [
-88.92041368795395,
38.64946658098461
],
"county_name": "Marion",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.69868645624405,
38.47438609092628
],
[
-88.69868645624405,
38.606475286272776
],
[
-88.56441339162289,
38.606475286272776
],
[
-88.25346524197393,
38.59899853936637
],
[
-88.14746019095725,
38.597752414881974
],
[
-88.14746019095725,
38.56909155174075
],
[
-88.15099369265779,
38.25631430615611
],
[
-88.3700707980923,
38.25506818167171
],
[
-88.70221995794459,
38.25631430615611
],
[
-88.69868645624405,
38.47438609092628
]
]
],
"type": "Polygon"
},
"id": 73,
"properties": {
"Clinton_Trump": [
1048,
6967
],
"center_lon_lat": [
-88.42484007445091,
38.43077173397224
],
"county_name": "Wayne",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.2393312351717,
42.15419169336229
],
[
-88.20046271646558,
42.15419169336229
],
[
-88.02378763143777,
42.1529455688779
],
[
-88.00435337208471,
42.1529455688779
],
[
-87.94605059402552,
42.1529455688779
],
[
-87.75877500389603,
42.15169944439349
],
[
-87.74110749539325,
42.12802307918987
],
[
-87.74110749539325,
42.12802307918987
],
[
-87.74110749539325,
42.12802307918987
],
[
-87.68987172073518,
42.081916473267036
],
[
-87.68280471733407,
42.07568585084503
],
[
-87.66867071053184,
42.0283331204378
],
[
-87.63510244437656,
41.93238153513892
],
[
-87.6245019392749,
41.9062129209665
],
[
-87.6245019392749,
41.903720671997704
],
[
-87.61213468332295,
41.892505551638095
],
[
-87.61390143417321,
41.883782680247286
],
[
-87.6156681850235,
41.87007531091888
],
[
-87.61036793247267,
41.845152821230855
],
[
-87.58916692226933,
41.81026133566763
],
[
-87.58209991886821,
41.799046215308024
],
[
-87.56089890866487,
41.7654008542292
],
[
-87.53086414421014,
41.74795511144758
],
[
-87.52379714080904,
41.723032621759565
],
[
-87.52379714080904,
41.70807912794675
],
[
-87.52556389165932,
41.529883326677414
],
[
-87.52556389165932,
41.47131547591057
],
[
-87.78704301750048,
41.47006935142617
],
[
-87.79057651920104,
41.52863720219302
],
[
-87.81177752940438,
41.55854418981864
],
[
-87.90894882616968,
41.55729806533424
],
[
-87.91248232787024,
41.6432806547579
],
[
-88.0290878839886,
41.66944926893032
],
[
-88.0290878839886,
41.68440276274313
],
[
-88.00435337208471,
41.685648887227536
],
[
-87.98315236188137,
41.685648887227536
],
[
-87.9796188601808,
41.68689501171194
],
[
-87.96725160422886,
41.68689501171194
],
[
-87.95488434827692,
41.69312563413394
],
[
-87.94958409572608,
41.694371758618345
],
[
-87.94251709232496,
41.69811013207155
],
[
-87.94075034147468,
41.70309463000915
],
[
-87.91424907872052,
41.71929424830636
],
[
-87.9160158295708,
41.7716314766512
],
[
-87.91778258042108,
41.790323343917215
],
[
-87.91778258042108,
41.79530784185482
],
[
-87.92131608212163,
41.9062129209665
],
[
-87.92131608212163,
41.94110440652973
],
[
-87.93898359062442,
41.99344163487457
],
[
-88.17396145371141,
41.98721101245257
],
[
-88.2640657470756,
41.985964887968166
],
[
-88.2640657470756,
42.014625751109385
],
[
-88.2640657470756,
42.06571685496983
],
[
-88.2393312351717,
42.09188546914225
],
[
-88.2393312351717,
42.15419169336229
]
]
],
"type": "Polygon"
},
"id": 74,
"properties": {
"Clinton_Trump": [
1611946,
453287
],
"center_lon_lat": [
-87.89393144394232,
41.81213052239423
],
"county_name": "Cook",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.50605355733612,
40.2002685018216
],
[
-90.91242527164265,
40.19279175491519
],
[
-90.91419202249293,
40.10431691652273
],
[
-90.91595877334319,
39.84512302376733
],
[
-90.91595877334319,
39.75664818537486
],
[
-91.36471348931386,
39.75789430985926
],
[
-91.36117998761331,
39.78655517300048
],
[
-91.39828175546916,
39.820200534079305
],
[
-91.43538352332499,
39.84512302376733
],
[
-91.42831651992388,
39.90742924798737
],
[
-91.43715027417527,
39.9448129825194
],
[
-91.43715027417527,
39.946059107003805
],
[
-91.48485254713279,
40.01833432709906
],
[
-91.49721980308473,
40.07814830235031
],
[
-91.51135380988696,
40.170361514195974
],
[
-91.50605355733612,
40.2002685018216
]
]
],
"type": "Polygon"
},
"id": 75,
"properties": {
"Clinton_Trump": [
7676,
22790
],
"center_lon_lat": [
-91.2118895407648,
39.97845834359823
],
"county_name": "Adams",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.2640657470756,
41.985964887968166
],
[
-88.17396145371141,
41.98721101245257
],
[
-87.93898359062442,
41.99344163487457
],
[
-87.92131608212163,
41.94110440652973
],
[
-87.92131608212163,
41.9062129209665
],
[
-87.91778258042108,
41.79530784185482
],
[
-87.91778258042108,
41.790323343917215
],
[
-87.9160158295708,
41.7716314766512
],
[
-87.91424907872052,
41.71929424830636
],
[
-87.94075034147468,
41.70309463000915
],
[
-87.94251709232496,
41.69811013207155
],
[
-87.94958409572608,
41.694371758618345
],
[
-87.95488434827692,
41.69312563413394
],
[
-87.96725160422886,
41.68689501171194
],
[
-87.9796188601808,
41.68689501171194
],
[
-87.98315236188137,
41.685648887227536
],
[
-88.00435337208471,
41.685648887227536
],
[
-88.0290878839886,
41.68440276274313
],
[
-88.03085463483887,
41.72801711969717
],
[
-88.14922694180751,
41.725524870728364
],
[
-88.26229899622533,
41.72427874624397
],
[
-88.26229899622533,
41.81150746015203
],
[
-88.26229899622533,
41.81150746015203
],
[
-88.26229899622533,
41.88253655576288
],
[
-88.26229899622533,
41.8987361740601
],
[
-88.2640657470756,
41.985964887968166
]
]
],
"type": "Polygon"
},
"id": 76,
"properties": {
"Clinton_Trump": [
228622,
166415
],
"center_lon_lat": [
-88.08915741289806,
41.83892219880885
],
"county_name": "DuPage",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.78521921042261,
41.453869733128954
],
[
-90.70041516960926,
41.45511585761336
],
[
-90.61737787964618,
41.48502284523898
],
[
-90.57144235753894,
41.51742208183341
],
[
-90.51313957947977,
41.51991433080221
],
[
-90.46013705397142,
41.52365270425541
],
[
-90.41596828271446,
41.56352868775624
],
[
-90.36296575720611,
41.579728306053454
],
[
-90.33823124530223,
41.59842017331947
],
[
-90.33646449445195,
41.66446477099272
],
[
-90.31349673339832,
41.694371758618345
],
[
-90.31172998254804,
41.72801711969717
],
[
-90.30996323169776,
41.74172448902558
],
[
-90.24812695193803,
41.77910822355761
],
[
-90.24105994853691,
41.78284659701081
],
[
-90.22869269258497,
41.67443376686793
],
[
-90.15978940942412,
41.6432806547579
],
[
-90.18452392132802,
41.58471280399106
],
[
-90.19512442642969,
41.54109844703702
],
[
-90.33293099275139,
41.5149298328646
],
[
-90.43186904036696,
41.45760810658216
],
[
-90.43363579121724,
41.32801116020446
],
[
-91.07319959901795,
41.334241782626464
],
[
-91.07143284816767,
41.34047240504847
],
[
-91.06436584476657,
41.36913326818969
],
[
-91.02726407691073,
41.42396274550333
],
[
-90.96719454800126,
41.43019336792534
],
[
-90.92479252759459,
41.42396274550333
],
[
-90.8664897495354,
41.448885235191355
],
[
-90.78521921042261,
41.453869733128954
]
]
],
"type": "Polygon"
},
"id": 77,
"properties": {
"Clinton_Trump": [
32298,
26998
],
"center_lon_lat": [
-90.61649450422104,
41.555428878607636
],
"county_name": "Rock Island",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.90894882616968,
38.85071568521536
],
[
-87.5343976459107,
38.851961809699766
],
[
-87.52203038995876,
38.82703932001175
],
[
-87.49906262890514,
38.75725634888529
],
[
-87.54499815101236,
38.67750438188364
],
[
-87.62096843757433,
38.638874522867205
],
[
-87.63863594607712,
38.58778341900676
],
[
-87.64923645117878,
38.56659930277195
],
[
-87.91248232787024,
38.57033767622515
],
[
-87.90894882616968,
38.85071568521536
]
]
],
"type": "Polygon"
},
"id": 78,
"properties": {
"Clinton_Trump": [
1290,
4521
],
"center_lon_lat": [
-87.70577247838769,
38.70928055623585
],
"county_name": "Lawrence",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.21811120622584,
39.91615211937818
],
[
-89.14390767051415,
39.91739824386258
],
[
-89.14567442136443,
40.048241314724685
],
[
-88.74638872920156,
40.05447193714669
],
[
-88.74638872920156,
39.791539670938086
],
[
-88.81352526151213,
39.741694691562046
],
[
-88.81175851066185,
39.65321985316958
],
[
-89.02553536354552,
39.654465977653985
],
[
-89.1403741688136,
39.65571210213838
],
[
-89.14214091966387,
39.800262542328895
],
[
-89.21811120622584,
39.8127237871729
],
[
-89.21811120622584,
39.91615211937818
]
]
],
"type": "Polygon"
},
"id": 79,
"properties": {
"Clinton_Trump": [
18343,
26866
],
"center_lon_lat": [
-88.9822499677137,
39.85384589515813
],
"county_name": "Macon",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.6014961407362,
40.31989645232409
],
[
-89.26404672833307,
40.324880950261694
],
[
-89.26404672833307,
40.28126659330766
],
[
-89.14920792306499,
40.28251271779206
],
[
-89.14920792306499,
40.28126659330766
],
[
-89.14567442136443,
40.048241314724685
],
[
-89.14390767051415,
39.91739824386258
],
[
-89.21811120622584,
39.91615211937818
],
[
-89.40538679635533,
39.91739824386258
],
[
-89.48489058461784,
39.97596609462943
],
[
-89.57676162883232,
39.97596609462943
],
[
-89.5785283796826,
40.091855671678715
],
[
-89.6014961407362,
40.12176265930434
],
[
-89.6014961407362,
40.31989645232409
]
]
],
"type": "Polygon"
},
"id": 80,
"properties": {
"Clinton_Trump": [
3313,
8181
],
"center_lon_lat": [
-89.37270190562518,
40.12051653481994
],
"county_name": "Logan",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.99021936528248,
38.25880655512491
],
[
-87.95135084657636,
38.28995966723494
],
[
-87.97608535848025,
38.399618621862224
],
[
-87.95488434827692,
38.57033767622515
],
[
-87.91248232787024,
38.57033767622515
],
[
-87.64923645117878,
38.56659930277195
],
[
-87.66160370713074,
38.54043068859953
],
[
-87.65453670372962,
38.51176982545831
],
[
-87.71460623263908,
38.47937058886388
],
[
-87.74110749539325,
38.43575623190985
],
[
-87.75170800049492,
38.41831048912824
],
[
-87.77997601409938,
38.370957758721
],
[
-87.83297853960772,
38.30740541001655
],
[
-87.90894882616968,
38.26877555100012
],
[
-87.96901835507914,
38.236376314405696
],
[
-87.99021936528248,
38.25880655512491
]
]
],
"type": "Polygon"
},
"id": 81,
"properties": {
"Clinton_Trump": [
1151,
4047
],
"center_lon_lat": [
-87.81972790823063,
38.40335699531542
],
"county_name": "Wabash",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.49721980308473,
40.248867356713234
],
[
-91.49368630138417,
40.270051472948055
],
[
-91.46895178948027,
40.322388701292894
],
[
-91.41948276567248,
40.37846430309094
],
[
-91.37354724356526,
40.39840229484135
],
[
-91.38061424696637,
40.45198564767059
],
[
-91.36824699101442,
40.51055349843744
],
[
-91.3947482537686,
40.53422986364105
],
[
-91.37354724356526,
40.58282871853269
],
[
-91.33997897740997,
40.613981830642714
],
[
-91.2481079331955,
40.63890432033074
],
[
-91.18627165343577,
40.637658195846335
],
[
-91.18450490258549,
40.637658195846335
],
[
-91.02196382435989,
40.63516594687753
],
[
-90.90359151739125,
40.63890432033074
],
[
-90.90889176994209,
40.28375884227646
],
[
-90.91242527164265,
40.19279175491519
],
[
-91.50605355733612,
40.2002685018216
],
[
-91.49721980308473,
40.248867356713234
]
]
],
"type": "Polygon"
},
"id": 82,
"properties": {
"Clinton_Trump": [
2139,
6430
],
"center_lon_lat": [
-91.20482253736368,
40.415848037622965
],
"county_name": "Hancock",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.26934698088391,
40.5940438388923
],
[
-89.13507391626275,
40.596536087861104
],
[
-89.04496962289858,
40.62768919997112
],
[
-88.98490009398911,
40.66507293450316
],
[
-88.98843359568967,
40.75230164841122
],
[
-88.93013081763048,
40.75354777289562
],
[
-88.58561440182623,
40.757286146348825
],
[
-88.57501389672457,
40.616474079611514
],
[
-88.46017509145648,
40.61772020409592
],
[
-88.46017509145648,
40.39840229484135
],
[
-88.46017509145648,
40.28126659330766
],
[
-88.57501389672457,
40.28126659330766
],
[
-88.91953031252882,
40.28251271779206
],
[
-89.14920792306499,
40.28126659330766
],
[
-89.14920792306499,
40.28251271779206
],
[
-89.26404672833307,
40.28126659330766
],
[
-89.26404672833307,
40.324880950261694
],
[
-89.26934698088391,
40.5940438388923
]
]
],
"type": "Polygon"
},
"id": 83,
"properties": {
"Clinton_Trump": [
36196,
37237
],
"center_lon_lat": [
-88.8647610361702,
40.51927636982825
],
"county_name": "McLean",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.96018460082774,
39.48125467432225
],
[
-87.6881049698849,
39.487485296744254
],
[
-87.53086414421014,
39.47751630086905
],
[
-87.53086414421014,
39.47003955396264
],
[
-87.53086414421014,
39.347919354491346
],
[
-87.57856641716765,
39.34044260758494
],
[
-87.59976742737099,
39.31302786892812
],
[
-87.59446717482017,
39.25944451609888
],
[
-87.59270042396989,
39.24822939573927
],
[
-87.57679966631738,
39.210845661207244
],
[
-87.6404026969274,
39.16723130425321
],
[
-87.63863594607712,
39.157262308378
],
[
-87.6563034545799,
39.17221580219081
],
[
-87.95135084657636,
39.17470805115961
],
[
-88.00788687378527,
39.17470805115961
],
[
-88.01318712633609,
39.37907246660137
],
[
-88.01495387718637,
39.48125467432225
],
[
-87.96018460082774,
39.48125467432225
]
]
],
"type": "Polygon"
},
"id": 84,
"properties": {
"Clinton_Trump": [
1877,
5622
],
"center_lon_lat": [
-87.77290901069826,
39.32237380256113
],
"county_name": "Clark",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70752021049543,
42.493137553119354
],
[
-88.507877364414,
42.49438367760376
],
[
-88.304701016632,
42.49562980208815
],
[
-88.2163634741181,
42.49562980208815
],
[
-88.20046271646558,
42.49562980208815
],
[
-88.19869596561531,
42.41587783508649
],
[
-88.19869596561531,
42.32864912117843
],
[
-88.19869596561531,
42.24142040727036
],
[
-88.19869596561531,
42.24142040727036
],
[
-88.20046271646558,
42.15419169336229
],
[
-88.2393312351717,
42.15419169336229
],
[
-88.25876549452477,
42.15419169336229
],
[
-88.3541700404398,
42.15419169336229
],
[
-88.39480530999619,
42.15419169336229
],
[
-88.5891479035268,
42.1529455688779
],
[
-88.70575345964515,
42.1529455688779
],
[
-88.70752021049543,
42.493137553119354
]
]
],
"type": "Polygon"
},
"id": 85,
"properties": {
"Clinton_Trump": [
60803,
71612
],
"center_lon_lat": [
-88.45310808805537,
42.32428768548303
],
"county_name": "McHenry",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.3399979961525,
38.38715737701821
],
[
-90.28876222149444,
38.43824848087865
],
[
-90.27109471299165,
38.495570207161094
],
[
-90.26049420788998,
38.51800044788031
],
[
-90.03611684990464,
38.30865153450095
],
[
-89.90361053613378,
38.297436414141345
],
[
-89.89831028358294,
38.22017669610848
],
[
-90.03611684990464,
38.22266894507729
],
[
-90.03611684990464,
38.13544023116922
],
[
-90.20572493153136,
38.08808750076198
],
[
-90.21809218748331,
38.09431812318399
],
[
-90.25166045363859,
38.12671735977841
],
[
-90.25166045363859,
38.12671735977841
],
[
-90.32233048764972,
38.18154683709206
],
[
-90.35059850125417,
38.218930571624085
],
[
-90.36296575720611,
38.236376314405696
],
[
-90.37179951145751,
38.323605028313764
],
[
-90.34883175040389,
38.377188381143
],
[
-90.34176474700278,
38.384665128049406
],
[
-90.3399979961525,
38.38715737701821
]
]
],
"type": "Polygon"
},
"id": 86,
"properties": {
"Clinton_Trump": [
5535,
12629
],
"center_lon_lat": [
-90.13505489752023,
38.30304397432114
],
"county_name": "Monroe",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.1403741688136,
39.34916547897575
],
[
-89.02553536354552,
39.34667323000694
],
[
-89.02553536354552,
39.654465977653985
],
[
-88.81175851066185,
39.65321985316958
],
[
-88.80999175981157,
39.580944633074324
],
[
-88.71812071559711,
39.57969850858992
],
[
-88.71812071559711,
39.52113065782308
],
[
-88.64215042903514,
39.52113065782308
],
[
-88.58561440182623,
39.447609313243426
],
[
-88.47077559655816,
39.447609313243426
],
[
-88.47077559655816,
39.37533409314817
],
[
-88.47077559655816,
39.21583015914484
],
[
-88.80645825811101,
39.21707628362925
],
[
-89.11740640775997,
39.21707628362925
],
[
-89.1403741688136,
39.21832240811365
],
[
-89.1403741688136,
39.34916547897575
]
]
],
"type": "Polygon"
},
"id": 87,
"properties": {
"Clinton_Trump": [
2288,
8229
],
"center_lon_lat": [
-88.80557488268587,
39.435148068399414
],
"county_name": "Shelby",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.40185329465477,
42.50061430002576
],
[
-89.3665182776492,
42.50061430002576
],
[
-89.0432028720483,
42.49562980208815
],
[
-88.99373384824051,
42.49562980208815
],
[
-88.94073132273216,
42.49562980208815
],
[
-88.94073132273216,
42.15169944439349
],
[
-89.09267189585609,
42.15045331990909
],
[
-89.17394243496888,
42.15045331990909
],
[
-89.17394243496888,
42.20403667273833
],
[
-89.39655304210393,
42.20154442376953
],
[
-89.39831979295421,
42.30746500494361
],
[
-89.40185329465477,
42.50061430002576
]
]
],
"type": "Polygon"
},
"id": 88,
"properties": {
"Clinton_Trump": [
55713,
55624
],
"center_lon_lat": [
-89.17129230869347,
42.325533809967425
],
"county_name": "Winnebago",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.41247281849897,
37.60085282736121
],
[
-88.37537105064312,
37.599606702876805
],
[
-88.17926170626225,
37.599606702876805
],
[
-88.13155943330473,
37.57468421318879
],
[
-88.13155943330473,
37.573438088704386
],
[
-88.07325665524556,
37.52857760726595
],
[
-88.06618965184444,
37.50490124206234
],
[
-88.06265615014388,
37.488701623765124
],
[
-88.15806069605891,
37.46751750753031
],
[
-88.28173325557839,
37.4525640137175
],
[
-88.35947029299062,
37.40521128331026
],
[
-88.41600632019953,
37.42141090160747
],
[
-88.41247281849897,
37.60085282736121
]
]
],
"type": "Polygon"
},
"id": 89,
"properties": {
"Clinton_Trump": [
420,
1653
],
"center_lon_lat": [
-88.2393312351717,
37.50303205533574
],
"county_name": "Hardin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.46017509145648,
40.28126659330766
],
[
-88.46017509145648,
40.39840229484135
],
[
-88.34710303703868,
40.39840229484135
],
[
-87.93368333807358,
40.39964841932575
],
[
-87.94251709232496,
40.22519099150962
],
[
-87.93721683977414,
39.878768384846154
],
[
-88.34886978788896,
39.878768384846154
],
[
-88.46194184230676,
39.878768384846154
],
[
-88.46370859315704,
40.141700651054755
],
[
-88.46017509145648,
40.28126659330766
]
]
],
"type": "Polygon"
},
"id": 90,
"properties": {
"Clinton_Trump": [
50137,
33368
],
"center_lon_lat": [
-88.19869596561531,
40.139208402085956
],
"county_name": "Champaign",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.70396769005235,
38.41581824015943
],
[
-89.61386339668816,
38.471893841957474
],
[
-89.48312383376756,
38.46815546850427
],
[
-89.35238427084698,
38.51800044788031
],
[
-89.14390767051415,
38.5030469540675
],
[
-89.14567442136443,
38.47313996644188
],
[
-89.14744117221471,
38.212699949202076
],
[
-89.59266238648482,
38.218930571624085
],
[
-89.70220093920207,
38.218930571624085
],
[
-89.70396769005235,
38.41581824015943
]
]
],
"type": "Polygon"
},
"id": 91,
"properties": {
"Clinton_Trump": [
1448,
5571
],
"center_lon_lat": [
-89.42393768028325,
38.36535019854119
],
"county_name": "Washington",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.24105994853691,
41.78284659701081
],
[
-90.17922366877718,
41.81150746015203
],
[
-90.18099041962746,
41.84390669674646
],
[
-90.16508966197496,
41.883782680247286
],
[
-90.15802265857384,
41.92988928617012
],
[
-90.12798789411912,
41.92864316168572
],
[
-89.68453343069929,
41.92988928617012
],
[
-89.62799740349038,
41.9012284230289
],
[
-89.63153090519094,
41.585958928475456
],
[
-89.8612085157271,
41.58471280399106
],
[
-90.18452392132802,
41.58471280399106
],
[
-90.15978940942412,
41.6432806547579
],
[
-90.22869269258497,
41.67443376686793
],
[
-90.24105994853691,
41.78284659701081
]
]
],
"type": "Polygon"
},
"id": 92,
"properties": {
"Clinton_Trump": [
11035,
12615
],
"center_lon_lat": [
-89.93452867601366,
41.757301045080595
],
"county_name": "Whiteside",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.04496962289858,
37.3304438142462
],
[
-89.04143612119802,
37.597114453908006
],
[
-88.70928696134571,
37.599606702876805
],
[
-88.71105371219599,
37.33792056115261
],
[
-88.90892980742714,
37.33542831218381
],
[
-88.93013081763048,
37.30302907558938
],
[
-89.04496962289858,
37.29430620419858
],
[
-89.04496962289858,
37.3304438142462
]
]
],
"type": "Polygon"
},
"id": 93,
"properties": {
"Clinton_Trump": [
1142,
4649
],
"center_lon_lat": [
-88.87712829212214,
37.446956453537695
],
"county_name": "Johnson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.25169849112365,
41.1149238733719
],
[
-88.24109798602198,
41.12987736718471
],
[
-88.24463148772254,
41.20215258727997
],
[
-88.01142037548581,
41.20589096073317
],
[
-88.01495387718637,
41.29311967464123
],
[
-87.52733064250958,
41.29810417257884
],
[
-87.52733064250958,
41.16601497723234
],
[
-87.52733064250958,
41.02520291049503
],
[
-87.52733064250958,
41.01024941668222
],
[
-88.13155943330473,
40.99778817183821
],
[
-88.2481649894231,
40.99529592286941
],
[
-88.25169849112365,
41.1149238733719
]
]
],
"type": "Polygon"
},
"id": 94,
"properties": {
"Clinton_Trump": [
18971,
25129
],
"center_lon_lat": [
-87.88951456681662,
41.146700047724124
],
"county_name": "Kankakee",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.8612085157271,
41.58471280399106
],
[
-89.63153090519094,
41.585958928475456
],
[
-89.16687543156777,
41.585958928475456
],
[
-89.1651086807175,
41.31056541742285
],
[
-89.33648351319448,
41.30184254603204
],
[
-89.35768452339782,
41.23330569938999
],
[
-89.46722307611506,
41.23455182387439
],
[
-89.46722307611506,
41.148569234450726
],
[
-89.63683115774177,
41.148569234450726
],
[
-89.63859790859205,
41.23455182387439
],
[
-89.85767501402655,
41.23455182387439
],
[
-89.8612085157271,
41.58471280399106
]
]
],
"type": "Polygon"
},
"id": 95,
"properties": {
"Clinton_Trump": [
6029,
9281
],
"center_lon_lat": [
-89.5131585982223,
41.36726408146309
],
"county_name": "Bureau",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.25167947238113,
39.0276653620003
],
[
-89.25167947238113,
39.21832240811365
],
[
-89.1403741688136,
39.21832240811365
],
[
-89.11740640775997,
39.21707628362925
],
[
-88.80645825811101,
39.21707628362925
],
[
-88.80822500896129,
38.91177578495101
],
[
-88.69338620369321,
38.91426803391982
],
[
-88.69515295454349,
38.825793195527346
],
[
-89.13860741796331,
38.82454707104294
],
[
-89.13860741796331,
38.73607223265048
],
[
-89.25521297408167,
38.74230285507248
],
[
-89.25697972493195,
38.91676028288862
],
[
-89.25874647578223,
38.99900449885908
],
[
-89.25167947238113,
39.0276653620003
]
]
],
"type": "Polygon"
},
"id": 96,
"properties": {
"Clinton_Trump": [
1819,
7372
],
"center_lon_lat": [
-88.97606633973771,
38.97719732038206
],
"county_name": "Fayette",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.20046271646558,
42.49562980208815
],
[
-87.89834832106801,
42.493137553119354
],
[
-87.80117702430272,
42.49189142863495
],
[
-87.80294377515298,
42.4208623330241
],
[
-87.82061128365577,
42.36104835777285
],
[
-87.834745290458,
42.301234382521606
],
[
-87.83297853960772,
42.297496009068404
],
[
-87.79941027345244,
42.207775046191536
],
[
-87.79941027345244,
42.205282797222736
],
[
-87.75877500389603,
42.15169944439349
],
[
-87.94605059402552,
42.1529455688779
],
[
-88.00435337208471,
42.1529455688779
],
[
-88.02378763143777,
42.1529455688779
],
[
-88.20046271646558,
42.15419169336229
],
[
-88.19869596561531,
42.24142040727036
],
[
-88.19869596561531,
42.24142040727036
],
[
-88.19869596561531,
42.32864912117843
],
[
-88.19869596561531,
42.41587783508649
],
[
-88.20046271646558,
42.49562980208815
]
]
],
"type": "Polygon"
},
"id": 97,
"properties": {
"Clinton_Trump": [
171095,
109767
],
"center_lon_lat": [
-87.9796188601808,
42.32366462324082
],
"county_name": "Lake",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.35413200295473,
40.12425490827314
],
[
-90.20572493153136,
40.15540802038316
],
[
-90.19865792813025,
40.18406888352439
],
[
-90.11915413986773,
40.235159987384826
],
[
-90.03788360075492,
40.374725929637734
],
[
-89.92481154633712,
40.43578602937338
],
[
-89.7163349460043,
40.43578602937338
],
[
-89.71456819515402,
40.31865032783969
],
[
-89.6014961407362,
40.31989645232409
],
[
-89.6014961407362,
40.12176265930434
],
[
-89.63683115774177,
40.15416189589877
],
[
-89.7481364613093,
40.126747157241944
],
[
-89.96898031759407,
40.141700651054755
],
[
-89.99371482949797,
40.10805528997593
],
[
-90.13328814666995,
40.06194868405309
],
[
-90.28699547064416,
40.05447193714669
],
[
-90.35413200295473,
40.12425490827314
]
]
],
"type": "Polygon"
},
"id": 98,
"properties": {
"Clinton_Trump": [
2014,
4058
],
"center_lon_lat": [
-89.97781407184547,
40.24512898326003
],
"county_name": "Mason",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.5891479035268,
42.1529455688779
],
[
-88.39480530999619,
42.15419169336229
],
[
-88.3541700404398,
42.15419169336229
],
[
-88.25876549452477,
42.15419169336229
],
[
-88.2393312351717,
42.15419169336229
],
[
-88.2393312351717,
42.09188546914225
],
[
-88.2640657470756,
42.06571685496983
],
[
-88.2640657470756,
42.014625751109385
],
[
-88.2640657470756,
41.985964887968166
],
[
-88.26229899622533,
41.8987361740601
],
[
-88.26229899622533,
41.88253655576288
],
[
-88.26229899622533,
41.81150746015203
],
[
-88.26229899622533,
41.81150746015203
],
[
-88.26229899622533,
41.72427874624397
],
[
-88.37537105064312,
41.72178649727516
],
[
-88.40540581509786,
41.72178649727516
],
[
-88.60328191032902,
41.71929424830636
],
[
-88.60151515947874,
42.01711800007819
],
[
-88.5891479035268,
42.06571685496983
],
[
-88.5891479035268,
42.1529455688779
]
]
],
"type": "Polygon"
},
"id": 99,
"properties": {
"Clinton_Trump": [
103665,
82734
],
"center_lon_lat": [
-88.42130657275035,
41.93674297083433
],
"county_name": "Kane",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.83647400382321,
42.50435267347896
],
[
-89.49372433886924,
42.50186042451016
],
[
-89.40185329465477,
42.50061430002576
],
[
-89.39831979295421,
42.30746500494361
],
[
-89.39655304210393,
42.20154442376953
],
[
-89.68806693239983,
42.19905217480073
],
[
-89.89654353273266,
42.19655992583193
],
[
-89.91951129378629,
42.19655992583193
],
[
-89.9265782971874,
42.505598797963366
],
[
-89.9265782971874,
42.505598797963366
],
[
-89.83647400382321,
42.50435267347896
]
]
],
"type": "Polygon"
},
"id": 100,
"properties": {
"Clinton_Trump": [
7768,
11083
],
"center_lon_lat": [
-89.66156566964567,
42.351079361897646
],
"county_name": "Stephenson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.74638872920156,
40.05447193714669
],
[
-88.74638872920156,
40.09808629410072
],
[
-88.57501389672457,
40.28126659330766
],
[
-88.46017509145648,
40.28126659330766
],
[
-88.46370859315704,
40.141700651054755
],
[
-88.46194184230676,
39.878768384846154
],
[
-88.46194184230676,
39.80150866681329
],
[
-88.47430909825871,
39.791539670938086
],
[
-88.74638872920156,
39.791539670938086
],
[
-88.74638872920156,
40.05447193714669
]
]
],
"type": "Polygon"
},
"id": 101,
"properties": {
"Clinton_Trump": [
2645,
5634
],
"center_lon_lat": [
-88.60328191032902,
40.03640313212287
],
"county_name": "Piatt",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
}
],
"pitch": 0,
"zoom": 5.61
},
"title": "Presidential Election in Illinois, 2016",
"width": 600
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_py2js_update": {},
"_view_count": 0
}
},
"0ec748c57d5d428b8718bb05a6679e77": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"0fa4bc2b1c204899bc6f078de10984db": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "y",
"marker": {
"color": [
"#6175c1",
"#B0122C"
]
},
"type": "bar",
"uid": "fc06a3c6-a952-11e8-a489-e377df750c87",
"x": [
"Clinton",
"Trump"
],
"y": [
151927,
132720
]
}
],
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_last_layout_edit_id": 11,
"_last_trace_edit_id": 11,
"_layout": {
"bargap": 0.01,
"height": 500,
"hovermode": "x",
"margin": {
"b": 50,
"l": 50,
"r": 50,
"t": 100
},
"plot_bgcolor": "rgb(240,240,240)",
"title": "Will County",
"width": 300,
"xaxis": {
"showgrid": false,
"showline": true,
"showticklabels": true,
"zeroline": false
},
"yaxis": {
"gridcolor": "white",
"showline": false
}
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_view_count": 0
}
},
"11135fea618f414e8993c591e07348f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_d7a43de6340e459580619ed0081040e8",
"IPY_MODEL_fa13e23799314587a227f0a3fd023ff2"
],
"layout": "IPY_MODEL_4213883091664962a9335b4f67c7756f"
}
},
"11de7320dced44a597283bd953fd14b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"1415eb8984234c10afd93ed5ed1070e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"14fe8b11727a42578f6d46181ffdcfc7": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "y",
"marker": {
"color": [
"#6175c1",
"#B0122C"
]
},
"type": "bar",
"uid": "b5859d62-a977-11e8-9058-e377df750c87",
"x": [
"Clinton",
"Trump"
],
"y": [
20685,
38707
]
}
],
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_last_layout_edit_id": 16,
"_last_trace_edit_id": 16,
"_layout": {
"bargap": 0.01,
"height": 400,
"hovermode": "x",
"margin": {
"b": 50,
"l": 50,
"r": 50,
"t": 100
},
"plot_bgcolor": "rgb(240,240,240)",
"title": "Tazewell County",
"width": 300,
"xaxis": {
"showgrid": false,
"showline": true,
"showticklabels": true,
"zeroline": false
},
"yaxis": {
"gridcolor": "white",
"showline": false
}
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_view_count": 0
}
},
"19a3c8615b0f4a57a8fc39159fc753e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_d7a43de6340e459580619ed0081040e8",
"IPY_MODEL_e341be88f2714ab18739da330bf8e450"
],
"layout": "IPY_MODEL_09f12bdce67f4feca379892615f6d538"
}
},
"1a21e47973ce456fb70e736b88c1aee8": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "y",
"marker": {
"color": [
"#6175c1",
"#B0122C"
]
},
"type": "bar",
"uid": "afd28fb8-a9cb-11e8-8e46-e377df750c87",
"x": [
"Clinton",
"Trump"
],
"y": [
1789,
3785
]
}
],
"_js2py_pointsCallback": {},
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_layout": {
"bargap": 0.01,
"font": {
"family": "Balto"
},
"height": 400,
"hovermode": "x",
"margin": {
"b": 50,
"l": 50,
"r": 50,
"t": 100
},
"plot_bgcolor": "rgb(240,240,240)",
"title": "Marshall County",
"width": 300,
"xaxis": {
"showgrid": false,
"showline": true,
"showticklabels": true,
"zeroline": false
},
"yaxis": {
"gridcolor": "white",
"showline": false
}
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_py2js_update": {},
"_view_count": 0
}
},
"1a8996ce1c8f474eb0efc930203214dc": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "y",
"marker": {
"color": [
"#6175c1",
"#B0122C"
]
},
"type": "bar",
"uid": "8661d3a8-a976-11e8-855e-e377df750c87",
"x": [
"Clinton",
"Trump"
],
"y": [
50137,
33368
]
}
],
"_js2py_pointsCallback": {},
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_last_layout_edit_id": 13,
"_last_trace_edit_id": 13,
"_layout": {
"bargap": 0.01,
"height": 500,
"hovermode": "x",
"margin": {
"b": 50,
"l": 50,
"r": 50,
"t": 100
},
"plot_bgcolor": "rgb(240,240,240)",
"title": "Champaign County",
"width": 300,
"xaxis": {
"showgrid": false,
"showline": true,
"showticklabels": true,
"zeroline": false
},
"yaxis": {
"gridcolor": "white",
"showline": false
}
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_view_count": 0
}
},
"1b3813824f1b4a91804757cb8441defc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2502ac15f1fa4ec68d17f880614f4a53": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "text",
"lat": [
41.03517190637024,
39.27502107215389,
39.765371056765666,
40.86569897649171,
38.88498410853639,
41.10433181525449,
39.261313702825476,
38.70990361847805,
38.06316501107396,
38.57968360985816,
37.993382039947505,
41.286265989977025,
37.46564832080371,
42.06384766824323,
40.848253233710096,
42.04515580097721,
40.74794021271582,
41.20713708521757,
39.97160465893403,
40.69809523333978,
40.457593207850394,
37.20396217907951,
41.59094342641306,
41.27816618082842,
39.65508903989618,
40.13235471742175,
37.73044977373891,
41.36726408146309,
38.299305600867946,
38.43949460536305,
40.165377016258375,
38.08434912730878,
42.351079361897646,
39.69870339685021,
40.931743574164955,
41.746708986963185,
38.82766238225395,
37.753503076700326,
41.46508485348857,
39.09059464846255,
39.619574492090756,
39.53109965369829,
40.02768026073207,
38.00958165824473,
40.533606801398854,
40.17970744782898,
41.890636364911494,
37.744780205309524,
39.319881553592325,
40.76102451980202,
39.010842681460886,
39.998396335348644,
39.26193676506768,
38.756633286643094,
42.32366462324082,
40.8526146694055,
39.06380297204793,
38.08123381609778,
39.62082061657516,
38.412702928948434,
40.74357877702042,
39.01271186818749,
37.2027160545951,
37.15847863539887,
39.74917143846845,
39.58592913101192,
41.199037276068964,
37.76284901033333,
37.334182187699405,
39.680011529584206,
39.13545512990098,
40.44949339870179,
38.64946658098461,
38.43077173397224,
41.81213052239423,
39.97845834359823,
41.83892219880885,
41.555428878607636,
38.70928055623585,
39.85384589515813,
40.12051653481994,
38.40335699531542,
40.415848037622965,
40.51927636982825,
39.32237380256113,
42.32428768548303,
38.30304397432114,
39.435148068399414,
42.325533809967425,
37.50303205533574,
40.139208402085956,
38.36535019854119,
41.757301045080595,
37.446956453537695,
41.146700047724124,
41.36726408146309,
38.97719732038206,
42.32366462324082,
40.24512898326003,
41.93674297083433,
42.351079361897646,
40.03640313212287
],
"lon": [
-89.34355051659558,
-88.2393312351717,
-88.20576296901643,
-88.58384765097595,
-89.44513869048659,
-89.81085611649416,
-89.92481154633712,
-88.10329141970028,
-88.15187706808294,
-89.42217092943297,
-88.9416146981573,
-88.41865644647496,
-89.27641398428503,
-89.99989845747395,
-90.61384437794563,
-89.31439912756599,
-87.82856166248203,
-89.31528250299114,
-90.71366580098635,
-88.19692921476502,
-90.6765640331305,
-89.0953220221315,
-88.42749020072634,
-88.87801166754727,
-90.47250430992337,
-90.55642497531159,
-88.93101419305563,
-90.14742215347218,
-88.92483056507966,
-89.98134757354603,
-88.86211090989478,
-89.35503439712241,
-90.28257859351845,
-90.26137758331512,
-90.21367531035762,
-89.28524773853641,
-89.93541205143879,
-88.54232900599442,
-87.89393144394232,
-90.37444963773294,
-88.64215042903514,
-88.21636347411808,
-89.78523822916515,
-89.89919365900809,
-89.5944291373351,
-87.73492386741728,
-88.76582298855462,
-88.20222946731586,
-90.3806332657089,
-89.24549584440516,
-88.15452719435835,
-90.28876222149444,
-89.42040417858269,
-88.47607584910898,
-88.82324239118866,
-90.98486205650406,
-88.5847310264011,
-88.53879550429386,
-90.96984467427669,
-88.05117226961707,
-89.71810169685457,
-87.73934074454297,
-88.71017033677086,
-89.32323288181739,
-89.60591301786191,
-89.27994748598557,
-90.7737353298958,
-89.41863742773242,
-88.56176326534748,
-87.74994124964465,
-90.69334816620814,
-90.1615561602744,
-88.92041368795395,
-88.42484007445091,
-87.89393144394232,
-91.2118895407648,
-88.08915741289806,
-90.61649450422104,
-87.70577247838769,
-88.9822499677137,
-89.37270190562518,
-87.81972790823063,
-91.20482253736368,
-88.8647610361702,
-87.77290901069826,
-88.45310808805537,
-90.13505489752023,
-88.80557488268587,
-89.17129230869347,
-88.2393312351717,
-88.19869596561531,
-89.42393768028325,
-89.93452867601366,
-88.87712829212214,
-87.88951456681662,
-89.5131585982223,
-88.97606633973771,
-87.9796188601808,
-89.97781407184547,
-88.42130657275035,
-89.66156566964567,
-88.60328191032902
],
"marker": {
"color": "white",
"size": 2
},
"mode": "markers",
"showlegend": false,
"text": [
"Marshall County",
"Cumberland County",
"Douglas County",
"Livingston County",
"Bond County",
"Stark County",
"Macoupin County",
"Richland County",
"White County",
"Clinton County",
"Franklin County",
"Grundy County",
"Union County",
"Carroll County",
"Warren County",
"Ogle County",
"Iroquois County",
"Putnam County",
"Brown County",
"Ford County",
"McDonough County",
"Pulaski County",
"Kendall County",
"LaSalle County",
"Scott County",
"Schuyler County",
"Williamson County",
"Henry County",
"Jefferson County",
"St. Clair County",
"De Witt County",
"Perry County",
"Jo Daviess County",
"Morgan County",
"Knox County",
"Lee County",
"Madison County",
"Saline County",
"Will County",
"Jersey County",
"Moultrie County",
"Coles County",
"Menard County",
"Randolph County",
"Tazewell County",
"Vermilion County",
"DeKalb County",
"Gallatin County",
"Greene County",
"Woodford County",
"Jasper County",
"Cass County",
"Montgomery County",
"Clay County",
"Boone County",
"Henderson County",
"Effingham County",
"Hamilton County",
"Pike County",
"Edwards County",
"Peoria County",
"Crawford County",
"Massac County",
"Alexander County",
"Sangamon County",
"Christian County",
"Mercer County",
"Jackson County",
"Pope County",
"Edgar County",
"Calhoun County",
"Fulton County",
"Marion County",
"Wayne County",
"Cook County",
"Adams County",
"DuPage County",
"Rock Island County",
"Lawrence County",
"Macon County",
"Logan County",
"Wabash County",
"Hancock County",
"McLean County",
"Clark County",
"McHenry County",
"Monroe County",
"Shelby County",
"Winnebago County",
"Hardin County",
"Champaign County",
"Washington County",
"Whiteside County",
"Johnson County",
"Kankakee County",
"Bureau County",
"Fayette County",
"Lake County",
"Mason County",
"Kane County",
"Stephenson County",
"Piatt County"
],
"type": "scattermapbox",
"uid": "950f07ac-a9cc-11e8-a80b-e377df750c87"
},
{
"hoverinfo": "none",
"lat": [
41.148569234450726,
41.148569234450726,
41.148569234450726,
41.10370875301229,
41.10495487749669,
41.10495487749669,
40.92551295174295,
40.926759076227356,
40.92177457828975,
40.97286568215019,
40.97411180663459,
41.14109248754432,
41.148569234450726,
null,
39.21583015914484,
39.37533409314817,
39.37907246660137,
39.17470805115961,
39.17096967770641,
39.17221580219081,
39.21583015914484,
null,
39.791539670938086,
39.80150866681329,
39.878768384846154,
39.878768384846154,
39.878768384846154,
39.791539670938086,
39.68686521424841,
39.65321985316958,
39.65197372868518,
39.791539670938086,
null,
41.10869325094989,
41.1149238733719,
40.99529592286941,
40.61772020409592,
40.61772020409592,
40.616474079611514,
40.757286146348825,
40.75354777289562,
40.92800520071175,
41.10620100198109,
41.10869325094989,
null,
38.99900449885908,
39.0289114864847,
39.0276653620003,
38.99900449885908,
38.91676028288862,
38.74230285507248,
38.741056730588085,
38.743548979556884,
38.87439205041898,
38.91800640737302,
38.91800640737302,
38.99900449885908,
null,
41.14981535893513,
41.14981535893513,
41.21710608109278,
41.23455182387439,
41.23455182387439,
41.148569234450726,
41.14109248754432,
40.97411180663459,
40.97411180663459,
41.14981535893513,
null,
39.52113065782308,
39.52237678230748,
39.52362290679188,
38.99900449885908,
38.99900449885908,
39.00025062334348,
39.26193676506768,
39.52113065782308,
null,
38.84697731176216,
38.85071568521536,
38.85071568521536,
38.57033767622515,
38.57033767622515,
38.56909155174075,
38.597752414881974,
38.59899853936637,
38.6338900249296,
38.73108773471287,
38.84697731176216,
null,
38.25506818167171,
38.25631430615611,
38.25506818167171,
38.25880655512491,
38.236376314405696,
38.230145691983694,
38.197746455389264,
38.151639849466434,
38.09930262112159,
38.05568826416756,
38.03076577447954,
37.96098280335308,
37.892445956711036,
37.86752346702301,
37.91487619743025,
37.90739945052385,
38.25506818167171,
null,
38.65507414116442,
38.656320265648816,
38.743548979556884,
38.741056730588085,
38.74230285507248,
38.73607223265048,
38.5030469540675,
38.51800044788031,
38.46815546850427,
38.471893841957474,
38.41581824015943,
38.65507414116442,
null,
37.949767682993475,
38.08559525179318,
38.12422511080961,
38.12422511080961,
37.906153326039444,
37.86378509356981,
37.862538969085406,
37.944783185055876,
37.949767682993475,
null,
41.45760810658216,
41.463838729004166,
41.20215258727997,
41.12987736718471,
41.1149238733719,
41.10869325094989,
41.45760810658216,
null,
37.55973071937598,
37.570945839735586,
37.60085282736121,
37.60085282736121,
37.597114453908006,
37.3304438142462,
37.33542831218381,
37.33542831218381,
37.35661242841862,
37.407703532279065,
37.46627138304591,
37.529823731750355,
37.55973071937598,
null,
42.19406767686313,
42.19655992583193,
42.19655992583193,
42.19905217480073,
41.92988928617012,
41.92864316168572,
41.92988928617012,
41.93736603307653,
41.99593388384337,
42.0333176183754,
42.03954824079741,
42.105592838470656,
42.149207195424694,
42.17412968511271,
42.19406767686313,
null,
41.06881726744906,
41.06383276951146,
40.71491791387919,
40.62768919997112,
40.63516594687753,
41.06881726744906,
null,
42.19905217480073,
42.20154442376953,
42.20403667273833,
42.15045331990909,
42.15045331990909,
42.15169944439349,
41.89125942715369,
41.886274929216086,
41.907459045450906,
41.9012284230289,
41.92988928617012,
42.19905217480073,
null,
40.99778817183821,
41.01024941668222,
40.89560596411733,
40.73734815459841,
40.535475988125455,
40.49061550668702,
40.485631008749415,
40.48812325771822,
40.51678412085944,
40.99778817183821,
null,
41.31056541742285,
41.10495487749669,
41.10370875301229,
41.148569234450726,
41.148569234450726,
41.23455182387439,
41.23330569938999,
41.30184254603204,
41.31056541742285,
null,
40.10431691652273,
40.103070792038324,
39.980950592567034,
39.987181214989036,
39.96475097426982,
39.87627613587735,
39.83889240134532,
39.84013852582972,
39.84512302376733,
40.10431691652273,
null,
40.61772020409592,
40.61772020409592,
40.99529592286941,
40.99778817183821,
40.51678412085944,
40.48812325771822,
40.485631008749415,
40.39964841932575,
40.39840229484135,
40.39840229484135,
40.61772020409592,
null,
40.63890432033074,
40.63516594687753,
40.62768919997112,
40.27628209537006,
40.28375884227646,
40.63890432033074,
null,
37.33542831218381,
37.3304438142462,
37.29430620419858,
37.30302907558938,
37.227015482040926,
37.22826160652532,
37.22826160652532,
37.22452323307212,
37.188385623024494,
37.14103289261726,
37.0737421704596,
37.07249604597521,
37.10614140705403,
37.33542831218381,
null,
41.71929424830636,
41.72178649727516,
41.72178649727516,
41.72427874624397,
41.69561788310274,
41.59343567538186,
41.52116045528661,
41.463838729004166,
41.45760810658216,
41.6308194099139,
41.71929424830636,
null,
41.62832716094509,
41.6308194099139,
41.629573285429494,
41.6308194099139,
41.45760810658216,
41.10869325094989,
41.10620100198109,
40.92800520071175,
40.92551295174295,
41.10495487749669,
41.10495487749669,
41.31056541742285,
41.585958928475456,
41.62832716094509,
41.62832716094509,
null,
39.789047421969286,
39.789047421969286,
39.752909811921654,
39.752909811921654,
39.66692722249799,
39.63702023487237,
39.52113065782308,
39.52237678230748,
39.70431095703002,
39.789047421969286,
null,
40.19279175491519,
40.28375884227646,
40.27628209537006,
40.18905338146199,
40.18406888352439,
40.15540802038316,
40.12425490827314,
40.01958045158346,
39.987181214989036,
39.980950592567034,
40.103070792038324,
40.10431691652273,
40.19279175491519,
null,
37.862538969085406,
37.86378509356981,
37.599606702876805,
37.597114453908006,
37.60085282736121,
37.862538969085406,
null,
41.32801116020446,
41.45760810658216,
41.5149298328646,
41.54109844703702,
41.58471280399106,
41.58471280399106,
41.23455182387439,
41.21710608109278,
41.14981535893513,
41.14981535893513,
41.151061483419525,
41.32801116020446,
null,
38.212699949202076,
38.47313996644188,
38.47438609092628,
38.25631430615611,
38.12422511080961,
38.12422511080961,
38.130455733231614,
38.212699949202076,
null,
38.53046169272432,
38.54416906205273,
38.61145978421038,
38.66005863910202,
38.66005863910202,
38.65881251461762,
38.65507414116442,
38.41581824015943,
38.218930571624085,
38.22017669610848,
38.297436414141345,
38.30865153450095,
38.51800044788031,
38.53046169272432,
null,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.09808629410072,
40.05447193714669,
40.048241314724685,
40.28126659330766,
null,
38.218930571624085,
38.212699949202076,
38.130455733231614,
38.12422511080961,
38.08559525179318,
37.949767682993475,
37.95475218093108,
38.218930571624085,
null,
42.508091046932165,
42.50684492244776,
42.50684492244776,
42.508091046932165,
42.505598797963366,
42.19655992583193,
42.19406767686313,
42.20279054825393,
42.23892815830156,
42.277558017317986,
42.31992624978762,
42.35730998431965,
42.38098634952327,
42.403416590242486,
42.43830807580571,
42.44703094719652,
42.47195343688453,
42.508091046932165,
null,
39.83889240134532,
39.87627613587735,
39.872537762424145,
39.78530904851608,
39.52237678230748,
39.52113065782308,
39.52113065782308,
39.63702023487237,
39.66692722249799,
39.752909811921654,
39.752909811921654,
39.789047421969286,
39.789047421969286,
39.83889240134532,
null,
41.06383276951146,
41.151061483419525,
41.14981535893513,
40.97411180663459,
40.71242566491039,
40.71491791387919,
41.06383276951146,
null,
41.9012284230289,
41.907459045450906,
41.886274929216086,
41.89125942715369,
41.62832716094509,
41.62832716094509,
41.585958928475456,
41.585958928475456,
41.9012284230289,
null,
39.00025062334348,
38.99900449885908,
38.99900449885908,
38.99900449885908,
38.91800640737302,
38.91800640737302,
38.87439205041898,
38.743548979556884,
38.656320265648816,
38.65507414116442,
38.65881251461762,
38.66005863910202,
38.68747337775884,
38.72610323677527,
38.7722098426981,
38.7722098426981,
38.80585520377693,
38.84946956073097,
38.89931454010701,
38.910529660466615,
38.91925253185742,
38.99900449885908,
39.00025062334348,
null,
37.86378509356981,
37.906153326039444,
37.90739945052385,
37.599606702876805,
37.60085282736121,
37.599606702876805,
37.86378509356981,
null,
41.72427874624397,
41.725524870728364,
41.72801711969717,
41.68440276274313,
41.66944926893032,
41.6432806547579,
41.55729806533424,
41.55854418981864,
41.52863720219302,
41.47006935142617,
41.47131547591057,
41.29810417257884,
41.29810417257884,
41.29311967464123,
41.20589096073317,
41.20215258727997,
41.463838729004166,
41.52116045528661,
41.59343567538186,
41.69561788310274,
41.72427874624397,
null,
39.26193676506768,
39.00025062334348,
38.99900449885908,
38.91925253185742,
38.92299090531062,
38.96037463984265,
38.96162076432705,
38.96909751123346,
38.95912851535825,
39.117386324877174,
39.184677047034825,
39.17470805115961,
39.225799155020056,
39.26193676506768,
null,
39.791539670938086,
39.791539670938086,
39.65197372868518,
39.447609313243426,
39.447609313243426,
39.52113065782308,
39.52113065782308,
39.57969850858992,
39.580944633074324,
39.65321985316958,
39.741694691562046,
39.791539670938086,
null,
39.65197372868518,
39.65321985316958,
39.68686521424841,
39.48125467432225,
39.48125467432225,
39.37907246660137,
39.37533409314817,
39.447609313243426,
39.65197372868518,
null,
40.10805528997593,
40.141700651054755,
40.126747157241944,
40.15416189589877,
40.12176265930434,
40.091855671678715,
39.97596609462943,
39.974719970145024,
39.91615211937818,
39.90244475004977,
39.90119862556537,
40.10805528997593,
null,
38.08808750076198,
38.13544023116922,
38.22266894507729,
38.22017669610848,
38.218930571624085,
38.218930571624085,
37.95475218093108,
37.830139732490984,
37.79649437141216,
37.81518623867817,
37.855062222179,
37.903661077070645,
37.871261840476215,
37.88123083635143,
37.918614570883456,
37.96596730129069,
37.96970567474389,
38.014566156182326,
38.049457641745555,
38.08808750076198,
null,
40.51304574740624,
40.552921730907066,
40.55416785539147,
40.68501092625357,
40.70619504248839,
40.74731715047362,
40.748563274958016,
40.61522795512712,
40.5940438388923,
40.324880950261694,
40.31989645232409,
40.31865032783969,
40.43578602937338,
40.43578602937338,
40.491861631171425,
40.51304574740624,
null,
40.39964841932575,
40.485631008749415,
40.49061550668702,
40.47690813735861,
40.25011348119764,
40.14793127347676,
40.010857580192656,
39.88250675829936,
39.86879938897094,
39.881260633814954,
39.878768384846154,
40.22519099150962,
40.39964841932575,
null,
42.15169944439349,
42.1529455688779,
42.1529455688779,
42.06571685496983,
42.01711800007819,
41.71929424830636,
41.6308194099139,
41.629573285429494,
41.6308194099139,
41.62832716094509,
41.89125942715369,
42.15169944439349,
null,
37.90739945052385,
37.91487619743025,
37.86752346702301,
37.856308346663404,
37.80023274486536,
37.742911018582916,
37.69805053714448,
37.65443618019045,
37.57468421318879,
37.599606702876805,
37.599606702876805,
37.90739945052385,
null,
39.39651820938298,
39.45757830911863,
39.52237678230748,
39.52113065782308,
39.52113065782308,
39.26193676506768,
39.225799155020056,
39.17470805115961,
39.184677047034825,
39.117386324877174,
39.14230881456519,
39.19838441636323,
39.39651820938298,
null,
40.92177457828975,
40.926759076227356,
40.92551295174295,
40.92800520071175,
40.75354777289562,
40.75230164841122,
40.66507293450316,
40.62768919997112,
40.596536087861104,
40.5940438388923,
40.61522795512712,
40.748563274958016,
40.74731715047362,
40.79342375639645,
40.92177457828975,
null,
38.910529660466615,
39.17096967770641,
39.17470805115961,
39.17470805115961,
38.85071568521536,
38.84697731176216,
38.851961809699766,
38.910529660466615,
null,
39.987181214989036,
40.01958045158346,
40.12425490827314,
40.05447193714669,
40.06194868405309,
40.10805528997593,
39.90119862556537,
39.872537762424145,
39.87627613587735,
39.96475097426982,
39.987181214989036,
null,
39.52362290679188,
39.52486903127628,
39.34916547897575,
39.34916547897575,
39.21832240811365,
39.21832240811365,
39.0276653620003,
39.0289114864847,
38.99900449885908,
38.99900449885908,
39.52362290679188,
null,
38.825793195527346,
38.91426803391982,
38.910529660466615,
38.851961809699766,
38.84697731176216,
38.73108773471287,
38.6338900249296,
38.59899853936637,
38.606475286272776,
38.606475286272776,
38.825793195527346,
null,
42.49562980208815,
42.49438367760376,
42.493137553119354,
42.493137553119354,
42.1529455688779,
42.15169944439349,
42.49562980208815,
null,
40.69996442006638,
40.7248869097544,
40.77971638706804,
40.82083849505327,
40.86819122546051,
40.911805582414544,
40.95417381488418,
41.01897228807302,
41.070063391933466,
41.06881726744906,
40.63516594687753,
40.63890432033074,
40.63516594687753,
40.637658195846335,
40.67254968140956,
40.69996442006638,
null,
39.21707628362925,
39.21583015914484,
39.17221580219081,
39.17096967770641,
38.910529660466615,
38.91426803391982,
38.91177578495101,
39.21707628362925,
null,
38.12422511080961,
38.25631430615611,
38.25506818167171,
37.90739945052385,
37.906153326039444,
38.12422511080961,
null,
39.75789430985926,
39.75664818537486,
39.84512302376733,
39.84013852582972,
39.83889240134532,
39.789047421969286,
39.70431095703002,
39.52237678230748,
39.45757830911863,
39.39651820938298,
39.400256582836185,
39.40150270732059,
39.44885543772782,
39.49496204365066,
39.53857640060469,
39.546053147511095,
39.59215975343393,
39.598390375855935,
39.66692722249799,
39.68686521424841,
39.72923344671804,
39.75789430985926,
null,
38.56909155174075,
38.57033767622515,
38.399618621862224,
38.28995966723494,
38.25880655512491,
38.25506818167171,
38.25631430615611,
38.56909155174075,
null,
40.71242566491039,
40.97411180663459,
40.97411180663459,
40.97286568215019,
40.92177457828975,
40.79342375639645,
40.74731715047362,
40.70619504248839,
40.68501092625357,
40.55416785539147,
40.552921730907066,
40.51304574740624,
40.62395082651792,
40.62519695100232,
40.71242566491039,
null,
39.17470805115961,
39.17221580219081,
39.157262308378,
39.102432831064355,
39.05757234962592,
39.00149674782788,
38.97158976020226,
38.90803741149781,
38.90554516252901,
38.875638174903386,
38.851961809699766,
38.85071568521536,
38.85071568521536,
39.17470805115961,
null,
37.30302907558938,
37.33542831218381,
37.33792056115261,
37.159724759883275,
37.0675115480376,
37.0675115480376,
37.083711166334815,
37.112372029476035,
37.14103289261726,
37.15474026194567,
37.1971084944153,
37.227015482040926,
37.30302907558938,
null,
37.33542831218381,
37.33542831218381,
37.10614140705403,
37.07249604597521,
37.01766656866156,
36.981528958613936,
36.990251830004745,
37.01517431969276,
37.02888168902117,
37.042589058349584,
37.103649158085226,
37.188385623024494,
37.253184096213346,
37.26066084311975,
37.281844959354565,
37.325459316308596,
37.33542831218381,
null,
39.90119862556537,
39.90244475004977,
39.91615211937818,
39.974719970145024,
39.97596609462943,
39.97596609462943,
39.91739824386258,
39.91615211937818,
39.8127237871729,
39.82518503201691,
39.77534005264087,
39.74667918949965,
39.68437296527961,
39.68437296527961,
39.64200473280997,
39.64200473280997,
39.613343869668746,
39.52486903127628,
39.52362290679188,
39.52237678230748,
39.78530904851608,
39.872537762424145,
39.90119862556537,
null,
39.8127237871729,
39.800262542328895,
39.65571210213838,
39.654465977653985,
39.34667323000694,
39.34916547897575,
39.34916547897575,
39.52486903127628,
39.613343869668746,
39.64200473280997,
39.64200473280997,
39.68437296527961,
39.68437296527961,
39.74667918949965,
39.77534005264087,
39.82518503201691,
39.8127237871729,
null,
41.334241782626464,
41.334241782626464,
41.32801116020446,
41.151061483419525,
41.06383276951146,
41.06881726744906,
41.070063391933466,
41.072555640902266,
41.1111854999187,
41.16352272826354,
41.16601497723234,
41.21461383212397,
41.250751442171605,
41.334241782626464,
null,
37.79649437141216,
37.830139732490984,
37.95475218093108,
37.949767682993475,
37.944783185055876,
37.862538969085406,
37.60085282736121,
37.60085282736121,
37.570945839735586,
37.58091483561079,
37.62577531704923,
37.696804412660086,
37.7242191513169,
37.760356761364534,
37.79649437141216,
null,
37.599606702876805,
37.60085282736121,
37.42141090160747,
37.422657026091876,
37.40022678537266,
37.34041281012141,
37.290567830745374,
37.22078485961892,
37.14975576400806,
37.09866466014763,
37.068757672522004,
37.068757672522004,
37.0675115480376,
37.159724759883275,
37.33792056115261,
37.599606702876805,
null,
39.878768384846154,
39.881260633814954,
39.86879938897094,
39.88250675829936,
39.66568109801359,
39.60835937173115,
39.47751630086905,
39.487485296744254,
39.48125467432225,
39.68686521424841,
39.791539670938086,
39.878768384846154,
null,
39.400256582836185,
39.39651820938298,
39.19838441636323,
39.14230881456519,
39.117386324877174,
38.95912851535825,
38.96909751123346,
38.96162076432705,
38.96162076432705,
38.910529660466615,
38.87065367696578,
38.875638174903386,
38.92049865634182,
38.93420602567023,
38.98405100504627,
39.05383397617272,
39.10118670657996,
39.151031685956,
39.22455303053565,
39.25570614264568,
39.34044260758494,
39.400256582836185,
null,
40.27628209537006,
40.62768919997112,
40.71491791387919,
40.71242566491039,
40.62519695100232,
40.62395082651792,
40.51304574740624,
40.491861631171425,
40.43578602937338,
40.374725929637734,
40.235159987384826,
40.18406888352439,
40.18905338146199,
40.27628209537006,
null,
38.5030469540675,
38.73607223265048,
38.82454707104294,
38.825793195527346,
38.606475286272776,
38.47438609092628,
38.47313996644188,
38.5030469540675,
null,
38.47438609092628,
38.606475286272776,
38.606475286272776,
38.59899853936637,
38.597752414881974,
38.56909155174075,
38.25631430615611,
38.25506818167171,
38.25631430615611,
38.47438609092628,
null,
42.15419169336229,
42.15419169336229,
42.1529455688779,
42.1529455688779,
42.1529455688779,
42.15169944439349,
42.12802307918987,
42.12802307918987,
42.12802307918987,
42.081916473267036,
42.07568585084503,
42.0283331204378,
41.93238153513892,
41.9062129209665,
41.903720671997704,
41.892505551638095,
41.883782680247286,
41.87007531091888,
41.845152821230855,
41.81026133566763,
41.799046215308024,
41.7654008542292,
41.74795511144758,
41.723032621759565,
41.70807912794675,
41.529883326677414,
41.47131547591057,
41.47006935142617,
41.52863720219302,
41.55854418981864,
41.55729806533424,
41.6432806547579,
41.66944926893032,
41.68440276274313,
41.685648887227536,
41.685648887227536,
41.68689501171194,
41.68689501171194,
41.69312563413394,
41.694371758618345,
41.69811013207155,
41.70309463000915,
41.71929424830636,
41.7716314766512,
41.790323343917215,
41.79530784185482,
41.9062129209665,
41.94110440652973,
41.99344163487457,
41.98721101245257,
41.985964887968166,
42.014625751109385,
42.06571685496983,
42.09188546914225,
42.15419169336229,
null,
40.2002685018216,
40.19279175491519,
40.10431691652273,
39.84512302376733,
39.75664818537486,
39.75789430985926,
39.78655517300048,
39.820200534079305,
39.84512302376733,
39.90742924798737,
39.9448129825194,
39.946059107003805,
40.01833432709906,
40.07814830235031,
40.170361514195974,
40.2002685018216,
null,
41.985964887968166,
41.98721101245257,
41.99344163487457,
41.94110440652973,
41.9062129209665,
41.79530784185482,
41.790323343917215,
41.7716314766512,
41.71929424830636,
41.70309463000915,
41.69811013207155,
41.694371758618345,
41.69312563413394,
41.68689501171194,
41.68689501171194,
41.685648887227536,
41.685648887227536,
41.68440276274313,
41.72801711969717,
41.725524870728364,
41.72427874624397,
41.81150746015203,
41.81150746015203,
41.88253655576288,
41.8987361740601,
41.985964887968166,
null,
41.453869733128954,
41.45511585761336,
41.48502284523898,
41.51742208183341,
41.51991433080221,
41.52365270425541,
41.56352868775624,
41.579728306053454,
41.59842017331947,
41.66446477099272,
41.694371758618345,
41.72801711969717,
41.74172448902558,
41.77910822355761,
41.78284659701081,
41.67443376686793,
41.6432806547579,
41.58471280399106,
41.54109844703702,
41.5149298328646,
41.45760810658216,
41.32801116020446,
41.334241782626464,
41.34047240504847,
41.36913326818969,
41.42396274550333,
41.43019336792534,
41.42396274550333,
41.448885235191355,
41.453869733128954,
null,
38.85071568521536,
38.851961809699766,
38.82703932001175,
38.75725634888529,
38.67750438188364,
38.638874522867205,
38.58778341900676,
38.56659930277195,
38.57033767622515,
38.85071568521536,
null,
39.91615211937818,
39.91739824386258,
40.048241314724685,
40.05447193714669,
39.791539670938086,
39.741694691562046,
39.65321985316958,
39.654465977653985,
39.65571210213838,
39.800262542328895,
39.8127237871729,
39.91615211937818,
null,
40.31989645232409,
40.324880950261694,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.048241314724685,
39.91739824386258,
39.91615211937818,
39.91739824386258,
39.97596609462943,
39.97596609462943,
40.091855671678715,
40.12176265930434,
40.31989645232409,
null,
38.25880655512491,
38.28995966723494,
38.399618621862224,
38.57033767622515,
38.57033767622515,
38.56659930277195,
38.54043068859953,
38.51176982545831,
38.47937058886388,
38.43575623190985,
38.41831048912824,
38.370957758721,
38.30740541001655,
38.26877555100012,
38.236376314405696,
38.25880655512491,
null,
40.248867356713234,
40.270051472948055,
40.322388701292894,
40.37846430309094,
40.39840229484135,
40.45198564767059,
40.51055349843744,
40.53422986364105,
40.58282871853269,
40.613981830642714,
40.63890432033074,
40.637658195846335,
40.637658195846335,
40.63516594687753,
40.63890432033074,
40.28375884227646,
40.19279175491519,
40.2002685018216,
40.248867356713234,
null,
40.5940438388923,
40.596536087861104,
40.62768919997112,
40.66507293450316,
40.75230164841122,
40.75354777289562,
40.757286146348825,
40.616474079611514,
40.61772020409592,
40.39840229484135,
40.28126659330766,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.324880950261694,
40.5940438388923,
null,
39.48125467432225,
39.487485296744254,
39.47751630086905,
39.47003955396264,
39.347919354491346,
39.34044260758494,
39.31302786892812,
39.25944451609888,
39.24822939573927,
39.210845661207244,
39.16723130425321,
39.157262308378,
39.17221580219081,
39.17470805115961,
39.17470805115961,
39.37907246660137,
39.48125467432225,
39.48125467432225,
null,
42.493137553119354,
42.49438367760376,
42.49562980208815,
42.49562980208815,
42.49562980208815,
42.41587783508649,
42.32864912117843,
42.24142040727036,
42.24142040727036,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.1529455688779,
42.1529455688779,
42.493137553119354,
null,
38.38715737701821,
38.43824848087865,
38.495570207161094,
38.51800044788031,
38.30865153450095,
38.297436414141345,
38.22017669610848,
38.22266894507729,
38.13544023116922,
38.08808750076198,
38.09431812318399,
38.12671735977841,
38.12671735977841,
38.18154683709206,
38.218930571624085,
38.236376314405696,
38.323605028313764,
38.377188381143,
38.384665128049406,
38.38715737701821,
null,
39.34916547897575,
39.34667323000694,
39.654465977653985,
39.65321985316958,
39.580944633074324,
39.57969850858992,
39.52113065782308,
39.52113065782308,
39.447609313243426,
39.447609313243426,
39.37533409314817,
39.21583015914484,
39.21707628362925,
39.21707628362925,
39.21832240811365,
39.34916547897575,
null,
42.50061430002576,
42.50061430002576,
42.49562980208815,
42.49562980208815,
42.49562980208815,
42.15169944439349,
42.15045331990909,
42.15045331990909,
42.20403667273833,
42.20154442376953,
42.30746500494361,
42.50061430002576,
null,
37.60085282736121,
37.599606702876805,
37.599606702876805,
37.57468421318879,
37.573438088704386,
37.52857760726595,
37.50490124206234,
37.488701623765124,
37.46751750753031,
37.4525640137175,
37.40521128331026,
37.42141090160747,
37.60085282736121,
null,
40.28126659330766,
40.39840229484135,
40.39840229484135,
40.39964841932575,
40.22519099150962,
39.878768384846154,
39.878768384846154,
39.878768384846154,
40.141700651054755,
40.28126659330766,
null,
38.41581824015943,
38.471893841957474,
38.46815546850427,
38.51800044788031,
38.5030469540675,
38.47313996644188,
38.212699949202076,
38.218930571624085,
38.218930571624085,
38.41581824015943,
null,
41.78284659701081,
41.81150746015203,
41.84390669674646,
41.883782680247286,
41.92988928617012,
41.92864316168572,
41.92988928617012,
41.9012284230289,
41.585958928475456,
41.58471280399106,
41.58471280399106,
41.6432806547579,
41.67443376686793,
41.78284659701081,
null,
37.3304438142462,
37.597114453908006,
37.599606702876805,
37.33792056115261,
37.33542831218381,
37.30302907558938,
37.29430620419858,
37.3304438142462,
null,
41.1149238733719,
41.12987736718471,
41.20215258727997,
41.20589096073317,
41.29311967464123,
41.29810417257884,
41.16601497723234,
41.02520291049503,
41.01024941668222,
40.99778817183821,
40.99529592286941,
41.1149238733719,
null,
41.58471280399106,
41.585958928475456,
41.585958928475456,
41.31056541742285,
41.30184254603204,
41.23330569938999,
41.23455182387439,
41.148569234450726,
41.148569234450726,
41.23455182387439,
41.23455182387439,
41.58471280399106,
null,
39.0276653620003,
39.21832240811365,
39.21832240811365,
39.21707628362925,
39.21707628362925,
38.91177578495101,
38.91426803391982,
38.825793195527346,
38.82454707104294,
38.73607223265048,
38.74230285507248,
38.91676028288862,
38.99900449885908,
39.0276653620003,
null,
42.49562980208815,
42.493137553119354,
42.49189142863495,
42.4208623330241,
42.36104835777285,
42.301234382521606,
42.297496009068404,
42.207775046191536,
42.205282797222736,
42.15169944439349,
42.1529455688779,
42.1529455688779,
42.1529455688779,
42.15419169336229,
42.24142040727036,
42.24142040727036,
42.32864912117843,
42.41587783508649,
42.49562980208815,
null,
40.12425490827314,
40.15540802038316,
40.18406888352439,
40.235159987384826,
40.374725929637734,
40.43578602937338,
40.43578602937338,
40.31865032783969,
40.31989645232409,
40.12176265930434,
40.15416189589877,
40.126747157241944,
40.141700651054755,
40.10805528997593,
40.06194868405309,
40.05447193714669,
40.12425490827314,
null,
42.1529455688779,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.09188546914225,
42.06571685496983,
42.014625751109385,
41.985964887968166,
41.8987361740601,
41.88253655576288,
41.81150746015203,
41.81150746015203,
41.72427874624397,
41.72178649727516,
41.72178649727516,
41.71929424830636,
42.01711800007819,
42.06571685496983,
42.1529455688779,
null,
42.50435267347896,
42.50186042451016,
42.50061430002576,
42.30746500494361,
42.20154442376953,
42.19905217480073,
42.19655992583193,
42.19655992583193,
42.505598797963366,
42.505598797963366,
42.50435267347896,
null,
40.05447193714669,
40.09808629410072,
40.28126659330766,
40.28126659330766,
40.141700651054755,
39.878768384846154,
39.80150866681329,
39.791539670938086,
39.791539670938086,
40.05447193714669,
null
],
"line": {
"color": "rgb(220,220,220)",
"width": 0.5
},
"lon": [
-89.63683115774177,
-89.46722307611506,
-89.32941650979336,
-89.35945127424809,
-89.16334192986722,
-89.04850312459912,
-89.04850312459912,
-89.16157517901694,
-89.4725233286659,
-89.447788816762,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
null,
-88.47077559655816,
-88.47077559655816,
-88.01318712633609,
-88.00788687378527,
-88.3612370438409,
-88.47077559655816,
-88.47077559655816,
null,
-88.47430909825871,
-88.46194184230676,
-88.46194184230676,
-88.34886978788896,
-87.93721683977414,
-87.96901835507914,
-87.96725160422886,
-88.06442290099416,
-88.47254234740844,
-88.47430909825871,
null,
-88.58738115267651,
-88.25169849112365,
-88.2481649894231,
-88.23579773347114,
-88.46017509145648,
-88.57501389672457,
-88.58561440182623,
-88.93013081763048,
-88.93189756848076,
-88.93189756848076,
-88.58738115267651,
null,
-89.63859790859205,
-89.5855953830837,
-89.25167947238113,
-89.25874647578223,
-89.25697972493195,
-89.25521297408167,
-89.48312383376756,
-89.59619588818538,
-89.59796263903566,
-89.63683115774177,
-89.63683115774177,
-89.63859790859205,
null,
-89.9831143243963,
-89.86827551912822,
-89.86650876827794,
-89.85767501402655,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
-89.63859790859205,
-89.98488107524658,
-89.9831143243963,
null,
-90.15272240602302,
-89.92481154633712,
-89.70043418835179,
-89.69690068665123,
-90.11562063816717,
-90.1456554026219,
-90.14742215347218,
-90.15272240602302,
null,
-88.25876549452477,
-87.94605059402552,
-87.90894882616968,
-87.91248232787024,
-87.95488434827692,
-88.14746019095725,
-88.14746019095725,
-88.25346524197393,
-88.29763401323089,
-88.25876549452477,
-88.25876549452477,
null,
-88.3700707980923,
-88.15099369265779,
-88.02732113313832,
-87.99021936528248,
-87.96901835507914,
-87.97078510592942,
-87.97608535848025,
-87.92838308552274,
-87.96195135167802,
-87.9884526144322,
-88.03085463483887,
-88.01672062803665,
-88.04145513994055,
-88.05912264844333,
-88.13685968585557,
-88.37537105064312,
-88.3700707980923,
null,
-89.70573444090262,
-89.5944291373351,
-89.59619588818538,
-89.48312383376756,
-89.25521297408167,
-89.13860741796331,
-89.14390767051415,
-89.35238427084698,
-89.48312383376756,
-89.61386339668816,
-89.70396769005235,
-89.70573444090262,
null,
-89.17747593666944,
-89.1156396569097,
-89.12977366371193,
-88.70575345964515,
-88.70752021049543,
-88.70752021049543,
-89.15274142476554,
-89.15097467391527,
-89.17747593666944,
null,
-88.59621490692791,
-88.25169849112365,
-88.24463148772254,
-88.24109798602198,
-88.25169849112365,
-88.58738115267651,
-88.59621490692791,
null,
-89.50255809312063,
-89.49902459142007,
-89.45308906931284,
-89.15450817561582,
-89.04143612119802,
-89.04496962289858,
-89.24991272153085,
-89.47429007951618,
-89.42835455740894,
-89.42658780655867,
-89.4725233286659,
-89.51139184737202,
-89.50255809312063,
null,
-90.3152634842486,
-89.91951129378629,
-89.89654353273266,
-89.68806693239983,
-89.68453343069929,
-90.12798789411912,
-90.15802265857384,
-90.15625590772356,
-90.14035515007106,
-90.15978940942412,
-90.16332291112468,
-90.15978940942412,
-90.20749168238163,
-90.26932796214138,
-90.3152634842486,
null,
-90.78521921042261,
-90.43893604376808,
-90.44423629631892,
-90.44423629631892,
-90.78875271212317,
-90.78521921042261,
null,
-89.68806693239983,
-89.39655304210393,
-89.17394243496888,
-89.17394243496888,
-89.09267189585609,
-88.94073132273216,
-88.94249807358244,
-89.415987301457,
-89.42835455740894,
-89.62799740349038,
-89.68453343069929,
-89.68806693239983,
null,
-88.13155943330473,
-87.52733064250958,
-87.52556389165932,
-87.52556389165932,
-87.52556389165932,
-87.52733064250958,
-87.93545008892386,
-88.1174254265025,
-88.11919217735279,
-88.13155943330473,
null,
-89.1651086807175,
-89.16334192986722,
-89.35945127424809,
-89.32941650979336,
-89.46722307611506,
-89.46722307611506,
-89.35768452339782,
-89.33648351319448,
-89.1651086807175,
null,
-90.91419202249293,
-90.69511491705842,
-90.6067773745445,
-90.51313957947977,
-90.51137282862949,
-90.5838096134909,
-90.57144235753894,
-90.88945751058903,
-90.91595877334319,
-90.91419202249293,
null,
-88.46017509145648,
-88.23579773347114,
-88.2481649894231,
-88.13155943330473,
-88.11919217735279,
-88.1174254265025,
-87.93545008892386,
-87.93368333807358,
-88.34710303703868,
-88.46017509145648,
-88.46017509145648,
null,
-90.90359151739125,
-90.78875271212317,
-90.44423629631892,
-90.44953654886974,
-90.90889176994209,
-90.90359151739125,
null,
-89.24991272153085,
-89.04496962289858,
-89.04496962289858,
-88.93013081763048,
-88.9283640667802,
-88.93189756848076,
-88.93366431933104,
-89.00080085164161,
-89.0591036297008,
-89.09973889925719,
-89.16864218241804,
-89.16687543156777,
-89.26227997748279,
-89.24991272153085,
null,
-88.60328191032902,
-88.40540581509786,
-88.37537105064312,
-88.26229899622533,
-88.26053224537505,
-88.25699874367449,
-88.2552319928242,
-88.25169849112365,
-88.59621490692791,
-88.60328191032902,
-88.60328191032902,
null,
-88.93896457188188,
-88.81882551406296,
-88.71282046304627,
-88.60328191032902,
-88.59621490692791,
-88.58738115267651,
-88.93189756848076,
-88.93189756848076,
-89.04850312459912,
-89.04850312459912,
-89.16334192986722,
-89.1651086807175,
-89.16687543156777,
-89.16864218241804,
-88.93896457188188,
null,
-90.59794362029312,
-90.48310481502503,
-90.48310481502503,
-90.37003276060723,
-90.37179951145751,
-90.2993627265961,
-90.30112947744638,
-90.58027611179034,
-90.64564589325063,
-90.59794362029312,
null,
-90.91242527164265,
-90.90889176994209,
-90.44953654886974,
-90.45130329972002,
-90.19865792813025,
-90.20572493153136,
-90.35413200295473,
-90.43540254206752,
-90.51313957947977,
-90.6067773745445,
-90.69511491705842,
-90.91419202249293,
-90.91242527164265,
null,
-89.15274142476554,
-88.70752021049543,
-88.70928696134571,
-89.04143612119802,
-89.15450817561582,
-89.15274142476554,
null,
-90.43363579121724,
-90.43186904036696,
-90.33293099275139,
-90.19512442642969,
-90.18452392132802,
-89.8612085157271,
-89.85767501402655,
-89.86650876827794,
-89.86827551912822,
-89.9831143243963,
-90.4371692929178,
-90.43363579121724,
null,
-89.14744117221471,
-89.14567442136443,
-88.69868645624405,
-88.70221995794459,
-88.70575345964515,
-89.12977366371193,
-89.15097467391527,
-89.14744117221471,
null,
-90.25519395533915,
-90.24812695193803,
-90.18452392132802,
-90.18099041962746,
-90.18099041962746,
-90.03611684990464,
-89.70573444090262,
-89.70396769005235,
-89.70220093920207,
-89.89831028358294,
-89.90361053613378,
-90.03611684990464,
-90.26049420788998,
-90.25519395533915,
null,
-89.14920792306499,
-88.91953031252882,
-88.57501389672457,
-88.74638872920156,
-88.74638872920156,
-89.14567442136443,
-89.14920792306499,
null,
-89.59266238648482,
-89.14744117221471,
-89.15097467391527,
-89.12977366371193,
-89.1156396569097,
-89.17747593666944,
-89.5944291373351,
-89.59266238648482,
null,
-90.64211239155007,
-90.4371692929178,
-90.42656878781614,
-90.22339244003413,
-89.9265782971874,
-89.91951129378629,
-90.3152634842486,
-90.33823124530223,
-90.40006752506196,
-90.4301022895167,
-90.41596828271446,
-90.4460030471692,
-90.48310481502503,
-90.51667308118033,
-90.56437535413784,
-90.590876616892,
-90.64564589325063,
-90.64211239155007,
null,
-90.57144235753894,
-90.5838096134909,
-89.99371482949797,
-89.99371482949797,
-89.92481154633712,
-90.15272240602302,
-90.30112947744638,
-90.2993627265961,
-90.37179951145751,
-90.37003276060723,
-90.48310481502503,
-90.48310481502503,
-90.59794362029312,
-90.57144235753894,
null,
-90.43893604376808,
-90.4371692929178,
-89.9831143243963,
-89.98488107524658,
-89.98488107524658,
-90.44423629631892,
-90.43893604376808,
null,
-89.62799740349038,
-89.42835455740894,
-89.415987301457,
-88.94249807358244,
-88.93896457188188,
-89.16864218241804,
-89.16687543156777,
-89.63153090519094,
-89.62799740349038,
null,
-90.1456554026219,
-90.11562063816717,
-89.69690068665123,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
-89.59796263903566,
-89.59619588818538,
-89.5944291373351,
-89.70573444090262,
-90.03611684990464,
-90.18099041962746,
-90.19512442642969,
-90.20925843323191,
-90.16685641282524,
-90.16508966197496,
-90.11738738901745,
-90.11208713646661,
-90.20749168238163,
-90.23045944343525,
-90.27639496554248,
-90.27286146384193,
-90.1456554026219,
null,
-88.70752021049543,
-88.70752021049543,
-88.37537105064312,
-88.37537105064312,
-88.41247281849897,
-88.70928696134571,
-88.70752021049543,
null,
-88.26229899622533,
-88.14922694180751,
-88.03085463483887,
-88.0290878839886,
-88.0290878839886,
-87.91248232787024,
-87.90894882616968,
-87.81177752940438,
-87.79057651920104,
-87.78704301750048,
-87.52556389165932,
-87.52733064250958,
-87.52733064250958,
-88.01495387718637,
-88.01142037548581,
-88.24463148772254,
-88.25169849112365,
-88.2552319928242,
-88.25699874367449,
-88.26053224537505,
-88.26229899622533,
null,
-90.14742215347218,
-90.1456554026219,
-90.27286146384193,
-90.27639496554248,
-90.29759597574582,
-90.39476727251113,
-90.45130329972002,
-90.46720405737253,
-90.5343405896831,
-90.60324387284396,
-90.58027611179034,
-90.31349673339832,
-90.31349673339832,
-90.14742215347218,
null,
-88.74638872920156,
-88.47430909825871,
-88.47254234740844,
-88.47077559655816,
-88.58561440182623,
-88.64215042903514,
-88.71812071559711,
-88.71812071559711,
-88.80999175981157,
-88.81175851066185,
-88.81352526151213,
-88.74638872920156,
null,
-88.47254234740844,
-88.06442290099416,
-87.96725160422886,
-87.96018460082774,
-88.01495387718637,
-88.01318712633609,
-88.47077559655816,
-88.47077559655816,
-88.47254234740844,
null,
-89.99371482949797,
-89.96898031759407,
-89.7481364613093,
-89.63683115774177,
-89.6014961407362,
-89.5785283796826,
-89.57676162883232,
-89.69690068665123,
-89.70043418835179,
-89.76933747151264,
-89.99371482949797,
-89.99371482949797,
null,
-90.20572493153136,
-90.03611684990464,
-90.03611684990464,
-89.89831028358294,
-89.70220093920207,
-89.59266238648482,
-89.5944291373351,
-89.66333242049595,
-89.68630018154957,
-89.69513393580095,
-89.78170472746459,
-89.85060801062544,
-89.92304479548685,
-89.93187854973823,
-89.97428057014491,
-89.95484631079185,
-90.0078488363002,
-90.08028562116161,
-90.12622114326884,
-90.20572493153136,
null,
-89.87180902082878,
-89.76933747151264,
-89.67393292559761,
-89.59089563563454,
-89.55202711692841,
-89.5537938677787,
-89.33118326064364,
-89.32764975894308,
-89.26934698088391,
-89.26404672833307,
-89.6014961407362,
-89.71456819515402,
-89.7163349460043,
-89.92481154633712,
-89.88417627678072,
-89.87180902082878,
null,
-87.93368333807358,
-87.93545008892386,
-87.52733064250958,
-87.52733064250958,
-87.53086414421014,
-87.53086414421014,
-87.53263089506042,
-87.53263089506042,
-87.55736540696432,
-87.6156681850235,
-87.93721683977414,
-87.94251709232496,
-87.93368333807358,
null,
-88.94073132273216,
-88.70575345964515,
-88.5891479035268,
-88.5891479035268,
-88.60151515947874,
-88.60328191032902,
-88.60328191032902,
-88.71282046304627,
-88.81882551406296,
-88.93896457188188,
-88.94249807358244,
-88.94073132273216,
null,
-88.37537105064312,
-88.13685968585557,
-88.05912264844333,
-88.06795640269472,
-88.0290878839886,
-88.05912264844333,
-88.13332618415501,
-88.15982744690919,
-88.13155943330473,
-88.17926170626225,
-88.37537105064312,
-88.37537105064312,
null,
-90.61384437794563,
-90.61031087624507,
-90.58027611179034,
-90.30112947744638,
-90.15272240602302,
-90.14742215347218,
-90.31349673339832,
-90.31349673339832,
-90.58027611179034,
-90.60324387284396,
-90.61384437794563,
-90.590876616892,
-90.61384437794563,
null,
-89.4725233286659,
-89.16157517901694,
-89.04850312459912,
-88.93189756848076,
-88.93013081763048,
-88.98843359568967,
-88.98490009398911,
-89.04496962289858,
-89.13507391626275,
-89.26934698088391,
-89.32764975894308,
-89.33118326064364,
-89.5537938677787,
-89.56086087117981,
-89.4725233286659,
null,
-88.36300379469118,
-88.3612370438409,
-88.00788687378527,
-87.95135084657636,
-87.94605059402552,
-88.25876549452477,
-88.36300379469118,
-88.36300379469118,
null,
-90.51313957947977,
-90.43540254206752,
-90.35413200295473,
-90.28699547064416,
-90.13328814666995,
-89.99371482949797,
-89.99371482949797,
-89.99371482949797,
-90.5838096134909,
-90.51137282862949,
-90.51313957947977,
null,
-89.70043418835179,
-89.53259285757535,
-89.53082610672509,
-89.1403741688136,
-89.1403741688136,
-89.25167947238113,
-89.25167947238113,
-89.5855953830837,
-89.63859790859205,
-89.69690068665123,
-89.70043418835179,
null,
-88.69515295454349,
-88.69338620369321,
-88.36300379469118,
-88.36300379469118,
-88.25876549452477,
-88.25876549452477,
-88.29763401323089,
-88.25346524197393,
-88.56441339162289,
-88.69868645624405,
-88.69515295454349,
null,
-88.94073132273216,
-88.77642349365628,
-88.70752021049543,
-88.70752021049543,
-88.70575345964515,
-88.94073132273216,
-88.94073132273216,
null,
-91.11736837027492,
-91.11560161942464,
-91.09086710752074,
-91.09263385837102,
-91.04493158541351,
-90.98486205650404,
-90.95129379034876,
-90.94422678694765,
-90.95129379034876,
-90.78521921042261,
-90.78875271212317,
-90.90359151739125,
-91.02196382435989,
-91.18450490258549,
-91.12090187197548,
-91.11736837027492,
null,
-88.80645825811101,
-88.47077559655816,
-88.47077559655816,
-88.3612370438409,
-88.36300379469118,
-88.69338620369321,
-88.80822500896129,
-88.80645825811101,
null,
-88.70575345964515,
-88.70221995794459,
-88.3700707980923,
-88.37537105064312,
-88.70752021049543,
-88.70575345964515,
null,
-91.36471348931386,
-90.91595877334319,
-90.91595877334319,
-90.88945751058903,
-90.57144235753894,
-90.59794362029312,
-90.64564589325063,
-90.58027611179034,
-90.61031087624507,
-90.61384437794563,
-90.93539303269625,
-90.93715978354653,
-91.03786458201239,
-91.06436584476657,
-91.09970086177213,
-91.14740313472964,
-91.17390439748382,
-91.18273815173521,
-91.27637594679996,
-91.30641071125468,
-91.36824699101442,
-91.36471348931386,
null,
-88.14746019095725,
-87.95488434827692,
-87.97608535848025,
-87.95135084657636,
-87.99021936528248,
-88.02732113313832,
-88.15099369265779,
-88.14746019095725,
null,
-89.98488107524658,
-89.98488107524658,
-89.63859790859205,
-89.447788816762,
-89.4725233286659,
-89.56086087117981,
-89.5537938677787,
-89.55202711692841,
-89.59089563563454,
-89.67393292559761,
-89.76933747151264,
-89.87180902082878,
-89.87357577167906,
-89.98841457694714,
-89.98488107524658,
null,
-87.95135084657636,
-87.6563034545799,
-87.63863594607712,
-87.62626869012517,
-87.57326616461683,
-87.57856641716765,
-87.52909739335986,
-87.52733064250958,
-87.52909739335986,
-87.54676490186264,
-87.5343976459107,
-87.90894882616968,
-87.94605059402552,
-87.95135084657636,
null,
-88.93013081763048,
-88.90892980742714,
-88.71105371219599,
-88.49020985591122,
-88.49020985591122,
-88.53261187631789,
-88.56087988992235,
-88.61211566458041,
-88.69515295454349,
-88.75345573260267,
-88.83649302256575,
-88.9283640667802,
-88.93013081763048,
null,
-89.47429007951618,
-89.24991272153085,
-89.26227997748279,
-89.16687543156777,
-89.12977366371193,
-89.13330716541249,
-89.19514344517222,
-89.25874647578223,
-89.30821549959002,
-89.35945127424809,
-89.38418578615199,
-89.4566225710134,
-89.47075657781562,
-89.48312383376756,
-89.51669209992285,
-89.49549108971952,
-89.47429007951618,
null,
-89.99371482949797,
-89.76933747151264,
-89.70043418835179,
-89.69690068665123,
-89.57676162883232,
-89.48489058461784,
-89.40538679635533,
-89.21811120622584,
-89.21811120622584,
-89.24814597068057,
-89.30468199788947,
-89.42658780655867,
-89.42658780655867,
-89.479590332067,
-89.479590332067,
-89.53435960842563,
-89.53435960842563,
-89.53259285757535,
-89.70043418835179,
-89.92481154633712,
-89.99371482949797,
-89.99371482949797,
-89.99371482949797,
null,
-89.21811120622584,
-89.14214091966387,
-89.1403741688136,
-89.02553536354552,
-89.02553536354552,
-89.1403741688136,
-89.53082610672509,
-89.53259285757535,
-89.53435960842563,
-89.53435960842563,
-89.479590332067,
-89.479590332067,
-89.42658780655867,
-89.42658780655867,
-89.30468199788947,
-89.24814597068057,
-89.21811120622584,
null,
-91.07496634986823,
-91.07319959901795,
-90.43363579121724,
-90.4371692929178,
-90.43893604376808,
-90.78521921042261,
-90.95129379034876,
-90.95129379034876,
-90.9565940428996,
-90.997229312456,
-91.04139808371295,
-91.08203335326935,
-91.11383486857436,
-91.07496634986823,
null,
-89.68630018154957,
-89.66333242049595,
-89.5944291373351,
-89.17747593666944,
-89.15097467391527,
-89.15274142476554,
-89.15450817561582,
-89.45308906931284,
-89.49902459142007,
-89.49549108971952,
-89.50609159482119,
-89.52022560162341,
-89.59089563563454,
-89.66686592219651,
-89.68630018154957,
null,
-88.70928696134571,
-88.41247281849897,
-88.41600632019953,
-88.41953982190009,
-88.46547534400732,
-88.48667635421066,
-88.5149443678151,
-88.47254234740844,
-88.42484007445091,
-88.44427433380397,
-88.476075849109,
-88.48490960336038,
-88.49020985591122,
-88.49020985591122,
-88.71105371219599,
-88.70928696134571,
null,
-87.93721683977414,
-87.6156681850235,
-87.55736540696432,
-87.53263089506042,
-87.53263089506042,
-87.53263089506042,
-87.53086414421014,
-87.6881049698849,
-87.96018460082774,
-87.96725160422886,
-87.96901835507914,
-87.93721683977414,
null,
-90.93539303269625,
-90.61384437794563,
-90.590876616892,
-90.61384437794563,
-90.60324387284396,
-90.5343405896831,
-90.46720405737253,
-90.45130329972002,
-90.46720405737253,
-90.49900557267755,
-90.55554159988644,
-90.59441011859256,
-90.6562463983523,
-90.66154665090313,
-90.67568065770536,
-90.7127824255612,
-90.6809809102562,
-90.70748217301036,
-90.72338293066288,
-90.73044993406398,
-90.83998848678124,
-90.93539303269625,
null,
-90.44953654886974,
-90.44423629631892,
-90.44423629631892,
-89.98488107524658,
-89.98841457694714,
-89.87357577167906,
-89.87180902082878,
-89.88417627678072,
-89.92481154633712,
-90.03788360075492,
-90.11915413986773,
-90.19865792813025,
-90.45130329972002,
-90.44953654886974,
null,
-89.14390767051415,
-89.13860741796331,
-89.13860741796331,
-88.69515295454349,
-88.69868645624405,
-88.69868645624405,
-89.14567442136443,
-89.14390767051415,
null,
-88.69868645624405,
-88.69868645624405,
-88.56441339162289,
-88.25346524197393,
-88.14746019095725,
-88.14746019095725,
-88.15099369265779,
-88.3700707980923,
-88.70221995794459,
-88.69868645624405,
null,
-88.2393312351717,
-88.20046271646558,
-88.02378763143777,
-88.00435337208471,
-87.94605059402552,
-87.75877500389603,
-87.74110749539325,
-87.74110749539325,
-87.74110749539325,
-87.68987172073518,
-87.68280471733407,
-87.66867071053184,
-87.63510244437656,
-87.6245019392749,
-87.6245019392749,
-87.61213468332295,
-87.61390143417321,
-87.6156681850235,
-87.61036793247267,
-87.58916692226933,
-87.58209991886821,
-87.56089890866487,
-87.53086414421014,
-87.52379714080904,
-87.52379714080904,
-87.52556389165932,
-87.52556389165932,
-87.78704301750048,
-87.79057651920104,
-87.81177752940438,
-87.90894882616968,
-87.91248232787024,
-88.0290878839886,
-88.0290878839886,
-88.00435337208471,
-87.98315236188137,
-87.9796188601808,
-87.96725160422886,
-87.95488434827692,
-87.94958409572608,
-87.94251709232496,
-87.94075034147468,
-87.91424907872052,
-87.9160158295708,
-87.91778258042108,
-87.91778258042108,
-87.92131608212163,
-87.92131608212163,
-87.93898359062442,
-88.17396145371141,
-88.2640657470756,
-88.2640657470756,
-88.2640657470756,
-88.2393312351717,
-88.2393312351717,
null,
-91.50605355733612,
-90.91242527164265,
-90.91419202249293,
-90.91595877334319,
-90.91595877334319,
-91.36471348931386,
-91.36117998761331,
-91.39828175546916,
-91.43538352332499,
-91.42831651992388,
-91.43715027417527,
-91.43715027417527,
-91.48485254713279,
-91.49721980308473,
-91.51135380988696,
-91.50605355733612,
null,
-88.2640657470756,
-88.17396145371141,
-87.93898359062442,
-87.92131608212163,
-87.92131608212163,
-87.91778258042108,
-87.91778258042108,
-87.9160158295708,
-87.91424907872052,
-87.94075034147468,
-87.94251709232496,
-87.94958409572608,
-87.95488434827692,
-87.96725160422886,
-87.9796188601808,
-87.98315236188137,
-88.00435337208471,
-88.0290878839886,
-88.03085463483887,
-88.14922694180751,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.2640657470756,
null,
-90.78521921042261,
-90.70041516960926,
-90.61737787964618,
-90.57144235753894,
-90.51313957947977,
-90.46013705397142,
-90.41596828271446,
-90.36296575720611,
-90.33823124530223,
-90.33646449445195,
-90.31349673339832,
-90.31172998254804,
-90.30996323169776,
-90.24812695193803,
-90.24105994853691,
-90.22869269258497,
-90.15978940942412,
-90.18452392132802,
-90.19512442642969,
-90.33293099275139,
-90.43186904036696,
-90.43363579121724,
-91.07319959901795,
-91.07143284816767,
-91.06436584476657,
-91.02726407691073,
-90.96719454800126,
-90.92479252759459,
-90.8664897495354,
-90.78521921042261,
null,
-87.90894882616968,
-87.5343976459107,
-87.52203038995876,
-87.49906262890514,
-87.54499815101236,
-87.62096843757433,
-87.63863594607712,
-87.64923645117878,
-87.91248232787024,
-87.90894882616968,
null,
-89.21811120622584,
-89.14390767051415,
-89.14567442136443,
-88.74638872920156,
-88.74638872920156,
-88.81352526151213,
-88.81175851066185,
-89.02553536354552,
-89.1403741688136,
-89.14214091966387,
-89.21811120622584,
-89.21811120622584,
null,
-89.6014961407362,
-89.26404672833307,
-89.26404672833307,
-89.14920792306499,
-89.14920792306499,
-89.14567442136443,
-89.14390767051415,
-89.21811120622584,
-89.40538679635533,
-89.48489058461784,
-89.57676162883232,
-89.5785283796826,
-89.6014961407362,
-89.6014961407362,
null,
-87.99021936528248,
-87.95135084657636,
-87.97608535848025,
-87.95488434827692,
-87.91248232787024,
-87.64923645117878,
-87.66160370713074,
-87.65453670372962,
-87.71460623263908,
-87.74110749539325,
-87.75170800049492,
-87.77997601409938,
-87.83297853960772,
-87.90894882616968,
-87.96901835507914,
-87.99021936528248,
null,
-91.49721980308473,
-91.49368630138417,
-91.46895178948027,
-91.41948276567248,
-91.37354724356526,
-91.38061424696637,
-91.36824699101442,
-91.3947482537686,
-91.37354724356526,
-91.33997897740997,
-91.2481079331955,
-91.18627165343577,
-91.18450490258549,
-91.02196382435989,
-90.90359151739125,
-90.90889176994209,
-90.91242527164265,
-91.50605355733612,
-91.49721980308473,
null,
-89.26934698088391,
-89.13507391626275,
-89.04496962289858,
-88.98490009398911,
-88.98843359568967,
-88.93013081763048,
-88.58561440182623,
-88.57501389672457,
-88.46017509145648,
-88.46017509145648,
-88.46017509145648,
-88.57501389672457,
-88.91953031252882,
-89.14920792306499,
-89.14920792306499,
-89.26404672833307,
-89.26404672833307,
-89.26934698088391,
null,
-87.96018460082774,
-87.6881049698849,
-87.53086414421014,
-87.53086414421014,
-87.53086414421014,
-87.57856641716765,
-87.59976742737099,
-87.59446717482017,
-87.59270042396989,
-87.57679966631738,
-87.6404026969274,
-87.63863594607712,
-87.6563034545799,
-87.95135084657636,
-88.00788687378527,
-88.01318712633609,
-88.01495387718637,
-87.96018460082774,
null,
-88.70752021049543,
-88.507877364414,
-88.304701016632,
-88.2163634741181,
-88.20046271646558,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.20046271646558,
-88.2393312351717,
-88.25876549452477,
-88.3541700404398,
-88.39480530999619,
-88.5891479035268,
-88.70575345964515,
-88.70752021049543,
null,
-90.3399979961525,
-90.28876222149444,
-90.27109471299165,
-90.26049420788998,
-90.03611684990464,
-89.90361053613378,
-89.89831028358294,
-90.03611684990464,
-90.03611684990464,
-90.20572493153136,
-90.21809218748331,
-90.25166045363859,
-90.25166045363859,
-90.32233048764972,
-90.35059850125417,
-90.36296575720611,
-90.37179951145751,
-90.34883175040389,
-90.34176474700278,
-90.3399979961525,
null,
-89.1403741688136,
-89.02553536354552,
-89.02553536354552,
-88.81175851066185,
-88.80999175981157,
-88.71812071559711,
-88.71812071559711,
-88.64215042903514,
-88.58561440182623,
-88.47077559655816,
-88.47077559655816,
-88.47077559655816,
-88.80645825811101,
-89.11740640775997,
-89.1403741688136,
-89.1403741688136,
null,
-89.40185329465477,
-89.3665182776492,
-89.0432028720483,
-88.99373384824051,
-88.94073132273216,
-88.94073132273216,
-89.09267189585609,
-89.17394243496888,
-89.17394243496888,
-89.39655304210393,
-89.39831979295421,
-89.40185329465477,
null,
-88.41247281849897,
-88.37537105064312,
-88.17926170626225,
-88.13155943330473,
-88.13155943330473,
-88.07325665524556,
-88.06618965184444,
-88.06265615014388,
-88.15806069605891,
-88.28173325557839,
-88.35947029299062,
-88.41600632019953,
-88.41247281849897,
null,
-88.46017509145648,
-88.46017509145648,
-88.34710303703868,
-87.93368333807358,
-87.94251709232496,
-87.93721683977414,
-88.34886978788896,
-88.46194184230676,
-88.46370859315704,
-88.46017509145648,
null,
-89.70396769005235,
-89.61386339668816,
-89.48312383376756,
-89.35238427084698,
-89.14390767051415,
-89.14567442136443,
-89.14744117221471,
-89.59266238648482,
-89.70220093920207,
-89.70396769005235,
null,
-90.24105994853691,
-90.17922366877718,
-90.18099041962746,
-90.16508966197496,
-90.15802265857384,
-90.12798789411912,
-89.68453343069929,
-89.62799740349038,
-89.63153090519094,
-89.8612085157271,
-90.18452392132802,
-90.15978940942412,
-90.22869269258497,
-90.24105994853691,
null,
-89.04496962289858,
-89.04143612119802,
-88.70928696134571,
-88.71105371219599,
-88.90892980742714,
-88.93013081763048,
-89.04496962289858,
-89.04496962289858,
null,
-88.25169849112365,
-88.24109798602198,
-88.24463148772254,
-88.01142037548581,
-88.01495387718637,
-87.52733064250958,
-87.52733064250958,
-87.52733064250958,
-87.52733064250958,
-88.13155943330473,
-88.2481649894231,
-88.25169849112365,
null,
-89.8612085157271,
-89.63153090519094,
-89.16687543156777,
-89.1651086807175,
-89.33648351319448,
-89.35768452339782,
-89.46722307611506,
-89.46722307611506,
-89.63683115774177,
-89.63859790859205,
-89.85767501402655,
-89.8612085157271,
null,
-89.25167947238113,
-89.25167947238113,
-89.1403741688136,
-89.11740640775997,
-88.80645825811101,
-88.80822500896129,
-88.69338620369321,
-88.69515295454349,
-89.13860741796331,
-89.13860741796331,
-89.25521297408167,
-89.25697972493195,
-89.25874647578223,
-89.25167947238113,
null,
-88.20046271646558,
-87.89834832106801,
-87.80117702430272,
-87.80294377515298,
-87.82061128365577,
-87.834745290458,
-87.83297853960772,
-87.79941027345244,
-87.79941027345244,
-87.75877500389603,
-87.94605059402552,
-88.00435337208471,
-88.02378763143777,
-88.20046271646558,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.20046271646558,
null,
-90.35413200295473,
-90.20572493153136,
-90.19865792813025,
-90.11915413986773,
-90.03788360075492,
-89.92481154633712,
-89.7163349460043,
-89.71456819515402,
-89.6014961407362,
-89.6014961407362,
-89.63683115774177,
-89.7481364613093,
-89.96898031759407,
-89.99371482949797,
-90.13328814666995,
-90.28699547064416,
-90.35413200295473,
null,
-88.5891479035268,
-88.39480530999619,
-88.3541700404398,
-88.25876549452477,
-88.2393312351717,
-88.2393312351717,
-88.2640657470756,
-88.2640657470756,
-88.2640657470756,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.37537105064312,
-88.40540581509786,
-88.60328191032902,
-88.60151515947874,
-88.5891479035268,
-88.5891479035268,
null,
-89.83647400382321,
-89.49372433886924,
-89.40185329465477,
-89.39831979295421,
-89.39655304210393,
-89.68806693239983,
-89.89654353273266,
-89.91951129378629,
-89.9265782971874,
-89.9265782971874,
-89.83647400382321,
null,
-88.74638872920156,
-88.74638872920156,
-88.57501389672457,
-88.46017509145648,
-88.46370859315704,
-88.46194184230676,
-88.46194184230676,
-88.47430909825871,
-88.74638872920156,
-88.74638872920156,
null
],
"mode": "lines",
"showlegend": false,
"type": "scattermapbox",
"uid": "950f07ad-a9cc-11e8-b22a-e377df750c87"
}
],
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_layout": {
"autosize": false,
"font": {
"family": "Balto"
},
"height": 700,
"hovermode": "closest",
"mapbox": {
"accesstoken": "pk.eyJ1IjoiZW1wZXQiLCJhIjoiY2l4OXdlYXh4MDAzNDJvbWdwcGdlemhkdyJ9.hPC39hOpk1pO09UHoEGNIw",
"bearing": 0,
"center": {
"lat": 39.85384589515813,
"lon": -88.9822499677137
},
"layers": [
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.63683115774177,
41.148569234450726
],
[
-89.46722307611506,
41.148569234450726
],
[
-89.32941650979336,
41.148569234450726
],
[
-89.35945127424809,
41.10370875301229
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.04850312459912,
41.10495487749669
],
[
-89.04850312459912,
40.92551295174295
],
[
-89.16157517901694,
40.926759076227356
],
[
-89.4725233286659,
40.92177457828975
],
[
-89.447788816762,
40.97286568215019
],
[
-89.63859790859205,
40.97411180663459
],
[
-89.63683115774177,
41.14109248754432
],
[
-89.63683115774177,
41.148569234450726
]
]
],
"type": "Polygon"
},
"id": 0,
"properties": {
"Clinton_Trump": [
1789,
3785
],
"center_lon_lat": [
-89.34355051659558,
41.03517190637024
],
"county_name": "Marshall",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47077559655816,
39.21583015914484
],
[
-88.47077559655816,
39.37533409314817
],
[
-88.01318712633609,
39.37907246660137
],
[
-88.00788687378527,
39.17470805115961
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.47077559655816,
39.17221580219081
],
[
-88.47077559655816,
39.21583015914484
]
]
],
"type": "Polygon"
},
"id": 1,
"properties": {
"Clinton_Trump": [
1031,
4206
],
"center_lon_lat": [
-88.2393312351717,
39.27502107215389
],
"county_name": "Cumberland",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47430909825871,
39.791539670938086
],
[
-88.46194184230676,
39.80150866681329
],
[
-88.46194184230676,
39.878768384846154
],
[
-88.34886978788896,
39.878768384846154
],
[
-87.93721683977414,
39.878768384846154
],
[
-87.96901835507914,
39.791539670938086
],
[
-87.96725160422886,
39.68686521424841
],
[
-88.06442290099416,
39.65321985316958
],
[
-88.47254234740844,
39.65197372868518
],
[
-88.47430909825871,
39.791539670938086
]
]
],
"type": "Polygon"
},
"id": 2,
"properties": {
"Clinton_Trump": [
1949,
5698
],
"center_lon_lat": [
-88.20576296901643,
39.765371056765666
],
"county_name": "Douglas",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.58738115267651,
41.10869325094989
],
[
-88.25169849112365,
41.1149238733719
],
[
-88.2481649894231,
40.99529592286941
],
[
-88.23579773347114,
40.61772020409592
],
[
-88.46017509145648,
40.61772020409592
],
[
-88.57501389672457,
40.616474079611514
],
[
-88.58561440182623,
40.757286146348825
],
[
-88.93013081763048,
40.75354777289562
],
[
-88.93189756848076,
40.92800520071175
],
[
-88.93189756848076,
41.10620100198109
],
[
-88.58738115267651,
41.10869325094989
]
]
],
"type": "Polygon"
},
"id": 3,
"properties": {
"Clinton_Trump": [
4023,
10208
],
"center_lon_lat": [
-88.58384765097595,
40.86569897649171
],
"county_name": "Livingston",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.63859790859205,
38.99900449885908
],
[
-89.5855953830837,
39.0289114864847
],
[
-89.25167947238113,
39.0276653620003
],
[
-89.25874647578223,
38.99900449885908
],
[
-89.25697972493195,
38.91676028288862
],
[
-89.25521297408167,
38.74230285507248
],
[
-89.48312383376756,
38.741056730588085
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.59796263903566,
38.87439205041898
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63859790859205,
38.99900449885908
]
]
],
"type": "Polygon"
},
"id": 4,
"properties": {
"Clinton_Trump": [
2068,
4888
],
"center_lon_lat": [
-89.44513869048659,
38.88498410853639
],
"county_name": "Bond",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.9831143243963,
41.14981535893513
],
[
-89.86827551912822,
41.14981535893513
],
[
-89.86650876827794,
41.21710608109278
],
[
-89.85767501402655,
41.23455182387439
],
[
-89.63859790859205,
41.23455182387439
],
[
-89.63683115774177,
41.148569234450726
],
[
-89.63683115774177,
41.14109248754432
],
[
-89.63859790859205,
40.97411180663459
],
[
-89.98488107524658,
40.97411180663459
],
[
-89.9831143243963,
41.14981535893513
]
]
],
"type": "Polygon"
},
"id": 5,
"properties": {
"Clinton_Trump": [
751,
1778
],
"center_lon_lat": [
-89.81085611649416,
41.10433181525449
],
"county_name": "Stark",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.15272240602302,
39.52113065782308
],
[
-89.92481154633712,
39.52237678230748
],
[
-89.70043418835179,
39.52362290679188
],
[
-89.69690068665123,
38.99900449885908
],
[
-90.11562063816717,
38.99900449885908
],
[
-90.1456554026219,
39.00025062334348
],
[
-90.14742215347218,
39.26193676506768
],
[
-90.15272240602302,
39.52113065782308
]
]
],
"type": "Polygon"
},
"id": 6,
"properties": {
"Clinton_Trump": [
6689,
14322
],
"center_lon_lat": [
-89.92481154633712,
39.261313702825476
],
"county_name": "Macoupin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.25876549452477,
38.84697731176216
],
[
-87.94605059402552,
38.85071568521536
],
[
-87.90894882616968,
38.85071568521536
],
[
-87.91248232787024,
38.57033767622515
],
[
-87.95488434827692,
38.57033767622515
],
[
-88.14746019095725,
38.56909155174075
],
[
-88.14746019095725,
38.597752414881974
],
[
-88.25346524197393,
38.59899853936637
],
[
-88.29763401323089,
38.6338900249296
],
[
-88.25876549452477,
38.73108773471287
],
[
-88.25876549452477,
38.84697731176216
]
]
],
"type": "Polygon"
},
"id": 7,
"properties": {
"Clinton_Trump": [
1584,
5739
],
"center_lon_lat": [
-88.10329141970028,
38.70990361847805
],
"county_name": "Richland",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.3700707980923,
38.25506818167171
],
[
-88.15099369265779,
38.25631430615611
],
[
-88.02732113313832,
38.25506818167171
],
[
-87.99021936528248,
38.25880655512491
],
[
-87.96901835507914,
38.236376314405696
],
[
-87.97078510592942,
38.230145691983694
],
[
-87.97608535848025,
38.197746455389264
],
[
-87.92838308552274,
38.151639849466434
],
[
-87.96195135167802,
38.09930262112159
],
[
-87.9884526144322,
38.05568826416756
],
[
-88.03085463483887,
38.03076577447954
],
[
-88.01672062803665,
37.96098280335308
],
[
-88.04145513994055,
37.892445956711036
],
[
-88.05912264844333,
37.86752346702301
],
[
-88.13685968585557,
37.91487619743025
],
[
-88.37537105064312,
37.90739945052385
],
[
-88.3700707980923,
38.25506818167171
]
]
],
"type": "Polygon"
},
"id": 8,
"properties": {
"Clinton_Trump": [
1412,
5640
],
"center_lon_lat": [
-88.15187706808294,
38.06316501107396
],
"county_name": "White",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.70573444090262,
38.65507414116442
],
[
-89.5944291373351,
38.656320265648816
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.48312383376756,
38.741056730588085
],
[
-89.25521297408167,
38.74230285507248
],
[
-89.13860741796331,
38.73607223265048
],
[
-89.14390767051415,
38.5030469540675
],
[
-89.35238427084698,
38.51800044788031
],
[
-89.48312383376756,
38.46815546850427
],
[
-89.61386339668816,
38.471893841957474
],
[
-89.70396769005235,
38.41581824015943
],
[
-89.70573444090262,
38.65507414116442
]
]
],
"type": "Polygon"
},
"id": 9,
"properties": {
"Clinton_Trump": [
3945,
12412
],
"center_lon_lat": [
-89.42217092943297,
38.57968360985816
],
"county_name": "Clinton",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.17747593666944,
37.949767682993475
],
[
-89.1156396569097,
38.08559525179318
],
[
-89.12977366371193,
38.12422511080961
],
[
-88.70575345964515,
38.12422511080961
],
[
-88.70752021049543,
37.906153326039444
],
[
-88.70752021049543,
37.86378509356981
],
[
-89.15274142476554,
37.862538969085406
],
[
-89.15097467391527,
37.944783185055876
],
[
-89.17747593666944,
37.949767682993475
]
]
],
"type": "Polygon"
},
"id": 10,
"properties": {
"Clinton_Trump": [
4727,
13116
],
"center_lon_lat": [
-88.9416146981573,
37.993382039947505
],
"county_name": "Franklin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.59621490692791,
41.45760810658216
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.24463148772254,
41.20215258727997
],
[
-88.24109798602198,
41.12987736718471
],
[
-88.25169849112365,
41.1149238733719
],
[
-88.58738115267651,
41.10869325094989
],
[
-88.59621490692791,
41.45760810658216
]
]
],
"type": "Polygon"
},
"id": 11,
"properties": {
"Clinton_Trump": [
8065,
13454
],
"center_lon_lat": [
-88.41865644647496,
41.286265989977025
],
"county_name": "Grundy",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.50255809312063,
37.55973071937598
],
[
-89.49902459142007,
37.570945839735586
],
[
-89.45308906931284,
37.60085282736121
],
[
-89.15450817561582,
37.60085282736121
],
[
-89.04143612119802,
37.597114453908006
],
[
-89.04496962289858,
37.3304438142462
],
[
-89.24991272153085,
37.33542831218381
],
[
-89.47429007951618,
37.33542831218381
],
[
-89.42835455740894,
37.35661242841862
],
[
-89.42658780655867,
37.407703532279065
],
[
-89.4725233286659,
37.46627138304591
],
[
-89.51139184737202,
37.529823731750355
],
[
-89.50255809312063,
37.55973071937598
]
]
],
"type": "Polygon"
},
"id": 12,
"properties": {
"Clinton_Trump": [
2402,
5790
],
"center_lon_lat": [
-89.27641398428503,
37.46564832080371
],
"county_name": "Union",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.3152634842486,
42.19406767686313
],
[
-89.91951129378629,
42.19655992583193
],
[
-89.89654353273266,
42.19655992583193
],
[
-89.68806693239983,
42.19905217480073
],
[
-89.68453343069929,
41.92988928617012
],
[
-90.12798789411912,
41.92864316168572
],
[
-90.15802265857384,
41.92988928617012
],
[
-90.15625590772356,
41.93736603307653
],
[
-90.14035515007106,
41.99593388384337
],
[
-90.15978940942412,
42.0333176183754
],
[
-90.16332291112468,
42.03954824079741
],
[
-90.15978940942412,
42.105592838470656
],
[
-90.20749168238163,
42.149207195424694
],
[
-90.26932796214138,
42.17412968511271
],
[
-90.3152634842486,
42.19406767686313
]
]
],
"type": "Polygon"
},
"id": 13,
"properties": {
"Clinton_Trump": [
2447,
4434
],
"center_lon_lat": [
-89.99989845747395,
42.06384766824323
],
"county_name": "Carroll",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.78521921042261,
41.06881726744906
],
[
-90.43893604376808,
41.06383276951146
],
[
-90.44423629631892,
40.71491791387919
],
[
-90.44423629631892,
40.62768919997112
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.78521921042261,
41.06881726744906
]
]
],
"type": "Polygon"
},
"id": 14,
"properties": {
"Clinton_Trump": [
2987,
4275
],
"center_lon_lat": [
-90.61384437794563,
40.848253233710096
],
"county_name": "Warren",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.68806693239983,
42.19905217480073
],
[
-89.39655304210393,
42.20154442376953
],
[
-89.17394243496888,
42.20403667273833
],
[
-89.17394243496888,
42.15045331990909
],
[
-89.09267189585609,
42.15045331990909
],
[
-88.94073132273216,
42.15169944439349
],
[
-88.94249807358244,
41.89125942715369
],
[
-89.415987301457,
41.886274929216086
],
[
-89.42835455740894,
41.907459045450906
],
[
-89.62799740349038,
41.9012284230289
],
[
-89.68453343069929,
41.92988928617012
],
[
-89.68806693239983,
42.19905217480073
]
]
],
"type": "Polygon"
},
"id": 15,
"properties": {
"Clinton_Trump": [
8050,
14352
],
"center_lon_lat": [
-89.31439912756599,
42.04515580097721
],
"county_name": "Ogle",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.13155943330473,
40.99778817183821
],
[
-87.52733064250958,
41.01024941668222
],
[
-87.52556389165932,
40.89560596411733
],
[
-87.52556389165932,
40.73734815459841
],
[
-87.52556389165932,
40.535475988125455
],
[
-87.52733064250958,
40.49061550668702
],
[
-87.93545008892386,
40.485631008749415
],
[
-88.1174254265025,
40.48812325771822
],
[
-88.11919217735279,
40.51678412085944
],
[
-88.13155943330473,
40.99778817183821
]
]
],
"type": "Polygon"
},
"id": 16,
"properties": {
"Clinton_Trump": [
2504,
9750
],
"center_lon_lat": [
-87.82856166248203,
40.74794021271582
],
"county_name": "Iroquois",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.1651086807175,
41.31056541742285
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.35945127424809,
41.10370875301229
],
[
-89.32941650979336,
41.148569234450726
],
[
-89.46722307611506,
41.148569234450726
],
[
-89.46722307611506,
41.23455182387439
],
[
-89.35768452339782,
41.23330569938999
],
[
-89.33648351319448,
41.30184254603204
],
[
-89.1651086807175,
41.31056541742285
]
]
],
"type": "Polygon"
},
"id": 17,
"properties": {
"Clinton_Trump": [
1147,
1767
],
"center_lon_lat": [
-89.31528250299114,
41.20713708521757
],
"county_name": "Putnam",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.91419202249293,
40.10431691652273
],
[
-90.69511491705842,
40.103070792038324
],
[
-90.6067773745445,
39.980950592567034
],
[
-90.51313957947977,
39.987181214989036
],
[
-90.51137282862949,
39.96475097426982
],
[
-90.5838096134909,
39.87627613587735
],
[
-90.57144235753894,
39.83889240134532
],
[
-90.88945751058903,
39.84013852582972
],
[
-90.91595877334319,
39.84512302376733
],
[
-90.91419202249293,
40.10431691652273
]
]
],
"type": "Polygon"
},
"id": 18,
"properties": {
"Clinton_Trump": [
476,
1796
],
"center_lon_lat": [
-90.71366580098635,
39.97160465893403
],
"county_name": "Brown",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.46017509145648,
40.61772020409592
],
[
-88.23579773347114,
40.61772020409592
],
[
-88.2481649894231,
40.99529592286941
],
[
-88.13155943330473,
40.99778817183821
],
[
-88.11919217735279,
40.51678412085944
],
[
-88.1174254265025,
40.48812325771822
],
[
-87.93545008892386,
40.485631008749415
],
[
-87.93368333807358,
40.39964841932575
],
[
-88.34710303703868,
40.39840229484135
],
[
-88.46017509145648,
40.39840229484135
],
[
-88.46017509145648,
40.61772020409592
]
]
],
"type": "Polygon"
},
"id": 19,
"properties": {
"Clinton_Trump": [
1414,
4480
],
"center_lon_lat": [
-88.19692921476502,
40.69809523333978
],
"county_name": "Ford",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.90359151739125,
40.63890432033074
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.44423629631892,
40.62768919997112
],
[
-90.44953654886974,
40.27628209537006
],
[
-90.90889176994209,
40.28375884227646
],
[
-90.90359151739125,
40.63890432033074
]
]
],
"type": "Polygon"
},
"id": 20,
"properties": {
"Clinton_Trump": [
5288,
6795
],
"center_lon_lat": [
-90.6765640331305,
40.457593207850394
],
"county_name": "McDonough",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.24991272153085,
37.33542831218381
],
[
-89.04496962289858,
37.3304438142462
],
[
-89.04496962289858,
37.29430620419858
],
[
-88.93013081763048,
37.30302907558938
],
[
-88.9283640667802,
37.227015482040926
],
[
-88.93189756848076,
37.22826160652532
],
[
-88.93366431933104,
37.22826160652532
],
[
-89.00080085164161,
37.22452323307212
],
[
-89.0591036297008,
37.188385623024494
],
[
-89.09973889925719,
37.14103289261726
],
[
-89.16864218241804,
37.0737421704596
],
[
-89.16687543156777,
37.07249604597521
],
[
-89.26227997748279,
37.10614140705403
],
[
-89.24991272153085,
37.33542831218381
]
]
],
"type": "Polygon"
},
"id": 21,
"properties": {
"Clinton_Trump": [
962,
1675
],
"center_lon_lat": [
-89.0953220221315,
37.20396217907951
],
"county_name": "Pulaski",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.60328191032902,
41.71929424830636
],
[
-88.40540581509786,
41.72178649727516
],
[
-88.37537105064312,
41.72178649727516
],
[
-88.26229899622533,
41.72427874624397
],
[
-88.26053224537505,
41.69561788310274
],
[
-88.25699874367449,
41.59343567538186
],
[
-88.2552319928242,
41.52116045528661
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.59621490692791,
41.45760810658216
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.60328191032902,
41.71929424830636
]
]
],
"type": "Polygon"
},
"id": 22,
"properties": {
"Clinton_Trump": [
24884,
24961
],
"center_lon_lat": [
-88.42749020072634,
41.59094342641306
],
"county_name": "Kendall",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.93896457188188,
41.62832716094509
],
[
-88.81882551406296,
41.6308194099139
],
[
-88.71282046304627,
41.629573285429494
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.59621490692791,
41.45760810658216
],
[
-88.58738115267651,
41.10869325094989
],
[
-88.93189756848076,
41.10620100198109
],
[
-88.93189756848076,
40.92800520071175
],
[
-89.04850312459912,
40.92551295174295
],
[
-89.04850312459912,
41.10495487749669
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.1651086807175,
41.31056541742285
],
[
-89.16687543156777,
41.585958928475456
],
[
-89.16864218241804,
41.62832716094509
],
[
-88.93896457188188,
41.62832716094509
]
]
],
"type": "Polygon"
},
"id": 23,
"properties": {
"Clinton_Trump": [
19543,
26689
],
"center_lon_lat": [
-88.87801166754727,
41.27816618082842
],
"county_name": "LaSalle",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.59794362029312,
39.789047421969286
],
[
-90.48310481502503,
39.789047421969286
],
[
-90.48310481502503,
39.752909811921654
],
[
-90.37003276060723,
39.752909811921654
],
[
-90.37179951145751,
39.66692722249799
],
[
-90.2993627265961,
39.63702023487237
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.58027611179034,
39.52237678230748
],
[
-90.64564589325063,
39.70431095703002
],
[
-90.59794362029312,
39.789047421969286
]
]
],
"type": "Polygon"
},
"id": 24,
"properties": {
"Clinton_Trump": [
535,
1966
],
"center_lon_lat": [
-90.47250430992337,
39.65508903989618
],
"county_name": "Scott",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.91242527164265,
40.19279175491519
],
[
-90.90889176994209,
40.28375884227646
],
[
-90.44953654886974,
40.27628209537006
],
[
-90.45130329972002,
40.18905338146199
],
[
-90.19865792813025,
40.18406888352439
],
[
-90.20572493153136,
40.15540802038316
],
[
-90.35413200295473,
40.12425490827314
],
[
-90.43540254206752,
40.01958045158346
],
[
-90.51313957947977,
39.987181214989036
],
[
-90.6067773745445,
39.980950592567034
],
[
-90.69511491705842,
40.103070792038324
],
[
-90.91419202249293,
40.10431691652273
],
[
-90.91242527164265,
40.19279175491519
]
]
],
"type": "Polygon"
},
"id": 25,
"properties": {
"Clinton_Trump": [
1075,
2524
],
"center_lon_lat": [
-90.55642497531159,
40.13235471742175
],
"county_name": "Schuyler",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.15274142476554,
37.862538969085406
],
[
-88.70752021049543,
37.86378509356981
],
[
-88.70928696134571,
37.599606702876805
],
[
-89.04143612119802,
37.597114453908006
],
[
-89.15450817561582,
37.60085282736121
],
[
-89.15274142476554,
37.862538969085406
]
]
],
"type": "Polygon"
},
"id": 26,
"properties": {
"Clinton_Trump": [
8581,
21570
],
"center_lon_lat": [
-88.93101419305563,
37.73044977373891
],
"county_name": "Williamson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.43363579121724,
41.32801116020446
],
[
-90.43186904036696,
41.45760810658216
],
[
-90.33293099275139,
41.5149298328646
],
[
-90.19512442642969,
41.54109844703702
],
[
-90.18452392132802,
41.58471280399106
],
[
-89.8612085157271,
41.58471280399106
],
[
-89.85767501402655,
41.23455182387439
],
[
-89.86650876827794,
41.21710608109278
],
[
-89.86827551912822,
41.14981535893513
],
[
-89.9831143243963,
41.14981535893513
],
[
-90.4371692929178,
41.151061483419525
],
[
-90.43363579121724,
41.32801116020446
]
]
],
"type": "Polygon"
},
"id": 27,
"properties": {
"Clinton_Trump": [
8871,
13985
],
"center_lon_lat": [
-90.14742215347218,
41.36726408146309
],
"county_name": "Henry",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.14744117221471,
38.212699949202076
],
[
-89.14567442136443,
38.47313996644188
],
[
-88.69868645624405,
38.47438609092628
],
[
-88.70221995794459,
38.25631430615611
],
[
-88.70575345964515,
38.12422511080961
],
[
-89.12977366371193,
38.12422511080961
],
[
-89.15097467391527,
38.130455733231614
],
[
-89.14744117221471,
38.212699949202076
]
]
],
"type": "Polygon"
},
"id": 28,
"properties": {
"Clinton_Trump": [
4425,
11695
],
"center_lon_lat": [
-88.92483056507966,
38.299305600867946
],
"county_name": "Jefferson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.25519395533915,
38.53046169272432
],
[
-90.24812695193803,
38.54416906205273
],
[
-90.18452392132802,
38.61145978421038
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.03611684990464,
38.65881251461762
],
[
-89.70573444090262,
38.65507414116442
],
[
-89.70396769005235,
38.41581824015943
],
[
-89.70220093920207,
38.218930571624085
],
[
-89.89831028358294,
38.22017669610848
],
[
-89.90361053613378,
38.297436414141345
],
[
-90.03611684990464,
38.30865153450095
],
[
-90.26049420788998,
38.51800044788031
],
[
-90.25519395533915,
38.53046169272432
]
]
],
"type": "Polygon"
},
"id": 29,
"properties": {
"Clinton_Trump": [
60756,
53857
],
"center_lon_lat": [
-89.98134757354603,
38.43949460536305
],
"county_name": "St. Clair",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.14920792306499,
40.28126659330766
],
[
-88.91953031252882,
40.28251271779206
],
[
-88.57501389672457,
40.28126659330766
],
[
-88.74638872920156,
40.09808629410072
],
[
-88.74638872920156,
40.05447193714669
],
[
-89.14567442136443,
40.048241314724685
],
[
-89.14920792306499,
40.28126659330766
]
]
],
"type": "Polygon"
},
"id": 30,
"properties": {
"Clinton_Trump": [
1910,
5077
],
"center_lon_lat": [
-88.86211090989478,
40.165377016258375
],
"county_name": "De Witt",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.59266238648482,
38.218930571624085
],
[
-89.14744117221471,
38.212699949202076
],
[
-89.15097467391527,
38.130455733231614
],
[
-89.12977366371193,
38.12422511080961
],
[
-89.1156396569097,
38.08559525179318
],
[
-89.17747593666944,
37.949767682993475
],
[
-89.5944291373351,
37.95475218093108
],
[
-89.59266238648482,
38.218930571624085
]
]
],
"type": "Polygon"
},
"id": 31,
"properties": {
"Clinton_Trump": [
2462,
6855
],
"center_lon_lat": [
-89.35503439712241,
38.08434912730878
],
"county_name": "Perry",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.64211239155007,
42.508091046932165
],
[
-90.4371692929178,
42.50684492244776
],
[
-90.42656878781614,
42.50684492244776
],
[
-90.22339244003413,
42.508091046932165
],
[
-89.9265782971874,
42.505598797963366
],
[
-89.91951129378629,
42.19655992583193
],
[
-90.3152634842486,
42.19406767686313
],
[
-90.33823124530223,
42.20279054825393
],
[
-90.40006752506196,
42.23892815830156
],
[
-90.4301022895167,
42.277558017317986
],
[
-90.41596828271446,
42.31992624978762
],
[
-90.4460030471692,
42.35730998431965
],
[
-90.48310481502503,
42.38098634952327
],
[
-90.51667308118033,
42.403416590242486
],
[
-90.56437535413784,
42.43830807580571
],
[
-90.590876616892,
42.44703094719652
],
[
-90.64564589325063,
42.47195343688453
],
[
-90.64211239155007,
42.508091046932165
]
]
],
"type": "Polygon"
},
"id": 32,
"properties": {
"Clinton_Trump": [
4462,
6121
],
"center_lon_lat": [
-90.28257859351845,
42.351079361897646
],
"county_name": "Jo Daviess",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.57144235753894,
39.83889240134532
],
[
-90.5838096134909,
39.87627613587735
],
[
-89.99371482949797,
39.872537762424145
],
[
-89.99371482949797,
39.78530904851608
],
[
-89.92481154633712,
39.52237678230748
],
[
-90.15272240602302,
39.52113065782308
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.2993627265961,
39.63702023487237
],
[
-90.37179951145751,
39.66692722249799
],
[
-90.37003276060723,
39.752909811921654
],
[
-90.48310481502503,
39.752909811921654
],
[
-90.48310481502503,
39.789047421969286
],
[
-90.59794362029312,
39.789047421969286
],
[
-90.57144235753894,
39.83889240134532
]
]
],
"type": "Polygon"
},
"id": 33,
"properties": {
"Clinton_Trump": [
4696,
9076
],
"center_lon_lat": [
-90.26137758331512,
39.69870339685021
],
"county_name": "Morgan",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.43893604376808,
41.06383276951146
],
[
-90.4371692929178,
41.151061483419525
],
[
-89.9831143243963,
41.14981535893513
],
[
-89.98488107524658,
40.97411180663459
],
[
-89.98488107524658,
40.71242566491039
],
[
-90.44423629631892,
40.71491791387919
],
[
-90.43893604376808,
41.06383276951146
]
]
],
"type": "Polygon"
},
"id": 34,
"properties": {
"Clinton_Trump": [
10083,
10737
],
"center_lon_lat": [
-90.21367531035762,
40.931743574164955
],
"county_name": "Knox",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.62799740349038,
41.9012284230289
],
[
-89.42835455740894,
41.907459045450906
],
[
-89.415987301457,
41.886274929216086
],
[
-88.94249807358244,
41.89125942715369
],
[
-88.93896457188188,
41.62832716094509
],
[
-89.16864218241804,
41.62832716094509
],
[
-89.16687543156777,
41.585958928475456
],
[
-89.63153090519094,
41.585958928475456
],
[
-89.62799740349038,
41.9012284230289
]
]
],
"type": "Polygon"
},
"id": 35,
"properties": {
"Clinton_Trump": [
5528,
8612
],
"center_lon_lat": [
-89.28524773853641,
41.746708986963185
],
"county_name": "Lee",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.1456554026219,
39.00025062334348
],
[
-90.11562063816717,
38.99900449885908
],
[
-89.69690068665123,
38.99900449885908
],
[
-89.63859790859205,
38.99900449885908
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.59796263903566,
38.87439205041898
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.5944291373351,
38.656320265648816
],
[
-89.70573444090262,
38.65507414116442
],
[
-90.03611684990464,
38.65881251461762
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.19512442642969,
38.68747337775884
],
[
-90.20925843323191,
38.72610323677527
],
[
-90.16685641282524,
38.7722098426981
],
[
-90.16508966197496,
38.7722098426981
],
[
-90.11738738901745,
38.80585520377693
],
[
-90.11208713646661,
38.84946956073097
],
[
-90.20749168238163,
38.89931454010701
],
[
-90.23045944343525,
38.910529660466615
],
[
-90.27639496554248,
38.91925253185742
],
[
-90.27286146384193,
38.99900449885908
],
[
-90.1456554026219,
39.00025062334348
]
]
],
"type": "Polygon"
},
"id": 36,
"properties": {
"Clinton_Trump": [
50587,
70490
],
"center_lon_lat": [
-89.93541205143879,
38.82766238225395
],
"county_name": "Madison",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70752021049543,
37.86378509356981
],
[
-88.70752021049543,
37.906153326039444
],
[
-88.37537105064312,
37.90739945052385
],
[
-88.37537105064312,
37.599606702876805
],
[
-88.41247281849897,
37.60085282736121
],
[
-88.70928696134571,
37.599606702876805
],
[
-88.70752021049543,
37.86378509356981
]
]
],
"type": "Polygon"
},
"id": 37,
"properties": {
"Clinton_Trump": [
2572,
8276
],
"center_lon_lat": [
-88.54232900599442,
37.753503076700326
],
"county_name": "Saline",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.26229899622533,
41.72427874624397
],
[
-88.14922694180751,
41.725524870728364
],
[
-88.03085463483887,
41.72801711969717
],
[
-88.0290878839886,
41.68440276274313
],
[
-88.0290878839886,
41.66944926893032
],
[
-87.91248232787024,
41.6432806547579
],
[
-87.90894882616968,
41.55729806533424
],
[
-87.81177752940438,
41.55854418981864
],
[
-87.79057651920104,
41.52863720219302
],
[
-87.78704301750048,
41.47006935142617
],
[
-87.52556389165932,
41.47131547591057
],
[
-87.52733064250958,
41.29810417257884
],
[
-87.52733064250958,
41.29810417257884
],
[
-88.01495387718637,
41.29311967464123
],
[
-88.01142037548581,
41.20589096073317
],
[
-88.24463148772254,
41.20215258727997
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.2552319928242,
41.52116045528661
],
[
-88.25699874367449,
41.59343567538186
],
[
-88.26053224537505,
41.69561788310274
],
[
-88.26229899622533,
41.72427874624397
]
]
],
"type": "Polygon"
},
"id": 38,
"properties": {
"Clinton_Trump": [
151927,
132720
],
"center_lon_lat": [
-87.89393144394232,
41.46508485348857
],
"county_name": "Will",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.14742215347218,
39.26193676506768
],
[
-90.1456554026219,
39.00025062334348
],
[
-90.27286146384193,
38.99900449885908
],
[
-90.27639496554248,
38.91925253185742
],
[
-90.29759597574582,
38.92299090531062
],
[
-90.39476727251113,
38.96037463984265
],
[
-90.45130329972002,
38.96162076432705
],
[
-90.46720405737253,
38.96909751123346
],
[
-90.5343405896831,
38.95912851535825
],
[
-90.60324387284396,
39.117386324877174
],
[
-90.58027611179034,
39.184677047034825
],
[
-90.31349673339832,
39.17470805115961
],
[
-90.31349673339832,
39.225799155020056
],
[
-90.14742215347218,
39.26193676506768
]
]
],
"type": "Polygon"
},
"id": 39,
"properties": {
"Clinton_Trump": [
2679,
7748
],
"center_lon_lat": [
-90.37444963773294,
39.09059464846255
],
"county_name": "Jersey",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.74638872920156,
39.791539670938086
],
[
-88.47430909825871,
39.791539670938086
],
[
-88.47254234740844,
39.65197372868518
],
[
-88.47077559655816,
39.447609313243426
],
[
-88.58561440182623,
39.447609313243426
],
[
-88.64215042903514,
39.52113065782308
],
[
-88.71812071559711,
39.52113065782308
],
[
-88.71812071559711,
39.57969850858992
],
[
-88.80999175981157,
39.580944633074324
],
[
-88.81175851066185,
39.65321985316958
],
[
-88.81352526151213,
39.741694691562046
],
[
-88.74638872920156,
39.791539670938086
]
]
],
"type": "Polygon"
},
"id": 40,
"properties": {
"Clinton_Trump": [
1481,
4455
],
"center_lon_lat": [
-88.64215042903514,
39.619574492090756
],
"county_name": "Moultrie",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47254234740844,
39.65197372868518
],
[
-88.06442290099416,
39.65321985316958
],
[
-87.96725160422886,
39.68686521424841
],
[
-87.96018460082774,
39.48125467432225
],
[
-88.01495387718637,
39.48125467432225
],
[
-88.01318712633609,
39.37907246660137
],
[
-88.47077559655816,
39.37533409314817
],
[
-88.47077559655816,
39.447609313243426
],
[
-88.47254234740844,
39.65197372868518
]
]
],
"type": "Polygon"
},
"id": 41,
"properties": {
"Clinton_Trump": [
7309,
13003
],
"center_lon_lat": [
-88.21636347411808,
39.53109965369829
],
"county_name": "Coles",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.99371482949797,
40.10805528997593
],
[
-89.96898031759407,
40.141700651054755
],
[
-89.7481364613093,
40.126747157241944
],
[
-89.63683115774177,
40.15416189589877
],
[
-89.6014961407362,
40.12176265930434
],
[
-89.5785283796826,
40.091855671678715
],
[
-89.57676162883232,
39.97596609462943
],
[
-89.69690068665123,
39.974719970145024
],
[
-89.70043418835179,
39.91615211937818
],
[
-89.76933747151264,
39.90244475004977
],
[
-89.99371482949797,
39.90119862556537
],
[
-89.99371482949797,
40.10805528997593
]
]
],
"type": "Polygon"
},
"id": 42,
"properties": {
"Clinton_Trump": [
1817,
4231
],
"center_lon_lat": [
-89.78523822916515,
40.02768026073207
],
"county_name": "Menard",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.20572493153136,
38.08808750076198
],
[
-90.03611684990464,
38.13544023116922
],
[
-90.03611684990464,
38.22266894507729
],
[
-89.89831028358294,
38.22017669610848
],
[
-89.70220093920207,
38.218930571624085
],
[
-89.59266238648482,
38.218930571624085
],
[
-89.5944291373351,
37.95475218093108
],
[
-89.66333242049595,
37.830139732490984
],
[
-89.68630018154957,
37.79649437141216
],
[
-89.69513393580095,
37.81518623867817
],
[
-89.78170472746459,
37.855062222179
],
[
-89.85060801062544,
37.903661077070645
],
[
-89.92304479548685,
37.871261840476215
],
[
-89.93187854973823,
37.88123083635143
],
[
-89.97428057014491,
37.918614570883456
],
[
-89.95484631079185,
37.96596730129069
],
[
-90.0078488363002,
37.96970567474389
],
[
-90.08028562116161,
38.014566156182326
],
[
-90.12622114326884,
38.049457641745555
],
[
-90.20572493153136,
38.08808750076198
]
]
],
"type": "Polygon"
},
"id": 43,
"properties": {
"Clinton_Trump": [
3439,
10023
],
"center_lon_lat": [
-89.89919365900809,
38.00958165824473
],
"county_name": "Randolph",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.87180902082878,
40.51304574740624
],
[
-89.76933747151264,
40.552921730907066
],
[
-89.67393292559761,
40.55416785539147
],
[
-89.59089563563454,
40.68501092625357
],
[
-89.55202711692841,
40.70619504248839
],
[
-89.5537938677787,
40.74731715047362
],
[
-89.33118326064364,
40.748563274958016
],
[
-89.32764975894308,
40.61522795512712
],
[
-89.26934698088391,
40.5940438388923
],
[
-89.26404672833307,
40.324880950261694
],
[
-89.6014961407362,
40.31989645232409
],
[
-89.71456819515402,
40.31865032783969
],
[
-89.7163349460043,
40.43578602937338
],
[
-89.92481154633712,
40.43578602937338
],
[
-89.88417627678072,
40.491861631171425
],
[
-89.87180902082878,
40.51304574740624
]
]
],
"type": "Polygon"
},
"id": 44,
"properties": {
"Clinton_Trump": [
20685,
38707
],
"center_lon_lat": [
-89.5944291373351,
40.533606801398854
],
"county_name": "Tazewell",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.93368333807358,
40.39964841932575
],
[
-87.93545008892386,
40.485631008749415
],
[
-87.52733064250958,
40.49061550668702
],
[
-87.52733064250958,
40.47690813735861
],
[
-87.53086414421014,
40.25011348119764
],
[
-87.53086414421014,
40.14793127347676
],
[
-87.53263089506042,
40.010857580192656
],
[
-87.53263089506042,
39.88250675829936
],
[
-87.55736540696432,
39.86879938897094
],
[
-87.6156681850235,
39.881260633814954
],
[
-87.93721683977414,
39.878768384846154
],
[
-87.94251709232496,
40.22519099150962
],
[
-87.93368333807358,
40.39964841932575
]
]
],
"type": "Polygon"
},
"id": 45,
"properties": {
"Clinton_Trump": [
10039,
19087
],
"center_lon_lat": [
-87.73492386741728,
40.17970744782898
],
"county_name": "Vermilion",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.94073132273216,
42.15169944439349
],
[
-88.70575345964515,
42.1529455688779
],
[
-88.5891479035268,
42.1529455688779
],
[
-88.5891479035268,
42.06571685496983
],
[
-88.60151515947874,
42.01711800007819
],
[
-88.60328191032902,
41.71929424830636
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.71282046304627,
41.629573285429494
],
[
-88.81882551406296,
41.6308194099139
],
[
-88.93896457188188,
41.62832716094509
],
[
-88.94249807358244,
41.89125942715369
],
[
-88.94073132273216,
42.15169944439349
]
]
],
"type": "Polygon"
},
"id": 46,
"properties": {
"Clinton_Trump": [
20466,
19091
],
"center_lon_lat": [
-88.76582298855462,
41.890636364911494
],
"county_name": "DeKalb",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.37537105064312,
37.90739945052385
],
[
-88.13685968585557,
37.91487619743025
],
[
-88.05912264844333,
37.86752346702301
],
[
-88.06795640269472,
37.856308346663404
],
[
-88.0290878839886,
37.80023274486536
],
[
-88.05912264844333,
37.742911018582916
],
[
-88.13332618415501,
37.69805053714448
],
[
-88.15982744690919,
37.65443618019045
],
[
-88.13155943330473,
37.57468421318879
],
[
-88.17926170626225,
37.599606702876805
],
[
-88.37537105064312,
37.599606702876805
],
[
-88.37537105064312,
37.90739945052385
]
]
],
"type": "Polygon"
},
"id": 47,
"properties": {
"Clinton_Trump": [
657,
1942
],
"center_lon_lat": [
-88.20222946731586,
37.744780205309524
],
"county_name": "Gallatin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.61384437794563,
39.39651820938298
],
[
-90.61031087624507,
39.45757830911863
],
[
-90.58027611179034,
39.52237678230748
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.15272240602302,
39.52113065782308
],
[
-90.14742215347218,
39.26193676506768
],
[
-90.31349673339832,
39.225799155020056
],
[
-90.31349673339832,
39.17470805115961
],
[
-90.58027611179034,
39.184677047034825
],
[
-90.60324387284396,
39.117386324877174
],
[
-90.61384437794563,
39.14230881456519
],
[
-90.590876616892,
39.19838441636323
],
[
-90.61384437794563,
39.39651820938298
]
]
],
"type": "Polygon"
},
"id": 48,
"properties": {
"Clinton_Trump": [
1205,
4145
],
"center_lon_lat": [
-90.3806332657089,
39.319881553592325
],
"county_name": "Greene",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.4725233286659,
40.92177457828975
],
[
-89.16157517901694,
40.926759076227356
],
[
-89.04850312459912,
40.92551295174295
],
[
-88.93189756848076,
40.92800520071175
],
[
-88.93013081763048,
40.75354777289562
],
[
-88.98843359568967,
40.75230164841122
],
[
-88.98490009398911,
40.66507293450316
],
[
-89.04496962289858,
40.62768919997112
],
[
-89.13507391626275,
40.596536087861104
],
[
-89.26934698088391,
40.5940438388923
],
[
-89.32764975894308,
40.61522795512712
],
[
-89.33118326064364,
40.748563274958016
],
[
-89.5537938677787,
40.74731715047362
],
[
-89.56086087117981,
40.79342375639645
],
[
-89.4725233286659,
40.92177457828975
]
]
],
"type": "Polygon"
},
"id": 49,
"properties": {
"Clinton_Trump": [
5092,
13207
],
"center_lon_lat": [
-89.24549584440516,
40.76102451980202
],
"county_name": "Woodford",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.36300379469118,
38.910529660466615
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.00788687378527,
39.17470805115961
],
[
-87.95135084657636,
39.17470805115961
],
[
-87.94605059402552,
38.85071568521536
],
[
-88.25876549452477,
38.84697731176216
],
[
-88.36300379469118,
38.851961809699766
],
[
-88.36300379469118,
38.910529660466615
]
]
],
"type": "Polygon"
},
"id": 50,
"properties": {
"Clinton_Trump": [
924,
3975
],
"center_lon_lat": [
-88.15452719435835,
39.010842681460886
],
"county_name": "Jasper",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.51313957947977,
39.987181214989036
],
[
-90.43540254206752,
40.01958045158346
],
[
-90.35413200295473,
40.12425490827314
],
[
-90.28699547064416,
40.05447193714669
],
[
-90.13328814666995,
40.06194868405309
],
[
-89.99371482949797,
40.10805528997593
],
[
-89.99371482949797,
39.90119862556537
],
[
-89.99371482949797,
39.872537762424145
],
[
-90.5838096134909,
39.87627613587735
],
[
-90.51137282862949,
39.96475097426982
],
[
-90.51313957947977,
39.987181214989036
]
]
],
"type": "Polygon"
},
"id": 51,
"properties": {
"Clinton_Trump": [
1621,
3216
],
"center_lon_lat": [
-90.28876222149444,
39.998396335348644
],
"county_name": "Cass",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.70043418835179,
39.52362290679188
],
[
-89.53259285757535,
39.52486903127628
],
[
-89.53082610672509,
39.34916547897575
],
[
-89.1403741688136,
39.34916547897575
],
[
-89.1403741688136,
39.21832240811365
],
[
-89.25167947238113,
39.21832240811365
],
[
-89.25167947238113,
39.0276653620003
],
[
-89.5855953830837,
39.0289114864847
],
[
-89.63859790859205,
38.99900449885908
],
[
-89.69690068665123,
38.99900449885908
],
[
-89.70043418835179,
39.52362290679188
]
]
],
"type": "Polygon"
},
"id": 52,
"properties": {
"Clinton_Trump": [
3504,
8630
],
"center_lon_lat": [
-89.42040417858269,
39.26193676506768
],
"county_name": "Montgomery",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.69515295454349,
38.825793195527346
],
[
-88.69338620369321,
38.91426803391982
],
[
-88.36300379469118,
38.910529660466615
],
[
-88.36300379469118,
38.851961809699766
],
[
-88.25876549452477,
38.84697731176216
],
[
-88.25876549452477,
38.73108773471287
],
[
-88.29763401323089,
38.6338900249296
],
[
-88.25346524197393,
38.59899853936637
],
[
-88.56441339162289,
38.606475286272776
],
[
-88.69868645624405,
38.606475286272776
],
[
-88.69515295454349,
38.825793195527346
]
]
],
"type": "Polygon"
},
"id": 53,
"properties": {
"Clinton_Trump": [
1020,
5021
],
"center_lon_lat": [
-88.47607584910898,
38.756633286643094
],
"county_name": "Clay",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.94073132273216,
42.49562980208815
],
[
-88.77642349365628,
42.49438367760376
],
[
-88.70752021049543,
42.493137553119354
],
[
-88.70752021049543,
42.493137553119354
],
[
-88.70575345964515,
42.1529455688779
],
[
-88.94073132273216,
42.15169944439349
],
[
-88.94073132273216,
42.49562980208815
]
]
],
"type": "Polygon"
},
"id": 54,
"properties": {
"Clinton_Trump": [
8986,
12282
],
"center_lon_lat": [
-88.82324239118866,
42.32366462324082
],
"county_name": "Boone",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.11736837027492,
40.69996442006638
],
[
-91.11560161942464,
40.7248869097544
],
[
-91.09086710752074,
40.77971638706804
],
[
-91.09263385837102,
40.82083849505327
],
[
-91.04493158541351,
40.86819122546051
],
[
-90.98486205650404,
40.911805582414544
],
[
-90.95129379034876,
40.95417381488418
],
[
-90.94422678694765,
41.01897228807302
],
[
-90.95129379034876,
41.070063391933466
],
[
-90.78521921042261,
41.06881726744906
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.90359151739125,
40.63890432033074
],
[
-91.02196382435989,
40.63516594687753
],
[
-91.18450490258549,
40.637658195846335
],
[
-91.12090187197548,
40.67254968140956
],
[
-91.11736837027492,
40.69996442006638
]
]
],
"type": "Polygon"
},
"id": 55,
"properties": {
"Clinton_Trump": [
1155,
2155
],
"center_lon_lat": [
-90.98486205650406,
40.8526146694055
],
"county_name": "Henderson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.80645825811101,
39.21707628362925
],
[
-88.47077559655816,
39.21583015914484
],
[
-88.47077559655816,
39.17221580219081
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.36300379469118,
38.910529660466615
],
[
-88.69338620369321,
38.91426803391982
],
[
-88.80822500896129,
38.91177578495101
],
[
-88.80645825811101,
39.21707628362925
]
]
],
"type": "Polygon"
},
"id": 56,
"properties": {
"Clinton_Trump": [
3083,
13635
],
"center_lon_lat": [
-88.5847310264011,
39.06380297204793
],
"county_name": "Effingham",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70575345964515,
38.12422511080961
],
[
-88.70221995794459,
38.25631430615611
],
[
-88.3700707980923,
38.25506818167171
],
[
-88.37537105064312,
37.90739945052385
],
[
-88.70752021049543,
37.906153326039444
],
[
-88.70575345964515,
38.12422511080961
]
]
],
"type": "Polygon"
},
"id": 57,
"properties": {
"Clinton_Trump": [
802,
3206
],
"center_lon_lat": [
-88.53879550429386,
38.08123381609778
],
"county_name": "Hamilton",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.36471348931386,
39.75789430985926
],
[
-90.91595877334319,
39.75664818537486
],
[
-90.91595877334319,
39.84512302376733
],
[
-90.88945751058903,
39.84013852582972
],
[
-90.57144235753894,
39.83889240134532
],
[
-90.59794362029312,
39.789047421969286
],
[
-90.64564589325063,
39.70431095703002
],
[
-90.58027611179034,
39.52237678230748
],
[
-90.61031087624507,
39.45757830911863
],
[
-90.61384437794563,
39.39651820938298
],
[
-90.93539303269625,
39.400256582836185
],
[
-90.93715978354653,
39.40150270732059
],
[
-91.03786458201239,
39.44885543772782
],
[
-91.06436584476657,
39.49496204365066
],
[
-91.09970086177213,
39.53857640060469
],
[
-91.14740313472964,
39.546053147511095
],
[
-91.17390439748382,
39.59215975343393
],
[
-91.18273815173521,
39.598390375855935
],
[
-91.27637594679996,
39.66692722249799
],
[
-91.30641071125468,
39.68686521424841
],
[
-91.36824699101442,
39.72923344671804
],
[
-91.36471348931386,
39.75789430985926
]
]
],
"type": "Polygon"
},
"id": 58,
"properties": {
"Clinton_Trump": [
1413,
5754
],
"center_lon_lat": [
-90.96984467427669,
39.62082061657516
],
"county_name": "Pike",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.14746019095725,
38.56909155174075
],
[
-87.95488434827692,
38.57033767622515
],
[
-87.97608535848025,
38.399618621862224
],
[
-87.95135084657636,
38.28995966723494
],
[
-87.99021936528248,
38.25880655512491
],
[
-88.02732113313832,
38.25506818167171
],
[
-88.15099369265779,
38.25631430615611
],
[
-88.14746019095725,
38.56909155174075
]
]
],
"type": "Polygon"
},
"id": 59,
"properties": {
"Clinton_Trump": [
434,
2778
],
"center_lon_lat": [
-88.05117226961707,
38.412702928948434
],
"county_name": "Edwards",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.98488107524658,
40.71242566491039
],
[
-89.98488107524658,
40.97411180663459
],
[
-89.63859790859205,
40.97411180663459
],
[
-89.447788816762,
40.97286568215019
],
[
-89.4725233286659,
40.92177457828975
],
[
-89.56086087117981,
40.79342375639645
],
[
-89.5537938677787,
40.74731715047362
],
[
-89.55202711692841,
40.70619504248839
],
[
-89.59089563563454,
40.68501092625357
],
[
-89.67393292559761,
40.55416785539147
],
[
-89.76933747151264,
40.552921730907066
],
[
-89.87180902082878,
40.51304574740624
],
[
-89.87357577167906,
40.62395082651792
],
[
-89.98841457694714,
40.62519695100232
],
[
-89.98488107524658,
40.71242566491039
]
]
],
"type": "Polygon"
},
"id": 60,
"properties": {
"Clinton_Trump": [
38060,
35633
],
"center_lon_lat": [
-89.71810169685457,
40.74357877702042
],
"county_name": "Peoria",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.95135084657636,
39.17470805115961
],
[
-87.6563034545799,
39.17221580219081
],
[
-87.63863594607712,
39.157262308378
],
[
-87.62626869012517,
39.102432831064355
],
[
-87.57326616461683,
39.05757234962592
],
[
-87.57856641716765,
39.00149674782788
],
[
-87.52909739335986,
38.97158976020226
],
[
-87.52733064250958,
38.90803741149781
],
[
-87.52909739335986,
38.90554516252901
],
[
-87.54676490186264,
38.875638174903386
],
[
-87.5343976459107,
38.851961809699766
],
[
-87.90894882616968,
38.85071568521536
],
[
-87.94605059402552,
38.85071568521536
],
[
-87.95135084657636,
39.17470805115961
]
]
],
"type": "Polygon"
},
"id": 61,
"properties": {
"Clinton_Trump": [
1992,
6277
],
"center_lon_lat": [
-87.73934074454297,
39.01271186818749
],
"county_name": "Crawford",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.93013081763048,
37.30302907558938
],
[
-88.90892980742714,
37.33542831218381
],
[
-88.71105371219599,
37.33792056115261
],
[
-88.49020985591122,
37.159724759883275
],
[
-88.49020985591122,
37.0675115480376
],
[
-88.53261187631789,
37.0675115480376
],
[
-88.56087988992235,
37.083711166334815
],
[
-88.61211566458041,
37.112372029476035
],
[
-88.69515295454349,
37.14103289261726
],
[
-88.75345573260267,
37.15474026194567
],
[
-88.83649302256575,
37.1971084944153
],
[
-88.9283640667802,
37.227015482040926
],
[
-88.93013081763048,
37.30302907558938
]
]
],
"type": "Polygon"
},
"id": 62,
"properties": {
"Clinton_Trump": [
1558,
4846
],
"center_lon_lat": [
-88.71017033677086,
37.2027160545951
],
"county_name": "Massac",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.47429007951618,
37.33542831218381
],
[
-89.24991272153085,
37.33542831218381
],
[
-89.26227997748279,
37.10614140705403
],
[
-89.16687543156777,
37.07249604597521
],
[
-89.12977366371193,
37.01766656866156
],
[
-89.13330716541249,
36.981528958613936
],
[
-89.19514344517222,
36.990251830004745
],
[
-89.25874647578223,
37.01517431969276
],
[
-89.30821549959002,
37.02888168902117
],
[
-89.35945127424809,
37.042589058349584
],
[
-89.38418578615199,
37.103649158085226
],
[
-89.4566225710134,
37.188385623024494
],
[
-89.47075657781562,
37.253184096213346
],
[
-89.48312383376756,
37.26066084311975
],
[
-89.51669209992285,
37.281844959354565
],
[
-89.49549108971952,
37.325459316308596
],
[
-89.47429007951618,
37.33542831218381
]
]
],
"type": "Polygon"
},
"id": 63,
"properties": {
"Clinton_Trump": [
1262,
1496
],
"center_lon_lat": [
-89.32323288181739,
37.15847863539887
],
"county_name": "Alexander",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.99371482949797,
39.90119862556537
],
[
-89.76933747151264,
39.90244475004977
],
[
-89.70043418835179,
39.91615211937818
],
[
-89.69690068665123,
39.974719970145024
],
[
-89.57676162883232,
39.97596609462943
],
[
-89.48489058461784,
39.97596609462943
],
[
-89.40538679635533,
39.91739824386258
],
[
-89.21811120622584,
39.91615211937818
],
[
-89.21811120622584,
39.8127237871729
],
[
-89.24814597068057,
39.82518503201691
],
[
-89.30468199788947,
39.77534005264087
],
[
-89.42658780655867,
39.74667918949965
],
[
-89.42658780655867,
39.68437296527961
],
[
-89.479590332067,
39.68437296527961
],
[
-89.479590332067,
39.64200473280997
],
[
-89.53435960842563,
39.64200473280997
],
[
-89.53435960842563,
39.613343869668746
],
[
-89.53259285757535,
39.52486903127628
],
[
-89.70043418835179,
39.52362290679188
],
[
-89.92481154633712,
39.52237678230748
],
[
-89.99371482949797,
39.78530904851608
],
[
-89.99371482949797,
39.872537762424145
],
[
-89.99371482949797,
39.90119862556537
]
]
],
"type": "Polygon"
},
"id": 64,
"properties": {
"Clinton_Trump": [
40907,
49944
],
"center_lon_lat": [
-89.60591301786191,
39.74917143846845
],
"county_name": "Sangamon",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.21811120622584,
39.8127237871729
],
[
-89.14214091966387,
39.800262542328895
],
[
-89.1403741688136,
39.65571210213838
],
[
-89.02553536354552,
39.654465977653985
],
[
-89.02553536354552,
39.34667323000694
],
[
-89.1403741688136,
39.34916547897575
],
[
-89.53082610672509,
39.34916547897575
],
[
-89.53259285757535,
39.52486903127628
],
[
-89.53435960842563,
39.613343869668746
],
[
-89.53435960842563,
39.64200473280997
],
[
-89.479590332067,
39.64200473280997
],
[
-89.479590332067,
39.68437296527961
],
[
-89.42658780655867,
39.68437296527961
],
[
-89.42658780655867,
39.74667918949965
],
[
-89.30468199788947,
39.77534005264087
],
[
-89.24814597068057,
39.82518503201691
],
[
-89.21811120622584,
39.8127237871729
]
]
],
"type": "Polygon"
},
"id": 65,
"properties": {
"Clinton_Trump": [
3992,
10543
],
"center_lon_lat": [
-89.27994748598557,
39.58592913101192
],
"county_name": "Christian",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.07496634986823,
41.334241782626464
],
[
-91.07319959901795,
41.334241782626464
],
[
-90.43363579121724,
41.32801116020446
],
[
-90.4371692929178,
41.151061483419525
],
[
-90.43893604376808,
41.06383276951146
],
[
-90.78521921042261,
41.06881726744906
],
[
-90.95129379034876,
41.070063391933466
],
[
-90.95129379034876,
41.072555640902266
],
[
-90.9565940428996,
41.1111854999187
],
[
-90.997229312456,
41.16352272826354
],
[
-91.04139808371295,
41.16601497723234
],
[
-91.08203335326935,
41.21461383212397
],
[
-91.11383486857436,
41.250751442171605
],
[
-91.07496634986823,
41.334241782626464
]
]
],
"type": "Polygon"
},
"id": 66,
"properties": {
"Clinton_Trump": [
3071,
4807
],
"center_lon_lat": [
-90.7737353298958,
41.199037276068964
],
"county_name": "Mercer",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.68630018154957,
37.79649437141216
],
[
-89.66333242049595,
37.830139732490984
],
[
-89.5944291373351,
37.95475218093108
],
[
-89.17747593666944,
37.949767682993475
],
[
-89.15097467391527,
37.944783185055876
],
[
-89.15274142476554,
37.862538969085406
],
[
-89.15450817561582,
37.60085282736121
],
[
-89.45308906931284,
37.60085282736121
],
[
-89.49902459142007,
37.570945839735586
],
[
-89.49549108971952,
37.58091483561079
],
[
-89.50609159482119,
37.62577531704923
],
[
-89.52022560162341,
37.696804412660086
],
[
-89.59089563563454,
37.7242191513169
],
[
-89.66686592219651,
37.760356761364534
],
[
-89.68630018154957,
37.79649437141216
]
]
],
"type": "Polygon"
},
"id": 67,
"properties": {
"Clinton_Trump": [
11634,
10843
],
"center_lon_lat": [
-89.41863742773242,
37.76284901033333
],
"county_name": "Jackson",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70928696134571,
37.599606702876805
],
[
-88.41247281849897,
37.60085282736121
],
[
-88.41600632019953,
37.42141090160747
],
[
-88.41953982190009,
37.422657026091876
],
[
-88.46547534400732,
37.40022678537266
],
[
-88.48667635421066,
37.34041281012141
],
[
-88.5149443678151,
37.290567830745374
],
[
-88.47254234740844,
37.22078485961892
],
[
-88.42484007445091,
37.14975576400806
],
[
-88.44427433380397,
37.09866466014763
],
[
-88.476075849109,
37.068757672522004
],
[
-88.48490960336038,
37.068757672522004
],
[
-88.49020985591122,
37.0675115480376
],
[
-88.49020985591122,
37.159724759883275
],
[
-88.71105371219599,
37.33792056115261
],
[
-88.70928696134571,
37.599606702876805
]
]
],
"type": "Polygon"
},
"id": 68,
"properties": {
"Clinton_Trump": [
375,
1678
],
"center_lon_lat": [
-88.56176326534748,
37.334182187699405
],
"county_name": "Pope",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.93721683977414,
39.878768384846154
],
[
-87.6156681850235,
39.881260633814954
],
[
-87.55736540696432,
39.86879938897094
],
[
-87.53263089506042,
39.88250675829936
],
[
-87.53263089506042,
39.66568109801359
],
[
-87.53263089506042,
39.60835937173115
],
[
-87.53086414421014,
39.47751630086905
],
[
-87.6881049698849,
39.487485296744254
],
[
-87.96018460082774,
39.48125467432225
],
[
-87.96725160422886,
39.68686521424841
],
[
-87.96901835507914,
39.791539670938086
],
[
-87.93721683977414,
39.878768384846154
]
]
],
"type": "Polygon"
},
"id": 69,
"properties": {
"Clinton_Trump": [
1793,
5645
],
"center_lon_lat": [
-87.74994124964465,
39.680011529584206
],
"county_name": "Edgar",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.93539303269625,
39.400256582836185
],
[
-90.61384437794563,
39.39651820938298
],
[
-90.590876616892,
39.19838441636323
],
[
-90.61384437794563,
39.14230881456519
],
[
-90.60324387284396,
39.117386324877174
],
[
-90.5343405896831,
38.95912851535825
],
[
-90.46720405737253,
38.96909751123346
],
[
-90.45130329972002,
38.96162076432705
],
[
-90.46720405737253,
38.96162076432705
],
[
-90.49900557267755,
38.910529660466615
],
[
-90.55554159988644,
38.87065367696578
],
[
-90.59441011859256,
38.875638174903386
],
[
-90.6562463983523,
38.92049865634182
],
[
-90.66154665090313,
38.93420602567023
],
[
-90.67568065770536,
38.98405100504627
],
[
-90.7127824255612,
39.05383397617272
],
[
-90.6809809102562,
39.10118670657996
],
[
-90.70748217301036,
39.151031685956
],
[
-90.72338293066288,
39.22455303053565
],
[
-90.73044993406398,
39.25570614264568
],
[
-90.83998848678124,
39.34044260758494
],
[
-90.93539303269625,
39.400256582836185
]
]
],
"type": "Polygon"
},
"id": 70,
"properties": {
"Clinton_Trump": [
739,
1721
],
"center_lon_lat": [
-90.69334816620814,
39.13545512990098
],
"county_name": "Calhoun",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.44953654886974,
40.27628209537006
],
[
-90.44423629631892,
40.62768919997112
],
[
-90.44423629631892,
40.71491791387919
],
[
-89.98488107524658,
40.71242566491039
],
[
-89.98841457694714,
40.62519695100232
],
[
-89.87357577167906,
40.62395082651792
],
[
-89.87180902082878,
40.51304574740624
],
[
-89.88417627678072,
40.491861631171425
],
[
-89.92481154633712,
40.43578602937338
],
[
-90.03788360075492,
40.374725929637734
],
[
-90.11915413986773,
40.235159987384826
],
[
-90.19865792813025,
40.18406888352439
],
[
-90.45130329972002,
40.18905338146199
],
[
-90.44953654886974,
40.27628209537006
]
]
],
"type": "Polygon"
},
"id": 71,
"properties": {
"Clinton_Trump": [
6133,
8492
],
"center_lon_lat": [
-90.1615561602744,
40.44949339870179
],
"county_name": "Fulton",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.14390767051415,
38.5030469540675
],
[
-89.13860741796331,
38.73607223265048
],
[
-89.13860741796331,
38.82454707104294
],
[
-88.69515295454349,
38.825793195527346
],
[
-88.69868645624405,
38.606475286272776
],
[
-88.69868645624405,
38.47438609092628
],
[
-89.14567442136443,
38.47313996644188
],
[
-89.14390767051415,
38.5030469540675
]
]
],
"type": "Polygon"
},
"id": 72,
"properties": {
"Clinton_Trump": [
4369,
11859
],
"center_lon_lat": [
-88.92041368795395,
38.64946658098461
],
"county_name": "Marion",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.69868645624405,
38.47438609092628
],
[
-88.69868645624405,
38.606475286272776
],
[
-88.56441339162289,
38.606475286272776
],
[
-88.25346524197393,
38.59899853936637
],
[
-88.14746019095725,
38.597752414881974
],
[
-88.14746019095725,
38.56909155174075
],
[
-88.15099369265779,
38.25631430615611
],
[
-88.3700707980923,
38.25506818167171
],
[
-88.70221995794459,
38.25631430615611
],
[
-88.69868645624405,
38.47438609092628
]
]
],
"type": "Polygon"
},
"id": 73,
"properties": {
"Clinton_Trump": [
1048,
6967
],
"center_lon_lat": [
-88.42484007445091,
38.43077173397224
],
"county_name": "Wayne",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.2393312351717,
42.15419169336229
],
[
-88.20046271646558,
42.15419169336229
],
[
-88.02378763143777,
42.1529455688779
],
[
-88.00435337208471,
42.1529455688779
],
[
-87.94605059402552,
42.1529455688779
],
[
-87.75877500389603,
42.15169944439349
],
[
-87.74110749539325,
42.12802307918987
],
[
-87.74110749539325,
42.12802307918987
],
[
-87.74110749539325,
42.12802307918987
],
[
-87.68987172073518,
42.081916473267036
],
[
-87.68280471733407,
42.07568585084503
],
[
-87.66867071053184,
42.0283331204378
],
[
-87.63510244437656,
41.93238153513892
],
[
-87.6245019392749,
41.9062129209665
],
[
-87.6245019392749,
41.903720671997704
],
[
-87.61213468332295,
41.892505551638095
],
[
-87.61390143417321,
41.883782680247286
],
[
-87.6156681850235,
41.87007531091888
],
[
-87.61036793247267,
41.845152821230855
],
[
-87.58916692226933,
41.81026133566763
],
[
-87.58209991886821,
41.799046215308024
],
[
-87.56089890866487,
41.7654008542292
],
[
-87.53086414421014,
41.74795511144758
],
[
-87.52379714080904,
41.723032621759565
],
[
-87.52379714080904,
41.70807912794675
],
[
-87.52556389165932,
41.529883326677414
],
[
-87.52556389165932,
41.47131547591057
],
[
-87.78704301750048,
41.47006935142617
],
[
-87.79057651920104,
41.52863720219302
],
[
-87.81177752940438,
41.55854418981864
],
[
-87.90894882616968,
41.55729806533424
],
[
-87.91248232787024,
41.6432806547579
],
[
-88.0290878839886,
41.66944926893032
],
[
-88.0290878839886,
41.68440276274313
],
[
-88.00435337208471,
41.685648887227536
],
[
-87.98315236188137,
41.685648887227536
],
[
-87.9796188601808,
41.68689501171194
],
[
-87.96725160422886,
41.68689501171194
],
[
-87.95488434827692,
41.69312563413394
],
[
-87.94958409572608,
41.694371758618345
],
[
-87.94251709232496,
41.69811013207155
],
[
-87.94075034147468,
41.70309463000915
],
[
-87.91424907872052,
41.71929424830636
],
[
-87.9160158295708,
41.7716314766512
],
[
-87.91778258042108,
41.790323343917215
],
[
-87.91778258042108,
41.79530784185482
],
[
-87.92131608212163,
41.9062129209665
],
[
-87.92131608212163,
41.94110440652973
],
[
-87.93898359062442,
41.99344163487457
],
[
-88.17396145371141,
41.98721101245257
],
[
-88.2640657470756,
41.985964887968166
],
[
-88.2640657470756,
42.014625751109385
],
[
-88.2640657470756,
42.06571685496983
],
[
-88.2393312351717,
42.09188546914225
],
[
-88.2393312351717,
42.15419169336229
]
]
],
"type": "Polygon"
},
"id": 74,
"properties": {
"Clinton_Trump": [
1611946,
453287
],
"center_lon_lat": [
-87.89393144394232,
41.81213052239423
],
"county_name": "Cook",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.50605355733612,
40.2002685018216
],
[
-90.91242527164265,
40.19279175491519
],
[
-90.91419202249293,
40.10431691652273
],
[
-90.91595877334319,
39.84512302376733
],
[
-90.91595877334319,
39.75664818537486
],
[
-91.36471348931386,
39.75789430985926
],
[
-91.36117998761331,
39.78655517300048
],
[
-91.39828175546916,
39.820200534079305
],
[
-91.43538352332499,
39.84512302376733
],
[
-91.42831651992388,
39.90742924798737
],
[
-91.43715027417527,
39.9448129825194
],
[
-91.43715027417527,
39.946059107003805
],
[
-91.48485254713279,
40.01833432709906
],
[
-91.49721980308473,
40.07814830235031
],
[
-91.51135380988696,
40.170361514195974
],
[
-91.50605355733612,
40.2002685018216
]
]
],
"type": "Polygon"
},
"id": 75,
"properties": {
"Clinton_Trump": [
7676,
22790
],
"center_lon_lat": [
-91.2118895407648,
39.97845834359823
],
"county_name": "Adams",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.2640657470756,
41.985964887968166
],
[
-88.17396145371141,
41.98721101245257
],
[
-87.93898359062442,
41.99344163487457
],
[
-87.92131608212163,
41.94110440652973
],
[
-87.92131608212163,
41.9062129209665
],
[
-87.91778258042108,
41.79530784185482
],
[
-87.91778258042108,
41.790323343917215
],
[
-87.9160158295708,
41.7716314766512
],
[
-87.91424907872052,
41.71929424830636
],
[
-87.94075034147468,
41.70309463000915
],
[
-87.94251709232496,
41.69811013207155
],
[
-87.94958409572608,
41.694371758618345
],
[
-87.95488434827692,
41.69312563413394
],
[
-87.96725160422886,
41.68689501171194
],
[
-87.9796188601808,
41.68689501171194
],
[
-87.98315236188137,
41.685648887227536
],
[
-88.00435337208471,
41.685648887227536
],
[
-88.0290878839886,
41.68440276274313
],
[
-88.03085463483887,
41.72801711969717
],
[
-88.14922694180751,
41.725524870728364
],
[
-88.26229899622533,
41.72427874624397
],
[
-88.26229899622533,
41.81150746015203
],
[
-88.26229899622533,
41.81150746015203
],
[
-88.26229899622533,
41.88253655576288
],
[
-88.26229899622533,
41.8987361740601
],
[
-88.2640657470756,
41.985964887968166
]
]
],
"type": "Polygon"
},
"id": 76,
"properties": {
"Clinton_Trump": [
228622,
166415
],
"center_lon_lat": [
-88.08915741289806,
41.83892219880885
],
"county_name": "DuPage",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.78521921042261,
41.453869733128954
],
[
-90.70041516960926,
41.45511585761336
],
[
-90.61737787964618,
41.48502284523898
],
[
-90.57144235753894,
41.51742208183341
],
[
-90.51313957947977,
41.51991433080221
],
[
-90.46013705397142,
41.52365270425541
],
[
-90.41596828271446,
41.56352868775624
],
[
-90.36296575720611,
41.579728306053454
],
[
-90.33823124530223,
41.59842017331947
],
[
-90.33646449445195,
41.66446477099272
],
[
-90.31349673339832,
41.694371758618345
],
[
-90.31172998254804,
41.72801711969717
],
[
-90.30996323169776,
41.74172448902558
],
[
-90.24812695193803,
41.77910822355761
],
[
-90.24105994853691,
41.78284659701081
],
[
-90.22869269258497,
41.67443376686793
],
[
-90.15978940942412,
41.6432806547579
],
[
-90.18452392132802,
41.58471280399106
],
[
-90.19512442642969,
41.54109844703702
],
[
-90.33293099275139,
41.5149298328646
],
[
-90.43186904036696,
41.45760810658216
],
[
-90.43363579121724,
41.32801116020446
],
[
-91.07319959901795,
41.334241782626464
],
[
-91.07143284816767,
41.34047240504847
],
[
-91.06436584476657,
41.36913326818969
],
[
-91.02726407691073,
41.42396274550333
],
[
-90.96719454800126,
41.43019336792534
],
[
-90.92479252759459,
41.42396274550333
],
[
-90.8664897495354,
41.448885235191355
],
[
-90.78521921042261,
41.453869733128954
]
]
],
"type": "Polygon"
},
"id": 77,
"properties": {
"Clinton_Trump": [
32298,
26998
],
"center_lon_lat": [
-90.61649450422104,
41.555428878607636
],
"county_name": "Rock Island",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.90894882616968,
38.85071568521536
],
[
-87.5343976459107,
38.851961809699766
],
[
-87.52203038995876,
38.82703932001175
],
[
-87.49906262890514,
38.75725634888529
],
[
-87.54499815101236,
38.67750438188364
],
[
-87.62096843757433,
38.638874522867205
],
[
-87.63863594607712,
38.58778341900676
],
[
-87.64923645117878,
38.56659930277195
],
[
-87.91248232787024,
38.57033767622515
],
[
-87.90894882616968,
38.85071568521536
]
]
],
"type": "Polygon"
},
"id": 78,
"properties": {
"Clinton_Trump": [
1290,
4521
],
"center_lon_lat": [
-87.70577247838769,
38.70928055623585
],
"county_name": "Lawrence",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.21811120622584,
39.91615211937818
],
[
-89.14390767051415,
39.91739824386258
],
[
-89.14567442136443,
40.048241314724685
],
[
-88.74638872920156,
40.05447193714669
],
[
-88.74638872920156,
39.791539670938086
],
[
-88.81352526151213,
39.741694691562046
],
[
-88.81175851066185,
39.65321985316958
],
[
-89.02553536354552,
39.654465977653985
],
[
-89.1403741688136,
39.65571210213838
],
[
-89.14214091966387,
39.800262542328895
],
[
-89.21811120622584,
39.8127237871729
],
[
-89.21811120622584,
39.91615211937818
]
]
],
"type": "Polygon"
},
"id": 79,
"properties": {
"Clinton_Trump": [
18343,
26866
],
"center_lon_lat": [
-88.9822499677137,
39.85384589515813
],
"county_name": "Macon",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.6014961407362,
40.31989645232409
],
[
-89.26404672833307,
40.324880950261694
],
[
-89.26404672833307,
40.28126659330766
],
[
-89.14920792306499,
40.28251271779206
],
[
-89.14920792306499,
40.28126659330766
],
[
-89.14567442136443,
40.048241314724685
],
[
-89.14390767051415,
39.91739824386258
],
[
-89.21811120622584,
39.91615211937818
],
[
-89.40538679635533,
39.91739824386258
],
[
-89.48489058461784,
39.97596609462943
],
[
-89.57676162883232,
39.97596609462943
],
[
-89.5785283796826,
40.091855671678715
],
[
-89.6014961407362,
40.12176265930434
],
[
-89.6014961407362,
40.31989645232409
]
]
],
"type": "Polygon"
},
"id": 80,
"properties": {
"Clinton_Trump": [
3313,
8181
],
"center_lon_lat": [
-89.37270190562518,
40.12051653481994
],
"county_name": "Logan",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.99021936528248,
38.25880655512491
],
[
-87.95135084657636,
38.28995966723494
],
[
-87.97608535848025,
38.399618621862224
],
[
-87.95488434827692,
38.57033767622515
],
[
-87.91248232787024,
38.57033767622515
],
[
-87.64923645117878,
38.56659930277195
],
[
-87.66160370713074,
38.54043068859953
],
[
-87.65453670372962,
38.51176982545831
],
[
-87.71460623263908,
38.47937058886388
],
[
-87.74110749539325,
38.43575623190985
],
[
-87.75170800049492,
38.41831048912824
],
[
-87.77997601409938,
38.370957758721
],
[
-87.83297853960772,
38.30740541001655
],
[
-87.90894882616968,
38.26877555100012
],
[
-87.96901835507914,
38.236376314405696
],
[
-87.99021936528248,
38.25880655512491
]
]
],
"type": "Polygon"
},
"id": 81,
"properties": {
"Clinton_Trump": [
1151,
4047
],
"center_lon_lat": [
-87.81972790823063,
38.40335699531542
],
"county_name": "Wabash",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.49721980308473,
40.248867356713234
],
[
-91.49368630138417,
40.270051472948055
],
[
-91.46895178948027,
40.322388701292894
],
[
-91.41948276567248,
40.37846430309094
],
[
-91.37354724356526,
40.39840229484135
],
[
-91.38061424696637,
40.45198564767059
],
[
-91.36824699101442,
40.51055349843744
],
[
-91.3947482537686,
40.53422986364105
],
[
-91.37354724356526,
40.58282871853269
],
[
-91.33997897740997,
40.613981830642714
],
[
-91.2481079331955,
40.63890432033074
],
[
-91.18627165343577,
40.637658195846335
],
[
-91.18450490258549,
40.637658195846335
],
[
-91.02196382435989,
40.63516594687753
],
[
-90.90359151739125,
40.63890432033074
],
[
-90.90889176994209,
40.28375884227646
],
[
-90.91242527164265,
40.19279175491519
],
[
-91.50605355733612,
40.2002685018216
],
[
-91.49721980308473,
40.248867356713234
]
]
],
"type": "Polygon"
},
"id": 82,
"properties": {
"Clinton_Trump": [
2139,
6430
],
"center_lon_lat": [
-91.20482253736368,
40.415848037622965
],
"county_name": "Hancock",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.26934698088391,
40.5940438388923
],
[
-89.13507391626275,
40.596536087861104
],
[
-89.04496962289858,
40.62768919997112
],
[
-88.98490009398911,
40.66507293450316
],
[
-88.98843359568967,
40.75230164841122
],
[
-88.93013081763048,
40.75354777289562
],
[
-88.58561440182623,
40.757286146348825
],
[
-88.57501389672457,
40.616474079611514
],
[
-88.46017509145648,
40.61772020409592
],
[
-88.46017509145648,
40.39840229484135
],
[
-88.46017509145648,
40.28126659330766
],
[
-88.57501389672457,
40.28126659330766
],
[
-88.91953031252882,
40.28251271779206
],
[
-89.14920792306499,
40.28126659330766
],
[
-89.14920792306499,
40.28251271779206
],
[
-89.26404672833307,
40.28126659330766
],
[
-89.26404672833307,
40.324880950261694
],
[
-89.26934698088391,
40.5940438388923
]
]
],
"type": "Polygon"
},
"id": 83,
"properties": {
"Clinton_Trump": [
36196,
37237
],
"center_lon_lat": [
-88.8647610361702,
40.51927636982825
],
"county_name": "McLean",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.96018460082774,
39.48125467432225
],
[
-87.6881049698849,
39.487485296744254
],
[
-87.53086414421014,
39.47751630086905
],
[
-87.53086414421014,
39.47003955396264
],
[
-87.53086414421014,
39.347919354491346
],
[
-87.57856641716765,
39.34044260758494
],
[
-87.59976742737099,
39.31302786892812
],
[
-87.59446717482017,
39.25944451609888
],
[
-87.59270042396989,
39.24822939573927
],
[
-87.57679966631738,
39.210845661207244
],
[
-87.6404026969274,
39.16723130425321
],
[
-87.63863594607712,
39.157262308378
],
[
-87.6563034545799,
39.17221580219081
],
[
-87.95135084657636,
39.17470805115961
],
[
-88.00788687378527,
39.17470805115961
],
[
-88.01318712633609,
39.37907246660137
],
[
-88.01495387718637,
39.48125467432225
],
[
-87.96018460082774,
39.48125467432225
]
]
],
"type": "Polygon"
},
"id": 84,
"properties": {
"Clinton_Trump": [
1877,
5622
],
"center_lon_lat": [
-87.77290901069826,
39.32237380256113
],
"county_name": "Clark",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70752021049543,
42.493137553119354
],
[
-88.507877364414,
42.49438367760376
],
[
-88.304701016632,
42.49562980208815
],
[
-88.2163634741181,
42.49562980208815
],
[
-88.20046271646558,
42.49562980208815
],
[
-88.19869596561531,
42.41587783508649
],
[
-88.19869596561531,
42.32864912117843
],
[
-88.19869596561531,
42.24142040727036
],
[
-88.19869596561531,
42.24142040727036
],
[
-88.20046271646558,
42.15419169336229
],
[
-88.2393312351717,
42.15419169336229
],
[
-88.25876549452477,
42.15419169336229
],
[
-88.3541700404398,
42.15419169336229
],
[
-88.39480530999619,
42.15419169336229
],
[
-88.5891479035268,
42.1529455688779
],
[
-88.70575345964515,
42.1529455688779
],
[
-88.70752021049543,
42.493137553119354
]
]
],
"type": "Polygon"
},
"id": 85,
"properties": {
"Clinton_Trump": [
60803,
71612
],
"center_lon_lat": [
-88.45310808805537,
42.32428768548303
],
"county_name": "McHenry",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.3399979961525,
38.38715737701821
],
[
-90.28876222149444,
38.43824848087865
],
[
-90.27109471299165,
38.495570207161094
],
[
-90.26049420788998,
38.51800044788031
],
[
-90.03611684990464,
38.30865153450095
],
[
-89.90361053613378,
38.297436414141345
],
[
-89.89831028358294,
38.22017669610848
],
[
-90.03611684990464,
38.22266894507729
],
[
-90.03611684990464,
38.13544023116922
],
[
-90.20572493153136,
38.08808750076198
],
[
-90.21809218748331,
38.09431812318399
],
[
-90.25166045363859,
38.12671735977841
],
[
-90.25166045363859,
38.12671735977841
],
[
-90.32233048764972,
38.18154683709206
],
[
-90.35059850125417,
38.218930571624085
],
[
-90.36296575720611,
38.236376314405696
],
[
-90.37179951145751,
38.323605028313764
],
[
-90.34883175040389,
38.377188381143
],
[
-90.34176474700278,
38.384665128049406
],
[
-90.3399979961525,
38.38715737701821
]
]
],
"type": "Polygon"
},
"id": 86,
"properties": {
"Clinton_Trump": [
5535,
12629
],
"center_lon_lat": [
-90.13505489752023,
38.30304397432114
],
"county_name": "Monroe",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.1403741688136,
39.34916547897575
],
[
-89.02553536354552,
39.34667323000694
],
[
-89.02553536354552,
39.654465977653985
],
[
-88.81175851066185,
39.65321985316958
],
[
-88.80999175981157,
39.580944633074324
],
[
-88.71812071559711,
39.57969850858992
],
[
-88.71812071559711,
39.52113065782308
],
[
-88.64215042903514,
39.52113065782308
],
[
-88.58561440182623,
39.447609313243426
],
[
-88.47077559655816,
39.447609313243426
],
[
-88.47077559655816,
39.37533409314817
],
[
-88.47077559655816,
39.21583015914484
],
[
-88.80645825811101,
39.21707628362925
],
[
-89.11740640775997,
39.21707628362925
],
[
-89.1403741688136,
39.21832240811365
],
[
-89.1403741688136,
39.34916547897575
]
]
],
"type": "Polygon"
},
"id": 87,
"properties": {
"Clinton_Trump": [
2288,
8229
],
"center_lon_lat": [
-88.80557488268587,
39.435148068399414
],
"county_name": "Shelby",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.40185329465477,
42.50061430002576
],
[
-89.3665182776492,
42.50061430002576
],
[
-89.0432028720483,
42.49562980208815
],
[
-88.99373384824051,
42.49562980208815
],
[
-88.94073132273216,
42.49562980208815
],
[
-88.94073132273216,
42.15169944439349
],
[
-89.09267189585609,
42.15045331990909
],
[
-89.17394243496888,
42.15045331990909
],
[
-89.17394243496888,
42.20403667273833
],
[
-89.39655304210393,
42.20154442376953
],
[
-89.39831979295421,
42.30746500494361
],
[
-89.40185329465477,
42.50061430002576
]
]
],
"type": "Polygon"
},
"id": 88,
"properties": {
"Clinton_Trump": [
55713,
55624
],
"center_lon_lat": [
-89.17129230869347,
42.325533809967425
],
"county_name": "Winnebago",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.41247281849897,
37.60085282736121
],
[
-88.37537105064312,
37.599606702876805
],
[
-88.17926170626225,
37.599606702876805
],
[
-88.13155943330473,
37.57468421318879
],
[
-88.13155943330473,
37.573438088704386
],
[
-88.07325665524556,
37.52857760726595
],
[
-88.06618965184444,
37.50490124206234
],
[
-88.06265615014388,
37.488701623765124
],
[
-88.15806069605891,
37.46751750753031
],
[
-88.28173325557839,
37.4525640137175
],
[
-88.35947029299062,
37.40521128331026
],
[
-88.41600632019953,
37.42141090160747
],
[
-88.41247281849897,
37.60085282736121
]
]
],
"type": "Polygon"
},
"id": 89,
"properties": {
"Clinton_Trump": [
420,
1653
],
"center_lon_lat": [
-88.2393312351717,
37.50303205533574
],
"county_name": "Hardin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.46017509145648,
40.28126659330766
],
[
-88.46017509145648,
40.39840229484135
],
[
-88.34710303703868,
40.39840229484135
],
[
-87.93368333807358,
40.39964841932575
],
[
-87.94251709232496,
40.22519099150962
],
[
-87.93721683977414,
39.878768384846154
],
[
-88.34886978788896,
39.878768384846154
],
[
-88.46194184230676,
39.878768384846154
],
[
-88.46370859315704,
40.141700651054755
],
[
-88.46017509145648,
40.28126659330766
]
]
],
"type": "Polygon"
},
"id": 90,
"properties": {
"Clinton_Trump": [
50137,
33368
],
"center_lon_lat": [
-88.19869596561531,
40.139208402085956
],
"county_name": "Champaign",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.70396769005235,
38.41581824015943
],
[
-89.61386339668816,
38.471893841957474
],
[
-89.48312383376756,
38.46815546850427
],
[
-89.35238427084698,
38.51800044788031
],
[
-89.14390767051415,
38.5030469540675
],
[
-89.14567442136443,
38.47313996644188
],
[
-89.14744117221471,
38.212699949202076
],
[
-89.59266238648482,
38.218930571624085
],
[
-89.70220093920207,
38.218930571624085
],
[
-89.70396769005235,
38.41581824015943
]
]
],
"type": "Polygon"
},
"id": 91,
"properties": {
"Clinton_Trump": [
1448,
5571
],
"center_lon_lat": [
-89.42393768028325,
38.36535019854119
],
"county_name": "Washington",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.24105994853691,
41.78284659701081
],
[
-90.17922366877718,
41.81150746015203
],
[
-90.18099041962746,
41.84390669674646
],
[
-90.16508966197496,
41.883782680247286
],
[
-90.15802265857384,
41.92988928617012
],
[
-90.12798789411912,
41.92864316168572
],
[
-89.68453343069929,
41.92988928617012
],
[
-89.62799740349038,
41.9012284230289
],
[
-89.63153090519094,
41.585958928475456
],
[
-89.8612085157271,
41.58471280399106
],
[
-90.18452392132802,
41.58471280399106
],
[
-90.15978940942412,
41.6432806547579
],
[
-90.22869269258497,
41.67443376686793
],
[
-90.24105994853691,
41.78284659701081
]
]
],
"type": "Polygon"
},
"id": 92,
"properties": {
"Clinton_Trump": [
11035,
12615
],
"center_lon_lat": [
-89.93452867601366,
41.757301045080595
],
"county_name": "Whiteside",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.04496962289858,
37.3304438142462
],
[
-89.04143612119802,
37.597114453908006
],
[
-88.70928696134571,
37.599606702876805
],
[
-88.71105371219599,
37.33792056115261
],
[
-88.90892980742714,
37.33542831218381
],
[
-88.93013081763048,
37.30302907558938
],
[
-89.04496962289858,
37.29430620419858
],
[
-89.04496962289858,
37.3304438142462
]
]
],
"type": "Polygon"
},
"id": 93,
"properties": {
"Clinton_Trump": [
1142,
4649
],
"center_lon_lat": [
-88.87712829212214,
37.446956453537695
],
"county_name": "Johnson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.25169849112365,
41.1149238733719
],
[
-88.24109798602198,
41.12987736718471
],
[
-88.24463148772254,
41.20215258727997
],
[
-88.01142037548581,
41.20589096073317
],
[
-88.01495387718637,
41.29311967464123
],
[
-87.52733064250958,
41.29810417257884
],
[
-87.52733064250958,
41.16601497723234
],
[
-87.52733064250958,
41.02520291049503
],
[
-87.52733064250958,
41.01024941668222
],
[
-88.13155943330473,
40.99778817183821
],
[
-88.2481649894231,
40.99529592286941
],
[
-88.25169849112365,
41.1149238733719
]
]
],
"type": "Polygon"
},
"id": 94,
"properties": {
"Clinton_Trump": [
18971,
25129
],
"center_lon_lat": [
-87.88951456681662,
41.146700047724124
],
"county_name": "Kankakee",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.8612085157271,
41.58471280399106
],
[
-89.63153090519094,
41.585958928475456
],
[
-89.16687543156777,
41.585958928475456
],
[
-89.1651086807175,
41.31056541742285
],
[
-89.33648351319448,
41.30184254603204
],
[
-89.35768452339782,
41.23330569938999
],
[
-89.46722307611506,
41.23455182387439
],
[
-89.46722307611506,
41.148569234450726
],
[
-89.63683115774177,
41.148569234450726
],
[
-89.63859790859205,
41.23455182387439
],
[
-89.85767501402655,
41.23455182387439
],
[
-89.8612085157271,
41.58471280399106
]
]
],
"type": "Polygon"
},
"id": 95,
"properties": {
"Clinton_Trump": [
6029,
9281
],
"center_lon_lat": [
-89.5131585982223,
41.36726408146309
],
"county_name": "Bureau",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.25167947238113,
39.0276653620003
],
[
-89.25167947238113,
39.21832240811365
],
[
-89.1403741688136,
39.21832240811365
],
[
-89.11740640775997,
39.21707628362925
],
[
-88.80645825811101,
39.21707628362925
],
[
-88.80822500896129,
38.91177578495101
],
[
-88.69338620369321,
38.91426803391982
],
[
-88.69515295454349,
38.825793195527346
],
[
-89.13860741796331,
38.82454707104294
],
[
-89.13860741796331,
38.73607223265048
],
[
-89.25521297408167,
38.74230285507248
],
[
-89.25697972493195,
38.91676028288862
],
[
-89.25874647578223,
38.99900449885908
],
[
-89.25167947238113,
39.0276653620003
]
]
],
"type": "Polygon"
},
"id": 96,
"properties": {
"Clinton_Trump": [
1819,
7372
],
"center_lon_lat": [
-88.97606633973771,
38.97719732038206
],
"county_name": "Fayette",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.20046271646558,
42.49562980208815
],
[
-87.89834832106801,
42.493137553119354
],
[
-87.80117702430272,
42.49189142863495
],
[
-87.80294377515298,
42.4208623330241
],
[
-87.82061128365577,
42.36104835777285
],
[
-87.834745290458,
42.301234382521606
],
[
-87.83297853960772,
42.297496009068404
],
[
-87.79941027345244,
42.207775046191536
],
[
-87.79941027345244,
42.205282797222736
],
[
-87.75877500389603,
42.15169944439349
],
[
-87.94605059402552,
42.1529455688779
],
[
-88.00435337208471,
42.1529455688779
],
[
-88.02378763143777,
42.1529455688779
],
[
-88.20046271646558,
42.15419169336229
],
[
-88.19869596561531,
42.24142040727036
],
[
-88.19869596561531,
42.24142040727036
],
[
-88.19869596561531,
42.32864912117843
],
[
-88.19869596561531,
42.41587783508649
],
[
-88.20046271646558,
42.49562980208815
]
]
],
"type": "Polygon"
},
"id": 97,
"properties": {
"Clinton_Trump": [
171095,
109767
],
"center_lon_lat": [
-87.9796188601808,
42.32366462324082
],
"county_name": "Lake",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.35413200295473,
40.12425490827314
],
[
-90.20572493153136,
40.15540802038316
],
[
-90.19865792813025,
40.18406888352439
],
[
-90.11915413986773,
40.235159987384826
],
[
-90.03788360075492,
40.374725929637734
],
[
-89.92481154633712,
40.43578602937338
],
[
-89.7163349460043,
40.43578602937338
],
[
-89.71456819515402,
40.31865032783969
],
[
-89.6014961407362,
40.31989645232409
],
[
-89.6014961407362,
40.12176265930434
],
[
-89.63683115774177,
40.15416189589877
],
[
-89.7481364613093,
40.126747157241944
],
[
-89.96898031759407,
40.141700651054755
],
[
-89.99371482949797,
40.10805528997593
],
[
-90.13328814666995,
40.06194868405309
],
[
-90.28699547064416,
40.05447193714669
],
[
-90.35413200295473,
40.12425490827314
]
]
],
"type": "Polygon"
},
"id": 98,
"properties": {
"Clinton_Trump": [
2014,
4058
],
"center_lon_lat": [
-89.97781407184547,
40.24512898326003
],
"county_name": "Mason",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.5891479035268,
42.1529455688779
],
[
-88.39480530999619,
42.15419169336229
],
[
-88.3541700404398,
42.15419169336229
],
[
-88.25876549452477,
42.15419169336229
],
[
-88.2393312351717,
42.15419169336229
],
[
-88.2393312351717,
42.09188546914225
],
[
-88.2640657470756,
42.06571685496983
],
[
-88.2640657470756,
42.014625751109385
],
[
-88.2640657470756,
41.985964887968166
],
[
-88.26229899622533,
41.8987361740601
],
[
-88.26229899622533,
41.88253655576288
],
[
-88.26229899622533,
41.81150746015203
],
[
-88.26229899622533,
41.81150746015203
],
[
-88.26229899622533,
41.72427874624397
],
[
-88.37537105064312,
41.72178649727516
],
[
-88.40540581509786,
41.72178649727516
],
[
-88.60328191032902,
41.71929424830636
],
[
-88.60151515947874,
42.01711800007819
],
[
-88.5891479035268,
42.06571685496983
],
[
-88.5891479035268,
42.1529455688779
]
]
],
"type": "Polygon"
},
"id": 99,
"properties": {
"Clinton_Trump": [
103665,
82734
],
"center_lon_lat": [
-88.42130657275035,
41.93674297083433
],
"county_name": "Kane",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.83647400382321,
42.50435267347896
],
[
-89.49372433886924,
42.50186042451016
],
[
-89.40185329465477,
42.50061430002576
],
[
-89.39831979295421,
42.30746500494361
],
[
-89.39655304210393,
42.20154442376953
],
[
-89.68806693239983,
42.19905217480073
],
[
-89.89654353273266,
42.19655992583193
],
[
-89.91951129378629,
42.19655992583193
],
[
-89.9265782971874,
42.505598797963366
],
[
-89.9265782971874,
42.505598797963366
],
[
-89.83647400382321,
42.50435267347896
]
]
],
"type": "Polygon"
},
"id": 100,
"properties": {
"Clinton_Trump": [
7768,
11083
],
"center_lon_lat": [
-89.66156566964567,
42.351079361897646
],
"county_name": "Stephenson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.74638872920156,
40.05447193714669
],
[
-88.74638872920156,
40.09808629410072
],
[
-88.57501389672457,
40.28126659330766
],
[
-88.46017509145648,
40.28126659330766
],
[
-88.46370859315704,
40.141700651054755
],
[
-88.46194184230676,
39.878768384846154
],
[
-88.46194184230676,
39.80150866681329
],
[
-88.47430909825871,
39.791539670938086
],
[
-88.74638872920156,
39.791539670938086
],
[
-88.74638872920156,
40.05447193714669
]
]
],
"type": "Polygon"
},
"id": 101,
"properties": {
"Clinton_Trump": [
2645,
5634
],
"center_lon_lat": [
-88.60328191032902,
40.03640313212287
],
"county_name": "Piatt",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
}
],
"pitch": 0,
"zoom": 5.61
},
"title": "Presidential Election in Illinois, 2016",
"width": 600
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_py2js_update": {},
"_view_count": 0
}
},
"25cf2d2dd61a4e6bac314111a2278a47": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "y",
"marker": {
"color": [
"#6175c1",
"#B0122C"
]
},
"type": "bar",
"uid": "15a14714-a9c9-11e8-9460-e377df750c87",
"x": [
"Clinton",
"Trump"
],
"y": [
1789,
3785
]
}
],
"_js2py_pointsCallback": {},
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_layout": {
"bargap": 0.01,
"font": {
"family": "Balto"
},
"height": 400,
"hovermode": "x",
"margin": {
"b": 50,
"l": 50,
"r": 50,
"t": 100
},
"plot_bgcolor": "rgb(240,240,240)",
"title": "Marshall County",
"width": 300,
"xaxis": {
"showgrid": false,
"showline": true,
"showticklabels": true,
"zeroline": false
},
"yaxis": {
"gridcolor": "white",
"showline": false
}
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_py2js_update": {},
"_view_count": 0
}
},
"26b3b0c67eab4f52abffb9dd3280ffbd": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "y",
"marker": {
"color": [
"rgba(97,117,193, 0.8)",
"rgba(176,18,44, 0.8)"
]
},
"type": "bar",
"uid": "51f3efe4-a9cc-11e8-834e-e377df750c87",
"x": [
"Clinton",
"Trump"
],
"y": [
1789,
3785
]
}
],
"_js2py_pointsCallback": {},
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_layout": {
"bargap": 0.01,
"font": {
"family": "Balto"
},
"height": 400,
"hovermode": "x",
"margin": {
"b": 50,
"l": 50,
"r": 50,
"t": 100
},
"plot_bgcolor": "rgb(240,240,240)",
"title": "Marshall County",
"width": 300,
"xaxis": {
"showgrid": false,
"showline": true,
"showticklabels": true,
"zeroline": false
},
"yaxis": {
"gridcolor": "white",
"showline": false
}
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_py2js_update": {},
"_view_count": 0
}
},
"271e066773014bd0a0c61af8c303ffab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f11376451527498ba4137c14fa0f06f5",
"IPY_MODEL_f6176ef2b55f447fb5f7143785a74b69"
],
"layout": "IPY_MODEL_0bf10959d8844dbd8117eee7fc13ff2b"
}
},
"28f47f2277f143d8af6126953ce97734": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_js2py_layoutDelta": {},
"_js2py_pointsCallback": {},
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_traceDeltas": {},
"_js2py_update": {},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_py2js_update": {}
}
},
"2b08e1db89714edba0c980a0ea365d62": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "y",
"marker": {
"color": [
"#6175c1",
"#B0122C"
]
},
"type": "bar",
"uid": "1c5b98d8-a978-11e8-8e6d-e377df750c87",
"x": [
"Clinton",
"Trump"
],
"y": [
20466,
19091
]
}
],
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_last_layout_edit_id": 3,
"_last_trace_edit_id": 3,
"_layout": {
"bargap": 0.01,
"height": 400,
"hovermode": "x",
"margin": {
"b": 50,
"l": 50,
"r": 50,
"t": 100
},
"plot_bgcolor": "rgb(240,240,240)",
"title": "DeKalb County",
"width": 300,
"xaxis": {
"showgrid": false,
"showline": true,
"showticklabels": true,
"zeroline": false
},
"yaxis": {
"gridcolor": "white",
"showline": false
}
},
"_py2js_addTraces": {},
"_py2js_animate": {},
"_py2js_deleteTraces": {},
"_py2js_moveTraces": {},
"_py2js_relayout": {},
"_py2js_removeLayoutProps": {},
"_py2js_removeTraceProps": {},
"_py2js_restyle": {},
"_view_count": 0
}
},
"2b78bba86bbc447eb4851ede7f7f7584": {
"model_module": "plotlywidget",
"model_module_version": "^0.2.1",
"model_name": "FigureModel",
"state": {
"_data": [
{
"hoverinfo": "text",
"lat": [
41.03517190637024,
39.27502107215389,
39.765371056765666,
40.86569897649171,
38.88498410853639,
41.10433181525449,
39.261313702825476,
38.70990361847805,
38.06316501107396,
38.57968360985816,
37.993382039947505,
41.286265989977025,
37.46564832080371,
42.06384766824323,
40.848253233710096,
42.04515580097721,
40.74794021271582,
41.20713708521757,
39.97160465893403,
40.69809523333978,
40.457593207850394,
37.20396217907951,
41.59094342641306,
41.27816618082842,
39.65508903989618,
40.13235471742175,
37.73044977373891,
41.36726408146309,
38.299305600867946,
38.43949460536305,
40.165377016258375,
38.08434912730878,
42.351079361897646,
39.69870339685021,
40.931743574164955,
41.746708986963185,
38.82766238225395,
37.753503076700326,
41.46508485348857,
39.09059464846255,
39.619574492090756,
39.53109965369829,
40.02768026073207,
38.00958165824473,
40.533606801398854,
40.17970744782898,
41.890636364911494,
37.744780205309524,
39.319881553592325,
40.76102451980202,
39.010842681460886,
39.998396335348644,
39.26193676506768,
38.756633286643094,
42.32366462324082,
40.8526146694055,
39.06380297204793,
38.08123381609778,
39.62082061657516,
38.412702928948434,
40.74357877702042,
39.01271186818749,
37.2027160545951,
37.15847863539887,
39.74917143846845,
39.58592913101192,
41.199037276068964,
37.76284901033333,
37.334182187699405,
39.680011529584206,
39.13545512990098,
40.44949339870179,
38.64946658098461,
38.43077173397224,
41.81213052239423,
39.97845834359823,
41.83892219880885,
41.555428878607636,
38.70928055623585,
39.85384589515813,
40.12051653481994,
38.40335699531542,
40.415848037622965,
40.51927636982825,
39.32237380256113,
42.32428768548303,
38.30304397432114,
39.435148068399414,
42.325533809967425,
37.50303205533574,
40.139208402085956,
38.36535019854119,
41.757301045080595,
37.446956453537695,
41.146700047724124,
41.36726408146309,
38.97719732038206,
42.32366462324082,
40.24512898326003,
41.93674297083433,
42.351079361897646,
40.03640313212287
],
"lon": [
-89.34355051659558,
-88.2393312351717,
-88.20576296901643,
-88.58384765097595,
-89.44513869048659,
-89.81085611649416,
-89.92481154633712,
-88.10329141970028,
-88.15187706808294,
-89.42217092943297,
-88.9416146981573,
-88.41865644647496,
-89.27641398428503,
-89.99989845747395,
-90.61384437794563,
-89.31439912756599,
-87.82856166248203,
-89.31528250299114,
-90.71366580098635,
-88.19692921476502,
-90.6765640331305,
-89.0953220221315,
-88.42749020072634,
-88.87801166754727,
-90.47250430992337,
-90.55642497531159,
-88.93101419305563,
-90.14742215347218,
-88.92483056507966,
-89.98134757354603,
-88.86211090989478,
-89.35503439712241,
-90.28257859351845,
-90.26137758331512,
-90.21367531035762,
-89.28524773853641,
-89.93541205143879,
-88.54232900599442,
-87.89393144394232,
-90.37444963773294,
-88.64215042903514,
-88.21636347411808,
-89.78523822916515,
-89.89919365900809,
-89.5944291373351,
-87.73492386741728,
-88.76582298855462,
-88.20222946731586,
-90.3806332657089,
-89.24549584440516,
-88.15452719435835,
-90.28876222149444,
-89.42040417858269,
-88.47607584910898,
-88.82324239118866,
-90.98486205650406,
-88.5847310264011,
-88.53879550429386,
-90.96984467427669,
-88.05117226961707,
-89.71810169685457,
-87.73934074454297,
-88.71017033677086,
-89.32323288181739,
-89.60591301786191,
-89.27994748598557,
-90.7737353298958,
-89.41863742773242,
-88.56176326534748,
-87.74994124964465,
-90.69334816620814,
-90.1615561602744,
-88.92041368795395,
-88.42484007445091,
-87.89393144394232,
-91.2118895407648,
-88.08915741289806,
-90.61649450422104,
-87.70577247838769,
-88.9822499677137,
-89.37270190562518,
-87.81972790823063,
-91.20482253736368,
-88.8647610361702,
-87.77290901069826,
-88.45310808805537,
-90.13505489752023,
-88.80557488268587,
-89.17129230869347,
-88.2393312351717,
-88.19869596561531,
-89.42393768028325,
-89.93452867601366,
-88.87712829212214,
-87.88951456681662,
-89.5131585982223,
-88.97606633973771,
-87.9796188601808,
-89.97781407184547,
-88.42130657275035,
-89.66156566964567,
-88.60328191032902
],
"marker": {
"color": "white",
"size": 2
},
"mode": "markers",
"showlegend": false,
"text": [
"Marshall County",
"Cumberland County",
"Douglas County",
"Livingston County",
"Bond County",
"Stark County",
"Macoupin County",
"Richland County",
"White County",
"Clinton County",
"Franklin County",
"Grundy County",
"Union County",
"Carroll County",
"Warren County",
"Ogle County",
"Iroquois County",
"Putnam County",
"Brown County",
"Ford County",
"McDonough County",
"Pulaski County",
"Kendall County",
"LaSalle County",
"Scott County",
"Schuyler County",
"Williamson County",
"Henry County",
"Jefferson County",
"St. Clair County",
"De Witt County",
"Perry County",
"Jo Daviess County",
"Morgan County",
"Knox County",
"Lee County",
"Madison County",
"Saline County",
"Will County",
"Jersey County",
"Moultrie County",
"Coles County",
"Menard County",
"Randolph County",
"Tazewell County",
"Vermilion County",
"DeKalb County",
"Gallatin County",
"Greene County",
"Woodford County",
"Jasper County",
"Cass County",
"Montgomery County",
"Clay County",
"Boone County",
"Henderson County",
"Effingham County",
"Hamilton County",
"Pike County",
"Edwards County",
"Peoria County",
"Crawford County",
"Massac County",
"Alexander County",
"Sangamon County",
"Christian County",
"Mercer County",
"Jackson County",
"Pope County",
"Edgar County",
"Calhoun County",
"Fulton County",
"Marion County",
"Wayne County",
"Cook County",
"Adams County",
"DuPage County",
"Rock Island County",
"Lawrence County",
"Macon County",
"Logan County",
"Wabash County",
"Hancock County",
"McLean County",
"Clark County",
"McHenry County",
"Monroe County",
"Shelby County",
"Winnebago County",
"Hardin County",
"Champaign County",
"Washington County",
"Whiteside County",
"Johnson County",
"Kankakee County",
"Bureau County",
"Fayette County",
"Lake County",
"Mason County",
"Kane County",
"Stephenson County",
"Piatt County"
],
"type": "scattermapbox",
"uid": "12505c68-a9c9-11e8-8f1b-e377df750c87"
},
{
"hoverinfo": "none",
"lat": [
41.148569234450726,
41.148569234450726,
41.148569234450726,
41.10370875301229,
41.10495487749669,
41.10495487749669,
40.92551295174295,
40.926759076227356,
40.92177457828975,
40.97286568215019,
40.97411180663459,
41.14109248754432,
41.148569234450726,
null,
39.21583015914484,
39.37533409314817,
39.37907246660137,
39.17470805115961,
39.17096967770641,
39.17221580219081,
39.21583015914484,
null,
39.791539670938086,
39.80150866681329,
39.878768384846154,
39.878768384846154,
39.878768384846154,
39.791539670938086,
39.68686521424841,
39.65321985316958,
39.65197372868518,
39.791539670938086,
null,
41.10869325094989,
41.1149238733719,
40.99529592286941,
40.61772020409592,
40.61772020409592,
40.616474079611514,
40.757286146348825,
40.75354777289562,
40.92800520071175,
41.10620100198109,
41.10869325094989,
null,
38.99900449885908,
39.0289114864847,
39.0276653620003,
38.99900449885908,
38.91676028288862,
38.74230285507248,
38.741056730588085,
38.743548979556884,
38.87439205041898,
38.91800640737302,
38.91800640737302,
38.99900449885908,
null,
41.14981535893513,
41.14981535893513,
41.21710608109278,
41.23455182387439,
41.23455182387439,
41.148569234450726,
41.14109248754432,
40.97411180663459,
40.97411180663459,
41.14981535893513,
null,
39.52113065782308,
39.52237678230748,
39.52362290679188,
38.99900449885908,
38.99900449885908,
39.00025062334348,
39.26193676506768,
39.52113065782308,
null,
38.84697731176216,
38.85071568521536,
38.85071568521536,
38.57033767622515,
38.57033767622515,
38.56909155174075,
38.597752414881974,
38.59899853936637,
38.6338900249296,
38.73108773471287,
38.84697731176216,
null,
38.25506818167171,
38.25631430615611,
38.25506818167171,
38.25880655512491,
38.236376314405696,
38.230145691983694,
38.197746455389264,
38.151639849466434,
38.09930262112159,
38.05568826416756,
38.03076577447954,
37.96098280335308,
37.892445956711036,
37.86752346702301,
37.91487619743025,
37.90739945052385,
38.25506818167171,
null,
38.65507414116442,
38.656320265648816,
38.743548979556884,
38.741056730588085,
38.74230285507248,
38.73607223265048,
38.5030469540675,
38.51800044788031,
38.46815546850427,
38.471893841957474,
38.41581824015943,
38.65507414116442,
null,
37.949767682993475,
38.08559525179318,
38.12422511080961,
38.12422511080961,
37.906153326039444,
37.86378509356981,
37.862538969085406,
37.944783185055876,
37.949767682993475,
null,
41.45760810658216,
41.463838729004166,
41.20215258727997,
41.12987736718471,
41.1149238733719,
41.10869325094989,
41.45760810658216,
null,
37.55973071937598,
37.570945839735586,
37.60085282736121,
37.60085282736121,
37.597114453908006,
37.3304438142462,
37.33542831218381,
37.33542831218381,
37.35661242841862,
37.407703532279065,
37.46627138304591,
37.529823731750355,
37.55973071937598,
null,
42.19406767686313,
42.19655992583193,
42.19655992583193,
42.19905217480073,
41.92988928617012,
41.92864316168572,
41.92988928617012,
41.93736603307653,
41.99593388384337,
42.0333176183754,
42.03954824079741,
42.105592838470656,
42.149207195424694,
42.17412968511271,
42.19406767686313,
null,
41.06881726744906,
41.06383276951146,
40.71491791387919,
40.62768919997112,
40.63516594687753,
41.06881726744906,
null,
42.19905217480073,
42.20154442376953,
42.20403667273833,
42.15045331990909,
42.15045331990909,
42.15169944439349,
41.89125942715369,
41.886274929216086,
41.907459045450906,
41.9012284230289,
41.92988928617012,
42.19905217480073,
null,
40.99778817183821,
41.01024941668222,
40.89560596411733,
40.73734815459841,
40.535475988125455,
40.49061550668702,
40.485631008749415,
40.48812325771822,
40.51678412085944,
40.99778817183821,
null,
41.31056541742285,
41.10495487749669,
41.10370875301229,
41.148569234450726,
41.148569234450726,
41.23455182387439,
41.23330569938999,
41.30184254603204,
41.31056541742285,
null,
40.10431691652273,
40.103070792038324,
39.980950592567034,
39.987181214989036,
39.96475097426982,
39.87627613587735,
39.83889240134532,
39.84013852582972,
39.84512302376733,
40.10431691652273,
null,
40.61772020409592,
40.61772020409592,
40.99529592286941,
40.99778817183821,
40.51678412085944,
40.48812325771822,
40.485631008749415,
40.39964841932575,
40.39840229484135,
40.39840229484135,
40.61772020409592,
null,
40.63890432033074,
40.63516594687753,
40.62768919997112,
40.27628209537006,
40.28375884227646,
40.63890432033074,
null,
37.33542831218381,
37.3304438142462,
37.29430620419858,
37.30302907558938,
37.227015482040926,
37.22826160652532,
37.22826160652532,
37.22452323307212,
37.188385623024494,
37.14103289261726,
37.0737421704596,
37.07249604597521,
37.10614140705403,
37.33542831218381,
null,
41.71929424830636,
41.72178649727516,
41.72178649727516,
41.72427874624397,
41.69561788310274,
41.59343567538186,
41.52116045528661,
41.463838729004166,
41.45760810658216,
41.6308194099139,
41.71929424830636,
null,
41.62832716094509,
41.6308194099139,
41.629573285429494,
41.6308194099139,
41.45760810658216,
41.10869325094989,
41.10620100198109,
40.92800520071175,
40.92551295174295,
41.10495487749669,
41.10495487749669,
41.31056541742285,
41.585958928475456,
41.62832716094509,
41.62832716094509,
null,
39.789047421969286,
39.789047421969286,
39.752909811921654,
39.752909811921654,
39.66692722249799,
39.63702023487237,
39.52113065782308,
39.52237678230748,
39.70431095703002,
39.789047421969286,
null,
40.19279175491519,
40.28375884227646,
40.27628209537006,
40.18905338146199,
40.18406888352439,
40.15540802038316,
40.12425490827314,
40.01958045158346,
39.987181214989036,
39.980950592567034,
40.103070792038324,
40.10431691652273,
40.19279175491519,
null,
37.862538969085406,
37.86378509356981,
37.599606702876805,
37.597114453908006,
37.60085282736121,
37.862538969085406,
null,
41.32801116020446,
41.45760810658216,
41.5149298328646,
41.54109844703702,
41.58471280399106,
41.58471280399106,
41.23455182387439,
41.21710608109278,
41.14981535893513,
41.14981535893513,
41.151061483419525,
41.32801116020446,
null,
38.212699949202076,
38.47313996644188,
38.47438609092628,
38.25631430615611,
38.12422511080961,
38.12422511080961,
38.130455733231614,
38.212699949202076,
null,
38.53046169272432,
38.54416906205273,
38.61145978421038,
38.66005863910202,
38.66005863910202,
38.65881251461762,
38.65507414116442,
38.41581824015943,
38.218930571624085,
38.22017669610848,
38.297436414141345,
38.30865153450095,
38.51800044788031,
38.53046169272432,
null,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.09808629410072,
40.05447193714669,
40.048241314724685,
40.28126659330766,
null,
38.218930571624085,
38.212699949202076,
38.130455733231614,
38.12422511080961,
38.08559525179318,
37.949767682993475,
37.95475218093108,
38.218930571624085,
null,
42.508091046932165,
42.50684492244776,
42.50684492244776,
42.508091046932165,
42.505598797963366,
42.19655992583193,
42.19406767686313,
42.20279054825393,
42.23892815830156,
42.277558017317986,
42.31992624978762,
42.35730998431965,
42.38098634952327,
42.403416590242486,
42.43830807580571,
42.44703094719652,
42.47195343688453,
42.508091046932165,
null,
39.83889240134532,
39.87627613587735,
39.872537762424145,
39.78530904851608,
39.52237678230748,
39.52113065782308,
39.52113065782308,
39.63702023487237,
39.66692722249799,
39.752909811921654,
39.752909811921654,
39.789047421969286,
39.789047421969286,
39.83889240134532,
null,
41.06383276951146,
41.151061483419525,
41.14981535893513,
40.97411180663459,
40.71242566491039,
40.71491791387919,
41.06383276951146,
null,
41.9012284230289,
41.907459045450906,
41.886274929216086,
41.89125942715369,
41.62832716094509,
41.62832716094509,
41.585958928475456,
41.585958928475456,
41.9012284230289,
null,
39.00025062334348,
38.99900449885908,
38.99900449885908,
38.99900449885908,
38.91800640737302,
38.91800640737302,
38.87439205041898,
38.743548979556884,
38.656320265648816,
38.65507414116442,
38.65881251461762,
38.66005863910202,
38.68747337775884,
38.72610323677527,
38.7722098426981,
38.7722098426981,
38.80585520377693,
38.84946956073097,
38.89931454010701,
38.910529660466615,
38.91925253185742,
38.99900449885908,
39.00025062334348,
null,
37.86378509356981,
37.906153326039444,
37.90739945052385,
37.599606702876805,
37.60085282736121,
37.599606702876805,
37.86378509356981,
null,
41.72427874624397,
41.725524870728364,
41.72801711969717,
41.68440276274313,
41.66944926893032,
41.6432806547579,
41.55729806533424,
41.55854418981864,
41.52863720219302,
41.47006935142617,
41.47131547591057,
41.29810417257884,
41.29810417257884,
41.29311967464123,
41.20589096073317,
41.20215258727997,
41.463838729004166,
41.52116045528661,
41.59343567538186,
41.69561788310274,
41.72427874624397,
null,
39.26193676506768,
39.00025062334348,
38.99900449885908,
38.91925253185742,
38.92299090531062,
38.96037463984265,
38.96162076432705,
38.96909751123346,
38.95912851535825,
39.117386324877174,
39.184677047034825,
39.17470805115961,
39.225799155020056,
39.26193676506768,
null,
39.791539670938086,
39.791539670938086,
39.65197372868518,
39.447609313243426,
39.447609313243426,
39.52113065782308,
39.52113065782308,
39.57969850858992,
39.580944633074324,
39.65321985316958,
39.741694691562046,
39.791539670938086,
null,
39.65197372868518,
39.65321985316958,
39.68686521424841,
39.48125467432225,
39.48125467432225,
39.37907246660137,
39.37533409314817,
39.447609313243426,
39.65197372868518,
null,
40.10805528997593,
40.141700651054755,
40.126747157241944,
40.15416189589877,
40.12176265930434,
40.091855671678715,
39.97596609462943,
39.974719970145024,
39.91615211937818,
39.90244475004977,
39.90119862556537,
40.10805528997593,
null,
38.08808750076198,
38.13544023116922,
38.22266894507729,
38.22017669610848,
38.218930571624085,
38.218930571624085,
37.95475218093108,
37.830139732490984,
37.79649437141216,
37.81518623867817,
37.855062222179,
37.903661077070645,
37.871261840476215,
37.88123083635143,
37.918614570883456,
37.96596730129069,
37.96970567474389,
38.014566156182326,
38.049457641745555,
38.08808750076198,
null,
40.51304574740624,
40.552921730907066,
40.55416785539147,
40.68501092625357,
40.70619504248839,
40.74731715047362,
40.748563274958016,
40.61522795512712,
40.5940438388923,
40.324880950261694,
40.31989645232409,
40.31865032783969,
40.43578602937338,
40.43578602937338,
40.491861631171425,
40.51304574740624,
null,
40.39964841932575,
40.485631008749415,
40.49061550668702,
40.47690813735861,
40.25011348119764,
40.14793127347676,
40.010857580192656,
39.88250675829936,
39.86879938897094,
39.881260633814954,
39.878768384846154,
40.22519099150962,
40.39964841932575,
null,
42.15169944439349,
42.1529455688779,
42.1529455688779,
42.06571685496983,
42.01711800007819,
41.71929424830636,
41.6308194099139,
41.629573285429494,
41.6308194099139,
41.62832716094509,
41.89125942715369,
42.15169944439349,
null,
37.90739945052385,
37.91487619743025,
37.86752346702301,
37.856308346663404,
37.80023274486536,
37.742911018582916,
37.69805053714448,
37.65443618019045,
37.57468421318879,
37.599606702876805,
37.599606702876805,
37.90739945052385,
null,
39.39651820938298,
39.45757830911863,
39.52237678230748,
39.52113065782308,
39.52113065782308,
39.26193676506768,
39.225799155020056,
39.17470805115961,
39.184677047034825,
39.117386324877174,
39.14230881456519,
39.19838441636323,
39.39651820938298,
null,
40.92177457828975,
40.926759076227356,
40.92551295174295,
40.92800520071175,
40.75354777289562,
40.75230164841122,
40.66507293450316,
40.62768919997112,
40.596536087861104,
40.5940438388923,
40.61522795512712,
40.748563274958016,
40.74731715047362,
40.79342375639645,
40.92177457828975,
null,
38.910529660466615,
39.17096967770641,
39.17470805115961,
39.17470805115961,
38.85071568521536,
38.84697731176216,
38.851961809699766,
38.910529660466615,
null,
39.987181214989036,
40.01958045158346,
40.12425490827314,
40.05447193714669,
40.06194868405309,
40.10805528997593,
39.90119862556537,
39.872537762424145,
39.87627613587735,
39.96475097426982,
39.987181214989036,
null,
39.52362290679188,
39.52486903127628,
39.34916547897575,
39.34916547897575,
39.21832240811365,
39.21832240811365,
39.0276653620003,
39.0289114864847,
38.99900449885908,
38.99900449885908,
39.52362290679188,
null,
38.825793195527346,
38.91426803391982,
38.910529660466615,
38.851961809699766,
38.84697731176216,
38.73108773471287,
38.6338900249296,
38.59899853936637,
38.606475286272776,
38.606475286272776,
38.825793195527346,
null,
42.49562980208815,
42.49438367760376,
42.493137553119354,
42.493137553119354,
42.1529455688779,
42.15169944439349,
42.49562980208815,
null,
40.69996442006638,
40.7248869097544,
40.77971638706804,
40.82083849505327,
40.86819122546051,
40.911805582414544,
40.95417381488418,
41.01897228807302,
41.070063391933466,
41.06881726744906,
40.63516594687753,
40.63890432033074,
40.63516594687753,
40.637658195846335,
40.67254968140956,
40.69996442006638,
null,
39.21707628362925,
39.21583015914484,
39.17221580219081,
39.17096967770641,
38.910529660466615,
38.91426803391982,
38.91177578495101,
39.21707628362925,
null,
38.12422511080961,
38.25631430615611,
38.25506818167171,
37.90739945052385,
37.906153326039444,
38.12422511080961,
null,
39.75789430985926,
39.75664818537486,
39.84512302376733,
39.84013852582972,
39.83889240134532,
39.789047421969286,
39.70431095703002,
39.52237678230748,
39.45757830911863,
39.39651820938298,
39.400256582836185,
39.40150270732059,
39.44885543772782,
39.49496204365066,
39.53857640060469,
39.546053147511095,
39.59215975343393,
39.598390375855935,
39.66692722249799,
39.68686521424841,
39.72923344671804,
39.75789430985926,
null,
38.56909155174075,
38.57033767622515,
38.399618621862224,
38.28995966723494,
38.25880655512491,
38.25506818167171,
38.25631430615611,
38.56909155174075,
null,
40.71242566491039,
40.97411180663459,
40.97411180663459,
40.97286568215019,
40.92177457828975,
40.79342375639645,
40.74731715047362,
40.70619504248839,
40.68501092625357,
40.55416785539147,
40.552921730907066,
40.51304574740624,
40.62395082651792,
40.62519695100232,
40.71242566491039,
null,
39.17470805115961,
39.17221580219081,
39.157262308378,
39.102432831064355,
39.05757234962592,
39.00149674782788,
38.97158976020226,
38.90803741149781,
38.90554516252901,
38.875638174903386,
38.851961809699766,
38.85071568521536,
38.85071568521536,
39.17470805115961,
null,
37.30302907558938,
37.33542831218381,
37.33792056115261,
37.159724759883275,
37.0675115480376,
37.0675115480376,
37.083711166334815,
37.112372029476035,
37.14103289261726,
37.15474026194567,
37.1971084944153,
37.227015482040926,
37.30302907558938,
null,
37.33542831218381,
37.33542831218381,
37.10614140705403,
37.07249604597521,
37.01766656866156,
36.981528958613936,
36.990251830004745,
37.01517431969276,
37.02888168902117,
37.042589058349584,
37.103649158085226,
37.188385623024494,
37.253184096213346,
37.26066084311975,
37.281844959354565,
37.325459316308596,
37.33542831218381,
null,
39.90119862556537,
39.90244475004977,
39.91615211937818,
39.974719970145024,
39.97596609462943,
39.97596609462943,
39.91739824386258,
39.91615211937818,
39.8127237871729,
39.82518503201691,
39.77534005264087,
39.74667918949965,
39.68437296527961,
39.68437296527961,
39.64200473280997,
39.64200473280997,
39.613343869668746,
39.52486903127628,
39.52362290679188,
39.52237678230748,
39.78530904851608,
39.872537762424145,
39.90119862556537,
null,
39.8127237871729,
39.800262542328895,
39.65571210213838,
39.654465977653985,
39.34667323000694,
39.34916547897575,
39.34916547897575,
39.52486903127628,
39.613343869668746,
39.64200473280997,
39.64200473280997,
39.68437296527961,
39.68437296527961,
39.74667918949965,
39.77534005264087,
39.82518503201691,
39.8127237871729,
null,
41.334241782626464,
41.334241782626464,
41.32801116020446,
41.151061483419525,
41.06383276951146,
41.06881726744906,
41.070063391933466,
41.072555640902266,
41.1111854999187,
41.16352272826354,
41.16601497723234,
41.21461383212397,
41.250751442171605,
41.334241782626464,
null,
37.79649437141216,
37.830139732490984,
37.95475218093108,
37.949767682993475,
37.944783185055876,
37.862538969085406,
37.60085282736121,
37.60085282736121,
37.570945839735586,
37.58091483561079,
37.62577531704923,
37.696804412660086,
37.7242191513169,
37.760356761364534,
37.79649437141216,
null,
37.599606702876805,
37.60085282736121,
37.42141090160747,
37.422657026091876,
37.40022678537266,
37.34041281012141,
37.290567830745374,
37.22078485961892,
37.14975576400806,
37.09866466014763,
37.068757672522004,
37.068757672522004,
37.0675115480376,
37.159724759883275,
37.33792056115261,
37.599606702876805,
null,
39.878768384846154,
39.881260633814954,
39.86879938897094,
39.88250675829936,
39.66568109801359,
39.60835937173115,
39.47751630086905,
39.487485296744254,
39.48125467432225,
39.68686521424841,
39.791539670938086,
39.878768384846154,
null,
39.400256582836185,
39.39651820938298,
39.19838441636323,
39.14230881456519,
39.117386324877174,
38.95912851535825,
38.96909751123346,
38.96162076432705,
38.96162076432705,
38.910529660466615,
38.87065367696578,
38.875638174903386,
38.92049865634182,
38.93420602567023,
38.98405100504627,
39.05383397617272,
39.10118670657996,
39.151031685956,
39.22455303053565,
39.25570614264568,
39.34044260758494,
39.400256582836185,
null,
40.27628209537006,
40.62768919997112,
40.71491791387919,
40.71242566491039,
40.62519695100232,
40.62395082651792,
40.51304574740624,
40.491861631171425,
40.43578602937338,
40.374725929637734,
40.235159987384826,
40.18406888352439,
40.18905338146199,
40.27628209537006,
null,
38.5030469540675,
38.73607223265048,
38.82454707104294,
38.825793195527346,
38.606475286272776,
38.47438609092628,
38.47313996644188,
38.5030469540675,
null,
38.47438609092628,
38.606475286272776,
38.606475286272776,
38.59899853936637,
38.597752414881974,
38.56909155174075,
38.25631430615611,
38.25506818167171,
38.25631430615611,
38.47438609092628,
null,
42.15419169336229,
42.15419169336229,
42.1529455688779,
42.1529455688779,
42.1529455688779,
42.15169944439349,
42.12802307918987,
42.12802307918987,
42.12802307918987,
42.081916473267036,
42.07568585084503,
42.0283331204378,
41.93238153513892,
41.9062129209665,
41.903720671997704,
41.892505551638095,
41.883782680247286,
41.87007531091888,
41.845152821230855,
41.81026133566763,
41.799046215308024,
41.7654008542292,
41.74795511144758,
41.723032621759565,
41.70807912794675,
41.529883326677414,
41.47131547591057,
41.47006935142617,
41.52863720219302,
41.55854418981864,
41.55729806533424,
41.6432806547579,
41.66944926893032,
41.68440276274313,
41.685648887227536,
41.685648887227536,
41.68689501171194,
41.68689501171194,
41.69312563413394,
41.694371758618345,
41.69811013207155,
41.70309463000915,
41.71929424830636,
41.7716314766512,
41.790323343917215,
41.79530784185482,
41.9062129209665,
41.94110440652973,
41.99344163487457,
41.98721101245257,
41.985964887968166,
42.014625751109385,
42.06571685496983,
42.09188546914225,
42.15419169336229,
null,
40.2002685018216,
40.19279175491519,
40.10431691652273,
39.84512302376733,
39.75664818537486,
39.75789430985926,
39.78655517300048,
39.820200534079305,
39.84512302376733,
39.90742924798737,
39.9448129825194,
39.946059107003805,
40.01833432709906,
40.07814830235031,
40.170361514195974,
40.2002685018216,
null,
41.985964887968166,
41.98721101245257,
41.99344163487457,
41.94110440652973,
41.9062129209665,
41.79530784185482,
41.790323343917215,
41.7716314766512,
41.71929424830636,
41.70309463000915,
41.69811013207155,
41.694371758618345,
41.69312563413394,
41.68689501171194,
41.68689501171194,
41.685648887227536,
41.685648887227536,
41.68440276274313,
41.72801711969717,
41.725524870728364,
41.72427874624397,
41.81150746015203,
41.81150746015203,
41.88253655576288,
41.8987361740601,
41.985964887968166,
null,
41.453869733128954,
41.45511585761336,
41.48502284523898,
41.51742208183341,
41.51991433080221,
41.52365270425541,
41.56352868775624,
41.579728306053454,
41.59842017331947,
41.66446477099272,
41.694371758618345,
41.72801711969717,
41.74172448902558,
41.77910822355761,
41.78284659701081,
41.67443376686793,
41.6432806547579,
41.58471280399106,
41.54109844703702,
41.5149298328646,
41.45760810658216,
41.32801116020446,
41.334241782626464,
41.34047240504847,
41.36913326818969,
41.42396274550333,
41.43019336792534,
41.42396274550333,
41.448885235191355,
41.453869733128954,
null,
38.85071568521536,
38.851961809699766,
38.82703932001175,
38.75725634888529,
38.67750438188364,
38.638874522867205,
38.58778341900676,
38.56659930277195,
38.57033767622515,
38.85071568521536,
null,
39.91615211937818,
39.91739824386258,
40.048241314724685,
40.05447193714669,
39.791539670938086,
39.741694691562046,
39.65321985316958,
39.654465977653985,
39.65571210213838,
39.800262542328895,
39.8127237871729,
39.91615211937818,
null,
40.31989645232409,
40.324880950261694,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.048241314724685,
39.91739824386258,
39.91615211937818,
39.91739824386258,
39.97596609462943,
39.97596609462943,
40.091855671678715,
40.12176265930434,
40.31989645232409,
null,
38.25880655512491,
38.28995966723494,
38.399618621862224,
38.57033767622515,
38.57033767622515,
38.56659930277195,
38.54043068859953,
38.51176982545831,
38.47937058886388,
38.43575623190985,
38.41831048912824,
38.370957758721,
38.30740541001655,
38.26877555100012,
38.236376314405696,
38.25880655512491,
null,
40.248867356713234,
40.270051472948055,
40.322388701292894,
40.37846430309094,
40.39840229484135,
40.45198564767059,
40.51055349843744,
40.53422986364105,
40.58282871853269,
40.613981830642714,
40.63890432033074,
40.637658195846335,
40.637658195846335,
40.63516594687753,
40.63890432033074,
40.28375884227646,
40.19279175491519,
40.2002685018216,
40.248867356713234,
null,
40.5940438388923,
40.596536087861104,
40.62768919997112,
40.66507293450316,
40.75230164841122,
40.75354777289562,
40.757286146348825,
40.616474079611514,
40.61772020409592,
40.39840229484135,
40.28126659330766,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.28251271779206,
40.28126659330766,
40.324880950261694,
40.5940438388923,
null,
39.48125467432225,
39.487485296744254,
39.47751630086905,
39.47003955396264,
39.347919354491346,
39.34044260758494,
39.31302786892812,
39.25944451609888,
39.24822939573927,
39.210845661207244,
39.16723130425321,
39.157262308378,
39.17221580219081,
39.17470805115961,
39.17470805115961,
39.37907246660137,
39.48125467432225,
39.48125467432225,
null,
42.493137553119354,
42.49438367760376,
42.49562980208815,
42.49562980208815,
42.49562980208815,
42.41587783508649,
42.32864912117843,
42.24142040727036,
42.24142040727036,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.1529455688779,
42.1529455688779,
42.493137553119354,
null,
38.38715737701821,
38.43824848087865,
38.495570207161094,
38.51800044788031,
38.30865153450095,
38.297436414141345,
38.22017669610848,
38.22266894507729,
38.13544023116922,
38.08808750076198,
38.09431812318399,
38.12671735977841,
38.12671735977841,
38.18154683709206,
38.218930571624085,
38.236376314405696,
38.323605028313764,
38.377188381143,
38.384665128049406,
38.38715737701821,
null,
39.34916547897575,
39.34667323000694,
39.654465977653985,
39.65321985316958,
39.580944633074324,
39.57969850858992,
39.52113065782308,
39.52113065782308,
39.447609313243426,
39.447609313243426,
39.37533409314817,
39.21583015914484,
39.21707628362925,
39.21707628362925,
39.21832240811365,
39.34916547897575,
null,
42.50061430002576,
42.50061430002576,
42.49562980208815,
42.49562980208815,
42.49562980208815,
42.15169944439349,
42.15045331990909,
42.15045331990909,
42.20403667273833,
42.20154442376953,
42.30746500494361,
42.50061430002576,
null,
37.60085282736121,
37.599606702876805,
37.599606702876805,
37.57468421318879,
37.573438088704386,
37.52857760726595,
37.50490124206234,
37.488701623765124,
37.46751750753031,
37.4525640137175,
37.40521128331026,
37.42141090160747,
37.60085282736121,
null,
40.28126659330766,
40.39840229484135,
40.39840229484135,
40.39964841932575,
40.22519099150962,
39.878768384846154,
39.878768384846154,
39.878768384846154,
40.141700651054755,
40.28126659330766,
null,
38.41581824015943,
38.471893841957474,
38.46815546850427,
38.51800044788031,
38.5030469540675,
38.47313996644188,
38.212699949202076,
38.218930571624085,
38.218930571624085,
38.41581824015943,
null,
41.78284659701081,
41.81150746015203,
41.84390669674646,
41.883782680247286,
41.92988928617012,
41.92864316168572,
41.92988928617012,
41.9012284230289,
41.585958928475456,
41.58471280399106,
41.58471280399106,
41.6432806547579,
41.67443376686793,
41.78284659701081,
null,
37.3304438142462,
37.597114453908006,
37.599606702876805,
37.33792056115261,
37.33542831218381,
37.30302907558938,
37.29430620419858,
37.3304438142462,
null,
41.1149238733719,
41.12987736718471,
41.20215258727997,
41.20589096073317,
41.29311967464123,
41.29810417257884,
41.16601497723234,
41.02520291049503,
41.01024941668222,
40.99778817183821,
40.99529592286941,
41.1149238733719,
null,
41.58471280399106,
41.585958928475456,
41.585958928475456,
41.31056541742285,
41.30184254603204,
41.23330569938999,
41.23455182387439,
41.148569234450726,
41.148569234450726,
41.23455182387439,
41.23455182387439,
41.58471280399106,
null,
39.0276653620003,
39.21832240811365,
39.21832240811365,
39.21707628362925,
39.21707628362925,
38.91177578495101,
38.91426803391982,
38.825793195527346,
38.82454707104294,
38.73607223265048,
38.74230285507248,
38.91676028288862,
38.99900449885908,
39.0276653620003,
null,
42.49562980208815,
42.493137553119354,
42.49189142863495,
42.4208623330241,
42.36104835777285,
42.301234382521606,
42.297496009068404,
42.207775046191536,
42.205282797222736,
42.15169944439349,
42.1529455688779,
42.1529455688779,
42.1529455688779,
42.15419169336229,
42.24142040727036,
42.24142040727036,
42.32864912117843,
42.41587783508649,
42.49562980208815,
null,
40.12425490827314,
40.15540802038316,
40.18406888352439,
40.235159987384826,
40.374725929637734,
40.43578602937338,
40.43578602937338,
40.31865032783969,
40.31989645232409,
40.12176265930434,
40.15416189589877,
40.126747157241944,
40.141700651054755,
40.10805528997593,
40.06194868405309,
40.05447193714669,
40.12425490827314,
null,
42.1529455688779,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.15419169336229,
42.09188546914225,
42.06571685496983,
42.014625751109385,
41.985964887968166,
41.8987361740601,
41.88253655576288,
41.81150746015203,
41.81150746015203,
41.72427874624397,
41.72178649727516,
41.72178649727516,
41.71929424830636,
42.01711800007819,
42.06571685496983,
42.1529455688779,
null,
42.50435267347896,
42.50186042451016,
42.50061430002576,
42.30746500494361,
42.20154442376953,
42.19905217480073,
42.19655992583193,
42.19655992583193,
42.505598797963366,
42.505598797963366,
42.50435267347896,
null,
40.05447193714669,
40.09808629410072,
40.28126659330766,
40.28126659330766,
40.141700651054755,
39.878768384846154,
39.80150866681329,
39.791539670938086,
39.791539670938086,
40.05447193714669,
null
],
"line": {
"color": "rgb(220,220,220)",
"width": 0.5
},
"lon": [
-89.63683115774177,
-89.46722307611506,
-89.32941650979336,
-89.35945127424809,
-89.16334192986722,
-89.04850312459912,
-89.04850312459912,
-89.16157517901694,
-89.4725233286659,
-89.447788816762,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
null,
-88.47077559655816,
-88.47077559655816,
-88.01318712633609,
-88.00788687378527,
-88.3612370438409,
-88.47077559655816,
-88.47077559655816,
null,
-88.47430909825871,
-88.46194184230676,
-88.46194184230676,
-88.34886978788896,
-87.93721683977414,
-87.96901835507914,
-87.96725160422886,
-88.06442290099416,
-88.47254234740844,
-88.47430909825871,
null,
-88.58738115267651,
-88.25169849112365,
-88.2481649894231,
-88.23579773347114,
-88.46017509145648,
-88.57501389672457,
-88.58561440182623,
-88.93013081763048,
-88.93189756848076,
-88.93189756848076,
-88.58738115267651,
null,
-89.63859790859205,
-89.5855953830837,
-89.25167947238113,
-89.25874647578223,
-89.25697972493195,
-89.25521297408167,
-89.48312383376756,
-89.59619588818538,
-89.59796263903566,
-89.63683115774177,
-89.63683115774177,
-89.63859790859205,
null,
-89.9831143243963,
-89.86827551912822,
-89.86650876827794,
-89.85767501402655,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
-89.63859790859205,
-89.98488107524658,
-89.9831143243963,
null,
-90.15272240602302,
-89.92481154633712,
-89.70043418835179,
-89.69690068665123,
-90.11562063816717,
-90.1456554026219,
-90.14742215347218,
-90.15272240602302,
null,
-88.25876549452477,
-87.94605059402552,
-87.90894882616968,
-87.91248232787024,
-87.95488434827692,
-88.14746019095725,
-88.14746019095725,
-88.25346524197393,
-88.29763401323089,
-88.25876549452477,
-88.25876549452477,
null,
-88.3700707980923,
-88.15099369265779,
-88.02732113313832,
-87.99021936528248,
-87.96901835507914,
-87.97078510592942,
-87.97608535848025,
-87.92838308552274,
-87.96195135167802,
-87.9884526144322,
-88.03085463483887,
-88.01672062803665,
-88.04145513994055,
-88.05912264844333,
-88.13685968585557,
-88.37537105064312,
-88.3700707980923,
null,
-89.70573444090262,
-89.5944291373351,
-89.59619588818538,
-89.48312383376756,
-89.25521297408167,
-89.13860741796331,
-89.14390767051415,
-89.35238427084698,
-89.48312383376756,
-89.61386339668816,
-89.70396769005235,
-89.70573444090262,
null,
-89.17747593666944,
-89.1156396569097,
-89.12977366371193,
-88.70575345964515,
-88.70752021049543,
-88.70752021049543,
-89.15274142476554,
-89.15097467391527,
-89.17747593666944,
null,
-88.59621490692791,
-88.25169849112365,
-88.24463148772254,
-88.24109798602198,
-88.25169849112365,
-88.58738115267651,
-88.59621490692791,
null,
-89.50255809312063,
-89.49902459142007,
-89.45308906931284,
-89.15450817561582,
-89.04143612119802,
-89.04496962289858,
-89.24991272153085,
-89.47429007951618,
-89.42835455740894,
-89.42658780655867,
-89.4725233286659,
-89.51139184737202,
-89.50255809312063,
null,
-90.3152634842486,
-89.91951129378629,
-89.89654353273266,
-89.68806693239983,
-89.68453343069929,
-90.12798789411912,
-90.15802265857384,
-90.15625590772356,
-90.14035515007106,
-90.15978940942412,
-90.16332291112468,
-90.15978940942412,
-90.20749168238163,
-90.26932796214138,
-90.3152634842486,
null,
-90.78521921042261,
-90.43893604376808,
-90.44423629631892,
-90.44423629631892,
-90.78875271212317,
-90.78521921042261,
null,
-89.68806693239983,
-89.39655304210393,
-89.17394243496888,
-89.17394243496888,
-89.09267189585609,
-88.94073132273216,
-88.94249807358244,
-89.415987301457,
-89.42835455740894,
-89.62799740349038,
-89.68453343069929,
-89.68806693239983,
null,
-88.13155943330473,
-87.52733064250958,
-87.52556389165932,
-87.52556389165932,
-87.52556389165932,
-87.52733064250958,
-87.93545008892386,
-88.1174254265025,
-88.11919217735279,
-88.13155943330473,
null,
-89.1651086807175,
-89.16334192986722,
-89.35945127424809,
-89.32941650979336,
-89.46722307611506,
-89.46722307611506,
-89.35768452339782,
-89.33648351319448,
-89.1651086807175,
null,
-90.91419202249293,
-90.69511491705842,
-90.6067773745445,
-90.51313957947977,
-90.51137282862949,
-90.5838096134909,
-90.57144235753894,
-90.88945751058903,
-90.91595877334319,
-90.91419202249293,
null,
-88.46017509145648,
-88.23579773347114,
-88.2481649894231,
-88.13155943330473,
-88.11919217735279,
-88.1174254265025,
-87.93545008892386,
-87.93368333807358,
-88.34710303703868,
-88.46017509145648,
-88.46017509145648,
null,
-90.90359151739125,
-90.78875271212317,
-90.44423629631892,
-90.44953654886974,
-90.90889176994209,
-90.90359151739125,
null,
-89.24991272153085,
-89.04496962289858,
-89.04496962289858,
-88.93013081763048,
-88.9283640667802,
-88.93189756848076,
-88.93366431933104,
-89.00080085164161,
-89.0591036297008,
-89.09973889925719,
-89.16864218241804,
-89.16687543156777,
-89.26227997748279,
-89.24991272153085,
null,
-88.60328191032902,
-88.40540581509786,
-88.37537105064312,
-88.26229899622533,
-88.26053224537505,
-88.25699874367449,
-88.2552319928242,
-88.25169849112365,
-88.59621490692791,
-88.60328191032902,
-88.60328191032902,
null,
-88.93896457188188,
-88.81882551406296,
-88.71282046304627,
-88.60328191032902,
-88.59621490692791,
-88.58738115267651,
-88.93189756848076,
-88.93189756848076,
-89.04850312459912,
-89.04850312459912,
-89.16334192986722,
-89.1651086807175,
-89.16687543156777,
-89.16864218241804,
-88.93896457188188,
null,
-90.59794362029312,
-90.48310481502503,
-90.48310481502503,
-90.37003276060723,
-90.37179951145751,
-90.2993627265961,
-90.30112947744638,
-90.58027611179034,
-90.64564589325063,
-90.59794362029312,
null,
-90.91242527164265,
-90.90889176994209,
-90.44953654886974,
-90.45130329972002,
-90.19865792813025,
-90.20572493153136,
-90.35413200295473,
-90.43540254206752,
-90.51313957947977,
-90.6067773745445,
-90.69511491705842,
-90.91419202249293,
-90.91242527164265,
null,
-89.15274142476554,
-88.70752021049543,
-88.70928696134571,
-89.04143612119802,
-89.15450817561582,
-89.15274142476554,
null,
-90.43363579121724,
-90.43186904036696,
-90.33293099275139,
-90.19512442642969,
-90.18452392132802,
-89.8612085157271,
-89.85767501402655,
-89.86650876827794,
-89.86827551912822,
-89.9831143243963,
-90.4371692929178,
-90.43363579121724,
null,
-89.14744117221471,
-89.14567442136443,
-88.69868645624405,
-88.70221995794459,
-88.70575345964515,
-89.12977366371193,
-89.15097467391527,
-89.14744117221471,
null,
-90.25519395533915,
-90.24812695193803,
-90.18452392132802,
-90.18099041962746,
-90.18099041962746,
-90.03611684990464,
-89.70573444090262,
-89.70396769005235,
-89.70220093920207,
-89.89831028358294,
-89.90361053613378,
-90.03611684990464,
-90.26049420788998,
-90.25519395533915,
null,
-89.14920792306499,
-88.91953031252882,
-88.57501389672457,
-88.74638872920156,
-88.74638872920156,
-89.14567442136443,
-89.14920792306499,
null,
-89.59266238648482,
-89.14744117221471,
-89.15097467391527,
-89.12977366371193,
-89.1156396569097,
-89.17747593666944,
-89.5944291373351,
-89.59266238648482,
null,
-90.64211239155007,
-90.4371692929178,
-90.42656878781614,
-90.22339244003413,
-89.9265782971874,
-89.91951129378629,
-90.3152634842486,
-90.33823124530223,
-90.40006752506196,
-90.4301022895167,
-90.41596828271446,
-90.4460030471692,
-90.48310481502503,
-90.51667308118033,
-90.56437535413784,
-90.590876616892,
-90.64564589325063,
-90.64211239155007,
null,
-90.57144235753894,
-90.5838096134909,
-89.99371482949797,
-89.99371482949797,
-89.92481154633712,
-90.15272240602302,
-90.30112947744638,
-90.2993627265961,
-90.37179951145751,
-90.37003276060723,
-90.48310481502503,
-90.48310481502503,
-90.59794362029312,
-90.57144235753894,
null,
-90.43893604376808,
-90.4371692929178,
-89.9831143243963,
-89.98488107524658,
-89.98488107524658,
-90.44423629631892,
-90.43893604376808,
null,
-89.62799740349038,
-89.42835455740894,
-89.415987301457,
-88.94249807358244,
-88.93896457188188,
-89.16864218241804,
-89.16687543156777,
-89.63153090519094,
-89.62799740349038,
null,
-90.1456554026219,
-90.11562063816717,
-89.69690068665123,
-89.63859790859205,
-89.63683115774177,
-89.63683115774177,
-89.59796263903566,
-89.59619588818538,
-89.5944291373351,
-89.70573444090262,
-90.03611684990464,
-90.18099041962746,
-90.19512442642969,
-90.20925843323191,
-90.16685641282524,
-90.16508966197496,
-90.11738738901745,
-90.11208713646661,
-90.20749168238163,
-90.23045944343525,
-90.27639496554248,
-90.27286146384193,
-90.1456554026219,
null,
-88.70752021049543,
-88.70752021049543,
-88.37537105064312,
-88.37537105064312,
-88.41247281849897,
-88.70928696134571,
-88.70752021049543,
null,
-88.26229899622533,
-88.14922694180751,
-88.03085463483887,
-88.0290878839886,
-88.0290878839886,
-87.91248232787024,
-87.90894882616968,
-87.81177752940438,
-87.79057651920104,
-87.78704301750048,
-87.52556389165932,
-87.52733064250958,
-87.52733064250958,
-88.01495387718637,
-88.01142037548581,
-88.24463148772254,
-88.25169849112365,
-88.2552319928242,
-88.25699874367449,
-88.26053224537505,
-88.26229899622533,
null,
-90.14742215347218,
-90.1456554026219,
-90.27286146384193,
-90.27639496554248,
-90.29759597574582,
-90.39476727251113,
-90.45130329972002,
-90.46720405737253,
-90.5343405896831,
-90.60324387284396,
-90.58027611179034,
-90.31349673339832,
-90.31349673339832,
-90.14742215347218,
null,
-88.74638872920156,
-88.47430909825871,
-88.47254234740844,
-88.47077559655816,
-88.58561440182623,
-88.64215042903514,
-88.71812071559711,
-88.71812071559711,
-88.80999175981157,
-88.81175851066185,
-88.81352526151213,
-88.74638872920156,
null,
-88.47254234740844,
-88.06442290099416,
-87.96725160422886,
-87.96018460082774,
-88.01495387718637,
-88.01318712633609,
-88.47077559655816,
-88.47077559655816,
-88.47254234740844,
null,
-89.99371482949797,
-89.96898031759407,
-89.7481364613093,
-89.63683115774177,
-89.6014961407362,
-89.5785283796826,
-89.57676162883232,
-89.69690068665123,
-89.70043418835179,
-89.76933747151264,
-89.99371482949797,
-89.99371482949797,
null,
-90.20572493153136,
-90.03611684990464,
-90.03611684990464,
-89.89831028358294,
-89.70220093920207,
-89.59266238648482,
-89.5944291373351,
-89.66333242049595,
-89.68630018154957,
-89.69513393580095,
-89.78170472746459,
-89.85060801062544,
-89.92304479548685,
-89.93187854973823,
-89.97428057014491,
-89.95484631079185,
-90.0078488363002,
-90.08028562116161,
-90.12622114326884,
-90.20572493153136,
null,
-89.87180902082878,
-89.76933747151264,
-89.67393292559761,
-89.59089563563454,
-89.55202711692841,
-89.5537938677787,
-89.33118326064364,
-89.32764975894308,
-89.26934698088391,
-89.26404672833307,
-89.6014961407362,
-89.71456819515402,
-89.7163349460043,
-89.92481154633712,
-89.88417627678072,
-89.87180902082878,
null,
-87.93368333807358,
-87.93545008892386,
-87.52733064250958,
-87.52733064250958,
-87.53086414421014,
-87.53086414421014,
-87.53263089506042,
-87.53263089506042,
-87.55736540696432,
-87.6156681850235,
-87.93721683977414,
-87.94251709232496,
-87.93368333807358,
null,
-88.94073132273216,
-88.70575345964515,
-88.5891479035268,
-88.5891479035268,
-88.60151515947874,
-88.60328191032902,
-88.60328191032902,
-88.71282046304627,
-88.81882551406296,
-88.93896457188188,
-88.94249807358244,
-88.94073132273216,
null,
-88.37537105064312,
-88.13685968585557,
-88.05912264844333,
-88.06795640269472,
-88.0290878839886,
-88.05912264844333,
-88.13332618415501,
-88.15982744690919,
-88.13155943330473,
-88.17926170626225,
-88.37537105064312,
-88.37537105064312,
null,
-90.61384437794563,
-90.61031087624507,
-90.58027611179034,
-90.30112947744638,
-90.15272240602302,
-90.14742215347218,
-90.31349673339832,
-90.31349673339832,
-90.58027611179034,
-90.60324387284396,
-90.61384437794563,
-90.590876616892,
-90.61384437794563,
null,
-89.4725233286659,
-89.16157517901694,
-89.04850312459912,
-88.93189756848076,
-88.93013081763048,
-88.98843359568967,
-88.98490009398911,
-89.04496962289858,
-89.13507391626275,
-89.26934698088391,
-89.32764975894308,
-89.33118326064364,
-89.5537938677787,
-89.56086087117981,
-89.4725233286659,
null,
-88.36300379469118,
-88.3612370438409,
-88.00788687378527,
-87.95135084657636,
-87.94605059402552,
-88.25876549452477,
-88.36300379469118,
-88.36300379469118,
null,
-90.51313957947977,
-90.43540254206752,
-90.35413200295473,
-90.28699547064416,
-90.13328814666995,
-89.99371482949797,
-89.99371482949797,
-89.99371482949797,
-90.5838096134909,
-90.51137282862949,
-90.51313957947977,
null,
-89.70043418835179,
-89.53259285757535,
-89.53082610672509,
-89.1403741688136,
-89.1403741688136,
-89.25167947238113,
-89.25167947238113,
-89.5855953830837,
-89.63859790859205,
-89.69690068665123,
-89.70043418835179,
null,
-88.69515295454349,
-88.69338620369321,
-88.36300379469118,
-88.36300379469118,
-88.25876549452477,
-88.25876549452477,
-88.29763401323089,
-88.25346524197393,
-88.56441339162289,
-88.69868645624405,
-88.69515295454349,
null,
-88.94073132273216,
-88.77642349365628,
-88.70752021049543,
-88.70752021049543,
-88.70575345964515,
-88.94073132273216,
-88.94073132273216,
null,
-91.11736837027492,
-91.11560161942464,
-91.09086710752074,
-91.09263385837102,
-91.04493158541351,
-90.98486205650404,
-90.95129379034876,
-90.94422678694765,
-90.95129379034876,
-90.78521921042261,
-90.78875271212317,
-90.90359151739125,
-91.02196382435989,
-91.18450490258549,
-91.12090187197548,
-91.11736837027492,
null,
-88.80645825811101,
-88.47077559655816,
-88.47077559655816,
-88.3612370438409,
-88.36300379469118,
-88.69338620369321,
-88.80822500896129,
-88.80645825811101,
null,
-88.70575345964515,
-88.70221995794459,
-88.3700707980923,
-88.37537105064312,
-88.70752021049543,
-88.70575345964515,
null,
-91.36471348931386,
-90.91595877334319,
-90.91595877334319,
-90.88945751058903,
-90.57144235753894,
-90.59794362029312,
-90.64564589325063,
-90.58027611179034,
-90.61031087624507,
-90.61384437794563,
-90.93539303269625,
-90.93715978354653,
-91.03786458201239,
-91.06436584476657,
-91.09970086177213,
-91.14740313472964,
-91.17390439748382,
-91.18273815173521,
-91.27637594679996,
-91.30641071125468,
-91.36824699101442,
-91.36471348931386,
null,
-88.14746019095725,
-87.95488434827692,
-87.97608535848025,
-87.95135084657636,
-87.99021936528248,
-88.02732113313832,
-88.15099369265779,
-88.14746019095725,
null,
-89.98488107524658,
-89.98488107524658,
-89.63859790859205,
-89.447788816762,
-89.4725233286659,
-89.56086087117981,
-89.5537938677787,
-89.55202711692841,
-89.59089563563454,
-89.67393292559761,
-89.76933747151264,
-89.87180902082878,
-89.87357577167906,
-89.98841457694714,
-89.98488107524658,
null,
-87.95135084657636,
-87.6563034545799,
-87.63863594607712,
-87.62626869012517,
-87.57326616461683,
-87.57856641716765,
-87.52909739335986,
-87.52733064250958,
-87.52909739335986,
-87.54676490186264,
-87.5343976459107,
-87.90894882616968,
-87.94605059402552,
-87.95135084657636,
null,
-88.93013081763048,
-88.90892980742714,
-88.71105371219599,
-88.49020985591122,
-88.49020985591122,
-88.53261187631789,
-88.56087988992235,
-88.61211566458041,
-88.69515295454349,
-88.75345573260267,
-88.83649302256575,
-88.9283640667802,
-88.93013081763048,
null,
-89.47429007951618,
-89.24991272153085,
-89.26227997748279,
-89.16687543156777,
-89.12977366371193,
-89.13330716541249,
-89.19514344517222,
-89.25874647578223,
-89.30821549959002,
-89.35945127424809,
-89.38418578615199,
-89.4566225710134,
-89.47075657781562,
-89.48312383376756,
-89.51669209992285,
-89.49549108971952,
-89.47429007951618,
null,
-89.99371482949797,
-89.76933747151264,
-89.70043418835179,
-89.69690068665123,
-89.57676162883232,
-89.48489058461784,
-89.40538679635533,
-89.21811120622584,
-89.21811120622584,
-89.24814597068057,
-89.30468199788947,
-89.42658780655867,
-89.42658780655867,
-89.479590332067,
-89.479590332067,
-89.53435960842563,
-89.53435960842563,
-89.53259285757535,
-89.70043418835179,
-89.92481154633712,
-89.99371482949797,
-89.99371482949797,
-89.99371482949797,
null,
-89.21811120622584,
-89.14214091966387,
-89.1403741688136,
-89.02553536354552,
-89.02553536354552,
-89.1403741688136,
-89.53082610672509,
-89.53259285757535,
-89.53435960842563,
-89.53435960842563,
-89.479590332067,
-89.479590332067,
-89.42658780655867,
-89.42658780655867,
-89.30468199788947,
-89.24814597068057,
-89.21811120622584,
null,
-91.07496634986823,
-91.07319959901795,
-90.43363579121724,
-90.4371692929178,
-90.43893604376808,
-90.78521921042261,
-90.95129379034876,
-90.95129379034876,
-90.9565940428996,
-90.997229312456,
-91.04139808371295,
-91.08203335326935,
-91.11383486857436,
-91.07496634986823,
null,
-89.68630018154957,
-89.66333242049595,
-89.5944291373351,
-89.17747593666944,
-89.15097467391527,
-89.15274142476554,
-89.15450817561582,
-89.45308906931284,
-89.49902459142007,
-89.49549108971952,
-89.50609159482119,
-89.52022560162341,
-89.59089563563454,
-89.66686592219651,
-89.68630018154957,
null,
-88.70928696134571,
-88.41247281849897,
-88.41600632019953,
-88.41953982190009,
-88.46547534400732,
-88.48667635421066,
-88.5149443678151,
-88.47254234740844,
-88.42484007445091,
-88.44427433380397,
-88.476075849109,
-88.48490960336038,
-88.49020985591122,
-88.49020985591122,
-88.71105371219599,
-88.70928696134571,
null,
-87.93721683977414,
-87.6156681850235,
-87.55736540696432,
-87.53263089506042,
-87.53263089506042,
-87.53263089506042,
-87.53086414421014,
-87.6881049698849,
-87.96018460082774,
-87.96725160422886,
-87.96901835507914,
-87.93721683977414,
null,
-90.93539303269625,
-90.61384437794563,
-90.590876616892,
-90.61384437794563,
-90.60324387284396,
-90.5343405896831,
-90.46720405737253,
-90.45130329972002,
-90.46720405737253,
-90.49900557267755,
-90.55554159988644,
-90.59441011859256,
-90.6562463983523,
-90.66154665090313,
-90.67568065770536,
-90.7127824255612,
-90.6809809102562,
-90.70748217301036,
-90.72338293066288,
-90.73044993406398,
-90.83998848678124,
-90.93539303269625,
null,
-90.44953654886974,
-90.44423629631892,
-90.44423629631892,
-89.98488107524658,
-89.98841457694714,
-89.87357577167906,
-89.87180902082878,
-89.88417627678072,
-89.92481154633712,
-90.03788360075492,
-90.11915413986773,
-90.19865792813025,
-90.45130329972002,
-90.44953654886974,
null,
-89.14390767051415,
-89.13860741796331,
-89.13860741796331,
-88.69515295454349,
-88.69868645624405,
-88.69868645624405,
-89.14567442136443,
-89.14390767051415,
null,
-88.69868645624405,
-88.69868645624405,
-88.56441339162289,
-88.25346524197393,
-88.14746019095725,
-88.14746019095725,
-88.15099369265779,
-88.3700707980923,
-88.70221995794459,
-88.69868645624405,
null,
-88.2393312351717,
-88.20046271646558,
-88.02378763143777,
-88.00435337208471,
-87.94605059402552,
-87.75877500389603,
-87.74110749539325,
-87.74110749539325,
-87.74110749539325,
-87.68987172073518,
-87.68280471733407,
-87.66867071053184,
-87.63510244437656,
-87.6245019392749,
-87.6245019392749,
-87.61213468332295,
-87.61390143417321,
-87.6156681850235,
-87.61036793247267,
-87.58916692226933,
-87.58209991886821,
-87.56089890866487,
-87.53086414421014,
-87.52379714080904,
-87.52379714080904,
-87.52556389165932,
-87.52556389165932,
-87.78704301750048,
-87.79057651920104,
-87.81177752940438,
-87.90894882616968,
-87.91248232787024,
-88.0290878839886,
-88.0290878839886,
-88.00435337208471,
-87.98315236188137,
-87.9796188601808,
-87.96725160422886,
-87.95488434827692,
-87.94958409572608,
-87.94251709232496,
-87.94075034147468,
-87.91424907872052,
-87.9160158295708,
-87.91778258042108,
-87.91778258042108,
-87.92131608212163,
-87.92131608212163,
-87.93898359062442,
-88.17396145371141,
-88.2640657470756,
-88.2640657470756,
-88.2640657470756,
-88.2393312351717,
-88.2393312351717,
null,
-91.50605355733612,
-90.91242527164265,
-90.91419202249293,
-90.91595877334319,
-90.91595877334319,
-91.36471348931386,
-91.36117998761331,
-91.39828175546916,
-91.43538352332499,
-91.42831651992388,
-91.43715027417527,
-91.43715027417527,
-91.48485254713279,
-91.49721980308473,
-91.51135380988696,
-91.50605355733612,
null,
-88.2640657470756,
-88.17396145371141,
-87.93898359062442,
-87.92131608212163,
-87.92131608212163,
-87.91778258042108,
-87.91778258042108,
-87.9160158295708,
-87.91424907872052,
-87.94075034147468,
-87.94251709232496,
-87.94958409572608,
-87.95488434827692,
-87.96725160422886,
-87.9796188601808,
-87.98315236188137,
-88.00435337208471,
-88.0290878839886,
-88.03085463483887,
-88.14922694180751,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.2640657470756,
null,
-90.78521921042261,
-90.70041516960926,
-90.61737787964618,
-90.57144235753894,
-90.51313957947977,
-90.46013705397142,
-90.41596828271446,
-90.36296575720611,
-90.33823124530223,
-90.33646449445195,
-90.31349673339832,
-90.31172998254804,
-90.30996323169776,
-90.24812695193803,
-90.24105994853691,
-90.22869269258497,
-90.15978940942412,
-90.18452392132802,
-90.19512442642969,
-90.33293099275139,
-90.43186904036696,
-90.43363579121724,
-91.07319959901795,
-91.07143284816767,
-91.06436584476657,
-91.02726407691073,
-90.96719454800126,
-90.92479252759459,
-90.8664897495354,
-90.78521921042261,
null,
-87.90894882616968,
-87.5343976459107,
-87.52203038995876,
-87.49906262890514,
-87.54499815101236,
-87.62096843757433,
-87.63863594607712,
-87.64923645117878,
-87.91248232787024,
-87.90894882616968,
null,
-89.21811120622584,
-89.14390767051415,
-89.14567442136443,
-88.74638872920156,
-88.74638872920156,
-88.81352526151213,
-88.81175851066185,
-89.02553536354552,
-89.1403741688136,
-89.14214091966387,
-89.21811120622584,
-89.21811120622584,
null,
-89.6014961407362,
-89.26404672833307,
-89.26404672833307,
-89.14920792306499,
-89.14920792306499,
-89.14567442136443,
-89.14390767051415,
-89.21811120622584,
-89.40538679635533,
-89.48489058461784,
-89.57676162883232,
-89.5785283796826,
-89.6014961407362,
-89.6014961407362,
null,
-87.99021936528248,
-87.95135084657636,
-87.97608535848025,
-87.95488434827692,
-87.91248232787024,
-87.64923645117878,
-87.66160370713074,
-87.65453670372962,
-87.71460623263908,
-87.74110749539325,
-87.75170800049492,
-87.77997601409938,
-87.83297853960772,
-87.90894882616968,
-87.96901835507914,
-87.99021936528248,
null,
-91.49721980308473,
-91.49368630138417,
-91.46895178948027,
-91.41948276567248,
-91.37354724356526,
-91.38061424696637,
-91.36824699101442,
-91.3947482537686,
-91.37354724356526,
-91.33997897740997,
-91.2481079331955,
-91.18627165343577,
-91.18450490258549,
-91.02196382435989,
-90.90359151739125,
-90.90889176994209,
-90.91242527164265,
-91.50605355733612,
-91.49721980308473,
null,
-89.26934698088391,
-89.13507391626275,
-89.04496962289858,
-88.98490009398911,
-88.98843359568967,
-88.93013081763048,
-88.58561440182623,
-88.57501389672457,
-88.46017509145648,
-88.46017509145648,
-88.46017509145648,
-88.57501389672457,
-88.91953031252882,
-89.14920792306499,
-89.14920792306499,
-89.26404672833307,
-89.26404672833307,
-89.26934698088391,
null,
-87.96018460082774,
-87.6881049698849,
-87.53086414421014,
-87.53086414421014,
-87.53086414421014,
-87.57856641716765,
-87.59976742737099,
-87.59446717482017,
-87.59270042396989,
-87.57679966631738,
-87.6404026969274,
-87.63863594607712,
-87.6563034545799,
-87.95135084657636,
-88.00788687378527,
-88.01318712633609,
-88.01495387718637,
-87.96018460082774,
null,
-88.70752021049543,
-88.507877364414,
-88.304701016632,
-88.2163634741181,
-88.20046271646558,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.20046271646558,
-88.2393312351717,
-88.25876549452477,
-88.3541700404398,
-88.39480530999619,
-88.5891479035268,
-88.70575345964515,
-88.70752021049543,
null,
-90.3399979961525,
-90.28876222149444,
-90.27109471299165,
-90.26049420788998,
-90.03611684990464,
-89.90361053613378,
-89.89831028358294,
-90.03611684990464,
-90.03611684990464,
-90.20572493153136,
-90.21809218748331,
-90.25166045363859,
-90.25166045363859,
-90.32233048764972,
-90.35059850125417,
-90.36296575720611,
-90.37179951145751,
-90.34883175040389,
-90.34176474700278,
-90.3399979961525,
null,
-89.1403741688136,
-89.02553536354552,
-89.02553536354552,
-88.81175851066185,
-88.80999175981157,
-88.71812071559711,
-88.71812071559711,
-88.64215042903514,
-88.58561440182623,
-88.47077559655816,
-88.47077559655816,
-88.47077559655816,
-88.80645825811101,
-89.11740640775997,
-89.1403741688136,
-89.1403741688136,
null,
-89.40185329465477,
-89.3665182776492,
-89.0432028720483,
-88.99373384824051,
-88.94073132273216,
-88.94073132273216,
-89.09267189585609,
-89.17394243496888,
-89.17394243496888,
-89.39655304210393,
-89.39831979295421,
-89.40185329465477,
null,
-88.41247281849897,
-88.37537105064312,
-88.17926170626225,
-88.13155943330473,
-88.13155943330473,
-88.07325665524556,
-88.06618965184444,
-88.06265615014388,
-88.15806069605891,
-88.28173325557839,
-88.35947029299062,
-88.41600632019953,
-88.41247281849897,
null,
-88.46017509145648,
-88.46017509145648,
-88.34710303703868,
-87.93368333807358,
-87.94251709232496,
-87.93721683977414,
-88.34886978788896,
-88.46194184230676,
-88.46370859315704,
-88.46017509145648,
null,
-89.70396769005235,
-89.61386339668816,
-89.48312383376756,
-89.35238427084698,
-89.14390767051415,
-89.14567442136443,
-89.14744117221471,
-89.59266238648482,
-89.70220093920207,
-89.70396769005235,
null,
-90.24105994853691,
-90.17922366877718,
-90.18099041962746,
-90.16508966197496,
-90.15802265857384,
-90.12798789411912,
-89.68453343069929,
-89.62799740349038,
-89.63153090519094,
-89.8612085157271,
-90.18452392132802,
-90.15978940942412,
-90.22869269258497,
-90.24105994853691,
null,
-89.04496962289858,
-89.04143612119802,
-88.70928696134571,
-88.71105371219599,
-88.90892980742714,
-88.93013081763048,
-89.04496962289858,
-89.04496962289858,
null,
-88.25169849112365,
-88.24109798602198,
-88.24463148772254,
-88.01142037548581,
-88.01495387718637,
-87.52733064250958,
-87.52733064250958,
-87.52733064250958,
-87.52733064250958,
-88.13155943330473,
-88.2481649894231,
-88.25169849112365,
null,
-89.8612085157271,
-89.63153090519094,
-89.16687543156777,
-89.1651086807175,
-89.33648351319448,
-89.35768452339782,
-89.46722307611506,
-89.46722307611506,
-89.63683115774177,
-89.63859790859205,
-89.85767501402655,
-89.8612085157271,
null,
-89.25167947238113,
-89.25167947238113,
-89.1403741688136,
-89.11740640775997,
-88.80645825811101,
-88.80822500896129,
-88.69338620369321,
-88.69515295454349,
-89.13860741796331,
-89.13860741796331,
-89.25521297408167,
-89.25697972493195,
-89.25874647578223,
-89.25167947238113,
null,
-88.20046271646558,
-87.89834832106801,
-87.80117702430272,
-87.80294377515298,
-87.82061128365577,
-87.834745290458,
-87.83297853960772,
-87.79941027345244,
-87.79941027345244,
-87.75877500389603,
-87.94605059402552,
-88.00435337208471,
-88.02378763143777,
-88.20046271646558,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.19869596561531,
-88.20046271646558,
null,
-90.35413200295473,
-90.20572493153136,
-90.19865792813025,
-90.11915413986773,
-90.03788360075492,
-89.92481154633712,
-89.7163349460043,
-89.71456819515402,
-89.6014961407362,
-89.6014961407362,
-89.63683115774177,
-89.7481364613093,
-89.96898031759407,
-89.99371482949797,
-90.13328814666995,
-90.28699547064416,
-90.35413200295473,
null,
-88.5891479035268,
-88.39480530999619,
-88.3541700404398,
-88.25876549452477,
-88.2393312351717,
-88.2393312351717,
-88.2640657470756,
-88.2640657470756,
-88.2640657470756,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.26229899622533,
-88.37537105064312,
-88.40540581509786,
-88.60328191032902,
-88.60151515947874,
-88.5891479035268,
-88.5891479035268,
null,
-89.83647400382321,
-89.49372433886924,
-89.40185329465477,
-89.39831979295421,
-89.39655304210393,
-89.68806693239983,
-89.89654353273266,
-89.91951129378629,
-89.9265782971874,
-89.9265782971874,
-89.83647400382321,
null,
-88.74638872920156,
-88.74638872920156,
-88.57501389672457,
-88.46017509145648,
-88.46370859315704,
-88.46194184230676,
-88.46194184230676,
-88.47430909825871,
-88.74638872920156,
-88.74638872920156,
null
],
"mode": "lines",
"showlegend": false,
"type": "scattermapbox",
"uid": "12505c69-a9c9-11e8-9fd3-e377df750c87"
}
],
"_js2py_relayout": {},
"_js2py_restyle": {},
"_js2py_update": {},
"_layout": {
"autosize": false,
"font": {
"family": "Balto"
},
"height": 700,
"hovermode": "closest",
"mapbox": {
"accesstoken": "pk.eyJ1IjoiZW1wZXQiLCJhIjoiY2l4OXdlYXh4MDAzNDJvbWdwcGdlemhkdyJ9.hPC39hOpk1pO09UHoEGNIw",
"bearing": 0,
"center": {
"lat": 39.85384589515813,
"lon": -88.9822499677137
},
"layers": [
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.63683115774177,
41.148569234450726
],
[
-89.46722307611506,
41.148569234450726
],
[
-89.32941650979336,
41.148569234450726
],
[
-89.35945127424809,
41.10370875301229
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.04850312459912,
41.10495487749669
],
[
-89.04850312459912,
40.92551295174295
],
[
-89.16157517901694,
40.926759076227356
],
[
-89.4725233286659,
40.92177457828975
],
[
-89.447788816762,
40.97286568215019
],
[
-89.63859790859205,
40.97411180663459
],
[
-89.63683115774177,
41.14109248754432
],
[
-89.63683115774177,
41.148569234450726
]
]
],
"type": "Polygon"
},
"id": 0,
"properties": {
"Clinton_Trump": [
1789,
3785
],
"center_lon_lat": [
-89.34355051659558,
41.03517190637024
],
"county_name": "Marshall",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47077559655816,
39.21583015914484
],
[
-88.47077559655816,
39.37533409314817
],
[
-88.01318712633609,
39.37907246660137
],
[
-88.00788687378527,
39.17470805115961
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.47077559655816,
39.17221580219081
],
[
-88.47077559655816,
39.21583015914484
]
]
],
"type": "Polygon"
},
"id": 1,
"properties": {
"Clinton_Trump": [
1031,
4206
],
"center_lon_lat": [
-88.2393312351717,
39.27502107215389
],
"county_name": "Cumberland",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47430909825871,
39.791539670938086
],
[
-88.46194184230676,
39.80150866681329
],
[
-88.46194184230676,
39.878768384846154
],
[
-88.34886978788896,
39.878768384846154
],
[
-87.93721683977414,
39.878768384846154
],
[
-87.96901835507914,
39.791539670938086
],
[
-87.96725160422886,
39.68686521424841
],
[
-88.06442290099416,
39.65321985316958
],
[
-88.47254234740844,
39.65197372868518
],
[
-88.47430909825871,
39.791539670938086
]
]
],
"type": "Polygon"
},
"id": 2,
"properties": {
"Clinton_Trump": [
1949,
5698
],
"center_lon_lat": [
-88.20576296901643,
39.765371056765666
],
"county_name": "Douglas",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.58738115267651,
41.10869325094989
],
[
-88.25169849112365,
41.1149238733719
],
[
-88.2481649894231,
40.99529592286941
],
[
-88.23579773347114,
40.61772020409592
],
[
-88.46017509145648,
40.61772020409592
],
[
-88.57501389672457,
40.616474079611514
],
[
-88.58561440182623,
40.757286146348825
],
[
-88.93013081763048,
40.75354777289562
],
[
-88.93189756848076,
40.92800520071175
],
[
-88.93189756848076,
41.10620100198109
],
[
-88.58738115267651,
41.10869325094989
]
]
],
"type": "Polygon"
},
"id": 3,
"properties": {
"Clinton_Trump": [
4023,
10208
],
"center_lon_lat": [
-88.58384765097595,
40.86569897649171
],
"county_name": "Livingston",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.63859790859205,
38.99900449885908
],
[
-89.5855953830837,
39.0289114864847
],
[
-89.25167947238113,
39.0276653620003
],
[
-89.25874647578223,
38.99900449885908
],
[
-89.25697972493195,
38.91676028288862
],
[
-89.25521297408167,
38.74230285507248
],
[
-89.48312383376756,
38.741056730588085
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.59796263903566,
38.87439205041898
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63859790859205,
38.99900449885908
]
]
],
"type": "Polygon"
},
"id": 4,
"properties": {
"Clinton_Trump": [
2068,
4888
],
"center_lon_lat": [
-89.44513869048659,
38.88498410853639
],
"county_name": "Bond",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.9831143243963,
41.14981535893513
],
[
-89.86827551912822,
41.14981535893513
],
[
-89.86650876827794,
41.21710608109278
],
[
-89.85767501402655,
41.23455182387439
],
[
-89.63859790859205,
41.23455182387439
],
[
-89.63683115774177,
41.148569234450726
],
[
-89.63683115774177,
41.14109248754432
],
[
-89.63859790859205,
40.97411180663459
],
[
-89.98488107524658,
40.97411180663459
],
[
-89.9831143243963,
41.14981535893513
]
]
],
"type": "Polygon"
},
"id": 5,
"properties": {
"Clinton_Trump": [
751,
1778
],
"center_lon_lat": [
-89.81085611649416,
41.10433181525449
],
"county_name": "Stark",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.15272240602302,
39.52113065782308
],
[
-89.92481154633712,
39.52237678230748
],
[
-89.70043418835179,
39.52362290679188
],
[
-89.69690068665123,
38.99900449885908
],
[
-90.11562063816717,
38.99900449885908
],
[
-90.1456554026219,
39.00025062334348
],
[
-90.14742215347218,
39.26193676506768
],
[
-90.15272240602302,
39.52113065782308
]
]
],
"type": "Polygon"
},
"id": 6,
"properties": {
"Clinton_Trump": [
6689,
14322
],
"center_lon_lat": [
-89.92481154633712,
39.261313702825476
],
"county_name": "Macoupin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.25876549452477,
38.84697731176216
],
[
-87.94605059402552,
38.85071568521536
],
[
-87.90894882616968,
38.85071568521536
],
[
-87.91248232787024,
38.57033767622515
],
[
-87.95488434827692,
38.57033767622515
],
[
-88.14746019095725,
38.56909155174075
],
[
-88.14746019095725,
38.597752414881974
],
[
-88.25346524197393,
38.59899853936637
],
[
-88.29763401323089,
38.6338900249296
],
[
-88.25876549452477,
38.73108773471287
],
[
-88.25876549452477,
38.84697731176216
]
]
],
"type": "Polygon"
},
"id": 7,
"properties": {
"Clinton_Trump": [
1584,
5739
],
"center_lon_lat": [
-88.10329141970028,
38.70990361847805
],
"county_name": "Richland",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.3700707980923,
38.25506818167171
],
[
-88.15099369265779,
38.25631430615611
],
[
-88.02732113313832,
38.25506818167171
],
[
-87.99021936528248,
38.25880655512491
],
[
-87.96901835507914,
38.236376314405696
],
[
-87.97078510592942,
38.230145691983694
],
[
-87.97608535848025,
38.197746455389264
],
[
-87.92838308552274,
38.151639849466434
],
[
-87.96195135167802,
38.09930262112159
],
[
-87.9884526144322,
38.05568826416756
],
[
-88.03085463483887,
38.03076577447954
],
[
-88.01672062803665,
37.96098280335308
],
[
-88.04145513994055,
37.892445956711036
],
[
-88.05912264844333,
37.86752346702301
],
[
-88.13685968585557,
37.91487619743025
],
[
-88.37537105064312,
37.90739945052385
],
[
-88.3700707980923,
38.25506818167171
]
]
],
"type": "Polygon"
},
"id": 8,
"properties": {
"Clinton_Trump": [
1412,
5640
],
"center_lon_lat": [
-88.15187706808294,
38.06316501107396
],
"county_name": "White",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.70573444090262,
38.65507414116442
],
[
-89.5944291373351,
38.656320265648816
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.48312383376756,
38.741056730588085
],
[
-89.25521297408167,
38.74230285507248
],
[
-89.13860741796331,
38.73607223265048
],
[
-89.14390767051415,
38.5030469540675
],
[
-89.35238427084698,
38.51800044788031
],
[
-89.48312383376756,
38.46815546850427
],
[
-89.61386339668816,
38.471893841957474
],
[
-89.70396769005235,
38.41581824015943
],
[
-89.70573444090262,
38.65507414116442
]
]
],
"type": "Polygon"
},
"id": 9,
"properties": {
"Clinton_Trump": [
3945,
12412
],
"center_lon_lat": [
-89.42217092943297,
38.57968360985816
],
"county_name": "Clinton",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.17747593666944,
37.949767682993475
],
[
-89.1156396569097,
38.08559525179318
],
[
-89.12977366371193,
38.12422511080961
],
[
-88.70575345964515,
38.12422511080961
],
[
-88.70752021049543,
37.906153326039444
],
[
-88.70752021049543,
37.86378509356981
],
[
-89.15274142476554,
37.862538969085406
],
[
-89.15097467391527,
37.944783185055876
],
[
-89.17747593666944,
37.949767682993475
]
]
],
"type": "Polygon"
},
"id": 10,
"properties": {
"Clinton_Trump": [
4727,
13116
],
"center_lon_lat": [
-88.9416146981573,
37.993382039947505
],
"county_name": "Franklin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.59621490692791,
41.45760810658216
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.24463148772254,
41.20215258727997
],
[
-88.24109798602198,
41.12987736718471
],
[
-88.25169849112365,
41.1149238733719
],
[
-88.58738115267651,
41.10869325094989
],
[
-88.59621490692791,
41.45760810658216
]
]
],
"type": "Polygon"
},
"id": 11,
"properties": {
"Clinton_Trump": [
8065,
13454
],
"center_lon_lat": [
-88.41865644647496,
41.286265989977025
],
"county_name": "Grundy",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.50255809312063,
37.55973071937598
],
[
-89.49902459142007,
37.570945839735586
],
[
-89.45308906931284,
37.60085282736121
],
[
-89.15450817561582,
37.60085282736121
],
[
-89.04143612119802,
37.597114453908006
],
[
-89.04496962289858,
37.3304438142462
],
[
-89.24991272153085,
37.33542831218381
],
[
-89.47429007951618,
37.33542831218381
],
[
-89.42835455740894,
37.35661242841862
],
[
-89.42658780655867,
37.407703532279065
],
[
-89.4725233286659,
37.46627138304591
],
[
-89.51139184737202,
37.529823731750355
],
[
-89.50255809312063,
37.55973071937598
]
]
],
"type": "Polygon"
},
"id": 12,
"properties": {
"Clinton_Trump": [
2402,
5790
],
"center_lon_lat": [
-89.27641398428503,
37.46564832080371
],
"county_name": "Union",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.3152634842486,
42.19406767686313
],
[
-89.91951129378629,
42.19655992583193
],
[
-89.89654353273266,
42.19655992583193
],
[
-89.68806693239983,
42.19905217480073
],
[
-89.68453343069929,
41.92988928617012
],
[
-90.12798789411912,
41.92864316168572
],
[
-90.15802265857384,
41.92988928617012
],
[
-90.15625590772356,
41.93736603307653
],
[
-90.14035515007106,
41.99593388384337
],
[
-90.15978940942412,
42.0333176183754
],
[
-90.16332291112468,
42.03954824079741
],
[
-90.15978940942412,
42.105592838470656
],
[
-90.20749168238163,
42.149207195424694
],
[
-90.26932796214138,
42.17412968511271
],
[
-90.3152634842486,
42.19406767686313
]
]
],
"type": "Polygon"
},
"id": 13,
"properties": {
"Clinton_Trump": [
2447,
4434
],
"center_lon_lat": [
-89.99989845747395,
42.06384766824323
],
"county_name": "Carroll",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.78521921042261,
41.06881726744906
],
[
-90.43893604376808,
41.06383276951146
],
[
-90.44423629631892,
40.71491791387919
],
[
-90.44423629631892,
40.62768919997112
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.78521921042261,
41.06881726744906
]
]
],
"type": "Polygon"
},
"id": 14,
"properties": {
"Clinton_Trump": [
2987,
4275
],
"center_lon_lat": [
-90.61384437794563,
40.848253233710096
],
"county_name": "Warren",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.68806693239983,
42.19905217480073
],
[
-89.39655304210393,
42.20154442376953
],
[
-89.17394243496888,
42.20403667273833
],
[
-89.17394243496888,
42.15045331990909
],
[
-89.09267189585609,
42.15045331990909
],
[
-88.94073132273216,
42.15169944439349
],
[
-88.94249807358244,
41.89125942715369
],
[
-89.415987301457,
41.886274929216086
],
[
-89.42835455740894,
41.907459045450906
],
[
-89.62799740349038,
41.9012284230289
],
[
-89.68453343069929,
41.92988928617012
],
[
-89.68806693239983,
42.19905217480073
]
]
],
"type": "Polygon"
},
"id": 15,
"properties": {
"Clinton_Trump": [
8050,
14352
],
"center_lon_lat": [
-89.31439912756599,
42.04515580097721
],
"county_name": "Ogle",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.13155943330473,
40.99778817183821
],
[
-87.52733064250958,
41.01024941668222
],
[
-87.52556389165932,
40.89560596411733
],
[
-87.52556389165932,
40.73734815459841
],
[
-87.52556389165932,
40.535475988125455
],
[
-87.52733064250958,
40.49061550668702
],
[
-87.93545008892386,
40.485631008749415
],
[
-88.1174254265025,
40.48812325771822
],
[
-88.11919217735279,
40.51678412085944
],
[
-88.13155943330473,
40.99778817183821
]
]
],
"type": "Polygon"
},
"id": 16,
"properties": {
"Clinton_Trump": [
2504,
9750
],
"center_lon_lat": [
-87.82856166248203,
40.74794021271582
],
"county_name": "Iroquois",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.1651086807175,
41.31056541742285
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.35945127424809,
41.10370875301229
],
[
-89.32941650979336,
41.148569234450726
],
[
-89.46722307611506,
41.148569234450726
],
[
-89.46722307611506,
41.23455182387439
],
[
-89.35768452339782,
41.23330569938999
],
[
-89.33648351319448,
41.30184254603204
],
[
-89.1651086807175,
41.31056541742285
]
]
],
"type": "Polygon"
},
"id": 17,
"properties": {
"Clinton_Trump": [
1147,
1767
],
"center_lon_lat": [
-89.31528250299114,
41.20713708521757
],
"county_name": "Putnam",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.91419202249293,
40.10431691652273
],
[
-90.69511491705842,
40.103070792038324
],
[
-90.6067773745445,
39.980950592567034
],
[
-90.51313957947977,
39.987181214989036
],
[
-90.51137282862949,
39.96475097426982
],
[
-90.5838096134909,
39.87627613587735
],
[
-90.57144235753894,
39.83889240134532
],
[
-90.88945751058903,
39.84013852582972
],
[
-90.91595877334319,
39.84512302376733
],
[
-90.91419202249293,
40.10431691652273
]
]
],
"type": "Polygon"
},
"id": 18,
"properties": {
"Clinton_Trump": [
476,
1796
],
"center_lon_lat": [
-90.71366580098635,
39.97160465893403
],
"county_name": "Brown",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.46017509145648,
40.61772020409592
],
[
-88.23579773347114,
40.61772020409592
],
[
-88.2481649894231,
40.99529592286941
],
[
-88.13155943330473,
40.99778817183821
],
[
-88.11919217735279,
40.51678412085944
],
[
-88.1174254265025,
40.48812325771822
],
[
-87.93545008892386,
40.485631008749415
],
[
-87.93368333807358,
40.39964841932575
],
[
-88.34710303703868,
40.39840229484135
],
[
-88.46017509145648,
40.39840229484135
],
[
-88.46017509145648,
40.61772020409592
]
]
],
"type": "Polygon"
},
"id": 19,
"properties": {
"Clinton_Trump": [
1414,
4480
],
"center_lon_lat": [
-88.19692921476502,
40.69809523333978
],
"county_name": "Ford",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.90359151739125,
40.63890432033074
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.44423629631892,
40.62768919997112
],
[
-90.44953654886974,
40.27628209537006
],
[
-90.90889176994209,
40.28375884227646
],
[
-90.90359151739125,
40.63890432033074
]
]
],
"type": "Polygon"
},
"id": 20,
"properties": {
"Clinton_Trump": [
5288,
6795
],
"center_lon_lat": [
-90.6765640331305,
40.457593207850394
],
"county_name": "McDonough",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.24991272153085,
37.33542831218381
],
[
-89.04496962289858,
37.3304438142462
],
[
-89.04496962289858,
37.29430620419858
],
[
-88.93013081763048,
37.30302907558938
],
[
-88.9283640667802,
37.227015482040926
],
[
-88.93189756848076,
37.22826160652532
],
[
-88.93366431933104,
37.22826160652532
],
[
-89.00080085164161,
37.22452323307212
],
[
-89.0591036297008,
37.188385623024494
],
[
-89.09973889925719,
37.14103289261726
],
[
-89.16864218241804,
37.0737421704596
],
[
-89.16687543156777,
37.07249604597521
],
[
-89.26227997748279,
37.10614140705403
],
[
-89.24991272153085,
37.33542831218381
]
]
],
"type": "Polygon"
},
"id": 21,
"properties": {
"Clinton_Trump": [
962,
1675
],
"center_lon_lat": [
-89.0953220221315,
37.20396217907951
],
"county_name": "Pulaski",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.60328191032902,
41.71929424830636
],
[
-88.40540581509786,
41.72178649727516
],
[
-88.37537105064312,
41.72178649727516
],
[
-88.26229899622533,
41.72427874624397
],
[
-88.26053224537505,
41.69561788310274
],
[
-88.25699874367449,
41.59343567538186
],
[
-88.2552319928242,
41.52116045528661
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.59621490692791,
41.45760810658216
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.60328191032902,
41.71929424830636
]
]
],
"type": "Polygon"
},
"id": 22,
"properties": {
"Clinton_Trump": [
24884,
24961
],
"center_lon_lat": [
-88.42749020072634,
41.59094342641306
],
"county_name": "Kendall",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.93896457188188,
41.62832716094509
],
[
-88.81882551406296,
41.6308194099139
],
[
-88.71282046304627,
41.629573285429494
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.59621490692791,
41.45760810658216
],
[
-88.58738115267651,
41.10869325094989
],
[
-88.93189756848076,
41.10620100198109
],
[
-88.93189756848076,
40.92800520071175
],
[
-89.04850312459912,
40.92551295174295
],
[
-89.04850312459912,
41.10495487749669
],
[
-89.16334192986722,
41.10495487749669
],
[
-89.1651086807175,
41.31056541742285
],
[
-89.16687543156777,
41.585958928475456
],
[
-89.16864218241804,
41.62832716094509
],
[
-88.93896457188188,
41.62832716094509
]
]
],
"type": "Polygon"
},
"id": 23,
"properties": {
"Clinton_Trump": [
19543,
26689
],
"center_lon_lat": [
-88.87801166754727,
41.27816618082842
],
"county_name": "LaSalle",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.59794362029312,
39.789047421969286
],
[
-90.48310481502503,
39.789047421969286
],
[
-90.48310481502503,
39.752909811921654
],
[
-90.37003276060723,
39.752909811921654
],
[
-90.37179951145751,
39.66692722249799
],
[
-90.2993627265961,
39.63702023487237
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.58027611179034,
39.52237678230748
],
[
-90.64564589325063,
39.70431095703002
],
[
-90.59794362029312,
39.789047421969286
]
]
],
"type": "Polygon"
},
"id": 24,
"properties": {
"Clinton_Trump": [
535,
1966
],
"center_lon_lat": [
-90.47250430992337,
39.65508903989618
],
"county_name": "Scott",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.91242527164265,
40.19279175491519
],
[
-90.90889176994209,
40.28375884227646
],
[
-90.44953654886974,
40.27628209537006
],
[
-90.45130329972002,
40.18905338146199
],
[
-90.19865792813025,
40.18406888352439
],
[
-90.20572493153136,
40.15540802038316
],
[
-90.35413200295473,
40.12425490827314
],
[
-90.43540254206752,
40.01958045158346
],
[
-90.51313957947977,
39.987181214989036
],
[
-90.6067773745445,
39.980950592567034
],
[
-90.69511491705842,
40.103070792038324
],
[
-90.91419202249293,
40.10431691652273
],
[
-90.91242527164265,
40.19279175491519
]
]
],
"type": "Polygon"
},
"id": 25,
"properties": {
"Clinton_Trump": [
1075,
2524
],
"center_lon_lat": [
-90.55642497531159,
40.13235471742175
],
"county_name": "Schuyler",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.15274142476554,
37.862538969085406
],
[
-88.70752021049543,
37.86378509356981
],
[
-88.70928696134571,
37.599606702876805
],
[
-89.04143612119802,
37.597114453908006
],
[
-89.15450817561582,
37.60085282736121
],
[
-89.15274142476554,
37.862538969085406
]
]
],
"type": "Polygon"
},
"id": 26,
"properties": {
"Clinton_Trump": [
8581,
21570
],
"center_lon_lat": [
-88.93101419305563,
37.73044977373891
],
"county_name": "Williamson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.43363579121724,
41.32801116020446
],
[
-90.43186904036696,
41.45760810658216
],
[
-90.33293099275139,
41.5149298328646
],
[
-90.19512442642969,
41.54109844703702
],
[
-90.18452392132802,
41.58471280399106
],
[
-89.8612085157271,
41.58471280399106
],
[
-89.85767501402655,
41.23455182387439
],
[
-89.86650876827794,
41.21710608109278
],
[
-89.86827551912822,
41.14981535893513
],
[
-89.9831143243963,
41.14981535893513
],
[
-90.4371692929178,
41.151061483419525
],
[
-90.43363579121724,
41.32801116020446
]
]
],
"type": "Polygon"
},
"id": 27,
"properties": {
"Clinton_Trump": [
8871,
13985
],
"center_lon_lat": [
-90.14742215347218,
41.36726408146309
],
"county_name": "Henry",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.14744117221471,
38.212699949202076
],
[
-89.14567442136443,
38.47313996644188
],
[
-88.69868645624405,
38.47438609092628
],
[
-88.70221995794459,
38.25631430615611
],
[
-88.70575345964515,
38.12422511080961
],
[
-89.12977366371193,
38.12422511080961
],
[
-89.15097467391527,
38.130455733231614
],
[
-89.14744117221471,
38.212699949202076
]
]
],
"type": "Polygon"
},
"id": 28,
"properties": {
"Clinton_Trump": [
4425,
11695
],
"center_lon_lat": [
-88.92483056507966,
38.299305600867946
],
"county_name": "Jefferson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.25519395533915,
38.53046169272432
],
[
-90.24812695193803,
38.54416906205273
],
[
-90.18452392132802,
38.61145978421038
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.03611684990464,
38.65881251461762
],
[
-89.70573444090262,
38.65507414116442
],
[
-89.70396769005235,
38.41581824015943
],
[
-89.70220093920207,
38.218930571624085
],
[
-89.89831028358294,
38.22017669610848
],
[
-89.90361053613378,
38.297436414141345
],
[
-90.03611684990464,
38.30865153450095
],
[
-90.26049420788998,
38.51800044788031
],
[
-90.25519395533915,
38.53046169272432
]
]
],
"type": "Polygon"
},
"id": 29,
"properties": {
"Clinton_Trump": [
60756,
53857
],
"center_lon_lat": [
-89.98134757354603,
38.43949460536305
],
"county_name": "St. Clair",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.14920792306499,
40.28126659330766
],
[
-88.91953031252882,
40.28251271779206
],
[
-88.57501389672457,
40.28126659330766
],
[
-88.74638872920156,
40.09808629410072
],
[
-88.74638872920156,
40.05447193714669
],
[
-89.14567442136443,
40.048241314724685
],
[
-89.14920792306499,
40.28126659330766
]
]
],
"type": "Polygon"
},
"id": 30,
"properties": {
"Clinton_Trump": [
1910,
5077
],
"center_lon_lat": [
-88.86211090989478,
40.165377016258375
],
"county_name": "De Witt",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.59266238648482,
38.218930571624085
],
[
-89.14744117221471,
38.212699949202076
],
[
-89.15097467391527,
38.130455733231614
],
[
-89.12977366371193,
38.12422511080961
],
[
-89.1156396569097,
38.08559525179318
],
[
-89.17747593666944,
37.949767682993475
],
[
-89.5944291373351,
37.95475218093108
],
[
-89.59266238648482,
38.218930571624085
]
]
],
"type": "Polygon"
},
"id": 31,
"properties": {
"Clinton_Trump": [
2462,
6855
],
"center_lon_lat": [
-89.35503439712241,
38.08434912730878
],
"county_name": "Perry",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.64211239155007,
42.508091046932165
],
[
-90.4371692929178,
42.50684492244776
],
[
-90.42656878781614,
42.50684492244776
],
[
-90.22339244003413,
42.508091046932165
],
[
-89.9265782971874,
42.505598797963366
],
[
-89.91951129378629,
42.19655992583193
],
[
-90.3152634842486,
42.19406767686313
],
[
-90.33823124530223,
42.20279054825393
],
[
-90.40006752506196,
42.23892815830156
],
[
-90.4301022895167,
42.277558017317986
],
[
-90.41596828271446,
42.31992624978762
],
[
-90.4460030471692,
42.35730998431965
],
[
-90.48310481502503,
42.38098634952327
],
[
-90.51667308118033,
42.403416590242486
],
[
-90.56437535413784,
42.43830807580571
],
[
-90.590876616892,
42.44703094719652
],
[
-90.64564589325063,
42.47195343688453
],
[
-90.64211239155007,
42.508091046932165
]
]
],
"type": "Polygon"
},
"id": 32,
"properties": {
"Clinton_Trump": [
4462,
6121
],
"center_lon_lat": [
-90.28257859351845,
42.351079361897646
],
"county_name": "Jo Daviess",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.57144235753894,
39.83889240134532
],
[
-90.5838096134909,
39.87627613587735
],
[
-89.99371482949797,
39.872537762424145
],
[
-89.99371482949797,
39.78530904851608
],
[
-89.92481154633712,
39.52237678230748
],
[
-90.15272240602302,
39.52113065782308
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.2993627265961,
39.63702023487237
],
[
-90.37179951145751,
39.66692722249799
],
[
-90.37003276060723,
39.752909811921654
],
[
-90.48310481502503,
39.752909811921654
],
[
-90.48310481502503,
39.789047421969286
],
[
-90.59794362029312,
39.789047421969286
],
[
-90.57144235753894,
39.83889240134532
]
]
],
"type": "Polygon"
},
"id": 33,
"properties": {
"Clinton_Trump": [
4696,
9076
],
"center_lon_lat": [
-90.26137758331512,
39.69870339685021
],
"county_name": "Morgan",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.43893604376808,
41.06383276951146
],
[
-90.4371692929178,
41.151061483419525
],
[
-89.9831143243963,
41.14981535893513
],
[
-89.98488107524658,
40.97411180663459
],
[
-89.98488107524658,
40.71242566491039
],
[
-90.44423629631892,
40.71491791387919
],
[
-90.43893604376808,
41.06383276951146
]
]
],
"type": "Polygon"
},
"id": 34,
"properties": {
"Clinton_Trump": [
10083,
10737
],
"center_lon_lat": [
-90.21367531035762,
40.931743574164955
],
"county_name": "Knox",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.62799740349038,
41.9012284230289
],
[
-89.42835455740894,
41.907459045450906
],
[
-89.415987301457,
41.886274929216086
],
[
-88.94249807358244,
41.89125942715369
],
[
-88.93896457188188,
41.62832716094509
],
[
-89.16864218241804,
41.62832716094509
],
[
-89.16687543156777,
41.585958928475456
],
[
-89.63153090519094,
41.585958928475456
],
[
-89.62799740349038,
41.9012284230289
]
]
],
"type": "Polygon"
},
"id": 35,
"properties": {
"Clinton_Trump": [
5528,
8612
],
"center_lon_lat": [
-89.28524773853641,
41.746708986963185
],
"county_name": "Lee",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.1456554026219,
39.00025062334348
],
[
-90.11562063816717,
38.99900449885908
],
[
-89.69690068665123,
38.99900449885908
],
[
-89.63859790859205,
38.99900449885908
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.63683115774177,
38.91800640737302
],
[
-89.59796263903566,
38.87439205041898
],
[
-89.59619588818538,
38.743548979556884
],
[
-89.5944291373351,
38.656320265648816
],
[
-89.70573444090262,
38.65507414116442
],
[
-90.03611684990464,
38.65881251461762
],
[
-90.18099041962746,
38.66005863910202
],
[
-90.19512442642969,
38.68747337775884
],
[
-90.20925843323191,
38.72610323677527
],
[
-90.16685641282524,
38.7722098426981
],
[
-90.16508966197496,
38.7722098426981
],
[
-90.11738738901745,
38.80585520377693
],
[
-90.11208713646661,
38.84946956073097
],
[
-90.20749168238163,
38.89931454010701
],
[
-90.23045944343525,
38.910529660466615
],
[
-90.27639496554248,
38.91925253185742
],
[
-90.27286146384193,
38.99900449885908
],
[
-90.1456554026219,
39.00025062334348
]
]
],
"type": "Polygon"
},
"id": 36,
"properties": {
"Clinton_Trump": [
50587,
70490
],
"center_lon_lat": [
-89.93541205143879,
38.82766238225395
],
"county_name": "Madison",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.70752021049543,
37.86378509356981
],
[
-88.70752021049543,
37.906153326039444
],
[
-88.37537105064312,
37.90739945052385
],
[
-88.37537105064312,
37.599606702876805
],
[
-88.41247281849897,
37.60085282736121
],
[
-88.70928696134571,
37.599606702876805
],
[
-88.70752021049543,
37.86378509356981
]
]
],
"type": "Polygon"
},
"id": 37,
"properties": {
"Clinton_Trump": [
2572,
8276
],
"center_lon_lat": [
-88.54232900599442,
37.753503076700326
],
"county_name": "Saline",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.26229899622533,
41.72427874624397
],
[
-88.14922694180751,
41.725524870728364
],
[
-88.03085463483887,
41.72801711969717
],
[
-88.0290878839886,
41.68440276274313
],
[
-88.0290878839886,
41.66944926893032
],
[
-87.91248232787024,
41.6432806547579
],
[
-87.90894882616968,
41.55729806533424
],
[
-87.81177752940438,
41.55854418981864
],
[
-87.79057651920104,
41.52863720219302
],
[
-87.78704301750048,
41.47006935142617
],
[
-87.52556389165932,
41.47131547591057
],
[
-87.52733064250958,
41.29810417257884
],
[
-87.52733064250958,
41.29810417257884
],
[
-88.01495387718637,
41.29311967464123
],
[
-88.01142037548581,
41.20589096073317
],
[
-88.24463148772254,
41.20215258727997
],
[
-88.25169849112365,
41.463838729004166
],
[
-88.2552319928242,
41.52116045528661
],
[
-88.25699874367449,
41.59343567538186
],
[
-88.26053224537505,
41.69561788310274
],
[
-88.26229899622533,
41.72427874624397
]
]
],
"type": "Polygon"
},
"id": 38,
"properties": {
"Clinton_Trump": [
151927,
132720
],
"center_lon_lat": [
-87.89393144394232,
41.46508485348857
],
"county_name": "Will",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.14742215347218,
39.26193676506768
],
[
-90.1456554026219,
39.00025062334348
],
[
-90.27286146384193,
38.99900449885908
],
[
-90.27639496554248,
38.91925253185742
],
[
-90.29759597574582,
38.92299090531062
],
[
-90.39476727251113,
38.96037463984265
],
[
-90.45130329972002,
38.96162076432705
],
[
-90.46720405737253,
38.96909751123346
],
[
-90.5343405896831,
38.95912851535825
],
[
-90.60324387284396,
39.117386324877174
],
[
-90.58027611179034,
39.184677047034825
],
[
-90.31349673339832,
39.17470805115961
],
[
-90.31349673339832,
39.225799155020056
],
[
-90.14742215347218,
39.26193676506768
]
]
],
"type": "Polygon"
},
"id": 39,
"properties": {
"Clinton_Trump": [
2679,
7748
],
"center_lon_lat": [
-90.37444963773294,
39.09059464846255
],
"county_name": "Jersey",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.74638872920156,
39.791539670938086
],
[
-88.47430909825871,
39.791539670938086
],
[
-88.47254234740844,
39.65197372868518
],
[
-88.47077559655816,
39.447609313243426
],
[
-88.58561440182623,
39.447609313243426
],
[
-88.64215042903514,
39.52113065782308
],
[
-88.71812071559711,
39.52113065782308
],
[
-88.71812071559711,
39.57969850858992
],
[
-88.80999175981157,
39.580944633074324
],
[
-88.81175851066185,
39.65321985316958
],
[
-88.81352526151213,
39.741694691562046
],
[
-88.74638872920156,
39.791539670938086
]
]
],
"type": "Polygon"
},
"id": 40,
"properties": {
"Clinton_Trump": [
1481,
4455
],
"center_lon_lat": [
-88.64215042903514,
39.619574492090756
],
"county_name": "Moultrie",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.47254234740844,
39.65197372868518
],
[
-88.06442290099416,
39.65321985316958
],
[
-87.96725160422886,
39.68686521424841
],
[
-87.96018460082774,
39.48125467432225
],
[
-88.01495387718637,
39.48125467432225
],
[
-88.01318712633609,
39.37907246660137
],
[
-88.47077559655816,
39.37533409314817
],
[
-88.47077559655816,
39.447609313243426
],
[
-88.47254234740844,
39.65197372868518
]
]
],
"type": "Polygon"
},
"id": 41,
"properties": {
"Clinton_Trump": [
7309,
13003
],
"center_lon_lat": [
-88.21636347411808,
39.53109965369829
],
"county_name": "Coles",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.99371482949797,
40.10805528997593
],
[
-89.96898031759407,
40.141700651054755
],
[
-89.7481364613093,
40.126747157241944
],
[
-89.63683115774177,
40.15416189589877
],
[
-89.6014961407362,
40.12176265930434
],
[
-89.5785283796826,
40.091855671678715
],
[
-89.57676162883232,
39.97596609462943
],
[
-89.69690068665123,
39.974719970145024
],
[
-89.70043418835179,
39.91615211937818
],
[
-89.76933747151264,
39.90244475004977
],
[
-89.99371482949797,
39.90119862556537
],
[
-89.99371482949797,
40.10805528997593
]
]
],
"type": "Polygon"
},
"id": 42,
"properties": {
"Clinton_Trump": [
1817,
4231
],
"center_lon_lat": [
-89.78523822916515,
40.02768026073207
],
"county_name": "Menard",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.20572493153136,
38.08808750076198
],
[
-90.03611684990464,
38.13544023116922
],
[
-90.03611684990464,
38.22266894507729
],
[
-89.89831028358294,
38.22017669610848
],
[
-89.70220093920207,
38.218930571624085
],
[
-89.59266238648482,
38.218930571624085
],
[
-89.5944291373351,
37.95475218093108
],
[
-89.66333242049595,
37.830139732490984
],
[
-89.68630018154957,
37.79649437141216
],
[
-89.69513393580095,
37.81518623867817
],
[
-89.78170472746459,
37.855062222179
],
[
-89.85060801062544,
37.903661077070645
],
[
-89.92304479548685,
37.871261840476215
],
[
-89.93187854973823,
37.88123083635143
],
[
-89.97428057014491,
37.918614570883456
],
[
-89.95484631079185,
37.96596730129069
],
[
-90.0078488363002,
37.96970567474389
],
[
-90.08028562116161,
38.014566156182326
],
[
-90.12622114326884,
38.049457641745555
],
[
-90.20572493153136,
38.08808750076198
]
]
],
"type": "Polygon"
},
"id": 43,
"properties": {
"Clinton_Trump": [
3439,
10023
],
"center_lon_lat": [
-89.89919365900809,
38.00958165824473
],
"county_name": "Randolph",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.87180902082878,
40.51304574740624
],
[
-89.76933747151264,
40.552921730907066
],
[
-89.67393292559761,
40.55416785539147
],
[
-89.59089563563454,
40.68501092625357
],
[
-89.55202711692841,
40.70619504248839
],
[
-89.5537938677787,
40.74731715047362
],
[
-89.33118326064364,
40.748563274958016
],
[
-89.32764975894308,
40.61522795512712
],
[
-89.26934698088391,
40.5940438388923
],
[
-89.26404672833307,
40.324880950261694
],
[
-89.6014961407362,
40.31989645232409
],
[
-89.71456819515402,
40.31865032783969
],
[
-89.7163349460043,
40.43578602937338
],
[
-89.92481154633712,
40.43578602937338
],
[
-89.88417627678072,
40.491861631171425
],
[
-89.87180902082878,
40.51304574740624
]
]
],
"type": "Polygon"
},
"id": 44,
"properties": {
"Clinton_Trump": [
20685,
38707
],
"center_lon_lat": [
-89.5944291373351,
40.533606801398854
],
"county_name": "Tazewell",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-87.93368333807358,
40.39964841932575
],
[
-87.93545008892386,
40.485631008749415
],
[
-87.52733064250958,
40.49061550668702
],
[
-87.52733064250958,
40.47690813735861
],
[
-87.53086414421014,
40.25011348119764
],
[
-87.53086414421014,
40.14793127347676
],
[
-87.53263089506042,
40.010857580192656
],
[
-87.53263089506042,
39.88250675829936
],
[
-87.55736540696432,
39.86879938897094
],
[
-87.6156681850235,
39.881260633814954
],
[
-87.93721683977414,
39.878768384846154
],
[
-87.94251709232496,
40.22519099150962
],
[
-87.93368333807358,
40.39964841932575
]
]
],
"type": "Polygon"
},
"id": 45,
"properties": {
"Clinton_Trump": [
10039,
19087
],
"center_lon_lat": [
-87.73492386741728,
40.17970744782898
],
"county_name": "Vermilion",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#6175c1",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.94073132273216,
42.15169944439349
],
[
-88.70575345964515,
42.1529455688779
],
[
-88.5891479035268,
42.1529455688779
],
[
-88.5891479035268,
42.06571685496983
],
[
-88.60151515947874,
42.01711800007819
],
[
-88.60328191032902,
41.71929424830636
],
[
-88.60328191032902,
41.6308194099139
],
[
-88.71282046304627,
41.629573285429494
],
[
-88.81882551406296,
41.6308194099139
],
[
-88.93896457188188,
41.62832716094509
],
[
-88.94249807358244,
41.89125942715369
],
[
-88.94073132273216,
42.15169944439349
]
]
],
"type": "Polygon"
},
"id": 46,
"properties": {
"Clinton_Trump": [
20466,
19091
],
"center_lon_lat": [
-88.76582298855462,
41.890636364911494
],
"county_name": "DeKalb",
"party": "0"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.37537105064312,
37.90739945052385
],
[
-88.13685968585557,
37.91487619743025
],
[
-88.05912264844333,
37.86752346702301
],
[
-88.06795640269472,
37.856308346663404
],
[
-88.0290878839886,
37.80023274486536
],
[
-88.05912264844333,
37.742911018582916
],
[
-88.13332618415501,
37.69805053714448
],
[
-88.15982744690919,
37.65443618019045
],
[
-88.13155943330473,
37.57468421318879
],
[
-88.17926170626225,
37.599606702876805
],
[
-88.37537105064312,
37.599606702876805
],
[
-88.37537105064312,
37.90739945052385
]
]
],
"type": "Polygon"
},
"id": 47,
"properties": {
"Clinton_Trump": [
657,
1942
],
"center_lon_lat": [
-88.20222946731586,
37.744780205309524
],
"county_name": "Gallatin",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.61384437794563,
39.39651820938298
],
[
-90.61031087624507,
39.45757830911863
],
[
-90.58027611179034,
39.52237678230748
],
[
-90.30112947744638,
39.52113065782308
],
[
-90.15272240602302,
39.52113065782308
],
[
-90.14742215347218,
39.26193676506768
],
[
-90.31349673339832,
39.225799155020056
],
[
-90.31349673339832,
39.17470805115961
],
[
-90.58027611179034,
39.184677047034825
],
[
-90.60324387284396,
39.117386324877174
],
[
-90.61384437794563,
39.14230881456519
],
[
-90.590876616892,
39.19838441636323
],
[
-90.61384437794563,
39.39651820938298
]
]
],
"type": "Polygon"
},
"id": 48,
"properties": {
"Clinton_Trump": [
1205,
4145
],
"center_lon_lat": [
-90.3806332657089,
39.319881553592325
],
"county_name": "Greene",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.4725233286659,
40.92177457828975
],
[
-89.16157517901694,
40.926759076227356
],
[
-89.04850312459912,
40.92551295174295
],
[
-88.93189756848076,
40.92800520071175
],
[
-88.93013081763048,
40.75354777289562
],
[
-88.98843359568967,
40.75230164841122
],
[
-88.98490009398911,
40.66507293450316
],
[
-89.04496962289858,
40.62768919997112
],
[
-89.13507391626275,
40.596536087861104
],
[
-89.26934698088391,
40.5940438388923
],
[
-89.32764975894308,
40.61522795512712
],
[
-89.33118326064364,
40.748563274958016
],
[
-89.5537938677787,
40.74731715047362
],
[
-89.56086087117981,
40.79342375639645
],
[
-89.4725233286659,
40.92177457828975
]
]
],
"type": "Polygon"
},
"id": 49,
"properties": {
"Clinton_Trump": [
5092,
13207
],
"center_lon_lat": [
-89.24549584440516,
40.76102451980202
],
"county_name": "Woodford",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.36300379469118,
38.910529660466615
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.00788687378527,
39.17470805115961
],
[
-87.95135084657636,
39.17470805115961
],
[
-87.94605059402552,
38.85071568521536
],
[
-88.25876549452477,
38.84697731176216
],
[
-88.36300379469118,
38.851961809699766
],
[
-88.36300379469118,
38.910529660466615
]
]
],
"type": "Polygon"
},
"id": 50,
"properties": {
"Clinton_Trump": [
924,
3975
],
"center_lon_lat": [
-88.15452719435835,
39.010842681460886
],
"county_name": "Jasper",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-90.51313957947977,
39.987181214989036
],
[
-90.43540254206752,
40.01958045158346
],
[
-90.35413200295473,
40.12425490827314
],
[
-90.28699547064416,
40.05447193714669
],
[
-90.13328814666995,
40.06194868405309
],
[
-89.99371482949797,
40.10805528997593
],
[
-89.99371482949797,
39.90119862556537
],
[
-89.99371482949797,
39.872537762424145
],
[
-90.5838096134909,
39.87627613587735
],
[
-90.51137282862949,
39.96475097426982
],
[
-90.51313957947977,
39.987181214989036
]
]
],
"type": "Polygon"
},
"id": 51,
"properties": {
"Clinton_Trump": [
1621,
3216
],
"center_lon_lat": [
-90.28876222149444,
39.998396335348644
],
"county_name": "Cass",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-89.70043418835179,
39.52362290679188
],
[
-89.53259285757535,
39.52486903127628
],
[
-89.53082610672509,
39.34916547897575
],
[
-89.1403741688136,
39.34916547897575
],
[
-89.1403741688136,
39.21832240811365
],
[
-89.25167947238113,
39.21832240811365
],
[
-89.25167947238113,
39.0276653620003
],
[
-89.5855953830837,
39.0289114864847
],
[
-89.63859790859205,
38.99900449885908
],
[
-89.69690068665123,
38.99900449885908
],
[
-89.70043418835179,
39.52362290679188
]
]
],
"type": "Polygon"
},
"id": 52,
"properties": {
"Clinton_Trump": [
3504,
8630
],
"center_lon_lat": [
-89.42040417858269,
39.26193676506768
],
"county_name": "Montgomery",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.69515295454349,
38.825793195527346
],
[
-88.69338620369321,
38.91426803391982
],
[
-88.36300379469118,
38.910529660466615
],
[
-88.36300379469118,
38.851961809699766
],
[
-88.25876549452477,
38.84697731176216
],
[
-88.25876549452477,
38.73108773471287
],
[
-88.29763401323089,
38.6338900249296
],
[
-88.25346524197393,
38.59899853936637
],
[
-88.56441339162289,
38.606475286272776
],
[
-88.69868645624405,
38.606475286272776
],
[
-88.69515295454349,
38.825793195527346
]
]
],
"type": "Polygon"
},
"id": 53,
"properties": {
"Clinton_Trump": [
1020,
5021
],
"center_lon_lat": [
-88.47607584910898,
38.756633286643094
],
"county_name": "Clay",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.94073132273216,
42.49562980208815
],
[
-88.77642349365628,
42.49438367760376
],
[
-88.70752021049543,
42.493137553119354
],
[
-88.70752021049543,
42.493137553119354
],
[
-88.70575345964515,
42.1529455688779
],
[
-88.94073132273216,
42.15169944439349
],
[
-88.94073132273216,
42.49562980208815
]
]
],
"type": "Polygon"
},
"id": 54,
"properties": {
"Clinton_Trump": [
8986,
12282
],
"center_lon_lat": [
-88.82324239118866,
42.32366462324082
],
"county_name": "Boone",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-91.11736837027492,
40.69996442006638
],
[
-91.11560161942464,
40.7248869097544
],
[
-91.09086710752074,
40.77971638706804
],
[
-91.09263385837102,
40.82083849505327
],
[
-91.04493158541351,
40.86819122546051
],
[
-90.98486205650404,
40.911805582414544
],
[
-90.95129379034876,
40.95417381488418
],
[
-90.94422678694765,
41.01897228807302
],
[
-90.95129379034876,
41.070063391933466
],
[
-90.78521921042261,
41.06881726744906
],
[
-90.78875271212317,
40.63516594687753
],
[
-90.90359151739125,
40.63890432033074
],
[
-91.02196382435989,
40.63516594687753
],
[
-91.18450490258549,
40.637658195846335
],
[
-91.12090187197548,
40.67254968140956
],
[
-91.11736837027492,
40.69996442006638
]
]
],
"type": "Polygon"
},
"id": 55,
"properties": {
"Clinton_Trump": [
1155,
2155
],
"center_lon_lat": [
-90.98486205650406,
40.8526146694055
],
"county_name": "Henderson",
"party": 1
},
"type": "Feature"
}
],
"type": "FeatureCollection"
},
"sourcetype": "geojson",
"type": "fill"
},
{
"below": "water",
"color": "#B0122C",
"opacity": 0.8,
"source": {
"features": [
{
"geometry": {
"coordinates": [
[
[
-88.80645825811101,
39.21707628362925
],
[
-88.47077559655816,
39.21583015914484
],
[
-88.47077559655816,
39.17221580219081
],
[
-88.3612370438409,
39.17096967770641
],
[
-88.36300379469118,
38.910529660466615
],
[
-88.69338620369321,
38.91426803391982
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment