Skip to content

Instantly share code, notes, and snippets.

@danswick
Last active August 29, 2015 14:07
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 danswick/64da467bd273d71229c3 to your computer and use it in GitHub Desktop.
Save danswick/64da467bd273d71229c3 to your computer and use it in GitHub Desktop.
MaptimeChi Ratmap

Ratmap for Maptime Chicago!

Adapted from Andy Woodruff's tutorial from Maptime Boston.

<html>
<head>
<title>A Leaflet map!</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css"/>
<link rel="stylesheet" href="MarkerCluster.css"/>
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script src="markercluster.js"></script>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<style>
#map{ height: 100% }
</style>
</head>
<body>
<div id="map"></div>
<script>
// initialize the map
var map = L.map('map').setView([41.8947, -87.6105], 11);
// load a tile layer
L.tileLayer('http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png',
{
attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://www.openstreetmap.org/copyright">ODbL,</a> and <a href="https://data.cityofchicago.org/Service-Requests/311-Service-Requests-Rodent-Baiting/97t6-zrhs?">City of Chicago</a>',
maxZoom: 17,
minZoom: 9
}).addTo(map);
$.getJSON("neighborhoods.geojson",function(hoodData){
L.geoJson(hoodData, {
style: function(feature){
var fillColor,
density = feature.properties.density;
if (density > 80) fillColor = "#006837";
else if (density > 40) fillColor = "#31a354";
else if (density > 20) fillColor = "#78c679";
else if (density > 10) fillColor = "#c2e699";
else if (density > 0) fillColor = "#ffffcc";
else fillColor = "#f7f7f7"; // no data
return { color: "#999", weight: 1, fillColor: fillColor, fillOpacity: .6 };
},
onEachFeature: function( feature, layer ){
layer.bindPopup( "<strong>" + feature.properties.PRI_NEIGH + "</strong><br/>" + feature.properties.density + " rats per square mile" )
}
}).addTo(map);
});
// load GeoJSON point data from external file
$.getJSON("ratmap.geojson", function(data){
// rat icon!
var ratIcon = L.icon({
iconUrl: 'http://maptime.io/chicago/learn-leaflet/ratmap/rat.png',
iconSize: [60,50]
});
// add GeoJSON layer to map once the file is loaded, assign to 'rodents variable'
var rodents = L.geoJson(data,{
// point to layer function passed to L.geoJson. Tells leaflet how to convert a point feature into a map layer
pointToLayer: function(feature,latlng){
var marker = L.marker(latlng,{icon: ratIcon});
// bindPopup to the marker. Popup should include the street address, a line break, then the creation date, loaded from the geoJson file
marker.bindPopup(feature.properties.Street_Add + '</br>' + feature.properties.Creation_D);
return marker;
}
});
var clusters = L.markerClusterGroup();
clusters.addLayer(rodents);
map.addLayer(clusters);
}); // removed addTo(map) because it is handled by the markercluster script
</script>
</body>
</html>
.marker-cluster-small {
background-color: rgba(181, 226, 140, 0.6);
}
.marker-cluster-small div {
background-color: rgba(110, 204, 57, 0.6);
}
.marker-cluster-medium {
background-color: rgba(241, 211, 87, 0.6);
}
.marker-cluster-medium div {
background-color: rgba(240, 194, 12, 0.6);
}
.marker-cluster-large {
background-color: rgba(253, 156, 115, 0.6);
}
.marker-cluster-large div {
background-color: rgba(241, 128, 23, 0.6);
}
/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
background-color: rgb(181, 226, 140);
}
.leaflet-oldie .marker-cluster-small div {
background-color: rgb(110, 204, 57);
}
.leaflet-oldie .marker-cluster-medium {
background-color: rgb(241, 211, 87);
}
.leaflet-oldie .marker-cluster-medium div {
background-color: rgb(240, 194, 12);
}
.leaflet-oldie .marker-cluster-large {
background-color: rgb(253, 156, 115);
}
.leaflet-oldie .marker-cluster-large div {
background-color: rgb(241, 128, 23);
}
.marker-cluster {
background-clip: padding-box;
border-radius: 20px;
}
.marker-cluster div {
width: 30px;
height: 30px;
margin-left: 5px;
margin-top: 5px;
text-align: center;
border-radius: 15px;
font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.marker-cluster span {
line-height: 30px;
}
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}
/*
Leaflet.markercluster, Provides Beautiful Animated Marker Clustering functionality for Leaflet, a JS library for interactive maps.
https://github.com/Leaflet/Leaflet.markercluster
(c) 2012-2013, Dave Leaver, smartrak
*/
!function(t,e){L.MarkerClusterGroup=L.FeatureGroup.extend({options:{maxClusterRadius:80,iconCreateFunction:null,spiderfyOnMaxZoom:!0,showCoverageOnHover:!0,zoomToBoundsOnClick:!0,singleMarkerMode:!1,disableClusteringAtZoom:null,removeOutsideVisibleBounds:!0,animateAddingMarkers:!1,spiderfyDistanceMultiplier:1,chunkedLoading:!1,chunkInterval:200,chunkDelay:50,chunkProgress:null,polygonOptions:{}},initialize:function(t){L.Util.setOptions(this,t),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),this._featureGroup=L.featureGroup(),this._featureGroup.on(L.FeatureGroup.EVENTS,this._propagateEvent,this),this._nonPointGroup=L.featureGroup(),this._nonPointGroup.on(L.FeatureGroup.EVENTS,this._propagateEvent,this),this._inZoomAnimation=0,this._needsClustering=[],this._needsRemoving=[],this._currentShownBounds=null,this._queue=[]},addLayer:function(t){if(t instanceof L.LayerGroup){var e=[];for(var i in t._layers)e.push(t._layers[i]);return this.addLayers(e)}if(!t.getLatLng)return this._nonPointGroup.addLayer(t),this;if(!this._map)return this._needsClustering.push(t),this;if(this.hasLayer(t))return this;this._unspiderfy&&this._unspiderfy(),this._addLayer(t,this._maxZoom);var n=t,s=this._map.getZoom();if(t.__parent)for(;n.__parent._zoom>=s;)n=n.__parent;return this._currentShownBounds.contains(n.getLatLng())&&(this.options.animateAddingMarkers?this._animationAddLayer(t,n):this._animationAddLayerNonAnimated(t,n)),this},removeLayer:function(t){if(t instanceof L.LayerGroup){var e=[];for(var i in t._layers)e.push(t._layers[i]);return this.removeLayers(e)}return t.getLatLng?this._map?t.__parent?(this._unspiderfy&&(this._unspiderfy(),this._unspiderfyLayer(t)),this._removeLayer(t,!0),this._featureGroup.hasLayer(t)&&(this._featureGroup.removeLayer(t),t.setOpacity&&t.setOpacity(1)),this):this:(!this._arraySplice(this._needsClustering,t)&&this.hasLayer(t)&&this._needsRemoving.push(t),this):(this._nonPointGroup.removeLayer(t),this)},addLayers:function(t){var e,i,n,s,r=this._featureGroup,o=this._nonPointGroup,a=this.options.chunkedLoading,h=this.options.chunkInterval,_=this.options.chunkProgress;if(this._map){var u=0,l=(new Date).getTime(),d=L.bind(function(){for(var e=(new Date).getTime();u<t.length;u++){if(a&&0===u%200){var i=(new Date).getTime()-e;if(i>h)break}if(s=t[u],s.getLatLng){if(!this.hasLayer(s)&&(this._addLayer(s,this._maxZoom),s.__parent&&2===s.__parent.getChildCount())){var n=s.__parent.getAllChildMarkers(),p=n[0]===s?n[1]:n[0];r.removeLayer(p)}}else o.addLayer(s)}_&&_(u,t.length,(new Date).getTime()-l),u===t.length?(this._featureGroup.eachLayer(function(t){t instanceof L.MarkerCluster&&t._iconNeedsUpdate&&t._updateIcon()}),this._topClusterLevel._recursivelyAddChildrenToMap(null,this._zoom,this._currentShownBounds)):setTimeout(d,this.options.chunkDelay)},this);d()}else{for(e=[],i=0,n=t.length;n>i;i++)s=t[i],s.getLatLng?this.hasLayer(s)||e.push(s):o.addLayer(s);this._needsClustering=this._needsClustering.concat(e)}return this},removeLayers:function(t){var e,i,n,s=this._featureGroup,r=this._nonPointGroup;if(!this._map){for(e=0,i=t.length;i>e;e++)n=t[e],this._arraySplice(this._needsClustering,n),r.removeLayer(n);return this}for(e=0,i=t.length;i>e;e++)n=t[e],n.__parent?(this._removeLayer(n,!0,!0),s.hasLayer(n)&&(s.removeLayer(n),n.setOpacity&&n.setOpacity(1))):r.removeLayer(n);return this._topClusterLevel._recursivelyAddChildrenToMap(null,this._zoom,this._currentShownBounds),s.eachLayer(function(t){t instanceof L.MarkerCluster&&t._updateIcon()}),this},clearLayers:function(){return this._map||(this._needsClustering=[],delete this._gridClusters,delete this._gridUnclustered),this._noanimationUnspiderfy&&this._noanimationUnspiderfy(),this._featureGroup.clearLayers(),this._nonPointGroup.clearLayers(),this.eachLayer(function(t){delete t.__parent}),this._map&&this._generateInitialClusters(),this},getBounds:function(){var t=new L.LatLngBounds;this._topClusterLevel&&t.extend(this._topClusterLevel._bounds);for(var e=this._needsClustering.length-1;e>=0;e--)t.extend(this._needsClustering[e].getLatLng());return t.extend(this._nonPointGroup.getBounds()),t},eachLayer:function(t,e){var i,n=this._needsClustering.slice();for(this._topClusterLevel&&this._topClusterLevel.getAllChildMarkers(n),i=n.length-1;i>=0;i--)t.call(e,n[i]);this._nonPointGroup.eachLayer(t,e)},getLayers:function(){var t=[];return this.eachLayer(function(e){t.push(e)}),t},getLayer:function(t){var e=null;return this.eachLayer(function(i){L.stamp(i)===t&&(e=i)}),e},hasLayer:function(t){if(!t)return!1;var e,i=this._needsClustering;for(e=i.length-1;e>=0;e--)if(i[e]===t)return!0;for(i=this._needsRemoving,e=i.length-1;e>=0;e--)if(i[e]===t)return!1;return!(!t.__parent||t.__parent._group!==this)||this._nonPointGroup.hasLayer(t)},zoomToShowLayer:function(t,e){var i=function(){if((t._icon||t.__parent._icon)&&!this._inZoomAnimation)if(this._map.off("moveend",i,this),this.off("animationend",i,this),t._icon)e();else if(t.__parent._icon){var n=function(){this.off("spiderfied",n,this),e()};this.on("spiderfied",n,this),t.__parent.spiderfy()}};if(t._icon&&this._map.getBounds().contains(t.getLatLng()))e();else if(t.__parent._zoom<this._map.getZoom())this._map.on("moveend",i,this),this._map.panTo(t.getLatLng());else{var n=function(){this._map.off("movestart",n,this),n=null};this._map.on("movestart",n,this),this._map.on("moveend",i,this),this.on("animationend",i,this),t.__parent.zoomToBounds(),n&&i.call(this)}},onAdd:function(t){this._map=t;var e,i,n;if(!isFinite(this._map.getMaxZoom()))throw"Map has no maxZoom specified";for(this._featureGroup.onAdd(t),this._nonPointGroup.onAdd(t),this._gridClusters||this._generateInitialClusters(),e=0,i=this._needsRemoving.length;i>e;e++)n=this._needsRemoving[e],this._removeLayer(n,!0);this._needsRemoving=[],this._zoom=this._map.getZoom(),this._currentShownBounds=this._getExpandedVisibleBounds(),this._map.on("zoomend",this._zoomEnd,this),this._map.on("moveend",this._moveEnd,this),this._spiderfierOnAdd&&this._spiderfierOnAdd(),this._bindEvents(),i=this._needsClustering,this._needsClustering=[],this.addLayers(i)},onRemove:function(t){t.off("zoomend",this._zoomEnd,this),t.off("moveend",this._moveEnd,this),this._unbindEvents(),this._map._mapPane.className=this._map._mapPane.className.replace(" leaflet-cluster-anim",""),this._spiderfierOnRemove&&this._spiderfierOnRemove(),this._hideCoverage(),this._featureGroup.onRemove(t),this._nonPointGroup.onRemove(t),this._featureGroup.clearLayers(),this._map=null},getVisibleParent:function(t){for(var e=t;e&&!e._icon;)e=e.__parent;return e||null},_arraySplice:function(t,e){for(var i=t.length-1;i>=0;i--)if(t[i]===e)return t.splice(i,1),!0},_removeLayer:function(t,e,i){var n=this._gridClusters,s=this._gridUnclustered,r=this._featureGroup,o=this._map;if(e)for(var a=this._maxZoom;a>=0&&s[a].removeObject(t,o.project(t.getLatLng(),a));a--);var h,_=t.__parent,u=_._markers;for(this._arraySplice(u,t);_&&(_._childCount--,!(_._zoom<0));)e&&_._childCount<=1?(h=_._markers[0]===t?_._markers[1]:_._markers[0],n[_._zoom].removeObject(_,o.project(_._cLatLng,_._zoom)),s[_._zoom].addObject(h,o.project(h.getLatLng(),_._zoom)),this._arraySplice(_.__parent._childClusters,_),_.__parent._markers.push(h),h.__parent=_.__parent,_._icon&&(r.removeLayer(_),i||r.addLayer(h))):(_._recalculateBounds(),i&&_._icon||_._updateIcon()),_=_.__parent;delete t.__parent},_isOrIsParent:function(t,e){for(;e;){if(t===e)return!0;e=e.parentNode}return!1},_propagateEvent:function(t){if(t.layer instanceof L.MarkerCluster){if(t.originalEvent&&this._isOrIsParent(t.layer._icon,t.originalEvent.relatedTarget))return;t.type="cluster"+t.type}this.fire(t.type,t)},_defaultIconCreateFunction:function(t){var e=t.getChildCount(),i=" marker-cluster-";return i+=10>e?"small":100>e?"medium":"large",new L.DivIcon({html:"<div><span>"+e+"</span></div>",className:"marker-cluster"+i,iconSize:new L.Point(40,40)})},_bindEvents:function(){var t=this._map,e=this.options.spiderfyOnMaxZoom,i=this.options.showCoverageOnHover,n=this.options.zoomToBoundsOnClick;(e||n)&&this.on("clusterclick",this._zoomOrSpiderfy,this),i&&(this.on("clustermouseover",this._showCoverage,this),this.on("clustermouseout",this._hideCoverage,this),t.on("zoomend",this._hideCoverage,this))},_zoomOrSpiderfy:function(t){var e=this._map;e.getMaxZoom()===e.getZoom()?this.options.spiderfyOnMaxZoom&&t.layer.spiderfy():this.options.zoomToBoundsOnClick&&t.layer.zoomToBounds(),t.originalEvent&&13===t.originalEvent.keyCode&&e._container.focus()},_showCoverage:function(t){var e=this._map;this._inZoomAnimation||(this._shownPolygon&&e.removeLayer(this._shownPolygon),t.layer.getChildCount()>2&&t.layer!==this._spiderfied&&(this._shownPolygon=new L.Polygon(t.layer.getConvexHull(),this.options.polygonOptions),e.addLayer(this._shownPolygon)))},_hideCoverage:function(){this._shownPolygon&&(this._map.removeLayer(this._shownPolygon),this._shownPolygon=null)},_unbindEvents:function(){var t=this.options.spiderfyOnMaxZoom,e=this.options.showCoverageOnHover,i=this.options.zoomToBoundsOnClick,n=this._map;(t||i)&&this.off("clusterclick",this._zoomOrSpiderfy,this),e&&(this.off("clustermouseover",this._showCoverage,this),this.off("clustermouseout",this._hideCoverage,this),n.off("zoomend",this._hideCoverage,this))},_zoomEnd:function(){this._map&&(this._mergeSplitClusters(),this._zoom=this._map._zoom,this._currentShownBounds=this._getExpandedVisibleBounds())},_moveEnd:function(){if(!this._inZoomAnimation){var t=this._getExpandedVisibleBounds();this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,this._zoom,t),this._topClusterLevel._recursivelyAddChildrenToMap(null,this._map._zoom,t),this._currentShownBounds=t}},_generateInitialClusters:function(){var t=this._map.getMaxZoom(),e=this.options.maxClusterRadius,i=e;"function"!=typeof e&&(i=function(){return e}),this.options.disableClusteringAtZoom&&(t=this.options.disableClusteringAtZoom-1),this._maxZoom=t,this._gridClusters={},this._gridUnclustered={};for(var n=t;n>=0;n--)this._gridClusters[n]=new L.DistanceGrid(i(n)),this._gridUnclustered[n]=new L.DistanceGrid(i(n));this._topClusterLevel=new L.MarkerCluster(this,-1)},_addLayer:function(t,e){var i,n,s=this._gridClusters,r=this._gridUnclustered;for(this.options.singleMarkerMode&&(t.options.icon=this.options.iconCreateFunction({getChildCount:function(){return 1},getAllChildMarkers:function(){return[t]}}));e>=0;e--){i=this._map.project(t.getLatLng(),e);var o=s[e].getNearObject(i);if(o)return o._addChild(t),t.__parent=o,void 0;if(o=r[e].getNearObject(i)){var a=o.__parent;a&&this._removeLayer(o,!1);var h=new L.MarkerCluster(this,e,o,t);s[e].addObject(h,this._map.project(h._cLatLng,e)),o.__parent=h,t.__parent=h;var _=h;for(n=e-1;n>a._zoom;n--)_=new L.MarkerCluster(this,n,_),s[n].addObject(_,this._map.project(o.getLatLng(),n));for(a._addChild(_),n=e;n>=0&&r[n].removeObject(o,this._map.project(o.getLatLng(),n));n--);return}r[e].addObject(t,i)}this._topClusterLevel._addChild(t),t.__parent=this._topClusterLevel},_enqueue:function(t){this._queue.push(t),this._queueTimeout||(this._queueTimeout=setTimeout(L.bind(this._processQueue,this),300))},_processQueue:function(){for(var t=0;t<this._queue.length;t++)this._queue[t].call(this);this._queue.length=0,clearTimeout(this._queueTimeout),this._queueTimeout=null},_mergeSplitClusters:function(){this._processQueue(),this._zoom<this._map._zoom&&this._currentShownBounds.intersects(this._getExpandedVisibleBounds())?(this._animationStart(),this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,this._zoom,this._getExpandedVisibleBounds()),this._animationZoomIn(this._zoom,this._map._zoom)):this._zoom>this._map._zoom?(this._animationStart(),this._animationZoomOut(this._zoom,this._map._zoom)):this._moveEnd()},_getExpandedVisibleBounds:function(){if(!this.options.removeOutsideVisibleBounds)return this.getBounds();var t=this._map,e=t.getBounds(),i=e._southWest,n=e._northEast,s=L.Browser.mobile?0:Math.abs(i.lat-n.lat),r=L.Browser.mobile?0:Math.abs(i.lng-n.lng);return new L.LatLngBounds(new L.LatLng(i.lat-s,i.lng-r,!0),new L.LatLng(n.lat+s,n.lng+r,!0))},_animationAddLayerNonAnimated:function(t,e){if(e===t)this._featureGroup.addLayer(t);else if(2===e._childCount){e._addToMap();var i=e.getAllChildMarkers();this._featureGroup.removeLayer(i[0]),this._featureGroup.removeLayer(i[1])}else e._updateIcon()}}),L.MarkerClusterGroup.include(L.DomUtil.TRANSITION?{_animationStart:function(){this._map._mapPane.className+=" leaflet-cluster-anim",this._inZoomAnimation++},_animationEnd:function(){this._map&&(this._map._mapPane.className=this._map._mapPane.className.replace(" leaflet-cluster-anim","")),this._inZoomAnimation--,this.fire("animationend")},_animationZoomIn:function(t,e){var i,n=this._getExpandedVisibleBounds(),s=this._featureGroup;this._topClusterLevel._recursively(n,t,0,function(r){var o,a=r._latlng,h=r._markers;for(n.contains(a)||(a=null),r._isSingleParent()&&t+1===e?(s.removeLayer(r),r._recursivelyAddChildrenToMap(null,e,n)):(r.setOpacity(0),r._recursivelyAddChildrenToMap(a,e,n)),i=h.length-1;i>=0;i--)o=h[i],n.contains(o._latlng)||s.removeLayer(o)}),this._forceLayout(),this._topClusterLevel._recursivelyBecomeVisible(n,e),s.eachLayer(function(t){t instanceof L.MarkerCluster||!t._icon||t.setOpacity(1)}),this._topClusterLevel._recursively(n,t,e,function(t){t._recursivelyRestoreChildPositions(e)}),this._enqueue(function(){this._topClusterLevel._recursively(n,t,0,function(t){s.removeLayer(t),t.setOpacity(1)}),this._animationEnd()})},_animationZoomOut:function(t,e){this._animationZoomOutSingle(this._topClusterLevel,t-1,e),this._topClusterLevel._recursivelyAddChildrenToMap(null,e,this._getExpandedVisibleBounds()),this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,t,this._getExpandedVisibleBounds())},_animationZoomOutSingle:function(t,e,i){var n=this._getExpandedVisibleBounds();t._recursivelyAnimateChildrenInAndAddSelfToMap(n,e+1,i);var s=this;this._forceLayout(),t._recursivelyBecomeVisible(n,i),this._enqueue(function(){if(1===t._childCount){var r=t._markers[0];r.setLatLng(r.getLatLng()),r.setOpacity&&r.setOpacity(1)}else t._recursively(n,i,0,function(t){t._recursivelyRemoveChildrenFromMap(n,e+1)});s._animationEnd()})},_animationAddLayer:function(t,e){var i=this,n=this._featureGroup;n.addLayer(t),e!==t&&(e._childCount>2?(e._updateIcon(),this._forceLayout(),this._animationStart(),t._setPos(this._map.latLngToLayerPoint(e.getLatLng())),t.setOpacity(0),this._enqueue(function(){n.removeLayer(t),t.setOpacity(1),i._animationEnd()})):(this._forceLayout(),i._animationStart(),i._animationZoomOutSingle(e,this._map.getMaxZoom(),this._map.getZoom())))},_forceLayout:function(){L.Util.falseFn(e.body.offsetWidth)}}:{_animationStart:function(){},_animationZoomIn:function(t,e){this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,t),this._topClusterLevel._recursivelyAddChildrenToMap(null,e,this._getExpandedVisibleBounds()),this.fire("animationend")},_animationZoomOut:function(t,e){this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,t),this._topClusterLevel._recursivelyAddChildrenToMap(null,e,this._getExpandedVisibleBounds()),this.fire("animationend")},_animationAddLayer:function(t,e){this._animationAddLayerNonAnimated(t,e)}}),L.markerClusterGroup=function(t){return new L.MarkerClusterGroup(t)},L.MarkerCluster=L.Marker.extend({initialize:function(t,e,i,n){L.Marker.prototype.initialize.call(this,i?i._cLatLng||i.getLatLng():new L.LatLng(0,0),{icon:this}),this._group=t,this._zoom=e,this._markers=[],this._childClusters=[],this._childCount=0,this._iconNeedsUpdate=!0,this._bounds=new L.LatLngBounds,i&&this._addChild(i),n&&this._addChild(n)},getAllChildMarkers:function(t){t=t||[];for(var e=this._childClusters.length-1;e>=0;e--)this._childClusters[e].getAllChildMarkers(t);for(var i=this._markers.length-1;i>=0;i--)t.push(this._markers[i]);return t},getChildCount:function(){return this._childCount},zoomToBounds:function(){for(var t,e=this._childClusters.slice(),i=this._group._map,n=i.getBoundsZoom(this._bounds),s=this._zoom+1,r=i.getZoom();e.length>0&&n>s;){s++;var o=[];for(t=0;t<e.length;t++)o=o.concat(e[t]._childClusters);e=o}n>s?this._group._map.setView(this._latlng,s):r>=n?this._group._map.setView(this._latlng,r+1):this._group._map.fitBounds(this._bounds)},getBounds:function(){var t=new L.LatLngBounds;return t.extend(this._bounds),t},_updateIcon:function(){this._iconNeedsUpdate=!0,this._icon&&this.setIcon(this)},createIcon:function(){return this._iconNeedsUpdate&&(this._iconObj=this._group.options.iconCreateFunction(this),this._iconNeedsUpdate=!1),this._iconObj.createIcon()},createShadow:function(){return this._iconObj.createShadow()},_addChild:function(t,e){this._iconNeedsUpdate=!0,this._expandBounds(t),t instanceof L.MarkerCluster?(e||(this._childClusters.push(t),t.__parent=this),this._childCount+=t._childCount):(e||this._markers.push(t),this._childCount++),this.__parent&&this.__parent._addChild(t,!0)},_expandBounds:function(t){var e,i=t._wLatLng||t._latlng;t instanceof L.MarkerCluster?(this._bounds.extend(t._bounds),e=t._childCount):(this._bounds.extend(i),e=1),this._cLatLng||(this._cLatLng=t._cLatLng||i);var n=this._childCount+e;this._wLatLng?(this._wLatLng.lat=(i.lat*e+this._wLatLng.lat*this._childCount)/n,this._wLatLng.lng=(i.lng*e+this._wLatLng.lng*this._childCount)/n):this._latlng=this._wLatLng=new L.LatLng(i.lat,i.lng)},_addToMap:function(t){t&&(this._backupLatlng=this._latlng,this.setLatLng(t)),this._group._featureGroup.addLayer(this)},_recursivelyAnimateChildrenIn:function(t,e,i){this._recursively(t,0,i-1,function(t){var i,n,s=t._markers;for(i=s.length-1;i>=0;i--)n=s[i],n._icon&&(n._setPos(e),n.setOpacity(0))},function(t){var i,n,s=t._childClusters;for(i=s.length-1;i>=0;i--)n=s[i],n._icon&&(n._setPos(e),n.setOpacity(0))})},_recursivelyAnimateChildrenInAndAddSelfToMap:function(t,e,i){this._recursively(t,i,0,function(n){n._recursivelyAnimateChildrenIn(t,n._group._map.latLngToLayerPoint(n.getLatLng()).round(),e),n._isSingleParent()&&e-1===i?(n.setOpacity(1),n._recursivelyRemoveChildrenFromMap(t,e)):n.setOpacity(0),n._addToMap()})},_recursivelyBecomeVisible:function(t,e){this._recursively(t,0,e,null,function(t){t.setOpacity(1)})},_recursivelyAddChildrenToMap:function(t,e,i){this._recursively(i,-1,e,function(n){if(e!==n._zoom)for(var s=n._markers.length-1;s>=0;s--){var r=n._markers[s];i.contains(r._latlng)&&(t&&(r._backupLatlng=r.getLatLng(),r.setLatLng(t),r.setOpacity&&r.setOpacity(0)),n._group._featureGroup.addLayer(r))}},function(e){e._addToMap(t)})},_recursivelyRestoreChildPositions:function(t){for(var e=this._markers.length-1;e>=0;e--){var i=this._markers[e];i._backupLatlng&&(i.setLatLng(i._backupLatlng),delete i._backupLatlng)}if(t-1===this._zoom)for(var n=this._childClusters.length-1;n>=0;n--)this._childClusters[n]._restorePosition();else for(var s=this._childClusters.length-1;s>=0;s--)this._childClusters[s]._recursivelyRestoreChildPositions(t)},_restorePosition:function(){this._backupLatlng&&(this.setLatLng(this._backupLatlng),delete this._backupLatlng)},_recursivelyRemoveChildrenFromMap:function(t,e,i){var n,s;this._recursively(t,-1,e-1,function(t){for(s=t._markers.length-1;s>=0;s--)n=t._markers[s],i&&i.contains(n._latlng)||(t._group._featureGroup.removeLayer(n),n.setOpacity&&n.setOpacity(1))},function(t){for(s=t._childClusters.length-1;s>=0;s--)n=t._childClusters[s],i&&i.contains(n._latlng)||(t._group._featureGroup.removeLayer(n),n.setOpacity&&n.setOpacity(1))})},_recursively:function(t,e,i,n,s){var r,o,a=this._childClusters,h=this._zoom;if(e>h)for(r=a.length-1;r>=0;r--)o=a[r],t.intersects(o._bounds)&&o._recursively(t,e,i,n,s);else if(n&&n(this),s&&this._zoom===i&&s(this),i>h)for(r=a.length-1;r>=0;r--)o=a[r],t.intersects(o._bounds)&&o._recursively(t,e,i,n,s)},_recalculateBounds:function(){var t,e=this._markers,i=this._childClusters;for(this._bounds=new L.LatLngBounds,delete this._wLatLng,t=e.length-1;t>=0;t--)this._expandBounds(e[t]);for(t=i.length-1;t>=0;t--)this._expandBounds(i[t])},_isSingleParent:function(){return this._childClusters.length>0&&this._childClusters[0]._childCount===this._childCount}}),L.DistanceGrid=function(t){this._cellSize=t,this._sqCellSize=t*t,this._grid={},this._objectPoint={}},L.DistanceGrid.prototype={addObject:function(t,e){var i=this._getCoord(e.x),n=this._getCoord(e.y),s=this._grid,r=s[n]=s[n]||{},o=r[i]=r[i]||[],a=L.Util.stamp(t);this._objectPoint[a]=e,o.push(t)},updateObject:function(t,e){this.removeObject(t),this.addObject(t,e)},removeObject:function(t,e){var i,n,s=this._getCoord(e.x),r=this._getCoord(e.y),o=this._grid,a=o[r]=o[r]||{},h=a[s]=a[s]||[];for(delete this._objectPoint[L.Util.stamp(t)],i=0,n=h.length;n>i;i++)if(h[i]===t)return h.splice(i,1),1===n&&delete a[s],!0},eachObject:function(t,e){var i,n,s,r,o,a,h,_=this._grid;for(i in _){o=_[i];for(n in o)for(a=o[n],s=0,r=a.length;r>s;s++)h=t.call(e,a[s]),h&&(s--,r--)}},getNearObject:function(t){var e,i,n,s,r,o,a,h,_=this._getCoord(t.x),u=this._getCoord(t.y),l=this._objectPoint,d=this._sqCellSize,p=null;for(e=u-1;u+1>=e;e++)if(s=this._grid[e])for(i=_-1;_+1>=i;i++)if(r=s[i])for(n=0,o=r.length;o>n;n++)a=r[n],h=this._sqDist(l[L.Util.stamp(a)],t),d>h&&(d=h,p=a);return p},_getCoord:function(t){return Math.floor(t/this._cellSize)},_sqDist:function(t,e){var i=e.x-t.x,n=e.y-t.y;return i*i+n*n}},function(){L.QuickHull={getDistant:function(t,e){var i=e[1].lat-e[0].lat,n=e[0].lng-e[1].lng;return n*(t.lat-e[0].lat)+i*(t.lng-e[0].lng)},findMostDistantPointFromBaseLine:function(t,e){var i,n,s,r=0,o=null,a=[];for(i=e.length-1;i>=0;i--)n=e[i],s=this.getDistant(n,t),s>0&&(a.push(n),s>r&&(r=s,o=n));return{maxPoint:o,newPoints:a}},buildConvexHull:function(t,e){var i=[],n=this.findMostDistantPointFromBaseLine(t,e);return n.maxPoint?(i=i.concat(this.buildConvexHull([t[0],n.maxPoint],n.newPoints)),i=i.concat(this.buildConvexHull([n.maxPoint,t[1]],n.newPoints))):[t[0]]},getConvexHull:function(t){var e,i=!1,n=!1,s=null,r=null;for(e=t.length-1;e>=0;e--){var o=t[e];(i===!1||o.lat>i)&&(s=o,i=o.lat),(n===!1||o.lat<n)&&(r=o,n=o.lat)}var a=[].concat(this.buildConvexHull([r,s],t),this.buildConvexHull([s,r],t));return a}}}(),L.MarkerCluster.include({getConvexHull:function(){var t,e,i=this.getAllChildMarkers(),n=[];for(e=i.length-1;e>=0;e--)t=i[e].getLatLng(),n.push(t);return L.QuickHull.getConvexHull(n)}}),L.MarkerCluster.include({_2PI:2*Math.PI,_circleFootSeparation:25,_circleStartAngle:Math.PI/6,_spiralFootSeparation:28,_spiralLengthStart:11,_spiralLengthFactor:5,_circleSpiralSwitchover:9,spiderfy:function(){if(this._group._spiderfied!==this&&!this._group._inZoomAnimation){var t,e=this.getAllChildMarkers(),i=this._group,n=i._map,s=n.latLngToLayerPoint(this._latlng);this._group._unspiderfy(),this._group._spiderfied=this,e.length>=this._circleSpiralSwitchover?t=this._generatePointsSpiral(e.length,s):(s.y+=10,t=this._generatePointsCircle(e.length,s)),this._animationSpiderfy(e,t)}},unspiderfy:function(t){this._group._inZoomAnimation||(this._animationUnspiderfy(t),this._group._spiderfied=null)},_generatePointsCircle:function(t,e){var i,n,s=this._group.options.spiderfyDistanceMultiplier*this._circleFootSeparation*(2+t),r=s/this._2PI,o=this._2PI/t,a=[];for(a.length=t,i=t-1;i>=0;i--)n=this._circleStartAngle+i*o,a[i]=new L.Point(e.x+r*Math.cos(n),e.y+r*Math.sin(n))._round();return a},_generatePointsSpiral:function(t,e){var i,n=this._group.options.spiderfyDistanceMultiplier*this._spiralLengthStart,s=this._group.options.spiderfyDistanceMultiplier*this._spiralFootSeparation,r=this._group.options.spiderfyDistanceMultiplier*this._spiralLengthFactor,o=0,a=[];for(a.length=t,i=t-1;i>=0;i--)o+=s/n+5e-4*i,a[i]=new L.Point(e.x+n*Math.cos(o),e.y+n*Math.sin(o))._round(),n+=this._2PI*r/o;return a},_noanimationUnspiderfy:function(){var t,e,i=this._group,n=i._map,s=i._featureGroup,r=this.getAllChildMarkers();for(this.setOpacity(1),e=r.length-1;e>=0;e--)t=r[e],s.removeLayer(t),t._preSpiderfyLatlng&&(t.setLatLng(t._preSpiderfyLatlng),delete t._preSpiderfyLatlng),t.setZIndexOffset&&t.setZIndexOffset(0),t._spiderLeg&&(n.removeLayer(t._spiderLeg),delete t._spiderLeg);i._spiderfied=null}}),L.MarkerCluster.include(L.DomUtil.TRANSITION?{SVG_ANIMATION:function(){return e.createElementNS("http://www.w3.org/2000/svg","animate").toString().indexOf("SVGAnimate")>-1}(),_animationSpiderfy:function(t,i){var n,s,r,o,a=this,h=this._group,_=h._map,u=h._featureGroup,l=_.latLngToLayerPoint(this._latlng);for(n=t.length-1;n>=0;n--)s=t[n],s.setOpacity?(s.setZIndexOffset(1e6),s.setOpacity(0),u.addLayer(s),s._setPos(l)):u.addLayer(s);h._forceLayout(),h._animationStart();var d=L.Path.SVG?0:.3,p=L.Path.SVG_NS;for(n=t.length-1;n>=0;n--)if(o=_.layerPointToLatLng(i[n]),s=t[n],s._preSpiderfyLatlng=s._latlng,s.setLatLng(o),s.setOpacity&&s.setOpacity(1),r=new L.Polyline([a._latlng,o],{weight:1.5,color:"#222",opacity:d}),_.addLayer(r),s._spiderLeg=r,L.Path.SVG&&this.SVG_ANIMATION){var c=r._path.getTotalLength();r._path.setAttribute("stroke-dasharray",c+","+c);var f=e.createElementNS(p,"animate");f.setAttribute("attributeName","stroke-dashoffset"),f.setAttribute("begin","indefinite"),f.setAttribute("from",c),f.setAttribute("to",0),f.setAttribute("dur",.25),r._path.appendChild(f),f.beginElement(),f=e.createElementNS(p,"animate"),f.setAttribute("attributeName","stroke-opacity"),f.setAttribute("attributeName","stroke-opacity"),f.setAttribute("begin","indefinite"),f.setAttribute("from",0),f.setAttribute("to",.5),f.setAttribute("dur",.25),r._path.appendChild(f),f.beginElement()}if(a.setOpacity(.3),L.Path.SVG)for(this._group._forceLayout(),n=t.length-1;n>=0;n--)s=t[n]._spiderLeg,s.options.opacity=.5,s._path.setAttribute("stroke-opacity",.5);setTimeout(function(){h._animationEnd(),h.fire("spiderfied")},200)},_animationUnspiderfy:function(t){var e,i,n,s=this._group,r=s._map,o=s._featureGroup,a=t?r._latLngToNewLayerPoint(this._latlng,t.zoom,t.center):r.latLngToLayerPoint(this._latlng),h=this.getAllChildMarkers(),_=L.Path.SVG&&this.SVG_ANIMATION;for(s._animationStart(),this.setOpacity(1),i=h.length-1;i>=0;i--)e=h[i],e._preSpiderfyLatlng&&(e.setLatLng(e._preSpiderfyLatlng),delete e._preSpiderfyLatlng,e.setOpacity?(e._setPos(a),e.setOpacity(0)):o.removeLayer(e),_&&(n=e._spiderLeg._path.childNodes[0],n.setAttribute("to",n.getAttribute("from")),n.setAttribute("from",0),n.beginElement(),n=e._spiderLeg._path.childNodes[1],n.setAttribute("from",.5),n.setAttribute("to",0),n.setAttribute("stroke-opacity",0),n.beginElement(),e._spiderLeg._path.setAttribute("stroke-opacity",0)));setTimeout(function(){var t=0;for(i=h.length-1;i>=0;i--)e=h[i],e._spiderLeg&&t++;for(i=h.length-1;i>=0;i--)e=h[i],e._spiderLeg&&(e.setOpacity&&(e.setOpacity(1),e.setZIndexOffset(0)),t>1&&o.removeLayer(e),r.removeLayer(e._spiderLeg),delete e._spiderLeg);s._animationEnd()},200)}}:{_animationSpiderfy:function(t,e){var i,n,s,r,o=this._group,a=o._map,h=o._featureGroup;for(i=t.length-1;i>=0;i--)r=a.layerPointToLatLng(e[i]),n=t[i],n._preSpiderfyLatlng=n._latlng,n.setLatLng(r),n.setZIndexOffset&&n.setZIndexOffset(1e6),h.addLayer(n),s=new L.Polyline([this._latlng,r],{weight:1.5,color:"#222"}),a.addLayer(s),n._spiderLeg=s;this.setOpacity(.3),o.fire("spiderfied")},_animationUnspiderfy:function(){this._noanimationUnspiderfy()}}),L.MarkerClusterGroup.include({_spiderfied:null,_spiderfierOnAdd:function(){this._map.on("click",this._unspiderfyWrapper,this),this._map.options.zoomAnimation&&this._map.on("zoomstart",this._unspiderfyZoomStart,this),this._map.on("zoomend",this._noanimationUnspiderfy,this),L.Path.SVG&&!L.Browser.touch&&this._map._initPathRoot()},_spiderfierOnRemove:function(){this._map.off("click",this._unspiderfyWrapper,this),this._map.off("zoomstart",this._unspiderfyZoomStart,this),this._map.off("zoomanim",this._unspiderfyZoomAnim,this),this._unspiderfy()},_unspiderfyZoomStart:function(){this._map&&this._map.on("zoomanim",this._unspiderfyZoomAnim,this)},_unspiderfyZoomAnim:function(t){L.DomUtil.hasClass(this._map._mapPane,"leaflet-touching")||(this._map.off("zoomanim",this._unspiderfyZoomAnim,this),this._unspiderfy(t))},_unspiderfyWrapper:function(){this._unspiderfy()},_unspiderfy:function(t){this._spiderfied&&this._spiderfied.unspiderfy(t)},_noanimationUnspiderfy:function(){this._spiderfied&&this._spiderfied._noanimationUnspiderfy()},_unspiderfyLayer:function(t){t._spiderLeg&&(this._featureGroup.removeLayer(t),t.setOpacity(1),t.setZIndexOffset(0),this._map.removeLayer(t._spiderLeg),delete t._spiderLeg)}})}(window,document);
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"PRI_NEIGH":"Grand Boulevard","SEC_NEIGH":"BRONZEVILLE","Creation D":"08/01/2014","Street Add":"4837 S ST LAWRENCE AVE","Community":38,"COUNT":19,"Area":48492503,"sqmi":1.739329,"density":10.92375},"geometry":{"type":"Polygon","coordinates":[[[-87.60670812560365,41.81681377137389],[-87.60667660553895,41.81529991216341],[-87.60668235893175,41.81471953500854],[-87.60664346744448,41.81295477653957],[-87.60660910203788,41.81157830601937],[-87.60647784312062,41.80550837382789],[-87.60641591599189,41.802511450716096],[-87.60640720551969,41.80225116311798],[-87.60676961320158,41.80223972709811],[-87.61110853154791,41.802171587675296],[-87.61539069001678,41.802107892354215],[-87.61634772581857,41.802100893407946],[-87.61985043900451,41.80204641168372],[-87.62611153132808,41.80194168526693],[-87.62658307537609,41.80193852279683],[-87.62879823732868,41.801893034487996],[-87.6288218478287,41.80266659714662],[-87.62892101165575,41.80336562434738],[-87.62895599823695,41.804650161366396],[-87.62897770791113,41.805639949836966],[-87.62902477886466,41.807244611506015],[-87.6289663072238,41.807769096264565],[-87.6289923211466,41.808826488406126],[-87.62900916419444,41.80896311943623],[-87.62904151910097,41.810153304579636],[-87.62901065906924,41.81054280253196],[-87.62897295129588,41.81126431579118],[-87.62909359948266,41.81565417932087],[-87.62912361188931,41.81659805023156],[-87.6291949656827,41.81946110659786],[-87.6292551378766,41.8197870146453],[-87.62933936685734,41.82302439837315],[-87.62936279268519,41.82327221202085],[-87.62935652492084,41.823676460508835],[-87.62896819970499,41.82368149243278],[-87.62806959945621,41.823690217183795],[-87.62497215616352,41.823734110647806],[-87.62426776089134,41.823741674630654],[-87.61770996886854,41.823823235209495],[-87.61610922731984,41.823847592335866],[-87.61262427239444,41.823890805171324],[-87.6073273403714,41.823948916418196],[-87.60687305832268,41.82396480097773],[-87.606437204341,41.82330608474621],[-87.60685918571644,41.823165708059726],[-87.60684469473257,41.82201181422018],[-87.60679873015545,41.8200706116106],[-87.60676036316816,41.81934471563503],[-87.60674253234447,41.818152121055135],[-87.60672120877399,41.81750713742133],[-87.60670812560365,41.81681377137389]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Printers Row","SEC_NEIGH":"PRINTERS ROW","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":2162137,"sqmi":0.077551,"density":0},"geometry":{"type":"Polygon","coordinates":[[[-87.62741867651461,41.867413588800254],[-87.63043520045342,41.86737398596491],[-87.63049175239168,41.86964771496226],[-87.63056510977242,41.87057607635729],[-87.63064686470446,41.87359738857435],[-87.63067547794122,41.8745216335484],[-87.62796784305232,41.87455500774028],[-87.6276111519886,41.874552398421585],[-87.62759525663321,41.87386171244113],[-87.62755513014905,41.87280194101273],[-87.62751740010019,41.87152447340545],[-87.62748640976547,41.87022285721282],[-87.62746178584429,41.86893095552228],[-87.62741867651461,41.867413588800254]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"United Center","SEC_NEIGH":"UNITED CENTER","Creation D":"08/07/2014","Street Add":"1664 W OGDEN AVE","Community":28,"COUNT":16,"Area":32520512,"sqmi":1.166445,"density":13.71689},"geometry":{"type":"Polygon","coordinates":[[[-87.66706868914595,41.88885187769543],[-87.66705621160314,41.88798243704958],[-87.66697889496533,41.88540355338089],[-87.66690708760873,41.88512201645524],[-87.66686970371136,41.883212239169644],[-87.66679327499381,41.88118874474577],[-87.66678986142905,41.88077716998303],[-87.66674916269244,41.87999150637367],[-87.66675412123355,41.878925180599985],[-87.66668783301006,41.87764333990277],[-87.6666647980857,41.876351010649564],[-87.66663654838817,41.87548966125409],[-87.6688617737278,41.87545378627281],[-87.6694404645468,41.87543495957125],[-87.66998096895594,41.87543380188151],[-87.67067564678779,41.87545103965624],[-87.67151563977872,41.875452041528064],[-87.67369748178493,41.87542476165174],[-87.67470398587828,41.87540294502643],[-87.67686931254202,41.87536902001426],[-87.67771268023141,41.87536667530306],[-87.68029980948175,41.8753329712632],[-87.68217808431521,41.87533843085268],[-87.68353185836843,41.87533012722716],[-87.68428360455579,41.87531774814834],[-87.68470289030043,41.87532129706636],[-87.68669486499262,41.87530541728378],[-87.68800853787398,41.87528650298001],[-87.69016546498649,41.87527486629831],[-87.69132466748891,41.87525618771466],[-87.69145412047193,41.87839640357655],[-87.69143260061647,41.87839671002473],[-87.6915045550814,41.881113466597014],[-87.69216226986916,41.881105978660386],[-87.69218885464456,41.881333334759844],[-87.69226268130265,41.88416495760862],[-87.69227959522783,41.884404450066945],[-87.69159209657826,41.88442970418309],[-87.69161307587164,41.885130898240774],[-87.6916114048169,41.885435500022695],[-87.6915810837991,41.88566721921781],[-87.69161719299692,41.88600393392978],[-87.69168606945259,41.88609385002511],[-87.69162326300433,41.88617719879652],[-87.69156032542344,41.88645710271338],[-87.6913772961191,41.886810429895284],[-87.6912748287283,41.886957703440565],[-87.69106647202274,41.88718122353368],[-87.69089789847679,41.88732846947328],[-87.69061866863716,41.887523463735526],[-87.6904270982682,41.88762907331129],[-87.69011637699569,41.88775974335068],[-87.689488862063,41.88793974837678],[-87.68929046328176,41.88802062863014],[-87.68895928470563,41.88805821023462],[-87.68867151040168,41.88817459398869],[-87.68846692624265,41.88817310614266],[-87.687850292253,41.88832023237869],[-87.6874589652015,41.88838560854263],[-87.6872352229969,41.88840287384991],[-87.68662375196502,41.888410875443185],[-87.68662242195047,41.88863493672473],[-87.68599308499935,41.88857227849705],[-87.68173967938506,41.88864103364698],[-87.67928985244895,41.88868780221446],[-87.67874584251902,41.888691083746835],[-87.67529050264882,41.888747206652454],[-87.67278550868983,41.88878249585881],[-87.67180881751617,41.88880415147279],[-87.66899138112942,41.88884501812272],[-87.66726460291515,41.88885812588952],[-87.66706868914595,41.88885187769543]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Sheffield & DePaul","SEC_NEIGH":"SHEFFIELD & DEPAUL","Creation D":"08/01/2014","Street Add":"1013 W WEBSTER AVE","Community":7,"COUNT":61,"Area":10482592,"sqmi":0.375989,"density":162.2387},"geometry":{"type":"Polygon","coordinates":[[[-87.65871047912336,41.93255620619184],[-87.65716832212134,41.93258336998734],[-87.65471934459201,41.93262169313882],[-87.65340537558188,41.93264687767973],[-87.65093975819981,41.932687409131404],[-87.64986950305021,41.93270036235405],[-87.64901192377398,41.932719973981435],[-87.64897835941635,41.93177941826951],[-87.64884791691863,41.927851798174885],[-87.6487705416888,41.92566413699422],[-87.64872855803684,41.92457972655343],[-87.64863255832,41.921817050922485],[-87.65136840468801,41.92177223293181],[-87.65833494805526,41.9216614422918],[-87.65844028248843,41.92492991946887],[-87.65852934103523,41.927511796217786],[-87.65853433461952,41.927993354239135],[-87.65856073851326,41.928441421328344],[-87.65860272464516,41.92967407054861],[-87.65871047912336,41.93255620619184]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Humboldt Park","SEC_NEIGH":"HUMBOLDT PARK","Creation D":"08/01/2014","Street Add":"4303 W CORTEZ ST","Community":23,"COUNT":150,"Area":12501042,"sqmi":0.448387,"density":334.5324},"geometry":{"type":"Polygon","coordinates":[[[-87.7405956750926,41.88782316893227],[-87.74069436023089,41.890705478504955],[-87.74074886855122,41.891463857575694],[-87.74058130990268,41.89146264923021],[-87.74076206222544,41.89281786670339],[-87.74104225444066,41.89498932266394],[-87.7411520040653,41.89578228837864],[-87.74116838104516,41.89604719219355],[-87.74109776439813,41.89643513853404],[-87.7410209704888,41.896509550491295],[-87.74107438360758,41.89692829540165],[-87.7411192817953,41.89877744161426],[-87.74121249648915,41.89877608750005],[-87.74124887342228,41.89906352873421],[-87.7413307377053,41.899496168407],[-87.74134479720465,41.90006189714073],[-87.7413395727612,41.90062752695417],[-87.74116367849325,41.90063142245578],[-87.7412305531536,41.903432263404255],[-87.74134015012599,41.90792171492379],[-87.74135437727362,41.90856874224315],[-87.74141068667775,41.908657266023134],[-87.74136701599326,41.909039786627645],[-87.74137991259568,41.90943330819286],[-87.7413700658177,41.91000199997791],[-87.74132384662569,41.91063053433387],[-87.7413427213397,41.911072796785795],[-87.74130814458448,41.91153467878363],[-87.74128477193372,41.91205250730681],[-87.74130062029556,41.91283275616117],[-87.74133544805055,41.91389760542001],[-87.74102707258434,41.91382157809548],[-87.73940726571985,41.913625573787954],[-87.73878192719263,41.91355853445856],[-87.73801275286857,41.91350137972934],[-87.73734983947904,41.91347495798947],[-87.73672396803944,41.9134655335931],[-87.72833801093402,41.91356641458744],[-87.72644799288932,41.91359126365749],[-87.72575263305079,41.913592898161255],[-87.72419264631012,41.913583260856704],[-87.72400291142158,41.91362088337551],[-87.72234754850996,41.9136351132709],[-87.72133984441717,41.91367202951232],[-87.7210020592074,41.91364861816191],[-87.71887689872659,41.9136695102163],[-87.71824914994642,41.9136644341717],[-87.71788239409416,41.91364232387644],[-87.71665846434084,41.91363840988529],[-87.71665595985756,41.913549166073324],[-87.71489346184754,41.913569818447414],[-87.71028178136079,41.91362891639747],[-87.70753880366097,41.91366221634364],[-87.7070249826192,41.91366471732161],[-87.70685459549385,41.91371601715511],[-87.7068565994291,41.91377311030366],[-87.70232540321008,41.913818863706986],[-87.70232820870451,41.913922444770876],[-87.70163359402454,41.91391950782827],[-87.69823925698479,41.913951661737414],[-87.69798633460694,41.91399668260992],[-87.69709689877438,41.91400370812058],[-87.69709389176079,41.91390654595381],[-87.69401231470921,41.91393556019319],[-87.69220339182874,41.91394989472546],[-87.69214871692431,41.91192948177417],[-87.69210455880088,41.91044627961466],[-87.69211542576721,41.91012400274728],[-87.69210502051955,41.909790794796436],[-87.69203663506889,41.906709160110466],[-87.6920420321092,41.906533284836634],[-87.69195209632194,41.902968358649375],[-87.69186806263802,41.89950775518886],[-87.69184581621336,41.89871369548133],[-87.69181234986868,41.89722039589212],[-87.6917725928045,41.89570221551958],[-87.69173826135808,41.894530792096155],[-87.69166778192343,41.892332379684625],[-87.69170143235276,41.89200379500472],[-87.69164800123527,41.89191212776506],[-87.69158683544401,41.88852098519807],[-87.69157000947968,41.88819563499646],[-87.69520212162112,41.888154129737686],[-87.69579902941302,41.88823462749155],[-87.69616692029453,41.88826308236473],[-87.69666712656108,41.88828129272967],[-87.69760877365643,41.88827175967402],[-87.70141195322411,41.888226206561455],[-87.7014103463457,41.8881639511411],[-87.70386833266832,41.88816422659922],[-87.70387106699181,41.888306598951615],[-87.70723417731958,41.8882635818747],[-87.70863439280673,41.88821117704892],[-87.71488079687435,41.888132472406376],[-87.71986001850546,41.88806827673425],[-87.72098330193278,41.88806705675732],[-87.72117495367345,41.888051281571066],[-87.72421342574208,41.88801392560273],[-87.72464970767932,41.8880447104332],[-87.72464525429326,41.88783681027193],[-87.7258700790559,41.88783403344492],[-87.72587356203435,41.887993559740515],[-87.7269745766682,41.88798085706529],[-87.72766013458894,41.88801157427706],[-87.72861871261051,41.88795831048985],[-87.73490958877818,41.887880808880574],[-87.73678511463824,41.887855577852285],[-87.73796272569588,41.88784453788375],[-87.73816949683653,41.887874509342325],[-87.73851549233576,41.887839169327194],[-87.7405956750926,41.88782316893227]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Garfield Park","SEC_NEIGH":"GARFIELD PARK","Creation D":"08/01/2014","Street Add":"3849 W LEXINGTON ST","Community":26,"COUNT":66,"Area":89976069,"sqmi":3.227262,"density":20.45077},"geometry":{"type":"Polygon","coordinates":[[[-87.69157000947968,41.88819563499646],[-87.68867151040168,41.88817459398869],[-87.68895928470563,41.88805821023462],[-87.68929046328176,41.88802062863014],[-87.689488862063,41.88793974837678],[-87.69011637699569,41.88775974335068],[-87.6904270982682,41.88762907331129],[-87.69061866863716,41.887523463735526],[-87.69089789847679,41.88732846947328],[-87.69106647202274,41.88718122353368],[-87.6912748287283,41.886957703440565],[-87.6913772961191,41.886810429895284],[-87.69156032542344,41.88645710271338],[-87.69162326300433,41.88617719879652],[-87.69168606945259,41.88609385002511],[-87.69161719299692,41.88600393392978],[-87.6915810837991,41.88566721921781],[-87.6916114048169,41.885435500022695],[-87.69161307587164,41.885130898240774],[-87.69159209657826,41.88442970418309],[-87.69227959522783,41.884404450066945],[-87.69226268130265,41.88416495760862],[-87.69218885464456,41.881333334759844],[-87.69216226986916,41.881105978660386],[-87.6915045550814,41.881113466597014],[-87.69143260061647,41.87839671002473],[-87.69145412047193,41.87839640357655],[-87.69132466748891,41.87525618771466],[-87.69115384740734,41.871112150292994],[-87.69123249546476,41.87101167487861],[-87.69122396736591,41.87062571715385],[-87.6912634482328,41.87030348808468],[-87.69121203477022,41.8700487336049],[-87.69124000583295,41.86938986454097],[-87.69119277233952,41.86929465784448],[-87.69256554924043,41.86928403982754],[-87.69361861177151,41.86925717153388],[-87.6957372189904,41.869225539058256],[-87.696306134224,41.86924192343889],[-87.69826003190047,41.86921824922836],[-87.69870018411369,41.8692165936834],[-87.70060798464502,41.86919108827203],[-87.70411254238478,41.869154277612225],[-87.70575619374611,41.869133084661165],[-87.70578982010876,41.870052909163604],[-87.70603428945576,41.87006021267351],[-87.71129371252499,41.869994939018646],[-87.7147375144069,41.86995371544256],[-87.71529536619366,41.869949693580786],[-87.7162665890115,41.86993087643791],[-87.71796907787267,41.86994146579045],[-87.71804090671279,41.869905544172376],[-87.71964537956552,41.86988890908644],[-87.7202393601289,41.86986908525311],[-87.72019606122964,41.86858710874449],[-87.72527138948894,41.86852571176173],[-87.72528713642465,41.86908878132828],[-87.72683639122681,41.86907307089139],[-87.7300750086821,41.86903200495448],[-87.73121164188943,41.86902183358153],[-87.73257763294312,41.86899893785597],[-87.73261282800573,41.87008741054533],[-87.73265223024266,41.870922034415514],[-87.73267288937832,41.87097682720741],[-87.73534281845495,41.87023788258845],[-87.73785084514633,41.869541250134276],[-87.73976655071397,41.869006048464044],[-87.73989424215752,41.86896303271127],[-87.73996885174785,41.869684554275075],[-87.7400275301429,41.871676842810615],[-87.74008463893335,41.87325169918853],[-87.7393898587919,41.873265629852426],[-87.73945298114083,41.87529573781564],[-87.73949330074744,41.87617992463052],[-87.73951452972365,41.87690912074896],[-87.74021207554493,41.87690735960856],[-87.7403305146626,41.88035534671538],[-87.74044160018296,41.88345725062338],[-87.74046469389452,41.88416088521676],[-87.7405956750926,41.88782316893227],[-87.73851549233576,41.887839169327194],[-87.73816949683653,41.887874509342325],[-87.73796272569588,41.88784453788375],[-87.73678511463824,41.887855577852285],[-87.73490958877818,41.887880808880574],[-87.72861871261051,41.88795831048985],[-87.72766013458894,41.88801157427706],[-87.7269745766682,41.88798085706529],[-87.72587356203435,41.887993559740515],[-87.7258700790559,41.88783403344492],[-87.72464525429326,41.88783681027193],[-87.72464970767932,41.8880447104332],[-87.72421342574208,41.88801392560273],[-87.72117495367345,41.888051281571066],[-87.72098330193278,41.88806705675732],[-87.71986001850546,41.88806827673425],[-87.71488079687435,41.888132472406376],[-87.70863439280673,41.88821117704892],[-87.70723417731958,41.8882635818747],[-87.70387106699181,41.888306598951615],[-87.70386833266832,41.88816422659922],[-87.7014103463457,41.8881639511411],[-87.70141195322411,41.888226206561455],[-87.69760877365643,41.88827175967402],[-87.69666712656108,41.88828129272967],[-87.69616692029453,41.88826308236473],[-87.69579902941302,41.88823462749155],[-87.69520212162112,41.888154129737686],[-87.69157000947968,41.88819563499646]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"North Lawndale","SEC_NEIGH":"NORTH LAWNDALE","Creation D":"08/01/2014","Street Add":"4442 W 16TH ST","Community":29,"COUNT":56,"Area":89487422,"sqmi":3.209735,"density":17.44692},"geometry":{"type":"Polygon","coordinates":[[[-87.69119277233952,41.86929465784448],[-87.69116977413087,41.86847426380248],[-87.69111166367209,41.86795253063482],[-87.69103018071641,41.86761110184211],[-87.69094843475389,41.86738767354804],[-87.6909501312755,41.86729408645443],[-87.69087163246472,41.86722053057571],[-87.69084220916,41.86705662683415],[-87.69071411752601,41.866956201308916],[-87.69047478462099,41.86656757889481],[-87.69075383700269,41.866564360626484],[-87.68878277503414,41.8637781427375],[-87.68818200589298,41.863056827810155],[-87.68811623724481,41.86114443126133],[-87.68821454860952,41.86114319427581],[-87.68819538354822,41.860356556034255],[-87.68821493192459,41.85950681006017],[-87.6881689131959,41.85933784620455],[-87.68807300498915,41.859338427058425],[-87.68804391429784,41.85816990456904],[-87.68802266927057,41.85708820455653],[-87.68803384627768,41.8569697656528],[-87.69172580797445,41.85614571746227],[-87.6955589153851,41.855284784787166],[-87.69556876453704,41.85555168927464],[-87.69574437161656,41.85555765004995],[-87.70122508698829,41.85547460723109],[-87.70292888405338,41.85545096522621],[-87.70287726404175,41.85380167308034],[-87.70366552191786,41.85362416652834],[-87.70421631792269,41.853602815875846],[-87.70518735971409,41.853585024106344],[-87.70639044832988,41.85358292584171],[-87.7111005580891,41.853542376193616],[-87.71120290436531,41.85355074518384],[-87.71116246682654,41.852312871102654],[-87.71114293782293,41.851991137901734],[-87.71242151310963,41.851706671514],[-87.71256225190261,41.85169014343458],[-87.71513110583399,41.851663109649266],[-87.71743235787889,41.851632914907995],[-87.71877648855902,41.851622573908855],[-87.71971603777443,41.85160893642989],[-87.722281236579,41.85158164056807],[-87.72224290817378,41.850354285116794],[-87.72222665291717,41.84936084406867],[-87.72452134775345,41.84884784716634],[-87.72895434543683,41.84785348109584],[-87.73156660325773,41.84727066287518],[-87.73314077125083,41.846915970410095],[-87.73837839904888,41.84574946544876],[-87.7393230897398,41.84559285475181],[-87.73944942560246,41.84959975121487],[-87.73946946780694,41.849599525534856],[-87.73950453466578,41.851348016654654],[-87.73977122656976,41.85865297823844],[-87.73997712626077,41.86581995819641],[-87.73998200626025,41.865959187455225],[-87.73976647132831,41.86596219585272],[-87.73989424215752,41.86896303271127],[-87.73976655071397,41.869006048464044],[-87.73785084514633,41.869541250134276],[-87.73534281845495,41.87023788258845],[-87.73267288937832,41.87097682720741],[-87.73265223024266,41.870922034415514],[-87.73261282800573,41.87008741054533],[-87.73257763294312,41.86899893785597],[-87.73121164188943,41.86902183358153],[-87.7300750086821,41.86903200495448],[-87.72683639122681,41.86907307089139],[-87.72528713642465,41.86908878132828],[-87.72527138948894,41.86852571176173],[-87.72019606122964,41.86858710874449],[-87.7202393601289,41.86986908525311],[-87.71964537956552,41.86988890908644],[-87.71804090671279,41.869905544172376],[-87.71796907787267,41.86994146579045],[-87.7162665890115,41.86993087643791],[-87.71529536619366,41.869949693580786],[-87.7147375144069,41.86995371544256],[-87.71129371252499,41.869994939018646],[-87.70603428945576,41.87006021267351],[-87.70578982010876,41.870052909163604],[-87.70575619374611,41.869133084661165],[-87.70411254238478,41.869154277612225],[-87.70060798464502,41.86919108827203],[-87.69870018411369,41.8692165936834],[-87.69826003190047,41.86921824922836],[-87.696306134224,41.86924192343889],[-87.6957372189904,41.869225539058256],[-87.69361861177151,41.86925717153388],[-87.69256554924043,41.86928403982754],[-87.69119277233952,41.86929465784448]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Little Village","SEC_NEIGH":"LITTLE VILLAGE","Creation D":"08/01/2014","Street Add":"3033 S KOMENSKY AVE","Community":30,"COUNT":30,"Area":12799829,"sqmi":0.459104,"density":65.34467},"geometry":{"type":"Polygon","coordinates":[[[-87.68739948177165,41.83480098281808],[-87.69036388424011,41.833871491530445],[-87.6951893686447,41.832348247066236],[-87.69635786270992,41.83199450179381],[-87.69661466513132,41.83219452212629],[-87.69729074774796,41.83193964518042],[-87.69781084892466,41.83173099544849],[-87.69854186381562,41.83149214271506],[-87.70038325249877,41.830916814437174],[-87.70225299987801,41.83039463166159],[-87.70300978085574,41.83020034887056],[-87.70417384887563,41.82987418018528],[-87.70460744033217,41.82979817962557],[-87.70457772629845,41.82911553420861],[-87.70748377612253,41.82819827849814],[-87.70999196663487,41.82741026046301],[-87.71146007524905,41.82695539657412],[-87.71420137247611,41.826087235009275],[-87.71436934735934,41.826040563642316],[-87.71437442000341,41.8263211199608],[-87.71764166917586,41.82529124743219],[-87.71775801273597,41.825237156750006],[-87.71858348687923,41.82499187307108],[-87.7195937755906,41.824678284457896],[-87.72195235728313,41.82393646130219],[-87.72452987741903,41.823122590512234],[-87.72674071429986,41.82242888017215],[-87.72725069436012,41.822252811676584],[-87.72748330801438,41.822199256471],[-87.73011143272241,41.821368683615376],[-87.73182302928356,41.82083283251613],[-87.73291017931432,41.820488202360174],[-87.73681224538404,41.81926134068262],[-87.73855658142487,41.818706145062336],[-87.73858204677076,41.818850478875824],[-87.73861975697157,41.82062313419047],[-87.73862004529323,41.82098683643912],[-87.73864811220413,41.82205888135164],[-87.73848582773084,41.82211989939336],[-87.73863864266669,41.82942561914785],[-87.73881215667825,41.83672573146122],[-87.73893326649907,41.83672441861874],[-87.73898808413288,41.83854944125903],[-87.73910919634145,41.838548202069155],[-87.73927711641002,41.84413546622793],[-87.7393230897398,41.84559285475181],[-87.73837839904888,41.84574946544876],[-87.73314077125083,41.846915970410095],[-87.73156660325773,41.84727066287518],[-87.72895434543683,41.84785348109584],[-87.72452134775345,41.84884784716634],[-87.72222665291717,41.84936084406867],[-87.72224290817378,41.850354285116794],[-87.722281236579,41.85158164056807],[-87.71971603777443,41.85160893642989],[-87.71877648855902,41.851622573908855],[-87.71743235787889,41.851632914907995],[-87.71513110583399,41.851663109649266],[-87.71256225190261,41.85169014343458],[-87.71242151310963,41.851706671514],[-87.71114293782293,41.851991137901734],[-87.71116246682654,41.852312871102654],[-87.71120290436531,41.85355074518384],[-87.7111005580891,41.853542376193616],[-87.70639044832988,41.85358292584171],[-87.70518735971409,41.853585024106344],[-87.70421631792269,41.853602815875846],[-87.70366552191786,41.85362416652834],[-87.70287726404175,41.85380167308034],[-87.70292888405338,41.85545096522621],[-87.70122508698829,41.85547460723109],[-87.69574437161656,41.85555765004995],[-87.69556876453704,41.85555168927464],[-87.6955589153851,41.855284784787166],[-87.69172580797445,41.85614571746227],[-87.68803384627768,41.8569697656528],[-87.68801822859145,41.85689093637181],[-87.68799300656804,41.85579412062573],[-87.68797895317012,41.85569222694016],[-87.68797582471707,41.855084290294265],[-87.68791118264404,41.85334475302508],[-87.68787474362848,41.85200933535455],[-87.68779117194083,41.848367862327876],[-87.68756026951382,41.84479497867855],[-87.6874894247407,41.83701851585549],[-87.68751312145137,41.83681210349047],[-87.68745790501102,41.834913102952896],[-87.68739948177165,41.83480098281808]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Armour Square","SEC_NEIGH":"ARMOUR SQUARE,CHINATOWN","Creation D":"08/05/2014","Street Add":"3000 S SHIELDS AVE","Community":34,"COUNT":16,"Area":17141468,"sqmi":0.61483,"density":26.02345},"geometry":{"type":"Polygon","coordinates":[[[-87.62920071904182,41.847127061385216],[-87.62918769436033,41.846601550417276],[-87.62918829845029,41.84613083689359],[-87.62916818463971,41.84555660662325],[-87.62978701012568,41.8455455201129],[-87.62996524439636,41.84554483841734],[-87.62996524444745,41.84554483375242],[-87.62996222539645,41.84541345470648],[-87.62984200585431,41.841328298354405],[-87.6297604051152,41.838265672539535],[-87.62968729954046,41.83581138352722],[-87.62961050449098,41.832772325565834],[-87.62956105279395,41.83097085150509],[-87.62899568298714,41.8309749502841],[-87.6290036624121,41.830832746338615],[-87.62895345038913,41.82884279024681],[-87.62893235141557,41.82785560278968],[-87.62893520543305,41.82763876826656],[-87.6290476793644,41.82751006574271],[-87.62909202843322,41.827330176485106],[-87.62903952948203,41.82568941339692],[-87.62896819970499,41.82368149243278],[-87.62935652492084,41.823676460508835],[-87.63161506321714,41.823641129454494],[-87.63214403065007,41.82362844300283],[-87.6327048906789,41.8236312229836],[-87.63396392306535,41.823613287848666],[-87.63606374419643,41.82521045237787],[-87.63607190500974,41.82540427696235],[-87.63616486672754,41.82540642577738],[-87.63618864403684,41.82636649835859],[-87.63620338027235,41.82723349152155],[-87.63640384194198,41.8272309102082],[-87.63641656956695,41.827418594943445],[-87.63653520673047,41.832253683979],[-87.63657613685209,41.834146789694444],[-87.63653165999591,41.834526405739176],[-87.63588969757824,41.83453484298405],[-87.6359320166277,41.836359626889504],[-87.63643064208215,41.83635405559882],[-87.63647559638969,41.838171569551946],[-87.63637566127484,41.83817264487237],[-87.6364303889569,41.84053574451778],[-87.63651203899373,41.84364268856471],[-87.63829148955722,41.84361678149604],[-87.63830147759211,41.844175132939085],[-87.63835783199207,41.84618255681766],[-87.63952500061991,41.84637366177874],[-87.63998133068283,41.846321370357636],[-87.64160007235051,41.846300552508666],[-87.64160273121121,41.84646597904545],[-87.64185030822797,41.8471109295425],[-87.6417266672238,41.847283047146135],[-87.64120588951043,41.84730246723017],[-87.63622585749444,41.84736625732149],[-87.63430701446123,41.84743533091437],[-87.63323454518155,41.8474954305761],[-87.63313955765786,41.84750909286291],[-87.63192359520713,41.84753287839121],[-87.63146706176568,41.84751019109437],[-87.6311893784305,41.847479459316546],[-87.63049345706018,41.84735637638424],[-87.62959659801061,41.84718274389274],[-87.62920071904182,41.847127061385216]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Avalon Park","SEC_NEIGH":"AVALON PARK,CALUMET HEIGHTS","Creation D":"08/13/2014","Street Add":"8415 S CONSTANCE AVE","Community":45,"COUNT":3,"Area":34852737,"sqmi":1.250098,"density":2.399811},"geometry":{"type":"Polygon","coordinates":[[[-87.58565529833406,41.75150194330308],[-87.58475268177624,41.75090080081694],[-87.58263198369416,41.749375677594095],[-87.5810306321022,41.74822876087026],[-87.57675350580614,41.74514843564374],[-87.57228196014759,41.741934743945706],[-87.56997650191212,41.74027185222163],[-87.56694127498102,41.73809264735893],[-87.56570062502061,41.73719771954058],[-87.57014332875379,41.737137070031814],[-87.57552087669993,41.73705877401561],[-87.58184456973922,41.73696899189237],[-87.58729142841128,41.736889308063574],[-87.5898049382699,41.736858179170305],[-87.59534740898852,41.736782373181036],[-87.59591152581592,41.737727672180654],[-87.59722138680549,41.73993391842087],[-87.59748640769148,41.74042993423668],[-87.59769856967335,41.74098289838943],[-87.59777666567945,41.74128355687026],[-87.59786692507528,41.741842943987706],[-87.5978822896272,41.74226257809906],[-87.59783213286937,41.74332636151776],[-87.59787471991318,41.74405481819894],[-87.59761353722088,41.74405816816055],[-87.597451379741,41.74534304581933],[-87.59733963103317,41.7463443440757],[-87.59728074012394,41.74679610431082],[-87.59783380212714,41.74679208572128],[-87.59767715048802,41.74747372832057],[-87.59761805481516,41.747955661219194],[-87.59722354328002,41.74968993491734],[-87.59718104170669,41.750082097820254],[-87.59708022174252,41.75052671479961],[-87.59738311528395,41.75059829201197],[-87.59720802064982,41.751369385249866],[-87.5954906239353,41.75138664341337],[-87.59553005328993,41.75314641173713],[-87.59559556884257,41.755032183041486],[-87.59621609691841,41.75502628688927],[-87.59579793663984,41.75685823981859],[-87.59306193471095,41.75688178942047],[-87.59108957082408,41.755466962184336],[-87.58889676250476,41.753886109459074],[-87.58582075286999,41.75167151746407],[-87.58582440079178,41.751505559314495],[-87.58565529833406,41.75150194330308]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Burnside","SEC_NEIGH":"CHATHAM,BURNSIDE","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":16995983,"sqmi":0.609612,"density":0},"geometry":{"type":"Polygon","coordinates":[[[-87.58737431599778,41.72325635746181],[-87.58711377906508,41.72282072086446],[-87.58670378966852,41.72232155546232],[-87.5897100440222,41.722274569785284],[-87.59180364793075,41.72224820943765],[-87.59282282351536,41.72222021864543],[-87.59448324208775,41.72219309063881],[-87.59510372313427,41.722196941124935],[-87.59656036226247,41.72217313879026],[-87.59699217382125,41.72215960573374],[-87.59803074698739,41.72214520714336],[-87.59905452185784,41.72213712657412],[-87.6011832045251,41.72210523613859],[-87.60318224047138,41.72204834956648],[-87.60366023061798,41.72203882728776],[-87.60448161243,41.72204432475851],[-87.60449169337411,41.72254809439688],[-87.60451813827855,41.72312973097551],[-87.60450702502789,41.72361397338808],[-87.6040720903002,41.72351585278714],[-87.60358543434427,41.72342734638388],[-87.60306164118602,41.725729349927576],[-87.60335385600379,41.72572429348441],[-87.60293014967178,41.727556133950316],[-87.60327306000767,41.727551472964024],[-87.60294454993061,41.72897566609864],[-87.60201876399134,41.73303053550756],[-87.60184679354865,41.73303314237904],[-87.60116059580858,41.733131933563236],[-87.60075217736328,41.734938173611],[-87.60049055244387,41.736076765734765],[-87.60039359191387,41.73671025494308],[-87.59534740898852,41.736782373181036],[-87.59506493949078,41.736306515836766],[-87.59475137524495,41.73581326946699],[-87.59453022210403,41.73548904811237],[-87.59412840722888,41.73494446307338],[-87.59376546342047,41.734485199825286],[-87.59337654720352,41.733974998972755],[-87.59296037703751,41.73336616878053],[-87.5920019483228,41.73176520205757],[-87.59122795370223,41.73045700132795],[-87.59001144416702,41.72840977176882],[-87.58878252315989,41.726333632761204],[-87.5885849922925,41.72595359139826],[-87.58835366928517,41.72540361870801],[-87.58805918750407,41.72465491286357],[-87.58780749500806,41.724047472924084],[-87.58765986206767,41.723747041739436],[-87.58737431599778,41.72325635746181]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Calumet Heights","SEC_NEIGH":"AVALON PARK,CALUMET HEIGHTS","Creation D":"08/07/2014","Street Add":"8819 S DANTE AVE","Community":48,"COUNT":11,"Area":48826241,"sqmi":1.751299,"density":6.281051},"geometry":{"type":"Polygon","coordinates":[[[-87.54567696315205,41.72282057819379],[-87.54599760706974,41.72278929233841],[-87.54654400563332,41.722764466657026],[-87.54822534878294,41.72275428678264],[-87.54855921507576,41.72277747911231],[-87.54989436826385,41.722778466831144],[-87.55486450726076,41.72272102499404],[-87.56029820487768,41.722654248016966],[-87.56132948740239,41.7226381439169],[-87.56258420424888,41.72262629904051],[-87.56558907657268,41.72258926212083],[-87.56563065067803,41.723888355717726],[-87.56792064298207,41.723614164145665],[-87.56858477131054,41.723560269177916],[-87.56911014184932,41.723546269524874],[-87.57070794961416,41.7235280698426],[-87.57227196031418,41.72350242027399],[-87.57274406457843,41.7235010869517],[-87.5751117483235,41.72346939499974],[-87.5753801110544,41.723478708789386],[-87.57683181026492,41.72345123097909],[-87.57809124547586,41.723431729518744],[-87.58012642851149,41.72340563822905],[-87.58198768824963,41.72337288542851],[-87.58389649203188,41.72334658754926],[-87.58531076815414,41.72332046958827],[-87.58585802292116,41.723274633151846],[-87.58737431599778,41.72325635746181],[-87.58765986206767,41.723747041739436],[-87.58780749500806,41.724047472924084],[-87.58805918750407,41.72465491286357],[-87.58835366928517,41.72540361870801],[-87.5885849922925,41.72595359139826],[-87.58878252315989,41.726333632761204],[-87.59001144416702,41.72840977176882],[-87.59122795370223,41.73045700132795],[-87.5920019483228,41.73176520205757],[-87.59296037703751,41.73336616878053],[-87.59337654720352,41.733974998972755],[-87.59376546342047,41.734485199825286],[-87.59412840722888,41.73494446307338],[-87.59453022210403,41.73548904811237],[-87.59475137524495,41.73581326946699],[-87.59506493949078,41.736306515836766],[-87.59534740898852,41.736782373181036],[-87.5898049382699,41.736858179170305],[-87.58729142841128,41.736889308063574],[-87.58184456973922,41.73696899189237],[-87.57552087669993,41.73705877401561],[-87.57014332875379,41.737137070031814],[-87.56570062502061,41.73719771954058],[-87.56161546898355,41.73426030795445],[-87.55230200081816,41.72754383137223],[-87.55088288606844,41.726529045786705],[-87.55014315176282,41.725989140175436],[-87.54917604936409,41.72529575334571],[-87.5482042753303,41.72465079093226],[-87.54761213726607,41.72424319259032],[-87.54611621709968,41.723167502645026],[-87.54567696315205,41.72282057819379]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Pullman","SEC_NEIGH":"PULLMAN","Creation D":"08/06/2014","Street Add":"10662 S LANGLEY AVE","Community":50,"COUNT":2,"Area":59001555,"sqmi":2.116268,"density":0.945059},"geometry":{"type":"Polygon","coordinates":[[[-87.60157012805102,41.686209355763154],[-87.60217968965165,41.686175594176056],[-87.60249157954934,41.68613806126909],[-87.60292786468004,41.686027474500754],[-87.60410329194227,41.68556460174445],[-87.60425116849625,41.6855314004671],[-87.60457531623126,41.68550518977494],[-87.60742567321424,41.68547783779265],[-87.6113954673734,41.68544234978132],[-87.61143851379498,41.68572474672229],[-87.61141692720835,41.685936418774254],[-87.6112829691215,41.686476787164025],[-87.61062866830802,41.68935847709656],[-87.61009348031047,41.69169802802152],[-87.60975778865686,41.69323194392981],[-87.60965901157746,41.69361986415305],[-87.60894247578312,41.696744927446815],[-87.60832270335933,41.69947398490932],[-87.60826256874569,41.69980396754917],[-87.60814838480226,41.7003066662944],[-87.60807947131136,41.700544329143426],[-87.60749723109117,41.70308145948448],[-87.6073295807254,41.703863115626575],[-87.60722470091702,41.70427313482762],[-87.60683024563393,41.70600176128824],[-87.60663180245861,41.706914750409936],[-87.60619937955937,41.70887025386274],[-87.60533480868516,41.71265232735986],[-87.6043521563718,41.716975645555],[-87.60378967734721,41.71943241144352],[-87.60349191071325,41.72066650591962],[-87.60318224047138,41.72204834956648],[-87.6011832045251,41.72210523613859],[-87.59905452185784,41.72213712657412],[-87.59803074698739,41.72214520714336],[-87.59699217382125,41.72215960573374],[-87.59656036226247,41.72217313879026],[-87.59510372313427,41.722196941124935],[-87.59448324208775,41.72219309063881],[-87.59282282351536,41.72222021864543],[-87.59180364793075,41.72224820943765],[-87.5897100440222,41.722274569785284],[-87.58670378966852,41.72232155546232],[-87.58665234924561,41.722256511373175],[-87.5861044661714,41.72176446189142],[-87.58564801432271,41.721325146987176],[-87.58546710803864,41.72113152437073],[-87.58496308087368,41.72068469433593],[-87.58493726492068,41.71990718381978],[-87.58490775522803,41.71865591298044],[-87.5848892141938,41.718318762761164],[-87.5849002499726,41.717907461634944],[-87.584880644412,41.717381056368886],[-87.58482960277232,41.71642625051635],[-87.58481874357439,41.71602699113693],[-87.58477698884171,41.71531662729369],[-87.58473697887591,41.71429512367183],[-87.5847023981532,41.71369533978758],[-87.58468365079337,41.713606713658066],[-87.58468297629032,41.712491095994714],[-87.58466227976456,41.71179066582183],[-87.58462819264354,41.711250087257476],[-87.5847373385912,41.71029006689979],[-87.5848292805612,41.709815157481714],[-87.58493764039383,41.709418156356904],[-87.58508645492051,41.70901277391404],[-87.58525556706141,41.708615975892194],[-87.58552278584023,41.70811838596491],[-87.58574571692935,41.70777426142034],[-87.58729978537448,41.70774655558624],[-87.58729619288037,41.707558984244635],[-87.58734104262813,41.70716727652413],[-87.58741296317645,41.70690796590217],[-87.58750576612555,41.70667327010771],[-87.58766815920843,41.706425152163455],[-87.58814261398751,41.70511218048645],[-87.58835955084696,41.70496062344406],[-87.58958411183939,41.7038791336223],[-87.59099055568632,41.70256732978996],[-87.59186438275054,41.7017473687345],[-87.59222487133673,41.70138933685779],[-87.59271744916829,41.700880531231235],[-87.59368755777197,41.69979031154411],[-87.59415872516519,41.69920130400625],[-87.59436552781351,41.69897584429195],[-87.5957073798508,41.6969571256844],[-87.59616655623996,41.696317683243805],[-87.59640624313234,41.69587285234356],[-87.59679781770579,41.69517602562135],[-87.59724716531636,41.69430873309063],[-87.59830571541785,41.69233951971009],[-87.5987088201172,41.69160065128009],[-87.5988560968612,41.691309376397015],[-87.59917489277456,41.69073266164831],[-87.59973682619359,41.689740305114775],[-87.60029586616865,41.688677458242076],[-87.60069388790558,41.68796105834353],[-87.6013677439931,41.68666700877052],[-87.60157012805102,41.686209355763154]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Riverdale","SEC_NEIGH":"RIVERDALE","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":98389497,"sqmi":3.529035,"density":0},"geometry":{"type":"Polygon","coordinates":[[[-87.60157012805102,41.686209355763154],[-87.6017198261263,41.6858367574301],[-87.60190019334085,41.68506194539531],[-87.60193580305658,41.684741589184036],[-87.60194049635648,41.6841700457707],[-87.60191034351278,41.68317341429466],[-87.60187890745726,41.68262615894242],[-87.60187546804188,41.68192786861676],[-87.60184595526032,41.680687186552134],[-87.60179641409397,41.678984834339396],[-87.6017513679901,41.677661503112624],[-87.60173272897045,41.67689609872882],[-87.60170908780987,41.67657239090577],[-87.60165675723476,41.67619619334993],[-87.60154371538668,41.67566683193068],[-87.60144574995633,41.67533834210765],[-87.60127869247259,41.674885779698926],[-87.60113448385574,41.67456185248913],[-87.60090843099266,41.67412812399055],[-87.60074079636178,41.67384968530421],[-87.60045655608239,41.673431584449624],[-87.60006845222978,41.67294149489557],[-87.59861662658987,41.67125573374203],[-87.59854640615251,41.67118654351449],[-87.5975733267938,41.67005359778213],[-87.5966326225719,41.6689411087955],[-87.5945572573171,41.66654037546661],[-87.5938396621978,41.665701892475674],[-87.5927073442608,41.66439488115842],[-87.59212430857416,41.66370861350648],[-87.59171997275946,41.663530325612186],[-87.59074108968333,41.6624096978025],[-87.5901196026453,41.66165219387626],[-87.58899968212802,41.66039163650521],[-87.58867885640176,41.66003051174663],[-87.58765092968322,41.65880566044592],[-87.58627312155922,41.65721720570032],[-87.58468362521572,41.65536581933319],[-87.5837498435005,41.65427256068311],[-87.583385579812,41.65383473909186],[-87.58274087757924,41.65308354706688],[-87.58212222776363,41.652384033022344],[-87.58185896081405,41.65206234865791],[-87.58081134912251,41.650837251364074],[-87.5804873649135,41.650423605759705],[-87.57979209446559,41.649405104511835],[-87.57963828279823,41.64914368482382],[-87.57918195308547,41.648160683414254],[-87.57887779488212,41.64737981534686],[-87.57867652675452,41.64669869105295],[-87.57861564688845,41.64644767733269],[-87.57844636502324,41.645518373642076],[-87.57837707018273,41.64469463927821],[-87.57857791649981,41.644695958283016],[-87.58567133023544,41.644704229823745],[-87.5894491903234,41.64465079711906],[-87.5928353285603,41.644638796244315],[-87.59317788012363,41.644626951750666],[-87.59444631887828,41.64460363492792],[-87.5961775291877,41.644594305461624],[-87.59758939944197,41.64460197898],[-87.59823892377877,41.644611733188704],[-87.59924721506053,41.64460887372674],[-87.60123770349306,41.64461358271132],[-87.60199136463656,41.64460954364248],[-87.60362789794412,41.64461198604036],[-87.60578292267007,41.64460687487595],[-87.60918350885969,41.64460787621478],[-87.61022147597825,41.64460140310091],[-87.6121042427897,41.644600553311236],[-87.6133593015389,41.644608531284476],[-87.61473490665063,41.64459414179004],[-87.61721571363186,41.644584019881634],[-87.61723677187085,41.64762519554331],[-87.61722463648009,41.64858558782715],[-87.6172299793231,41.65027560450257],[-87.6180344480032,41.650373644969505],[-87.61908245371524,41.65059588894611],[-87.6202051841781,41.65084672510997],[-87.6203164012043,41.65088648365544],[-87.62007692696727,41.65132983537602],[-87.61982331683578,41.65183042306587],[-87.61944519686907,41.652658021461924],[-87.6192493038646,41.65313349701134],[-87.61906742452655,41.65361208024845],[-87.61889963661825,41.654093548058434],[-87.61874601381408,41.654577683882856],[-87.61860677970644,41.6550642158316],[-87.61848179083316,41.65555297483611],[-87.61837119541318,41.65604368962548],[-87.61770957431347,41.659104962920445],[-87.61828127816172,41.65910686100657],[-87.61767318777241,41.66172460247835],[-87.6174865455999,41.66250935197164],[-87.61727411270984,41.663350542475044],[-87.6172338764708,41.663555088486916],[-87.6172109696401,41.66388838385938],[-87.61714877542133,41.66434046977467],[-87.61696736725816,41.66522953571621],[-87.61675291960618,41.66616847949985],[-87.61656870941763,41.66685547454425],[-87.61625508867922,41.66819618803233],[-87.61618234708001,41.6684434110282],[-87.6160894678725,41.66889736278196],[-87.6158953167662,41.66973660585403],[-87.61576126098413,41.67035496092659],[-87.61566171483145,41.6707495244562],[-87.61556788640219,41.671205871241995],[-87.61546803608458,41.671586367898016],[-87.61530202399048,41.672362322171296],[-87.61522111848298,41.67268461939244],[-87.61515334317177,41.673060513758855],[-87.61506755251355,41.67336940192331],[-87.61497315152351,41.67383534961392],[-87.61485326506805,41.67432995342862],[-87.61455998842295,41.67560389410499],[-87.61433449744061,41.6764597465702],[-87.61420237429695,41.676901787178394],[-87.61414793392026,41.67722973791824],[-87.61405498197232,41.677605473500215],[-87.61316583431278,41.681594630052665],[-87.61301219152227,41.68224133031045],[-87.6128944836011,41.68257883179348],[-87.6128203345672,41.68294953824735],[-87.6126137470902,41.68382917429615],[-87.61227916267306,41.68543388394388],[-87.6113954673734,41.68544234978132],[-87.60742567321424,41.68547783779265],[-87.60457531623126,41.68550518977494],[-87.60425116849625,41.6855314004671],[-87.60410329194227,41.68556460174445],[-87.60292786468004,41.686027474500754],[-87.60249157954934,41.68613806126909],[-87.60217968965165,41.686175594176056],[-87.60157012805102,41.686209355763154]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Hegewisch","SEC_NEIGH":"SOUTHEAST SIDE","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":14596574,"sqmi":0.52355,"density":0},"geometry":{"type":"Polygon","coordinates":[[[-87.52462014975411,41.69180077089621],[-87.524650895147,41.68818259350703],[-87.52474327192148,41.68091039235754],[-87.52483544864452,41.67364558951182],[-87.52489547794322,41.6680044192444],[-87.5249906639263,41.65905598057105],[-87.52506634740875,41.65279005703897],[-87.52516587053961,41.64454312227478],[-87.5299376758381,41.644573694336856],[-87.53502975255789,41.64455810016478],[-87.53973867327024,41.64456471919285],[-87.54108568074227,41.644559219409864],[-87.5424823432582,41.64456505088],[-87.54980303097047,41.644573060891474],[-87.55199850474831,41.644590201624794],[-87.55931836251074,41.64464354110429],[-87.5614129273312,41.64464903632443],[-87.56237421484067,41.64466383167941],[-87.57372555907598,41.644682818666034],[-87.57486956176253,41.6446800031307],[-87.57725061653848,41.64470875052032],[-87.57837707018273,41.64469463927821],[-87.57844636502324,41.645518373642076],[-87.57861564688845,41.64644767733269],[-87.57867652675452,41.64669869105295],[-87.57887779488212,41.64737981534686],[-87.57918195308547,41.648160683414254],[-87.57963828279823,41.64914368482382],[-87.57979209446559,41.649405104511835],[-87.5804873649135,41.650423605759705],[-87.58081134912251,41.650837251364074],[-87.58185896081405,41.65206234865791],[-87.58212222776363,41.652384033022344],[-87.58274087757924,41.65308354706688],[-87.583385579812,41.65383473909186],[-87.5837498435005,41.65427256068311],[-87.58468362521572,41.65536581933319],[-87.58627312155922,41.65721720570032],[-87.58765092968322,41.65880566044592],[-87.58867885640176,41.66003051174663],[-87.58899968212802,41.66039163650521],[-87.5886499411316,41.660393766086884],[-87.58853226342083,41.660419088015544],[-87.58800967066217,41.66036263434473],[-87.58770343558496,41.66037979455664],[-87.58696093347993,41.66036260350085],[-87.58663413056166,41.66034140572627],[-87.58604990926497,41.66026948151824],[-87.58536421675107,41.6601247128647],[-87.58482901784375,41.65994815392437],[-87.58435099651606,41.659806061379115],[-87.58397471629937,41.659664630221556],[-87.5833514749065,41.659492881336355],[-87.58300016921913,41.65941029060479],[-87.58243450749205,41.65930576895958],[-87.58210793290793,41.659265483605665],[-87.5815885871418,41.659221593262494],[-87.58066233679867,41.65919901040078],[-87.57938550625859,41.659192123798285],[-87.57745235238899,41.65919391673971],[-87.57694669759007,41.659183153000875],[-87.57634755805324,41.65919932457862],[-87.57550441024124,41.65920540440571],[-87.5712364516727,41.65919513765701],[-87.56996682182972,41.6591859934656],[-87.56412929997757,41.6591731455746],[-87.56085424569066,41.659162597189614],[-87.55963596445994,41.65917457362507],[-87.55928617360087,41.65918933573829],[-87.55927929368924,41.661950570823414],[-87.55926753080155,41.66561242900629],[-87.55927050068816,41.667252740227724],[-87.55925947987518,41.66865172098105],[-87.55882565460401,41.66900976952808],[-87.55864306478487,41.66893718615973],[-87.5583646463692,41.668920215022915],[-87.55817461579512,41.66893402764142],[-87.55806408731475,41.66907084203479],[-87.55784513759792,41.669206924805906],[-87.55769481220959,41.669266971628666],[-87.55772146550008,41.66933335891059],[-87.5573990937098,41.66958572020004],[-87.55705186676893,41.669659873833766],[-87.55684008423103,41.669770274919586],[-87.55683910315604,41.6698519123137],[-87.55674958622137,41.669953190990896],[-87.55659704817795,41.66996862621576],[-87.55573064854396,41.66870311714299],[-87.55428937306586,41.66651332316163],[-87.55411797046017,41.666272717702604],[-87.55319611978906,41.664871653974735],[-87.55234404434616,41.66375681136143],[-87.551976594612,41.66342464985253],[-87.5512699290697,41.66292311834665],[-87.55041106908142,41.66241094009772],[-87.5495423489554,41.66193264827956],[-87.54800957103453,41.6610793312413],[-87.54713020732598,41.66056458700532],[-87.54586421329127,41.659833129678596],[-87.54486985704531,41.65923172320088],[-87.54471034026268,41.65922222809449],[-87.54506841163817,41.66105885425876],[-87.54645249092218,41.668136039318625],[-87.54638904379917,41.66838705504366],[-87.54632853730728,41.668922472185756],[-87.54621499475884,41.66941739039001],[-87.5460557382195,41.66987151607335],[-87.54584922439597,41.67041142206562],[-87.5457139253355,41.67081391228023],[-87.54527134864217,41.67180192624777],[-87.54519931378277,41.67204361985281],[-87.54510507654595,41.672192539830995],[-87.5449668850784,41.672831365008804],[-87.54491911986959,41.67318368432855],[-87.54507870575053,41.681065815956906],[-87.54507849423683,41.6827703866572],[-87.54493956443848,41.682753889511915],[-87.54380531166964,41.682756169593425],[-87.54252311796036,41.68277850663238],[-87.54132749691767,41.68278796205684],[-87.5401170921525,41.682775795692756],[-87.54012967171096,41.68450677204194],[-87.53887464433897,41.684509763103755],[-87.53766926655572,41.68449388022504],[-87.53646597928959,41.684519160007866],[-87.53405468488266,41.684518196353835],[-87.53164118246609,41.68450104020167],[-87.53164145890035,41.684567155187274],[-87.53129113080472,41.684579113045935],[-87.53041374052701,41.68456622691351],[-87.53034494270166,41.685130734985904],[-87.53037988402399,41.68636901379242],[-87.53040054588152,41.68820374049796],[-87.53036416444112,41.691826316832035],[-87.52655633989761,41.6918127052886],[-87.52462014975411,41.69180077089621]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Douglas","SEC_NEIGH":"BRONZEVILLE","Creation D":"08/01/2014","Street Add":"2623 S INDIANA AVE","Community":35,"COUNT":7,"Area":46004621,"sqmi":1.650094,"density":4.242182},"geometry":{"type":"Polygon","coordinates":[[[-87.61141060506466,41.84526654971398],[-87.60940614539744,41.84526650479311],[-87.60940949181385,41.84521773407547],[-87.60914087617004,41.84469250346106],[-87.60916860599276,41.844456261545346],[-87.60915012198508,41.844238717405126],[-87.609072412484,41.84419473968802],[-87.60891566389725,41.843955294557496],[-87.60886701370974,41.8438043836074],[-87.60877127221897,41.84336451796037],[-87.60858152788126,41.843074662907966],[-87.60847385681981,41.842948479965635],[-87.6081767282748,41.84250734289549],[-87.60801956188489,41.842305544809975],[-87.60802097918122,41.84218005054723],[-87.60797502576513,41.84179069954184],[-87.60797949041934,41.841395391887076],[-87.60784934324843,41.84103060995978],[-87.60773349880772,41.84088554931059],[-87.6075276050198,41.84056030853319],[-87.60698398203095,41.84066738604873],[-87.60667816424396,41.84056137339436],[-87.60671361513968,41.840503436375386],[-87.60699497653881,41.840600110612705],[-87.60750090432062,41.84050284568741],[-87.6073479140436,41.840104991502514],[-87.60721091961607,41.83965162879592],[-87.60709523006344,41.839512037765296],[-87.60676104001777,41.83933868233453],[-87.60645125092636,41.83908479909031],[-87.60615627838719,41.83863502193077],[-87.60470984484884,41.83896006145732],[-87.60427773013002,41.8395821397797],[-87.6042749470004,41.83982732780839],[-87.60418506321399,41.83982857365598],[-87.60419546273975,41.83955437253837],[-87.60466703486138,41.83887987096447],[-87.60613498879049,41.83855127664513],[-87.60607903536545,41.83802381183701],[-87.60610453594286,41.83784275792803],[-87.60607167522964,41.83729305926254],[-87.6059748958095,41.83686571429047],[-87.60584678659255,41.83644401632757],[-87.60565502444078,41.836121290983705],[-87.60530826792208,41.835680670001395],[-87.60509186988865,41.83546300940678],[-87.60455786851071,41.83499197045579],[-87.60454429253171,41.83481066940603],[-87.60473439459702,41.83458974057308],[-87.60503332162241,41.834422112593586],[-87.60494390498184,41.834035732677116],[-87.60486846409395,41.833795582649266],[-87.6045530542441,41.833349312487854],[-87.6043515685502,41.83319604697841],[-87.60407152847694,41.83307735654075],[-87.60391567814992,41.83303544720247],[-87.60348607821733,41.833009335715346],[-87.60322922201604,41.832914172760184],[-87.60301244158181,41.83273157962236],[-87.60279652682176,41.83247299770468],[-87.60270433427121,41.83233211576042],[-87.60276449414427,41.831853155126176],[-87.60271020372579,41.83136624767302],[-87.60295002258196,41.831332892486635],[-87.60583494109132,41.83123394861815],[-87.60721395666835,41.8312330050244],[-87.6074903599622,41.83121712014995],[-87.61063335778177,41.831186225419984],[-87.61100082837838,41.82977587133288],[-87.61152417889274,41.827906611521016],[-87.61225564052694,41.82526241183628],[-87.61257695181625,41.82408938784094],[-87.61262427239444,41.823890805171324],[-87.61610922731984,41.823847592335866],[-87.61770996886854,41.823823235209495],[-87.62426776089134,41.823741674630654],[-87.62497215616352,41.823734110647806],[-87.62806959945621,41.823690217183795],[-87.62896819970499,41.82368149243278],[-87.62903952948203,41.82568941339692],[-87.62909202843322,41.827330176485106],[-87.6290476793644,41.82751006574271],[-87.62893520543305,41.82763876826656],[-87.62893235141557,41.82785560278968],[-87.62895345038913,41.82884279024681],[-87.6290036624121,41.830832746338615],[-87.62899568298714,41.8309749502841],[-87.62956105279395,41.83097085150509],[-87.62961050449098,41.832772325565834],[-87.62968729954046,41.83581138352722],[-87.6297604051152,41.838265672539535],[-87.62984200585431,41.841328298354405],[-87.62996222539645,41.84541345470648],[-87.62996524442191,41.845544836084876],[-87.62978701012568,41.8455455201129],[-87.62916818463971,41.84555660662325],[-87.62723696033008,41.845579719984926],[-87.6263770885865,41.845596494326294],[-87.62033059867875,41.84568719208079],[-87.61783987811779,41.84572625879264],[-87.61767140559553,41.84572320337663],[-87.61720985189281,41.84565509793266],[-87.61659503182247,41.84564215190308],[-87.61643788912784,41.8455260495211],[-87.61619627182661,41.84515917057372],[-87.61596180511135,41.84509217345766],[-87.61499270628717,41.84510993387019],[-87.6150007913105,41.84516621703663],[-87.61240099156907,41.84516639324702],[-87.61158088907105,41.845266235439574],[-87.61141060506466,41.84526654971398]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Oakland","SEC_NEIGH":"OAKLAND,KENWOOD","Creation D":"08/20/2014","Street Add":"4148 S DREXEL BLVD","Community":36,"COUNT":2,"Area":16913961,"sqmi":0.60667,"density":3.296685},"geometry":{"type":"Polygon","coordinates":[[[-87.59215283878493,41.81692934706858],[-87.59230805082471,41.81693210975147],[-87.59526147171825,41.81694276559405],[-87.59595945270163,41.816833143775426],[-87.59639985268738,41.816817103181535],[-87.59646347089276,41.81690772920528],[-87.59688282029938,41.81692798300735],[-87.59910936749644,41.816901922227686],[-87.59959063949381,41.81689182500636],[-87.60158104914176,41.816875076073956],[-87.60670812560365,41.81681377137389],[-87.60672120877399,41.81750713742133],[-87.60674253234447,41.818152121055135],[-87.60676036316816,41.81934471563503],[-87.60679873015545,41.8200706116106],[-87.60684469473257,41.82201181422018],[-87.60685918571644,41.823165708059726],[-87.606437204341,41.82330608474621],[-87.60687305832268,41.82396480097773],[-87.6073273403714,41.823948916418196],[-87.61262427239444,41.823890805171324],[-87.61257695181625,41.82408938784094],[-87.61225564052694,41.82526241183628],[-87.61152417889274,41.827906611521016],[-87.61100082837838,41.82977587133288],[-87.61063335778177,41.831186225419984],[-87.6074903599622,41.83121712014995],[-87.60721395666835,41.8312330050244],[-87.60583494109132,41.83123394861815],[-87.60295002258196,41.831332892486635],[-87.60271020372579,41.83136624767302],[-87.6025941761497,41.831021989158906],[-87.60239469738923,41.83069336319718],[-87.60224025072331,41.830528702153046],[-87.6017218752375,41.8300635950063],[-87.60148272824837,41.82978732586631],[-87.60122861824482,41.82945250416308],[-87.60029643838573,41.82826573665082],[-87.60016478130389,41.82815967462619],[-87.59997200455176,41.82793046355105],[-87.59921220097317,41.8273936553979],[-87.59870021761115,41.82705717955091],[-87.59825770458546,41.82679713968203],[-87.59794784844696,41.826555484176446],[-87.59775488402069,41.82634380509401],[-87.59757848698916,41.82605039257225],[-87.59748157922972,41.82564057559922],[-87.59748318564674,41.825500290480115],[-87.59754116902903,41.82521422471072],[-87.59762252880057,41.82493415419109],[-87.59769707694875,41.82456635543101],[-87.59763283424058,41.824033988925166],[-87.59753499203778,41.823706005416746],[-87.59733750277151,41.82320785924557],[-87.59725718602435,41.82292016053907],[-87.59724612101434,41.82279714670999],[-87.59732679282172,41.82273674063568],[-87.59711300325279,41.82251802480753],[-87.59702018903846,41.82222928146523],[-87.59686817494544,41.82204828292172],[-87.59683978294677,41.82196467457922],[-87.59667920792528,41.82182643174592],[-87.59658973982668,41.821694133327476],[-87.59630979365902,41.821408031476594],[-87.59620353035709,41.82133270521699],[-87.59586211816662,41.820840386828905],[-87.59569474755497,41.8205275634804],[-87.59573030724324,41.820433937566],[-87.59548985029905,41.82016016230023],[-87.59511506076342,41.81981362286841],[-87.59468794053146,41.81973495244739],[-87.59444044682809,41.819519100751904],[-87.59370125501852,41.81903907573619],[-87.59348514590278,41.81881173730543],[-87.59334548876117,41.81872902909574],[-87.59295668764517,41.818574594078136],[-87.5926156518517,41.8183425526656],[-87.59238994258617,41.81804502867076],[-87.59219103505215,41.81768145133788],[-87.59215283878493,41.81692934706858]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Fuller Park","SEC_NEIGH":"BACK OF THE YARDS","Creation D":"08/09/2014","Street Add":"338 W 42ND PL","Community":37,"COUNT":2,"Area":19916704,"sqmi":0.714372,"density":2.799661},"geometry":{"type":"Polygon","coordinates":[[[-87.62879823732868,41.801893034487996],[-87.6287948044789,41.80149428109159],[-87.62884901378955,41.8008980753863],[-87.62880936759299,41.799369610966856],[-87.62868512522536,41.79937022106225],[-87.62861132771548,41.79652394829029],[-87.62855540675656,41.79459928532754],[-87.62934093485799,41.794584152364095],[-87.6303879977016,41.794577117272866],[-87.63067187635671,41.794548622166424],[-87.63116501553472,41.794535765364685],[-87.63214028391586,41.794531156939],[-87.63319450482332,41.794509897122495],[-87.63402814164648,41.79450224139265],[-87.63545749911513,41.79447604857853],[-87.63551386090445,41.79646386101172],[-87.6354916758801,41.797156657612575],[-87.6354954110189,41.79765751183348],[-87.63553914706418,41.79916164426084],[-87.63560235386731,41.80064599796526],[-87.63568358486788,41.80118745738593],[-87.63569929553844,41.80147192914225],[-87.63581925239376,41.806009294452686],[-87.63587829003148,41.80796357875868],[-87.63591791651541,41.809044291757765],[-87.63577434849873,41.80904719861387],[-87.63582147511181,41.80942243422533],[-87.63586154692621,41.81091840640113],[-87.63637959631428,41.810908390583094],[-87.63624594418751,41.81147917054727],[-87.63617574359368,41.811948701990566],[-87.63615529774954,41.812607889785546],[-87.63622289500823,41.81542323994564],[-87.63621125356268,41.81577786668578],[-87.63616198200039,41.81634669678707],[-87.63571574554996,41.81635268387241],[-87.6358224028873,41.81725663847482],[-87.63588787476264,41.81815380153142],[-87.63603555494875,41.818152016967005],[-87.63605750655995,41.81900282609251],[-87.63603338495162,41.81905245582123],[-87.63607677354999,41.81996496048598],[-87.63610520253573,41.82179093600117],[-87.63607723637622,41.82179134007042],[-87.6361178796625,41.82358577982778],[-87.63573973766769,41.82359418903507],[-87.63396392306535,41.823613287848666],[-87.6327048906789,41.8236312229836],[-87.63214403065007,41.82362844300283],[-87.63161506321714,41.823641129454494],[-87.62935652492084,41.823676460508835],[-87.62936279268519,41.82327221202085],[-87.62933936685734,41.82302439837315],[-87.6292551378766,41.8197870146453],[-87.6291949656827,41.81946110659786],[-87.62912361188931,41.81659805023156],[-87.62909359948266,41.81565417932087],[-87.62897295129588,41.81126431579118],[-87.62901065906924,41.81054280253196],[-87.62904151910097,41.810153304579636],[-87.62900916419444,41.80896311943623],[-87.6289923211466,41.808826488406126],[-87.6289663072238,41.807769096264565],[-87.62902477886466,41.807244611506015],[-87.62897770791113,41.805639949836966],[-87.62895599823695,41.804650161366396],[-87.62892101165575,41.80336562434738],[-87.6288218478287,41.80266659714662],[-87.62879823732868,41.801893034487996]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Woodlawn","SEC_NEIGH":"WOODLAWN","Creation D":"08/04/2014","Street Add":"6350 S INGLESIDE AVE","Community":42,"COUNT":8,"Area":40515739,"sqmi":1.453218,"density":5.505024},"geometry":{"type":"Polygon","coordinates":[[[-87.58629615363863,41.77333929086786],[-87.58663741644101,41.773330255627975],[-87.5920985689942,41.7732754629642],[-87.59577462612972,41.77323793219417],[-87.59863454032252,41.773211470019675],[-87.60223153264047,41.77317552419918],[-87.60423762709091,41.77315309114444],[-87.60576875390603,41.773140861685015],[-87.60562397459661,41.76684597231616],[-87.60560339530062,41.76653269048115],[-87.60560885555144,41.76617278333729],[-87.60558716421765,41.765868564041035],[-87.60608794410116,41.766237947811256],[-87.60836014264012,41.76785497656773],[-87.61006411778067,41.769083332406666],[-87.61090494945668,41.76968273494732],[-87.61281993787715,41.77105999191343],[-87.61544979997477,41.77296977132699],[-87.6155225805237,41.776121220839975],[-87.61557279660833,41.778140921089765],[-87.61558905288656,41.778626212850966],[-87.61562233042909,41.780239138429835],[-87.61566768308232,41.781895701272724],[-87.61567192978741,41.78207366745556],[-87.6157051193232,41.78357582355873],[-87.61575954154111,41.78569891455303],[-87.61526675237552,41.785710993736366],[-87.60884972835446,41.78582317695127],[-87.60679841839601,41.78586318688841],[-87.60603749216126,41.785874065789926],[-87.6056094007213,41.78588079868838],[-87.59824532309818,41.78595943738319],[-87.59692910541101,41.78596979862133],[-87.59658165203017,41.78598618450524],[-87.59600049288646,41.786042555760545],[-87.59563594356769,41.786055775488386],[-87.59119912910568,41.78609882471035],[-87.58967696870603,41.78611129233737],[-87.5892268074257,41.7861207266795],[-87.58843685367506,41.78612043715268],[-87.58659538226519,41.786142511403355],[-87.58653675595389,41.78374494230611],[-87.58648830914039,41.78155636118364],[-87.58646472203037,41.78098550599938],[-87.58644629593199,41.77971716883887],[-87.58641370848153,41.778538148230155],[-87.58632393740415,41.77687820319484],[-87.58629645630027,41.77608957247715],[-87.58628964906325,41.77517496857353],[-87.58632714752291,41.77491149441333],[-87.5863341573534,41.7746200489548],[-87.58630034688423,41.773799451079995],[-87.58629615363863,41.77333929086786]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Portage Park","SEC_NEIGH":"PORTAGE PARK","Creation D":"08/01/2014","Street Add":"4125 N CICERO AVE","Community":15,"COUNT":105,"Area":11019609,"sqmi":0.395251,"density":265.6539},"geometry":{"type":"Polygon","coordinates":[[[-87.75263506822336,41.967967467346995],[-87.7512611395368,41.967982669357426],[-87.7493684908419,41.96800952834744],[-87.74772179585369,41.96802872359736],[-87.74772453821714,41.96708349114151],[-87.7476356000091,41.96451709199258],[-87.7475954140539,41.964239776650246],[-87.74741488923696,41.96383312401063],[-87.74718117143401,41.96339133265371],[-87.7479082376036,41.96348166481001],[-87.74766405866983,41.963395006150115],[-87.74709537249649,41.963232193037975],[-87.74698101727327,41.962992370969395],[-87.74701011404636,41.96279281293607],[-87.74717010450345,41.96263511386369],[-87.74701334951662,41.96248197871225],[-87.7465056692107,41.961911333471114],[-87.7461024480132,41.961677729191074],[-87.744439389917,41.96075600799901],[-87.74486283713026,41.96075508954099],[-87.74648361808507,41.960735810821184],[-87.7450479262419,41.958002632799165],[-87.74426305357993,41.95649752351391],[-87.74361317649665,41.95515809842494],[-87.74326602583585,41.95448123805333],[-87.74273260389437,41.95347373649998],[-87.74249869441961,41.95347430795824],[-87.74243481845131,41.95040004723019],[-87.7423801539298,41.947999646073136],[-87.74237247338289,41.94708989865731],[-87.74231108940222,41.94438309661969],[-87.7422492910729,41.942539848967755],[-87.74296013119464,41.94253154256991],[-87.74289525351485,41.940694040312444],[-87.74215622665709,41.94070470201758],[-87.74210828333119,41.93889163735854],[-87.74217497783293,41.93889077989773],[-87.74365305871439,41.93887242603103],[-87.74663728210169,41.93882813669473],[-87.7478892697926,41.93881452195956],[-87.75080069908167,41.93877587281429],[-87.75709024125298,41.93869622307329],[-87.76108233450422,41.938643384960386],[-87.76255372474829,41.93862741053094],[-87.76599848480781,41.93858018634046],[-87.76847364774133,41.93855062287617],[-87.77054208424471,41.93852096181701],[-87.77621462941518,41.938448147208405],[-87.77637037411434,41.94244664461238],[-87.7763823390301,41.942672497223036],[-87.776466735825,41.94495741586328],[-87.77651088643596,41.945941268365914],[-87.77666750191939,41.9500836034702],[-87.77669175307685,41.95061727937805],[-87.77671533939107,41.95144713542192],[-87.77677480327601,41.95305614502372],[-87.77710928345391,41.95304505392669],[-87.77913201490537,41.95301492700747],[-87.78226729511368,41.95297223287214],[-87.78655950676227,41.95291650502591],[-87.78658193047146,41.95347902651783],[-87.7865995645995,41.954203117252845],[-87.78664690250287,41.955546883608],[-87.7866843686602,41.95611006536039],[-87.78671057188309,41.956911446217546],[-87.7867592906948,41.95813277160708],[-87.7867919450644,41.95908722772206],[-87.78680540388567,41.960217021387685],[-87.78689042602262,41.962690956824005],[-87.78696275044625,41.96314272594385],[-87.78704783364186,41.96330364310908],[-87.78677852588936,41.963471291772215],[-87.78676906703573,41.96354981381613],[-87.78676364743647,41.96451517412196],[-87.7867428055595,41.96639859186136],[-87.78673624224898,41.96734276148703],[-87.78675666028445,41.96762979307014],[-87.78675177342987,41.96832621825677],[-87.78677237466316,41.96842701594777],[-87.77731792258257,41.96854395362768],[-87.77702532402368,41.96856152608905],[-87.77539708863833,41.9685847713983],[-87.76999717928962,41.968652994418086],[-87.76750466639129,41.96868961145451],[-87.7674766886029,41.96778264223404],[-87.76524591452025,41.96781065519433],[-87.76477634647425,41.96779806760935],[-87.76278502370243,41.96767551078397],[-87.76135508105632,41.967594927223104],[-87.76075020938873,41.9678772337801],[-87.76055554291351,41.967868907971585],[-87.75909148452537,41.96789024377858],[-87.75782888915748,41.96789994764184],[-87.75663718007887,41.96791736686128],[-87.75263506822336,41.967967467346995]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Hermosa","SEC_NEIGH":"BELMONT CRAIGIN,HERMOSA","Creation D":"08/07/2014","Street Add":"2221 N KEELER AVE","Community":20,"COUNT":54,"Area":32602059,"sqmi":1.16937,"density":46.17871},"geometry":{"type":"Polygon","coordinates":[[[-87.73146013483249,41.931733973040906],[-87.73004392716724,41.92899624438166],[-87.72956626849475,41.9280810098745],[-87.72786322616929,41.924781296623955],[-87.72770215878158,41.92447304620292],[-87.72676858401357,41.92448395547661],[-87.7267380544663,41.92331017321014],[-87.72668861014101,41.923141745677675],[-87.72644167524281,41.9226534771587],[-87.72707509390929,41.92264506868342],[-87.72673089156065,41.92197539744738],[-87.7266958798882,41.92188163427053],[-87.72661499883219,41.91899362309161],[-87.72487584299336,41.919016332282126],[-87.72405778340043,41.91742961539762],[-87.72390558944853,41.91719827339972],[-87.72421669376587,41.91719588545777],[-87.72420035212598,41.917067474680415],[-87.72410513029529,41.91687287003136],[-87.7240753969445,41.91605487642565],[-87.72405917597497,41.915373144865264],[-87.72314013752333,41.915384997670614],[-87.72234754850996,41.9136351132709],[-87.72400291142158,41.91362088337551],[-87.72419264631012,41.913583260856704],[-87.72575263305079,41.913592898161255],[-87.72644799288932,41.91359126365749],[-87.72833801093402,41.91356641458744],[-87.73672396803944,41.9134655335931],[-87.73734983947904,41.91347495798947],[-87.73801275286857,41.91350137972934],[-87.73878192719263,41.91355853445856],[-87.73940726571985,41.913625573787954],[-87.74102707258434,41.91382157809548],[-87.74133544805055,41.91389760542001],[-87.74136902232213,41.915184480886964],[-87.74141235146045,41.916310525995534],[-87.74158828953877,41.92262007673999],[-87.7416481341589,41.92464391097781],[-87.74179993204183,41.928797052090886],[-87.74192582701681,41.93212576066268],[-87.74206263113562,41.93591589536571],[-87.74217497783293,41.93889077989773],[-87.74210828333119,41.93889163735854],[-87.73781902140311,41.938952138839056],[-87.73522203559455,41.93898620235059],[-87.73498065785903,41.93853527135301],[-87.73255739723862,41.933859840157126],[-87.73146013483249,41.931733973040906]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Avondale","SEC_NEIGH":"IRVING PARK,AVONDALE","Creation D":"08/01/2014","Street Add":"2923 N ALLEN AVE","Community":21,"COUNT":229,"Area":55290595,"sqmi":1.983163,"density":115.4721},"geometry":{"type":"Polygon","coordinates":[[[-87.6879867878435,41.936103941181344],[-87.68797074487378,41.9355058977793],[-87.68792696320592,41.93327953973071],[-87.68791721148641,41.93257723862208],[-87.68788269111234,41.93217912664734],[-87.68886425553086,41.93215668243921],[-87.69013681634486,41.93215382921566],[-87.69118724274927,41.932141212682154],[-87.6931890555042,41.932126677402685],[-87.69376164016388,41.93212956641981],[-87.69428326615501,41.93211542153057],[-87.69636185618393,41.932102538128575],[-87.69662389840691,41.932096417762224],[-87.69791297697314,41.93209545329861],[-87.69852651813896,41.9320892971723],[-87.70208856071679,41.932065522029795],[-87.70279181378868,41.9320552259923],[-87.7035166150474,41.932054868165004],[-87.70464240910225,41.93204270683597],[-87.70654188718837,41.932033470246864],[-87.70706016836446,41.93202732474151],[-87.70783571225061,41.932031771818494],[-87.7112714352808,41.93198166691618],[-87.71225309780938,41.93198308104109],[-87.71273244529291,41.931964106628406],[-87.7141455399016,41.931949419731225],[-87.71500084708632,41.93193335976491],[-87.71664228440301,41.93191750031315],[-87.71888454143118,41.93188797398328],[-87.72064994878797,41.931870843808],[-87.72132910035415,41.93185931768378],[-87.72288684172578,41.93184466840612],[-87.72534292115604,41.93180995031958],[-87.72664971405285,41.93179672027224],[-87.72898118849565,41.93175989405347],[-87.73146013483249,41.931733973040906],[-87.73255739723862,41.933859840157126],[-87.73498065785903,41.93853527135301],[-87.73522203559455,41.93898620235059],[-87.73276572049973,41.9390193958108],[-87.73141904828483,41.93904055449698],[-87.7287125220598,41.939073424711026],[-87.72718536266305,41.939095136103155],[-87.72721098320375,41.94013646707625],[-87.72725694023673,41.9414470204177],[-87.7273220613376,41.94370728328353],[-87.72733130627157,41.94416720822676],[-87.72740107717124,41.94637316973221],[-87.72458983529815,41.94640924854127],[-87.72215347497244,41.946445124647056],[-87.72088161955264,41.94645986185108],[-87.7176478718768,41.946503122224264],[-87.71720285636894,41.94650900411303],[-87.71592808479159,41.946524768472955],[-87.7146315852903,41.94653321174445],[-87.71419374929988,41.946548304726505],[-87.71234234989582,41.9465740905409],[-87.71034185076093,41.946596457992804],[-87.70884299851214,41.946623060291046],[-87.70737624994574,41.94663663922792],[-87.70342998234591,41.94665476524875],[-87.70196659863937,41.946647687760354],[-87.70087898558951,41.94665358417206],[-87.70028042753943,41.94666941259542],[-87.69864665703201,41.94667801057395],[-87.6962044731134,41.946695970194504],[-87.69618841060172,41.94657265590127],[-87.69548115913712,41.943579015067506],[-87.69545170046311,41.94331142745856],[-87.69539566057061,41.94309640855281],[-87.69527864252802,41.94276631503123],[-87.6949952870254,41.942342213118785],[-87.69490982292015,41.942180624643576],[-87.69445825513161,41.94151184420779],[-87.69431056597887,41.9413391242287],[-87.69417589441666,41.94112171887621],[-87.69408237922723,41.94102317478471],[-87.69387038217623,41.94069469136449],[-87.69379258612594,41.94051291983659],[-87.69366986139272,41.940361853283214],[-87.69363310773636,41.94025506307195],[-87.693310401532,41.93993101106766],[-87.69305950738494,41.939776951339844],[-87.69279425360581,41.93952272929665],[-87.69243859978685,41.93938081689392],[-87.6924316162682,41.93929636574271],[-87.6923427589074,41.93921774179679],[-87.69190251550512,41.9390007673102],[-87.69166962942252,41.938924604013664],[-87.69148630576937,41.93879180194483],[-87.69105685595741,41.93823965101079],[-87.69087243021211,41.93785445593425],[-87.69078107129265,41.93754209159551],[-87.69071708152161,41.93739944568488],[-87.69041339021797,41.93690493858165],[-87.6900723604705,41.93664833742308],[-87.68993368777703,41.936608345523],[-87.68924836714214,41.93651517878331],[-87.68877811597498,41.93648528948593],[-87.68848742048344,41.93642830657907],[-87.688149798775,41.93619537401946],[-87.6879867878435,41.936103941181344]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Logan Square","SEC_NEIGH":"LOGAN SQUARE","Creation D":"08/01/2014","Street Add":"2313 N SPAULDING AVE","Community":22,"COUNT":276,"Area":71256806,"sqmi":2.555839,"density":107.988},"geometry":{"type":"Polygon","coordinates":[[[-87.68731554880475,41.913994802592455],[-87.68750953401457,41.913990443482646],[-87.69087016208519,41.91396225984068],[-87.69099121862058,41.913861633547185],[-87.69105153257763,41.91395657828413],[-87.69220339182874,41.91394989472546],[-87.69401231470921,41.91393556019319],[-87.69709389176079,41.91390654595381],[-87.69709689877438,41.91400370812058],[-87.69798633460694,41.91399668260992],[-87.69823925698479,41.913951661737414],[-87.70163359402454,41.91391950782827],[-87.70232820870451,41.913922444770876],[-87.70232540321008,41.913818863706986],[-87.7068565994291,41.91377311030366],[-87.70685459549385,41.91371601715511],[-87.7070249826192,41.91366471732161],[-87.70753880366097,41.91366221634364],[-87.71028178136079,41.91362891639747],[-87.71489346184754,41.913569818447414],[-87.71665595985756,41.913549166073324],[-87.71665846434084,41.91363840988529],[-87.71788239409416,41.91364232387644],[-87.71824914994642,41.9136644341717],[-87.71887689872659,41.9136695102163],[-87.7210020592074,41.91364861816191],[-87.72133984441717,41.91367202951232],[-87.72234754850996,41.9136351132709],[-87.72314013752333,41.915384997670614],[-87.72405917597497,41.915373144865264],[-87.7240753969445,41.91605487642565],[-87.72410513029529,41.91687287003136],[-87.72420035212598,41.917067474680415],[-87.72421669376587,41.91719588545777],[-87.72390558944853,41.91719827339972],[-87.72405778340043,41.91742961539762],[-87.72487584299336,41.919016332282126],[-87.72661499883219,41.91899362309161],[-87.7266958798882,41.92188163427053],[-87.72673089156065,41.92197539744738],[-87.72707509390929,41.92264506868342],[-87.72644167524281,41.9226534771587],[-87.72668861014101,41.923141745677675],[-87.7267380544663,41.92331017321014],[-87.72676858401357,41.92448395547661],[-87.72770215878158,41.92447304620292],[-87.72786322616929,41.924781296623955],[-87.72956626849475,41.9280810098745],[-87.73004392716724,41.92899624438166],[-87.73146013483249,41.931733973040906],[-87.72898118849565,41.93175989405347],[-87.72664971405285,41.93179672027224],[-87.72534292115604,41.93180995031958],[-87.72288684172578,41.93184466840612],[-87.72132910035415,41.93185931768378],[-87.72064994878797,41.931870843808],[-87.71888454143118,41.93188797398328],[-87.71664228440301,41.93191750031315],[-87.71500084708632,41.93193335976491],[-87.7141455399016,41.931949419731225],[-87.71273244529291,41.931964106628406],[-87.71225309780938,41.93198308104109],[-87.7112714352808,41.93198166691618],[-87.70783571225061,41.932031771818494],[-87.70706016836446,41.93202732474151],[-87.70654188718837,41.932033470246864],[-87.70464240910225,41.93204270683597],[-87.7035166150474,41.932054868165004],[-87.70279181378868,41.9320552259923],[-87.70208856071679,41.932065522029795],[-87.69852651813896,41.9320892971723],[-87.69791297697314,41.93209545329861],[-87.69662389840691,41.932096417762224],[-87.69636185618393,41.932102538128575],[-87.69428326615501,41.93211542153057],[-87.69376164016388,41.93212956641981],[-87.6931890555042,41.932126677402685],[-87.69118724274927,41.932141212682154],[-87.69013681634486,41.93215382921566],[-87.68886425553086,41.93215668243921],[-87.68788269111234,41.93217912664734],[-87.68789281450579,41.93179658988893],[-87.68782993072571,41.930072864385075],[-87.68779690483326,41.92930989474253],[-87.68772179568327,41.9272197512781],[-87.6877052709707,41.926581977727906],[-87.6876333518655,41.92466915036154],[-87.68760511046423,41.92362890256703],[-87.68754706836727,41.92185772633122],[-87.68746363484762,41.91918410570178],[-87.68741562546437,41.91779451515854],[-87.6873767283545,41.91618645254088],[-87.68731554880475,41.913994802592455]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Little Italy, UIC","SEC_NEIGH":"LITTLE ITALY, UIC","Creation D":"08/01/2014","Street Add":"2433 W ARTHINGTON ST","Community":28,"COUNT":21,"Area":71376244,"sqmi":2.560123,"density":8.20273},"geometry":{"type":"Polygon","coordinates":[[[-87.64833293023892,41.87536702787531],[-87.64728981160282,41.8753943109395],[-87.64606369144082,41.87541447850517],[-87.64557736514926,41.875416902151],[-87.64559308955984,41.87499209808436],[-87.64566172606827,41.87434031147105],[-87.64567365800366,41.874015025023645],[-87.64565705766739,41.87370713088983],[-87.6453926858521,41.87229374206902],[-87.64525477865047,41.871372879357814],[-87.645079157261,41.869946519276795],[-87.6448966274632,41.868603542356624],[-87.64483774552858,41.86804852167236],[-87.64474973063767,41.866961655245554],[-87.64469733709629,41.866041742814446],[-87.64466953831476,41.86533705452213],[-87.64463090382722,41.86488395667336],[-87.64459378226152,41.863966792984684],[-87.64454239604224,41.862376784974316],[-87.64448811613491,41.86047525514466],[-87.64446845179364,41.859954492253706],[-87.64522181880594,41.859933437275835],[-87.65035982892566,41.859860035154306],[-87.65799453906159,41.85974199146008],[-87.65861895477208,41.859728839200635],[-87.66036440152868,41.85970473191298],[-87.66590719322694,41.859611307810084],[-87.66981203772893,41.859566085660326],[-87.6710036311617,41.85954692073161],[-87.67134343089299,41.85953428040204],[-87.67307914518246,41.85951328929917],[-87.67359923586305,41.85951723855257],[-87.67427259102351,41.859545880806685],[-87.67604608639205,41.85941948136448],[-87.67785221371616,41.85912138997688],[-87.6785706779013,41.85904247448785],[-87.681315836,41.85888211682564],[-87.68482200946163,41.85860696052353],[-87.68581099434903,41.85841523521145],[-87.68583387730075,41.85936589919849],[-87.68742052363575,41.85934176544376],[-87.68807300498915,41.859338427058425],[-87.6881689131959,41.85933784620455],[-87.68821493192459,41.85950681006017],[-87.68819538354822,41.860356556034255],[-87.68821454860952,41.86114319427581],[-87.68811623724481,41.86114443126133],[-87.68818200589298,41.863056827810155],[-87.68878277503414,41.8637781427375],[-87.69075383700269,41.866564360626484],[-87.69047478462099,41.86656757889481],[-87.69071411752601,41.866956201308916],[-87.69084220916,41.86705662683415],[-87.69087163246472,41.86722053057571],[-87.6909501312755,41.86729408645443],[-87.69094843475389,41.86738767354804],[-87.69103018071641,41.86761110184211],[-87.69111166367209,41.86795253063482],[-87.69116977413087,41.86847426380248],[-87.69119277233952,41.86929465784448],[-87.69124000583295,41.86938986454097],[-87.69121203477022,41.8700487336049],[-87.6912634482328,41.87030348808468],[-87.69122396736591,41.87062571715385],[-87.69123249546476,41.87101167487861],[-87.69115384740734,41.871112150292994],[-87.69132466748891,41.87525618771466],[-87.69016546498649,41.87527486629831],[-87.68800853787398,41.87528650298001],[-87.68669486499262,41.87530541728378],[-87.68470289030043,41.87532129706636],[-87.68428360455579,41.87531774814834],[-87.68353185836843,41.87533012722716],[-87.68217808431521,41.87533843085268],[-87.68029980948175,41.8753329712632],[-87.67771268023141,41.87536667530306],[-87.67686931254202,41.87536902001426],[-87.67470398587828,41.87540294502643],[-87.67369748178493,41.87542476165174],[-87.67151563977872,41.875452041528064],[-87.67067564678779,41.87545103965624],[-87.66998096895594,41.87543380188151],[-87.6694404645468,41.87543495957125],[-87.6688617737278,41.87545378627281],[-87.66663654838817,41.87548966125409],[-87.66080852079548,41.875592693675586],[-87.65974034224651,41.875603749560064],[-87.65834428968441,41.8755953605858],[-87.65769819974267,41.87558437141822],[-87.65585035489448,41.87553182769598],[-87.65330849526362,41.87541060212114],[-87.6513649803385,41.87529507040876],[-87.65042688138548,41.87530766275884],[-87.64950388832486,41.87532917386756],[-87.64833293023892,41.87536702787531]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Kenwood","SEC_NEIGH":"KENWOOD,OAKLAND","Creation D":"08/11/2014","Street Add":"4837 S DORCHESTER AVE","Community":39,"COUNT":4,"Area":29071741,"sqmi":1.042745,"density":3.836028},"geometry":{"type":"Polygon","coordinates":[[[-87.59215283878493,41.81692934706858],[-87.5921572673857,41.8165804869587],[-87.5919889448357,41.8162890569214],[-87.59177972903603,41.81612250082417],[-87.59171178045159,41.816034246032984],[-87.59150254506416,41.81598240008617],[-87.59142333362995,41.815916574855095],[-87.59120124376847,41.81545300527244],[-87.59110985209976,41.81536185383407],[-87.59089094474852,41.81500423304029],[-87.59069342993482,41.81482732288643],[-87.59061916103613,41.81471487561347],[-87.590458514598,41.8146490725337],[-87.59034648973268,41.81437556742713],[-87.5904962881843,41.81430079409731],[-87.59032421109485,41.81414490425577],[-87.59028845457408,41.813937755170954],[-87.59021948386365,41.81374795453777],[-87.5898270692774,41.813295903518465],[-87.58956643707785,41.813058208300625],[-87.58928469953874,41.8129328912009],[-87.58912977781762,41.81281662845577],[-87.58891134712754,41.81254627497893],[-87.58875674590018,41.81227578516076],[-87.5884405052874,41.81208931975856],[-87.5883002044675,41.812041208372904],[-87.58799772477416,41.81199698430364],[-87.58765634433531,41.81197012569358],[-87.58737753221075,41.811874652861604],[-87.58729227402775,41.81167313637701],[-87.58719226699758,41.81158582214306],[-87.58720644114545,41.81148967285373],[-87.58706544229533,41.81142920592403],[-87.5869343276372,41.81117450882917],[-87.58699519172269,41.811075726288394],[-87.58698878867563,41.81090685730756],[-87.58703696446129,41.810637106158815],[-87.58701744860308,41.81044131298393],[-87.58692474913136,41.810106952463634],[-87.5867473587351,41.80979435210435],[-87.58664214380788,41.80971350799706],[-87.58645096030101,41.80943918216879],[-87.58648362871855,41.80931093513894],[-87.58627262390509,41.809195758029944],[-87.58610541503033,41.8088408235542],[-87.58614817895068,41.808718158542604],[-87.58590323062363,41.80834254791582],[-87.58570524702142,41.8080732262853],[-87.58569840448271,41.80797713216265],[-87.58558621663545,41.80784651516684],[-87.58545808724772,41.80761700040368],[-87.58515769804039,41.807215286692646],[-87.5848949783132,41.80694005314212],[-87.58472469777811,41.80681226784495],[-87.58452390446196,41.80662434816347],[-87.58425646158625,41.806440109932694],[-87.58390302316177,41.80623884551204],[-87.58364931084049,41.80603180791423],[-87.58319828678762,41.805760391370825],[-87.58297895609503,41.805590185973514],[-87.58286889681376,41.80554190871245],[-87.58225337918701,41.8051166396098],[-87.58174245438435,41.80474007612084],[-87.5815055363578,41.80454549397423],[-87.58136691899512,41.8043771855773],[-87.58116966959122,41.80425470725591],[-87.58089471268238,41.804193904622494],[-87.58066592788686,41.80420566009434],[-87.58017716058119,41.80397421541339],[-87.58004552923556,41.803836138796285],[-87.58001727558914,41.80358669069086],[-87.58019069626707,41.80335547028529],[-87.5804475229594,41.802931283948894],[-87.58028926626277,41.802865342831716],[-87.5803766208451,41.80252502285023],[-87.58060819321754,41.802584443641834],[-87.5810482081987,41.80263397933835],[-87.58164791298111,41.802434142663905],[-87.58264801449923,41.80253398803543],[-87.5838235604796,41.80253009731658],[-87.585584151971,41.80250721258458],[-87.58664669271948,41.80248945312334],[-87.58702079513581,41.80248609381082],[-87.58819966541847,41.80247214929285],[-87.58934435861647,41.802451357618935],[-87.59217412853843,41.8024165758973],[-87.5947498468187,41.802390574423455],[-87.59532016604037,41.80238095762737],[-87.59792908057231,41.80235441205302],[-87.60042460196135,41.80232357112628],[-87.60347683539064,41.802292427354075],[-87.60395807821071,41.80228328648479],[-87.60585583763627,41.802264295598995],[-87.60640720551969,41.80225116311798],[-87.60641591599189,41.802511450716096],[-87.60647784312062,41.80550837382789],[-87.60660910203788,41.81157830601937],[-87.60664346744448,41.81295477653957],[-87.60668235893175,41.81471953500854],[-87.60667660553895,41.81529991216341],[-87.60670812560365,41.81681377137389],[-87.60158104914176,41.816875076073956],[-87.59959063949381,41.81689182500636],[-87.59910936749644,41.816901922227686],[-87.59688282029938,41.81692798300735],[-87.59646347089276,41.81690772920528],[-87.59639985268738,41.816817103181535],[-87.59595945270163,41.816833143775426],[-87.59526147171825,41.81694276559405],[-87.59230805082471,41.81693210975147],[-87.59215283878493,41.81692934706858]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Rogers Park","SEC_NEIGH":"ROGERS PARK","Creation D":"08/02/2014","Street Add":"1632 W PRATT BLVD","Community":1,"COUNT":71,"Area":51259902,"sqmi":1.83859,"density":38.61654},"geometry":{"type":"Polygon","coordinates":[[[-87.65573692712825,41.998175210363456],[-87.65600350939361,41.99823617421253],[-87.65690019334143,41.99822968907466],[-87.65853312293223,41.9982099919587],[-87.65954846357688,41.998202180337046],[-87.66149845097209,41.998177578355644],[-87.6657495002747,41.99813155214735],[-87.66765946792455,41.99811306158699],[-87.67085836365108,41.99807314362261],[-87.67501250028106,41.99799274794261],[-87.67683740450626,41.99795931900385],[-87.67709644284608,41.998534132248864],[-87.6794152323789,42.00356618429648],[-87.67987101379042,42.00454373473514],[-87.68008634158554,42.00502384842256],[-87.68122437845842,42.00748422559516],[-87.68176064039402,42.00865003717503],[-87.68193069538187,42.009054946409925],[-87.68262206699099,42.0109979089836],[-87.6837304444007,42.01415796706038],[-87.68404322827988,42.01503337476066],[-87.68415497866918,42.0153922323984],[-87.68418077850406,42.015532962765995],[-87.68428400559313,42.01637916619771],[-87.6844798719411,42.01811473342269],[-87.68465309464744,42.01948477353641],[-87.68024292591818,42.01944438139676],[-87.6772804424858,42.01942688322055],[-87.67707864078928,42.01940750854184],[-87.67646995030059,42.01940775862747],[-87.67607045619546,42.019395373723476],[-87.67568144193292,42.01940167935808],[-87.67397781601672,42.019394512955564],[-87.67311770516244,42.01938559342744],[-87.67624075402028,42.02192774385182],[-87.67664628738603,42.02245991043431],[-87.67705606068046,42.023038586989394],[-87.67069738801214,42.022994918815],[-87.66512638951278,42.02294757153937],[-87.66526726409279,42.02274728368474],[-87.66526711006132,42.02261789480891],[-87.66505140148573,42.02236200684883],[-87.66479293961275,42.022224692371445],[-87.66474913070162,42.0220890120181],[-87.66463230864244,42.02187236467773],[-87.66471799311299,42.02173444748876],[-87.66452549166326,42.021491125092005],[-87.66418592113911,42.02125213103154],[-87.66400949690922,42.021332467274426],[-87.6638578447993,42.020728169572436],[-87.66380886985158,42.02045022407641],[-87.66375365735556,42.02034592507669],[-87.66392681892201,42.0203168857765],[-87.66388492379389,42.020181490357565],[-87.6640075224251,42.02017669007895],[-87.66385470698862,42.0196589870993],[-87.66387932370769,42.01951544600728],[-87.66364233445833,42.01950407473931],[-87.66363796726655,42.01937315163895],[-87.6638339939687,42.019363757811696],[-87.66386926765944,42.019204088215844],[-87.66396725973983,42.019194340771605],[-87.66398035092006,42.0190759788829],[-87.66371532675588,42.01874139920333],[-87.6635655575005,42.01862831560832],[-87.6633550944678,42.01858279656027],[-87.66328224844617,42.01843380145799],[-87.66333258079229,42.01815081304789],[-87.6634118698286,42.01814877918502],[-87.66334396146985,42.0179676514163],[-87.66328799382501,42.01792160640823],[-87.66327263562911,42.01776498845849],[-87.66314317081273,42.01772312507692],[-87.66313045190081,42.01729429984996],[-87.6631530042265,42.01717212341741],[-87.66299479097478,42.017092661391864],[-87.66305900954164,42.016882091548915],[-87.66300524858298,42.01674163230964],[-87.66280545617411,42.0166478484485],[-87.66276633187107,42.016536453689056],[-87.66272473338302,42.01619107534837],[-87.66255382623397,42.016045156262955],[-87.66252727039488,42.01560620683599],[-87.6624651590034,42.01542716993976],[-87.66229053707396,42.01521484754421],[-87.6621711881427,42.01498136086771],[-87.66208582476848,42.014963051417226],[-87.66199876735301,42.014584476975955],[-87.66189533813537,42.01442605413518],[-87.66178396779266,42.014043055804024],[-87.66169918311543,42.01397340581257],[-87.66157206272814,42.01373059821082],[-87.66150407959653,42.01347348212221],[-87.66162119806755,42.01332041076509],[-87.66150043344008,42.013124207923454],[-87.66132615017904,42.01295041456272],[-87.66124912424094,42.012773046442106],[-87.6611907192263,42.01277034418563],[-87.66117611269726,42.012588429415096],[-87.66093868537824,42.01220888969732],[-87.66107364906664,42.012167584730925],[-87.66102639575001,42.01204585045785],[-87.66078783994017,42.01175274691223],[-87.66064315745702,42.01161990364426],[-87.66038424482169,42.01144657273828],[-87.66014735817177,42.011239863951225],[-87.66027803071707,42.01115509487904],[-87.6601201696166,42.0109813119596],[-87.65921663401092,42.0102398000467],[-87.65889695791479,42.009849208636524],[-87.65890012733503,42.00974772018786],[-87.65878977013857,42.009710189075456],[-87.65866119889466,42.00954028280399],[-87.65841463182944,42.00930733398015],[-87.65811555081295,42.009050804497754],[-87.65751869308755,42.008453505774426],[-87.6573383850785,42.008315811409425],[-87.65698032509289,42.0080009472506],[-87.65683959752121,42.00784364485361],[-87.65674485554781,42.007680136518914],[-87.65645956813967,42.007421873084766],[-87.65573984817559,42.00695646714802],[-87.65537071662867,42.00670889762864],[-87.65509588777803,42.0069218213063],[-87.65506225830961,42.00689944409702],[-87.65584442368586,42.0063073157997],[-87.6573940884731,42.00627948773574],[-87.65741206116576,42.0062013296859],[-87.65742145618445,42.005616214684096],[-87.65731198417386,42.00507172734969],[-87.65696772778638,42.0044175165029],[-87.6568212347745,42.0042421378263],[-87.65728686740583,42.00421221020869],[-87.65728924752699,42.00392479735638],[-87.65723753876316,42.003710885905114],[-87.65711415740742,42.00356312590801],[-87.65697509174663,42.00320122627409],[-87.65700521312868,42.00312934168924],[-87.65691908386654,42.00294870523756],[-87.65687512609274,42.002753444300325],[-87.65689743194483,42.00259957281439],[-87.65686508288532,42.002520623747564],[-87.65656307306905,42.00212401023715],[-87.6564454281333,42.00206373999748],[-87.655992750932,42.001096130962345],[-87.65596512017872,42.00093321043684],[-87.65603799531183,42.00079494921035],[-87.65600701864594,42.00065969752292],[-87.65562193758498,41.999550117722045],[-87.65530797566208,41.99910996195537],[-87.65521399633224,41.99905990138429],[-87.65509069708936,41.998902287961634],[-87.65482567666392,41.998503170922675],[-87.65459595309184,41.99824138906639],[-87.65455590024229,41.99816615053947],[-87.65573692712825,41.998175210363456]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Jefferson Park","SEC_NEIGH":"JEFFERSON PARK","Creation D":"08/01/2014","Street Add":"5717 W HIGGINS AVE","Community":11,"COUNT":50,"Area":64868161,"sqmi":2.326691,"density":21.48974},"geometry":{"type":"Polygon","coordinates":[[[-87.75263506822336,41.967967467346995],[-87.75663718007887,41.96791736686128],[-87.75782888915748,41.96789994764184],[-87.75909148452537,41.96789024377858],[-87.76055554291351,41.967868907971585],[-87.76075020938873,41.9678772337801],[-87.76135508105632,41.967594927223104],[-87.76278502370243,41.96767551078397],[-87.76477634647425,41.96779806760935],[-87.76524591452025,41.96781065519433],[-87.7674766886029,41.96778264223404],[-87.76750466639129,41.96868961145451],[-87.76999717928962,41.968652994418086],[-87.77539708863833,41.9685847713983],[-87.77702532402368,41.96856152608905],[-87.77731792258257,41.96854395362768],[-87.78677237466316,41.96842701594777],[-87.78801349692843,41.96841062727806],[-87.788009407652,41.968888240071955],[-87.78787548062152,41.97553670608267],[-87.78779326763402,41.97994274133897],[-87.78775417466242,41.98179508546498],[-87.78773497083313,41.982898685388214],[-87.78542002696712,41.982895453487224],[-87.7843576006885,41.98289962550515],[-87.78377763482557,41.98291463331716],[-87.78331371393313,41.98290354776155],[-87.78102929701002,41.98290473685217],[-87.778244350677,41.982909086969435],[-87.77803847345731,41.98290485643694],[-87.77799303583288,41.984936083935345],[-87.77793222753832,41.98821672899209],[-87.77789159228786,41.99011535395128],[-87.77787152154336,41.99159468192303],[-87.77785650451149,41.99223452889019],[-87.77783284504723,41.993770973138254],[-87.77781885277409,41.9938570460622],[-87.780047654663,41.994891450846836],[-87.78286947833574,41.996161091481326],[-87.78285175403856,41.997400302578185],[-87.78241669459509,41.99738955285379],[-87.78002228629332,41.997413553897665],[-87.77997094397352,41.9971353819266],[-87.77990311786252,41.99695226240123],[-87.7796236883251,41.99673281908687],[-87.77922947336205,41.9967128729853],[-87.77887985224002,41.99676531658064],[-87.77875207347303,41.996824480002175],[-87.7785742870668,41.99700969226782],[-87.77838504883759,41.99711132818769],[-87.77825578150448,41.997140230741756],[-87.77800687183291,41.9971233849614],[-87.77753883545283,41.99701541339126],[-87.77730607577526,41.99698596609858],[-87.77713832404403,41.99702793544642],[-87.77697289430193,41.99719195019424],[-87.77677687745886,41.99724788718376],[-87.77660718151284,41.99723005029897],[-87.7764101756041,41.99704073335489],[-87.77604630158194,41.99673320883877],[-87.77595616588856,41.99668321104045],[-87.77576450447324,41.99666592486197],[-87.77540663251165,41.99670792854804],[-87.77513143858656,41.996769158368224],[-87.7748679833322,41.99686782058488],[-87.77437953986559,41.99700753774367],[-87.7740712183527,41.997053785048216],[-87.77349481028745,41.99705503679844],[-87.77295717295716,41.99698553719],[-87.77245162093155,41.99688191738134],[-87.77200923221457,41.996732583785665],[-87.77169144908707,41.99658717867863],[-87.7714288578699,41.99639473292499],[-87.77125397518265,41.996118085052494],[-87.77118130411897,41.995873221047795],[-87.77114914735408,41.995606218197864],[-87.77118103356818,41.99533963846091],[-87.7713659316943,41.99491244910427],[-87.77156917011486,41.99463323393675],[-87.77179712470584,41.994417091178185],[-87.77210409556793,41.99416321739793],[-87.77230005812653,41.99403744854423],[-87.77261867661046,41.99388527508328],[-87.77284018903572,41.993811495149416],[-87.77309048054721,41.99376142789866],[-87.77349368274251,41.99363686003978],[-87.77368386213406,41.99344849235183],[-87.77370345968815,41.9931220286564],[-87.77358422321406,41.9926869310395],[-87.77341935182426,41.99235095066047],[-87.77302306972231,41.99189293138245],[-87.77289891419564,41.99178873183467],[-87.77263270981594,41.99169124775725],[-87.77238739988482,41.99163568674628],[-87.7721392979319,41.99161326147723],[-87.77182168305342,41.99154359732738],[-87.7711947121594,41.99151939851113],[-87.77098019065451,41.99145158148017],[-87.77084050284613,41.99125279342131],[-87.77086713336496,41.99111928144344],[-87.77094495100805,41.99102948861461],[-87.77112719089827,41.990953269018746],[-87.77140350632426,41.990900122145895],[-87.77148481997983,41.99083932452265],[-87.77156964320156,41.99068894620314],[-87.7717262530642,41.990268395365526],[-87.77173758072085,41.99010121929878],[-87.77170325470858,41.990001519268525],[-87.77140043073871,41.98953925885092],[-87.77111755503547,41.989310269922804],[-87.77094005670575,41.98922026889039],[-87.77047944043683,41.98905873804816],[-87.77021721104029,41.989016947636564],[-87.76946850067033,41.98897737837857],[-87.76882396611194,41.98887489812022],[-87.76844734533825,41.98879530230492],[-87.76819691020985,41.98876775282627],[-87.76793207148752,41.988775888779465],[-87.76775720838768,41.98885842334599],[-87.7676177796533,41.98906415527369],[-87.76760497110043,41.989235412510226],[-87.7676666276632,41.98950050411798],[-87.76758083380727,41.989643328793335],[-87.76723402874941,41.989868262213975],[-87.7668960500675,41.990010144063405],[-87.76635867180521,41.99012200663155],[-87.76596468100914,41.990154664385635],[-87.76564645749048,41.99010539725222],[-87.76549963773506,41.990011807148605],[-87.7649315082171,41.98982979933146],[-87.76466076733251,41.98968636357421],[-87.7643067985474,41.989392819156464],[-87.76415461454556,41.98935674686207],[-87.76394064845958,41.98943463611032],[-87.76377300240041,41.989672357936634],[-87.76350018383437,41.98974987229424],[-87.76303735147525,41.98978473036649],[-87.76276638159129,41.989968123343715],[-87.76260343928992,41.990246892304576],[-87.76248419506648,41.990262215746775],[-87.76209994083763,41.99014359354653],[-87.7620365754437,41.99008035374599],[-87.76204374902234,41.9898540205071],[-87.76186270896804,41.989495028918874],[-87.7616999019931,41.98920744954914],[-87.76158930780645,41.988897572678255],[-87.76159698475048,41.98873024221111],[-87.76168699735668,41.988557147323235],[-87.76183738879774,41.98843959369304],[-87.76216790323707,41.98832241507591],[-87.76226782639495,41.98823784201594],[-87.76231835109658,41.98808318301236],[-87.76228563414611,41.9879533294006],[-87.76209324017539,41.98778269833029],[-87.76182504755486,41.987672693158125],[-87.76113727931909,41.9877430311709],[-87.7609251132324,41.98781727428293],[-87.7606748754162,41.98797370795582],[-87.75909265882669,41.98504723742686],[-87.75879498773867,41.98430275618612],[-87.75815664225752,41.98294563928447],[-87.75801036146177,41.982954510710385],[-87.75641506292267,41.97989495193661],[-87.7550598065776,41.97728680517923],[-87.75533002754108,41.977453138240705],[-87.75532680086579,41.97690709065442],[-87.75528467972407,41.975363044123235],[-87.75528165408926,41.975095743026856],[-87.75519415444059,41.97250477206121],[-87.75289394179876,41.97253487724087],[-87.75282058343956,41.97249778883864],[-87.75279924492929,41.97236115666737],[-87.75279851405973,41.971789644509926],[-87.75273783686157,41.97149008191288],[-87.75269519164615,41.97014042980147],[-87.75266933592793,41.96947285284537],[-87.75263003939125,41.96820010989926],[-87.75263506822336,41.967967467346995]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Sauganash,Forest Glen","SEC_NEIGH":"SAUGANASH,FOREST GLEN","Creation D":"08/01/2014","Street Add":"4211 W DEVON AVE","Community":12,"COUNT":26,"Area":89130893,"sqmi":3.196947,"density":8.132759},"geometry":{"type":"Polygon","coordinates":[[[-87.72641981408378,41.997248695990336],[-87.72785774749121,41.995462193189994],[-87.72915287979323,41.993688377482265],[-87.73008733248011,41.992462177208694],[-87.73049344258833,41.991916500784185],[-87.73186218095223,41.99009387965934],[-87.73286560236178,41.99008263542158],[-87.73305626278038,41.98980459135642],[-87.7340654872352,41.98846904936587],[-87.73413754390323,41.98832409278187],[-87.73429036370658,41.98822749876304],[-87.73523888830623,41.98777556301099],[-87.73650324915694,41.98715449037083],[-87.7373736664902,41.98678398992351],[-87.73806918177806,41.98646408520515],[-87.73840648823449,41.98632018430732],[-87.73837668710821,41.98545199956979],[-87.73830604832256,41.98271260203842],[-87.73970435907258,41.98268736752157],[-87.740611183866,41.982657723501035],[-87.74085356949432,41.98266495707743],[-87.74183196128618,41.9826438776362],[-87.74227066100048,41.9826211100932],[-87.74302387678942,41.98260895956742],[-87.74310945193264,41.982701796823626],[-87.74499987234918,41.98264489888645],[-87.74585216655117,41.98263042664296],[-87.7469871121268,41.98263119322847],[-87.74712965060819,41.98308030498007],[-87.74730640447939,41.9833291583254],[-87.74742876556088,41.98343700513583],[-87.74771551108194,41.98357562287404],[-87.74798294560611,41.98366544503768],[-87.74826003316257,41.983676890906736],[-87.74819187134511,41.981895087078264],[-87.74817460997284,41.98119341645185],[-87.74819255933414,41.980792257571814],[-87.74814731905911,41.9802375540293],[-87.7481226509525,41.97926836798725],[-87.74803000062514,41.976321197528776],[-87.74799293596726,41.975340794057246],[-87.74797955558826,41.9746773260917],[-87.7479321611388,41.97309812348803],[-87.74790113296892,41.972767809851575],[-87.74791622437037,41.97245304404667],[-87.74789642766318,41.971562887206986],[-87.74789898058928,41.97125200905571],[-87.74787401217974,41.970211827291294],[-87.74785146160504,41.969724220598614],[-87.74776097909954,41.969319822471114],[-87.74764266927272,41.96896136631395],[-87.7475067185206,41.96863949853149],[-87.74750654668419,41.968537852192014],[-87.74762523160044,41.96813400731647],[-87.74772179585369,41.96802872359736],[-87.7493684908419,41.96800952834744],[-87.7512611395368,41.967982669357426],[-87.75263506822336,41.967967467346995],[-87.75263003939125,41.96820010989926],[-87.75266933592793,41.96947285284537],[-87.75269519164615,41.97014042980147],[-87.75273783686157,41.97149008191288],[-87.75279851405973,41.971789644509926],[-87.75279924492929,41.97236115666737],[-87.75282058343956,41.97249778883864],[-87.75289394179876,41.97253487724087],[-87.75519415444059,41.97250477206121],[-87.75528165408926,41.975095743026856],[-87.75528467972407,41.975363044123235],[-87.75532680086579,41.97690709065442],[-87.75533002754108,41.977453138240705],[-87.7550598065776,41.97728680517923],[-87.75641506292267,41.97989495193661],[-87.75801036146177,41.982954510710385],[-87.75815664225752,41.98294563928447],[-87.75879498773867,41.98430275618612],[-87.75909265882669,41.98504723742686],[-87.7606748754162,41.98797370795582],[-87.7609251132324,41.98781727428293],[-87.76113727931909,41.9877430311709],[-87.76182504755486,41.987672693158125],[-87.76209324017539,41.98778269833029],[-87.76228563414611,41.9879533294006],[-87.76231835109658,41.98808318301236],[-87.76226782639495,41.98823784201594],[-87.76216790323707,41.98832241507591],[-87.76183738879774,41.98843959369304],[-87.76168699735668,41.988557147323235],[-87.76159698475048,41.98873024221111],[-87.76158930780645,41.988897572678255],[-87.7616999019931,41.98920744954914],[-87.76186270896804,41.989495028918874],[-87.76204374902234,41.9898540205071],[-87.7620365754437,41.99008035374599],[-87.76209994083763,41.99014359354653],[-87.76248419506648,41.990262215746775],[-87.76260343928992,41.990246892304576],[-87.76276638159129,41.989968123343715],[-87.76303735147525,41.98978473036649],[-87.76350018383437,41.98974987229424],[-87.76377300240041,41.989672357936634],[-87.76394064845958,41.98943463611032],[-87.76415461454556,41.98935674686207],[-87.7643067985474,41.989392819156464],[-87.76466076733251,41.98968636357421],[-87.7649315082171,41.98982979933146],[-87.76549963773506,41.990011807148605],[-87.76564645749048,41.99010539725222],[-87.76596468100914,41.990154664385635],[-87.76635867180521,41.99012200663155],[-87.7668960500675,41.990010144063405],[-87.76723402874941,41.989868262213975],[-87.76758083380727,41.989643328793335],[-87.7676666276632,41.98950050411798],[-87.76760497110043,41.989235412510226],[-87.7676177796533,41.98906415527369],[-87.76775720838768,41.98885842334599],[-87.76793207148752,41.988775888779465],[-87.76819691020985,41.98876775282627],[-87.76844734533825,41.98879530230492],[-87.76882396611194,41.98887489812022],[-87.76946850067033,41.98897737837857],[-87.77021721104029,41.989016947636564],[-87.77047944043683,41.98905873804816],[-87.77094005670575,41.98922026889039],[-87.77111755503547,41.989310269922804],[-87.77140043073871,41.98953925885092],[-87.77170325470858,41.990001519268525],[-87.77173758072085,41.99010121929878],[-87.7717262530642,41.990268395365526],[-87.77156964320156,41.99068894620314],[-87.77148481997983,41.99083932452265],[-87.77140350632426,41.990900122145895],[-87.77112719089827,41.990953269018746],[-87.77094495100805,41.99102948861461],[-87.77086713336496,41.99111928144344],[-87.77084050284613,41.99125279342131],[-87.77098019065451,41.99145158148017],[-87.7711947121594,41.99151939851113],[-87.77182168305342,41.99154359732738],[-87.7721392979319,41.99161326147723],[-87.77238739988482,41.99163568674628],[-87.77263270981594,41.99169124775725],[-87.77289891419564,41.99178873183467],[-87.77302306972231,41.99189293138245],[-87.77341935182426,41.99235095066047],[-87.77358422321406,41.9926869310395],[-87.77370345968815,41.9931220286564],[-87.77368386213406,41.99344849235183],[-87.77349368274251,41.99363686003978],[-87.77309048054721,41.99376142789866],[-87.77284018903572,41.993811495149416],[-87.77261867661046,41.99388527508328],[-87.77230005812653,41.99403744854423],[-87.77210409556793,41.99416321739793],[-87.77179712470584,41.994417091178185],[-87.77156917011486,41.99463323393675],[-87.7713659316943,41.99491244910427],[-87.77118103356818,41.99533963846091],[-87.77114914735408,41.995606218197864],[-87.77118130411897,41.995873221047795],[-87.77125397518265,41.996118085052494],[-87.7714288578699,41.99639473292499],[-87.77169144908707,41.99658717867863],[-87.77200923221457,41.996732583785665],[-87.77245162093155,41.99688191738134],[-87.77295717295716,41.99698553719],[-87.77349481028745,41.99705503679844],[-87.7740712183527,41.997053785048216],[-87.77437953986559,41.99700753774367],[-87.7748679833322,41.99686782058488],[-87.77513143858656,41.996769158368224],[-87.77540663251165,41.99670792854804],[-87.77576450447324,41.99666592486197],[-87.77595616588856,41.99668321104045],[-87.77604630158194,41.99673320883877],[-87.7764101756041,41.99704073335489],[-87.77660718151284,41.99723005029897],[-87.77677687745886,41.99724788718376],[-87.77697289430193,41.99719195019424],[-87.77713832404403,41.99702793544642],[-87.77730607577526,41.99698596609858],[-87.77753883545283,41.99701541339126],[-87.77800687183291,41.9971233849614],[-87.77825578150448,41.997140230741756],[-87.77838504883759,41.99711132818769],[-87.7785742870668,41.99700969226782],[-87.77875207347303,41.996824480002175],[-87.77887985224002,41.99676531658064],[-87.77922947336205,41.9967128729853],[-87.7796236883251,41.99673281908687],[-87.77990311786252,41.99695226240123],[-87.77997094397352,41.9971353819266],[-87.78002228629332,41.997413553897665],[-87.78004250631295,41.99779785908131],[-87.7800896342332,41.998124445456085],[-87.78004355739706,41.9986799855261],[-87.77999137277132,41.99910667588055],[-87.7801450324245,42.000008253337555],[-87.78019717471307,42.000202381954225],[-87.78023102071002,42.00080146520687],[-87.78026805025435,42.00111371393982],[-87.78028931026263,42.001607112418085],[-87.78039344438758,42.00186869667683],[-87.78053776820792,42.002383845776684],[-87.78068075218196,42.00260755486045],[-87.7808268994698,42.00276355229099],[-87.78098753687455,42.00286920814947],[-87.78151044374025,42.00295561332805],[-87.7816444320752,42.00293507218684],[-87.7818078854238,42.002834157826186],[-87.7820346199414,42.002592550501056],[-87.78215208438921,42.002367816283886],[-87.78229708019907,42.00203503798001],[-87.78260538654861,42.00145082421778],[-87.78279949004086,42.00100744280297],[-87.7829062543419,42.000503901148],[-87.78292284426671,42.000312079438814],[-87.78302269390711,42.000115497261746],[-87.78317523694878,42.000020181630966],[-87.78327180197401,42.00000829551635],[-87.78381656901672,42.00014284553345],[-87.78428005810514,42.00018886070148],[-87.78462920758571,42.000135948128325],[-87.78497631272845,41.999905475039405],[-87.785339983582,41.999750683094724],[-87.78558963345861,41.999721249107914],[-87.78597242670769,41.99974741629682],[-87.7862868586719,41.99973566070369],[-87.78645097983349,41.999752578579916],[-87.78673129224038,41.999837199999135],[-87.78703431077845,41.9998264859639],[-87.78729073363587,41.999757838519024],[-87.78760915038124,41.99964137976906],[-87.78793358114959,41.9996347714011],[-87.78811282177881,41.99966476622167],[-87.788432674648,41.99978513605521],[-87.78859591965953,41.99992638618963],[-87.78892646857776,42.000078336202755],[-87.78912496712371,42.00019291453855],[-87.79000372416846,42.00047064600871],[-87.79019396249365,42.000613118749555],[-87.78800169372623,42.00165811538488],[-87.78539002502406,42.002897250533266],[-87.78200312483986,42.00449772022586],[-87.7822357016226,42.00464979507946],[-87.78255126339836,42.004893841643884],[-87.78276919426573,42.005085004211566],[-87.78310268181197,42.0054225475275],[-87.78329175562767,42.00563673229378],[-87.78453571999626,42.00709776633136],[-87.78568328579472,42.0084362656461],[-87.78627497122935,42.00913317493095],[-87.78834913893897,42.011556913547864],[-87.78872274095583,42.011996715620676],[-87.78778604928166,42.0120081825665],[-87.78723504733264,42.01199184128283],[-87.78651640733032,42.01199165880448],[-87.78503318571815,42.01200236532378],[-87.78268981898422,42.012002426253474],[-87.78207067905211,42.011997918318315],[-87.78108829884255,42.01200834417523],[-87.780366830905,42.01199490866712],[-87.77926623065346,42.011991715289284],[-87.77925980888476,42.01214231199828],[-87.77914781083066,42.013565237360176],[-87.77910377185252,42.01544193911399],[-87.77903501046782,42.01544435209725],[-87.77697221680998,42.01538557960917],[-87.77705324492383,42.01198232899936],[-87.7762842378473,42.011972946910774],[-87.7733494575989,42.01195828220372],[-87.77310296600815,42.01147503578647],[-87.77233269601582,42.01000209035103],[-87.77174214439705,42.00886225708603],[-87.77160902118798,42.008590260469724],[-87.77094033401995,42.00731368160668],[-87.77035947702399,42.00619408604848],[-87.7699486217714,42.00637562898482],[-87.76917090023295,42.00486130449462],[-87.76814162466025,42.004392135560614],[-87.76785458784119,42.004253073245245],[-87.76771531146285,42.00423013138516],[-87.76579496678117,42.003325243382434],[-87.76546688215983,42.003735393734196],[-87.7675434740618,42.00470553850605],[-87.76746186858401,42.00832165092197],[-87.76166410866018,42.0082723147217],[-87.7617210950331,42.006784643701664],[-87.7618486668404,42.0038854099555],[-87.7618584999497,42.00354309323884],[-87.7619534813467,42.00265658849214],[-87.7619931669855,42.00248939027735],[-87.76227014414364,42.00168724609208],[-87.76143326266273,42.00131598434672],[-87.75865257400264,42.00001786943226],[-87.7576650824034,41.99955425670513],[-87.7566197509347,41.999048194894186],[-87.75636676939408,41.99894434539375],[-87.75546545812315,41.99852400345131],[-87.75444325172603,41.99804022197224],[-87.75434785928773,41.99797744464483],[-87.75290006425575,41.997300984142186],[-87.74816179304524,41.99728730427507],[-87.74603931149548,41.99727860547158],[-87.74093785464227,41.99725195275616],[-87.72903230300898,41.99723873972146],[-87.72641981408378,41.997248695990336]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"North Park","SEC_NEIGH":"NORTH PARK,ALBANY PARK","Creation D":"08/01/2014","Street Add":"3232 W ARDMORE AVE","Community":13,"COUNT":78,"Area":70288706,"sqmi":2.521115,"density":30.93869},"geometry":{"type":"Polygon","coordinates":[[[-87.70690177438159,41.983080467376965],[-87.70681700540675,41.98273945737062],[-87.7067179106243,41.982440375093105],[-87.70666435927059,41.98212532312283],[-87.70650381841506,41.981761416501186],[-87.70648943597847,41.981649099934394],[-87.70635581727554,41.98118794870734],[-87.70624747447262,41.98095473112128],[-87.70619806272448,41.98071291672492],[-87.70608399843367,41.98045197873252],[-87.70600897249763,41.980193202331904],[-87.70595528612324,41.97992241312898],[-87.7059114796488,41.979829117884535],[-87.70564814500615,41.97899429209445],[-87.7055089851566,41.9786528660419],[-87.70535938839065,41.9781760332257],[-87.70534367809715,41.978049417660664],[-87.70516681778598,41.97740191621643],[-87.70495546433246,41.97672826548484],[-87.7049325101648,41.97656798822174],[-87.70487055617923,41.97644682186958],[-87.70480591785726,41.97619855679128],[-87.70482728252665,41.97613520036678],[-87.70472916065998,41.97585132426341],[-87.70471410739124,41.97569921303415],[-87.70464004215762,41.9756093464546],[-87.7045850271074,41.97537364748147],[-87.70449226006362,41.9751998704308],[-87.704456335336,41.97485549575784],[-87.70439128750452,41.97469021282923],[-87.70433822450649,41.974439431281496],[-87.70420679202718,41.97401327731119],[-87.70403771340096,41.97355158381825],[-87.70477976536655,41.97395500058215],[-87.70512875977448,41.97401846331732],[-87.70539943325787,41.97409974228078],[-87.70553220514212,41.97411518723875],[-87.70587267475187,41.97422486177059],[-87.70615656610856,41.97428598998272],[-87.70668060220316,41.97442556759048],[-87.70721517535621,41.97455213814286],[-87.70779148324864,41.97466817607245],[-87.70808541888894,41.97469914057061],[-87.7087370166539,41.97467510831114],[-87.70936084021284,41.97454644958683],[-87.70999068814437,41.97435034022136],[-87.71035480490228,41.974251494678796],[-87.71059725327643,41.974139172628064],[-87.71083403605357,41.97406098467303],[-87.71115343676865,41.973863377207785],[-87.71129568423143,41.97368928739627],[-87.71164488367411,41.973074172187616],[-87.71202065833711,41.97265642562331],[-87.71215230091664,41.97253241392336],[-87.71231578607336,41.972442794551114],[-87.71283410914762,41.97227666401001],[-87.71325431775078,41.97212943018654],[-87.71365174841863,41.972032867095216],[-87.7140258070295,41.97196869536929],[-87.71461923134322,41.971929908761474],[-87.71507612178527,41.971932232997304],[-87.71566578877679,41.97192061581116],[-87.71596261986109,41.97197833171565],[-87.71620347545618,41.97208623878172],[-87.7169606878913,41.97251678356818],[-87.71773709131494,41.97291455068177],[-87.71806861791181,41.973097225872394],[-87.71829104406828,41.97319504114732],[-87.71871434029723,41.97334563237674],[-87.71914670559467,41.97357829482334],[-87.71972293474464,41.97381883216026],[-87.72013453882911,41.973962303047415],[-87.72037043329668,41.97400999473551],[-87.7205605929907,41.97407936802048],[-87.72108663206032,41.974105088736806],[-87.72176640356307,41.97421403454668],[-87.7219940741594,41.97427205217944],[-87.72243423426211,41.97441445943238],[-87.72279745424312,41.974565374502845],[-87.72355390658196,41.97504477337411],[-87.72378622662592,41.97524046139625],[-87.72393157478115,41.975439885932786],[-87.72421149173637,41.975688926069004],[-87.72444240047446,41.97580930432088],[-87.7247498047664,41.975906432618835],[-87.725054252146,41.97598202987241],[-87.72567894903054,41.97609598443687],[-87.72596586844895,41.97611610819863],[-87.72622716159655,41.97609295739976],[-87.72655760658412,41.9760141895041],[-87.72691241801236,41.97585174139876],[-87.727120791374,41.97571590616133],[-87.72730803085341,41.97554238479533],[-87.72823338704823,41.9755320084407],[-87.72817784474994,41.97362946112304],[-87.72813177370712,41.971884068021964],[-87.72896148889868,41.97187346168033],[-87.73183126654791,41.97184473440764],[-87.73188097454461,41.97359039329366],[-87.73203581048591,41.97366310254466],[-87.73311699103303,41.973650906271104],[-87.73315332893522,41.974747011067045],[-87.733171382086,41.97547986364738],[-87.73599148052966,41.975449401585415],[-87.73848200583475,41.975425451325776],[-87.74104664313457,41.97539636844698],[-87.74417532347786,41.97536941081197],[-87.74485273000624,41.97537749550758],[-87.74610500055226,41.975367003602926],[-87.746748468065,41.97535454150434],[-87.74799293596726,41.975340794057246],[-87.74803000062514,41.976321197528776],[-87.7481226509525,41.97926836798725],[-87.74814731905911,41.9802375540293],[-87.74819255933414,41.980792257571814],[-87.74817460997284,41.98119341645185],[-87.74819187134511,41.981895087078264],[-87.74826003316257,41.983676890906736],[-87.74798294560611,41.98366544503768],[-87.74771551108194,41.98357562287404],[-87.74742876556088,41.98343700513583],[-87.74730640447939,41.9833291583254],[-87.74712965060819,41.98308030498007],[-87.7469871121268,41.98263119322847],[-87.74585216655117,41.98263042664296],[-87.74499987234918,41.98264489888645],[-87.74310945193264,41.982701796823626],[-87.74302387678942,41.98260895956742],[-87.74227066100048,41.9826211100932],[-87.74183196128618,41.9826438776362],[-87.74085356949432,41.98266495707743],[-87.740611183866,41.982657723501035],[-87.73970435907258,41.98268736752157],[-87.73830604832256,41.98271260203842],[-87.73837668710821,41.98545199956979],[-87.73840648823449,41.98632018430732],[-87.73806918177806,41.98646408520515],[-87.7373736664902,41.98678398992351],[-87.73650324915694,41.98715449037083],[-87.73523888830623,41.98777556301099],[-87.73429036370658,41.98822749876304],[-87.73413754390323,41.98832409278187],[-87.7340654872352,41.98846904936587],[-87.73305626278038,41.98980459135642],[-87.73286560236178,41.99008263542158],[-87.73186218095223,41.99009387965934],[-87.73049344258833,41.991916500784185],[-87.73008733248011,41.992462177208694],[-87.72915287979323,41.993688377482265],[-87.72785774749121,41.995462193189994],[-87.72641981408378,41.997248695990336],[-87.71858397686226,41.99727777603239],[-87.7175873549358,41.99728596279312],[-87.71603288234212,41.997292405537515],[-87.71395462124133,41.99731293363526],[-87.71067089518664,41.997365666284466],[-87.71063173504902,41.99702111287625],[-87.71062465140515,41.99670244625362],[-87.71051198550298,41.99582931891685],[-87.7104053385567,41.99529367746104],[-87.71032174228765,41.99480497690455],[-87.7101856388388,41.99423852263831],[-87.71016497483491,41.99402255217782],[-87.70997752637852,41.99334245591451],[-87.70985220794657,41.99280984099015],[-87.709578274486,41.99190090256734],[-87.70951601307793,41.991612972616],[-87.7093848167276,41.99140519580807],[-87.70936857735315,41.99129721072884],[-87.70907907019783,41.99034541356482],[-87.70898175808617,41.99008374668666],[-87.70897611067463,41.989957757388666],[-87.70891369413657,41.989753908336745],[-87.7088629867989,41.98945478957445],[-87.70877166285561,41.98928066746773],[-87.70868838869688,41.98889649342765],[-87.70859092564534,41.98867321664286],[-87.7084806582251,41.98849177395099],[-87.70851796933812,41.988422740960345],[-87.70847068144782,41.98818799198038],[-87.70831479692423,41.98773281415989],[-87.70828327946558,41.98748034110139],[-87.70821602804384,41.98735382417511],[-87.70815606058474,41.987039259611784],[-87.70794376913364,41.986522743052014],[-87.70775725737303,41.98643907159616],[-87.70787583743478,41.98634564664421],[-87.70782208109173,41.986028097078226],[-87.70769699613214,41.98564391382312],[-87.70750723133747,41.98516785854409],[-87.7075088590674,41.98495283233957],[-87.70743962900734,41.98479592584917],[-87.70739267875068,41.98459495920723],[-87.70726095909157,41.98428409163409],[-87.70718579027164,41.983978910986785],[-87.70702462720251,41.983535118183795],[-87.70690177438159,41.983080467376965]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Albany Park","SEC_NEIGH":"NORTH PARK,ALBANY PARK","Creation D":"08/01/2014","Street Add":"4763 N MANOR AVE","Community":14,"COUNT":200,"Area":53542230,"sqmi":1.920453,"density":104.142},"geometry":{"type":"Polygon","coordinates":[[[-87.70403771340096,41.97355158381825],[-87.70382496349542,41.973053045652776],[-87.70376085628283,41.97268060782442],[-87.70366301336942,41.972343274819586],[-87.70356940737388,41.97195297465159],[-87.70321880159631,41.971240933123575],[-87.70306262922686,41.97097945875261],[-87.70256444262411,41.97023246689793],[-87.70223987760247,41.96985716944936],[-87.70202109970172,41.969624438011],[-87.7018828132632,41.96954480902845],[-87.70154489604846,41.969196713263514],[-87.70145263666026,41.96906259070173],[-87.70143941554628,41.96894182751105],[-87.70108291805366,41.96852098924451],[-87.70090768604332,41.96837008068105],[-87.70073191888703,41.96825476124453],[-87.70048720172421,41.96800240003735],[-87.70011095776107,41.96764958847755],[-87.69986954373236,41.96746889536832],[-87.6995581329608,41.96717544011839],[-87.69948555599368,41.96708181875713],[-87.69910576866835,41.96673145408344],[-87.69902145732597,41.966619875372395],[-87.6984719751738,41.96607740944909],[-87.6983124249114,41.96588528328697],[-87.69792839423027,41.96553036325124],[-87.69729171298894,41.96491026929608],[-87.69703753181825,41.96472110216353],[-87.69693008053406,41.96457440499301],[-87.69667256957064,41.964287826673875],[-87.69605055379486,41.96368163786738],[-87.69597174683952,41.96356116875036],[-87.6956238624513,41.96317916414039],[-87.69547679776797,41.962931203802704],[-87.69507228967508,41.96198991513608],[-87.69493480838555,41.96172532255118],[-87.69484531134788,41.96147532142996],[-87.69474577254057,41.961273426606034],[-87.70069381483334,41.961234896673794],[-87.70496309343889,41.96121020961283],[-87.7065141597062,41.96119585674111],[-87.70845800789735,41.961185734473545],[-87.71341108449397,41.96112661033828],[-87.71516555856049,41.96110319491986],[-87.71839726043348,41.96106572092323],[-87.71959078067862,41.96104897410452],[-87.72238997258742,41.96101642895624],[-87.72388568938852,41.960995043025875],[-87.72600445188749,41.96097114491831],[-87.72861032801484,41.96093720602129],[-87.729693464256,41.96092688540226],[-87.73382515279953,41.96377265096008],[-87.73672549926242,41.96576183401421],[-87.73785135750914,41.96654023816346],[-87.73790228852735,41.968133930839414],[-87.7394384208362,41.96811896010405],[-87.7401645879611,41.96810773755473],[-87.7435168007558,41.96807703339858],[-87.74590149238851,41.968046121205944],[-87.74772179585369,41.96802872359736],[-87.74762523160044,41.96813400731647],[-87.74750654668419,41.968537852192014],[-87.7475067185206,41.96863949853149],[-87.74764266927272,41.96896136631395],[-87.74776097909954,41.969319822471114],[-87.74785146160504,41.969724220598614],[-87.74787401217974,41.970211827291294],[-87.74789898058928,41.97125200905571],[-87.74789642766318,41.971562887206986],[-87.74791622437037,41.97245304404667],[-87.74790113296892,41.972767809851575],[-87.7479321611388,41.97309812348803],[-87.74797955558826,41.9746773260917],[-87.74799293596726,41.975340794057246],[-87.746748468065,41.97535454150434],[-87.74610500055226,41.975367003602926],[-87.74485273000624,41.97537749550758],[-87.74417532347786,41.97536941081197],[-87.74104664313457,41.97539636844698],[-87.73848200583475,41.975425451325776],[-87.73599148052966,41.975449401585415],[-87.733171382086,41.97547986364738],[-87.73315332893522,41.974747011067045],[-87.73311699103303,41.973650906271104],[-87.73203581048591,41.97366310254466],[-87.73188097454461,41.97359039329366],[-87.73183126654791,41.97184473440764],[-87.72896148889868,41.97187346168033],[-87.72813177370712,41.971884068021964],[-87.72817784474994,41.97362946112304],[-87.72823338704823,41.9755320084407],[-87.72730803085341,41.97554238479533],[-87.727120791374,41.97571590616133],[-87.72691241801236,41.97585174139876],[-87.72655760658412,41.9760141895041],[-87.72622716159655,41.97609295739976],[-87.72596586844895,41.97611610819863],[-87.72567894903054,41.97609598443687],[-87.725054252146,41.97598202987241],[-87.7247498047664,41.975906432618835],[-87.72444240047446,41.97580930432088],[-87.72421149173637,41.975688926069004],[-87.72393157478115,41.975439885932786],[-87.72378622662592,41.97524046139625],[-87.72355390658196,41.97504477337411],[-87.72279745424312,41.974565374502845],[-87.72243423426211,41.97441445943238],[-87.7219940741594,41.97427205217944],[-87.72176640356307,41.97421403454668],[-87.72108663206032,41.974105088736806],[-87.7205605929907,41.97407936802048],[-87.72037043329668,41.97400999473551],[-87.72013453882911,41.973962303047415],[-87.71972293474464,41.97381883216026],[-87.71914670559467,41.97357829482334],[-87.71871434029723,41.97334563237674],[-87.71829104406828,41.97319504114732],[-87.71806861791181,41.973097225872394],[-87.71773709131494,41.97291455068177],[-87.7169606878913,41.97251678356818],[-87.71620347545618,41.97208623878172],[-87.71596261986109,41.97197833171565],[-87.71566578877679,41.97192061581116],[-87.71507612178527,41.971932232997304],[-87.71461923134322,41.971929908761474],[-87.7140258070295,41.97196869536929],[-87.71365174841863,41.972032867095216],[-87.71325431775078,41.97212943018654],[-87.71283410914762,41.97227666401001],[-87.71231578607336,41.972442794551114],[-87.71215230091664,41.97253241392336],[-87.71202065833711,41.97265642562331],[-87.71164488367411,41.973074172187616],[-87.71129568423143,41.97368928739627],[-87.71115343676865,41.973863377207785],[-87.71083403605357,41.97406098467303],[-87.71059725327643,41.974139172628064],[-87.71035480490228,41.974251494678796],[-87.70999068814437,41.97435034022136],[-87.70936084021284,41.97454644958683],[-87.7087370166539,41.97467510831114],[-87.70808541888894,41.97469914057061],[-87.70779148324864,41.97466817607245],[-87.70721517535621,41.97455213814286],[-87.70668060220316,41.97442556759048],[-87.70615656610856,41.97428598998272],[-87.70587267475187,41.97422486177059],[-87.70553220514212,41.97411518723875],[-87.70539943325787,41.97409974228078],[-87.70512875977448,41.97401846331732],[-87.70477976536655,41.97395500058215],[-87.70403771340096,41.97355158381825]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Irving Park","SEC_NEIGH":"IRVING PARK,AVONDALE","Creation D":"08/02/2014","Street Add":"4427 N KEOKUK AVE","Community":16,"COUNT":222,"Area":89611382,"sqmi":3.214181,"density":69.06891},"geometry":{"type":"Polygon","coordinates":[[[-87.69474577254057,41.961273426606034],[-87.69470348081353,41.96110153974241],[-87.69467327208676,41.96056257375791],[-87.69466473510515,41.96005517691355],[-87.69458552480599,41.9596406350764],[-87.69459767613739,41.95939213219977],[-87.69458003393605,41.959203808719806],[-87.69443806306334,41.95850977651038],[-87.69440179437845,41.9580735471605],[-87.69434609351659,41.95788594482338],[-87.69433744232676,41.957717786360256],[-87.69437559884702,41.95742395659663],[-87.69437611283922,41.957059665526316],[-87.6942671045703,41.95703024458711],[-87.6942744955707,41.95684977155866],[-87.69436649324221,41.9568117548922],[-87.69439203762084,41.95637659032113],[-87.6943925993951,41.9558802954914],[-87.69443012936392,41.95551653962616],[-87.6944654847989,41.95537046963647],[-87.69447313097109,41.95505396767716],[-87.6944447381273,41.95502194938561],[-87.69444273502657,41.9546593181254],[-87.6945546873355,41.95392229692796],[-87.69464716160317,41.953681485666614],[-87.69507261735473,41.95310707287865],[-87.69539779218888,41.95271182004701],[-87.6954965914481,41.952614126164065],[-87.69579005074483,41.952158295853174],[-87.69615414296074,41.95148664021653],[-87.6962124164185,41.95134577383659],[-87.69640239885365,41.951024773105715],[-87.69653765253521,41.95085040933944],[-87.69678764389724,41.95039093211777],[-87.69683994713544,41.950240235445236],[-87.69686355982492,41.9500062574581],[-87.69668220668484,41.948906413703256],[-87.6965748465054,41.94839127808474],[-87.69646617608969,41.94794885702482],[-87.69637168786957,41.947736232206914],[-87.69631706189767,41.94742248516361],[-87.69622117852391,41.947017839718434],[-87.6962044731134,41.946695970194504],[-87.69864665703201,41.94667801057395],[-87.70028042753943,41.94666941259542],[-87.70087898558951,41.94665358417206],[-87.70196659863937,41.946647687760354],[-87.70342998234591,41.94665476524875],[-87.70737624994574,41.94663663922792],[-87.70884299851214,41.946623060291046],[-87.71034185076093,41.946596457992804],[-87.71234234989582,41.9465740905409],[-87.71419374929988,41.946548304726505],[-87.7146315852903,41.94653321174445],[-87.71592808479159,41.946524768472955],[-87.71720285636894,41.94650900411303],[-87.7176478718768,41.946503122224264],[-87.72088161955264,41.94645986185108],[-87.72215347497244,41.946445124647056],[-87.72458983529815,41.94640924854127],[-87.72740107717124,41.94637316973221],[-87.72733130627157,41.94416720822676],[-87.7273220613376,41.94370728328353],[-87.72725694023673,41.9414470204177],[-87.72721098320375,41.94013646707625],[-87.72718536266305,41.939095136103155],[-87.7287125220598,41.939073424711026],[-87.73141904828483,41.93904055449698],[-87.73276572049973,41.9390193958108],[-87.73522203559455,41.93898620235059],[-87.73781902140311,41.938952138839056],[-87.74210828333119,41.93889163735854],[-87.74215622665709,41.94070470201758],[-87.74289525351485,41.940694040312444],[-87.74296013119464,41.94253154256991],[-87.7422492910729,41.942539848967755],[-87.74231108940222,41.94438309661969],[-87.74237247338289,41.94708989865731],[-87.7423801539298,41.947999646073136],[-87.74243481845131,41.95040004723019],[-87.74249869441961,41.95347430795824],[-87.74273260389437,41.95347373649998],[-87.74326602583585,41.95448123805333],[-87.74361317649665,41.95515809842494],[-87.74426305357993,41.95649752351391],[-87.7450479262419,41.958002632799165],[-87.74648361808507,41.960735810821184],[-87.74486283713026,41.96075508954099],[-87.744439389917,41.96075600799901],[-87.7461024480132,41.961677729191074],[-87.7465056692107,41.961911333471114],[-87.74701334951662,41.96248197871225],[-87.74717010450345,41.96263511386369],[-87.74701011404636,41.96279281293607],[-87.74698101727327,41.962992370969395],[-87.74709537249649,41.963232193037975],[-87.74766405866983,41.963395006150115],[-87.7479082376036,41.96348166481001],[-87.74718117143401,41.96339133265371],[-87.74741488923696,41.96383312401063],[-87.7475954140539,41.964239776650246],[-87.7476356000091,41.96451709199258],[-87.74772453821714,41.96708349114151],[-87.74772179585369,41.96802872359736],[-87.74590149238851,41.968046121205944],[-87.7435168007558,41.96807703339858],[-87.7401645879611,41.96810773755473],[-87.7394384208362,41.96811896010405],[-87.73790228852735,41.968133930839414],[-87.73785135750914,41.96654023816346],[-87.73672549926242,41.96576183401421],[-87.73382515279953,41.96377265096008],[-87.729693464256,41.96092688540226],[-87.72861032801484,41.96093720602129],[-87.72600445188749,41.96097114491831],[-87.72388568938852,41.960995043025875],[-87.72238997258742,41.96101642895624],[-87.71959078067862,41.96104897410452],[-87.71839726043348,41.96106572092323],[-87.71516555856049,41.96110319491986],[-87.71341108449397,41.96112661033828],[-87.70845800789735,41.961185734473545],[-87.7065141597062,41.96119585674111],[-87.70496309343889,41.96121020961283],[-87.70069381483334,41.961234896673794],[-87.69474577254057,41.961273426606034]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Dunning","SEC_NEIGH":"DUNNING","Creation D":"08/01/2014","Street Add":"6000 W WAVELAND AVE","Community":17,"COUNT":67,"Area":10359500,"sqmi":0.371574,"density":180.314},"geometry":{"type":"Polygon","coordinates":[[[-87.77621462941518,41.938448147208405],[-87.77906119123557,41.93841001625296],[-87.78399229326921,41.93834798533556],[-87.78650517593866,41.93831105114521],[-87.79076918756718,41.93823861491971],[-87.79372815916317,41.93819176726963],[-87.79457118175256,41.938175610664494],[-87.7979514231128,41.9381246825675],[-87.79897267127895,41.93811220625923],[-87.80413326317189,41.93803237592611],[-87.8067468067356,41.93799634676591],[-87.80670052273855,41.9366146028556],[-87.80662355728559,41.934511184302345],[-87.80713707890688,41.934508818758395],[-87.80940895821769,41.93445880773232],[-87.81323439796884,41.93437995955619],[-87.81639040715234,41.93431254378236],[-87.81650950797649,41.93775099219876],[-87.81651876080119,41.937938766623],[-87.81916529551478,41.93788679074458],[-87.82334499980098,41.937800986601424],[-87.82593770280384,41.93775067282638],[-87.82656882265078,41.937748657966914],[-87.82963816637424,41.937686670203895],[-87.83321072730035,41.93761683156447],[-87.83344925858859,41.93759819447291],[-87.83461770563761,41.93757459869479],[-87.83481017093202,41.93757642243202],[-87.83479499061865,41.93774647059934],[-87.8349063626993,41.940435884220854],[-87.83496714309996,41.94150439266451],[-87.83508050391441,41.94430347219429],[-87.8351208589973,41.944667668585886],[-87.83517826886438,41.94479293765335],[-87.83643294850826,41.944760730652725],[-87.83648502045538,41.94622101999745],[-87.83650127215132,41.94694951681426],[-87.83652053855121,41.94734081160316],[-87.8365763168429,41.94899769971166],[-87.83662996119843,41.95033645400481],[-87.83666372085007,41.951879997201296],[-87.83669260364591,41.954051804611744],[-87.83668658999962,41.956004926076524],[-87.83667243331885,41.957828257370885],[-87.83669886448163,41.959360212603144],[-87.83385274174745,41.95941088751018],[-87.83267784222679,41.95943815072394],[-87.83260405235808,41.95907589502196],[-87.83234225963815,41.95801715974573],[-87.83209491997087,41.95706690972701],[-87.83196664974666,41.956376947273945],[-87.83181869541873,41.95566576840987],[-87.83183386226206,41.955170832280345],[-87.83182189549325,41.95455418152828],[-87.83182665556016,41.9540407866847],[-87.83180907099084,41.95347954450111],[-87.83179302675072,41.952163821727574],[-87.82607898114313,41.952307342075],[-87.82170883592205,41.952419015234646],[-87.82133267153574,41.95243410526234],[-87.81931157581796,41.952484843823264],[-87.81856227920899,41.95249430222349],[-87.81774654709695,41.952518111539725],[-87.8144851494049,41.95259611894344],[-87.81105737127429,41.95268128951631],[-87.81030412813503,41.95269191123385],[-87.8091727742281,41.95272577452227],[-87.80757380732034,41.95276742060768],[-87.80726923353237,41.95276460779921],[-87.80730024821425,41.953582050828224],[-87.80729060944326,41.953865749203665],[-87.80653215360678,41.95422073121256],[-87.80230641059066,41.95623983305372],[-87.80145657337057,41.956649205628345],[-87.7986069078715,41.95801010709096],[-87.79472690632626,41.9598664881498],[-87.79432793029498,41.96003031193923],[-87.79419714133573,41.960057578777594],[-87.79277226813296,41.96008918856647],[-87.79180063325188,41.96011918673439],[-87.79070528617063,41.96013069975707],[-87.78814719144883,41.960178102459906],[-87.78680540388567,41.960217021387685],[-87.7867919450644,41.95908722772206],[-87.7867592906948,41.95813277160708],[-87.78671057188309,41.956911446217546],[-87.7866843686602,41.95611006536039],[-87.78664690250287,41.955546883608],[-87.7865995645995,41.954203117252845],[-87.78658193047146,41.95347902651783],[-87.78655950676227,41.95291650502591],[-87.78226729511368,41.95297223287214],[-87.77913201490537,41.95301492700747],[-87.77710928345391,41.95304505392669],[-87.77677480327601,41.95305614502372],[-87.77671533939107,41.95144713542192],[-87.77669175307685,41.95061727937805],[-87.77666750191939,41.9500836034702],[-87.77651088643596,41.945941268365914],[-87.776466735825,41.94495741586328],[-87.7763823390301,41.942672497223036],[-87.77637037411434,41.94244664461238],[-87.77621462941518,41.938448147208405]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"West Ridge","SEC_NEIGH":"WEST RIDGE","Creation D":"08/01/2014","Street Add":"2650 W GREENLEAF AVE","Community":2,"COUNT":415,"Area":98429094,"sqmi":3.530455,"density":117.5485},"geometry":{"type":"Polygon","coordinates":[[[-87.68465309464744,42.01948477353641],[-87.6844798719411,42.01811473342269],[-87.68428400559313,42.01637916619771],[-87.68418077850406,42.015532962765995],[-87.68415497866918,42.0153922323984],[-87.68404322827988,42.01503337476066],[-87.6837304444007,42.01415796706038],[-87.68262206699099,42.0109979089836],[-87.68193069538187,42.009054946409925],[-87.68176064039402,42.00865003717503],[-87.68122437845842,42.00748422559516],[-87.68008634158554,42.00502384842256],[-87.67987101379042,42.00454373473514],[-87.6794152323789,42.00356618429648],[-87.67709644284608,41.998534132248864],[-87.67683740450626,41.99795931900385],[-87.67501250028106,41.99799274794261],[-87.67500654833279,41.99789772531809],[-87.67489095233917,41.994236750752655],[-87.67483452086414,41.992077755688754],[-87.67484988170871,41.9907615732067],[-87.67676115024759,41.990724440814155],[-87.68051013196414,41.99066464803415],[-87.68684561818084,41.99054850097686],[-87.6880677647875,41.99052434176646],[-87.68967255378443,41.99050000314951],[-87.68961364796644,41.98881356328845],[-87.68954115882828,41.986581961026175],[-87.68946231581917,41.98406511779795],[-87.68944833314637,41.98316768674831],[-87.69143541283829,41.98316056591615],[-87.6944603543895,41.98314588193726],[-87.6985178823381,41.9831214105525],[-87.69970993896129,41.983119955771905],[-87.70052851431949,41.983112725792886],[-87.70233719501894,41.98310690247797],[-87.70506364735128,41.983092773821625],[-87.70690177438159,41.983080467376965],[-87.70702462720251,41.983535118183795],[-87.70718579027164,41.983978910986785],[-87.70726095909157,41.98428409163409],[-87.70739267875068,41.98459495920723],[-87.70743962900734,41.98479592584917],[-87.7075088590674,41.98495283233957],[-87.70750723133747,41.98516785854409],[-87.70769699613214,41.98564391382312],[-87.70782208109173,41.986028097078226],[-87.70787583743478,41.98634564664421],[-87.70775725737303,41.98643907159616],[-87.70794376913364,41.986522743052014],[-87.70815606058474,41.987039259611784],[-87.70821602804384,41.98735382417511],[-87.70828327946558,41.98748034110139],[-87.70831479692423,41.98773281415989],[-87.70847068144782,41.98818799198038],[-87.70851796933812,41.988422740960345],[-87.7084806582251,41.98849177395099],[-87.70859092564534,41.98867321664286],[-87.70868838869688,41.98889649342765],[-87.70877166285561,41.98928066746773],[-87.7088629867989,41.98945478957445],[-87.70891369413657,41.989753908336745],[-87.70897611067463,41.989957757388666],[-87.70898175808617,41.99008374668666],[-87.70907907019783,41.99034541356482],[-87.70936857735315,41.99129721072884],[-87.7093848167276,41.99140519580807],[-87.70951601307793,41.991612972616],[-87.709578274486,41.99190090256734],[-87.70985220794657,41.99280984099015],[-87.70997752637852,41.99334245591451],[-87.71016497483491,41.99402255217782],[-87.7101856388388,41.99423852263831],[-87.71032174228765,41.99480497690455],[-87.7104053385567,41.99529367746104],[-87.71051198550298,41.99582931891685],[-87.71062465140515,41.99670244625362],[-87.71063173504902,41.99702111287625],[-87.71067089518664,41.997365666284466],[-87.70945364625202,41.997387552291805],[-87.70947747120927,42.001171829421786],[-87.7094753103668,42.00451890606266],[-87.70931580128922,42.01054037704411],[-87.709190090645,42.01166807035547],[-87.70901447061559,42.01913110772069],[-87.70849444780087,42.01914891487467],[-87.70450358192767,42.019234747428605],[-87.70414264292144,42.01922686949506],[-87.7021315891811,42.019274855223436],[-87.70016467283939,42.01931009692847],[-87.69878228732512,42.01934667208683],[-87.69736494195145,42.019375599618854],[-87.69209102057245,42.01949043691173],[-87.68999118409614,42.019531293029274],[-87.68912439120035,42.01952942237698],[-87.68838321198963,42.01951911348302],[-87.68629446521622,42.01950763275184],[-87.68465309464744,42.01948477353641]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Uptown","SEC_NEIGH":"UPTOWN","Creation D":"08/01/2014","Street Add":"4523 N MAGNOLIA AVE","Community":3,"COUNT":88,"Area":65095642,"sqmi":2.33485,"density":37.68978},"geometry":{"type":"Polygon","coordinates":[[[-87.67397665771149,41.96152543576247],[-87.67402227549698,41.963254395434866],[-87.67407846747489,41.965068885226344],[-87.67407655787234,41.96526481053057],[-87.67410345027211,41.9663370435858],[-87.67418564080194,41.969175461770426],[-87.6742084651911,41.97004333736197],[-87.67419468469772,41.97025288791781],[-87.67423659003457,41.97168472418665],[-87.67424788704143,41.97188731145099],[-87.67428515118743,41.973273759003064],[-87.67433814548208,41.973455427227975],[-87.67435450986267,41.97421539052399],[-87.67438323431772,41.97509979184605],[-87.67440756779523,41.97610340524937],[-87.66860285487174,41.97618705668094],[-87.66803329756748,41.97619827882459],[-87.66114249176961,41.976303270780036],[-87.65293638361774,41.97642729884024],[-87.6512604016954,41.97645997077322],[-87.65081699738484,41.97652481531228],[-87.64977633117391,41.97678736016096],[-87.64939618438056,41.97684791344977],[-87.64911500253814,41.97684000858708],[-87.64904328091335,41.976814061422104],[-87.64895753506076,41.97696109073609],[-87.64886012839149,41.97704214990636],[-87.64729034405137,41.97774762451641],[-87.64711975745409,41.9777011116461],[-87.64682220209733,41.97756349427253],[-87.64669120396411,41.97747097255158],[-87.64614495940155,41.97783693585166],[-87.64611468822818,41.97780991638975],[-87.64666189579263,41.97744338243612],[-87.64647672710781,41.977227486320054],[-87.64639306863295,41.977045374719985],[-87.6463605994832,41.97684309821786],[-87.64625827198354,41.97346755952188],[-87.64617779330189,41.972976442872074],[-87.64600505190349,41.972498768099335],[-87.64580061679163,41.972078943889045],[-87.64557258381929,41.97166185932964],[-87.64532293027413,41.97125172421012],[-87.64502747944863,41.970798833718526],[-87.64464663162907,41.970316643784024],[-87.6442403364245,41.969828207958],[-87.64367189618483,41.96923956637823],[-87.64314572373044,41.96877307323249],[-87.64262750080572,41.96835423683351],[-87.64274414913022,41.96827162515714],[-87.64301256698562,41.968494367019865],[-87.64327192904311,41.96830580852671],[-87.64296523770705,41.968055367098934],[-87.64280244494901,41.968045771234024],[-87.64261553965994,41.968165178120394],[-87.64255778266734,41.968296244271954],[-87.64197256747443,41.967830049026325],[-87.64152678185056,41.96752495275675],[-87.6407027256433,41.96704109297793],[-87.64048626511833,41.96692491478177],[-87.64011543399434,41.96682981210004],[-87.63900033932735,41.96656791772309],[-87.63802035938701,41.96623062386384],[-87.63742632770206,41.96603534143836],[-87.63644001100893,41.96578169468035],[-87.6358704703281,41.965667973915586],[-87.63509418152552,41.965540067596564],[-87.63452878104128,41.965485283393896],[-87.63409581105158,41.96548231781091],[-87.63355209962008,41.96543155766679],[-87.63297965626619,41.965358584000185],[-87.6325787373928,41.965256221095956],[-87.63199476435709,41.965068382958584],[-87.63201696301086,41.96562216011095],[-87.63197677280161,41.96608491671892],[-87.63192068423169,41.96639126638136],[-87.63184142277126,41.9666947568233],[-87.63169467895632,41.967106341627755],[-87.63147469834949,41.967566818420174],[-87.63130068855621,41.96786577802841],[-87.63100048153203,41.96830153219799],[-87.63097155754257,41.96850434381435],[-87.63106132838077,41.968660626415385],[-87.63123228064535,41.968757746248166],[-87.63153502188761,41.968784569562665],[-87.63167751223159,41.9687410673468],[-87.63182177721427,41.96863289442597],[-87.63189677936204,41.96842956777245],[-87.63186585741289,41.968315275219126],[-87.63175073241675,41.96818743287337],[-87.6318200208625,41.968146171867886],[-87.63192166399524,41.968249480941026],[-87.63198366367428,41.968413469011125],[-87.63196935491176,41.96854120676726],[-87.63187176446634,41.968695218539914],[-87.63167762272859,41.96881466722274],[-87.63145615072162,41.96885790667351],[-87.63122992118785,41.96883193501663],[-87.63101465888774,41.9687248296457],[-87.63091950558892,41.96861991269172],[-87.63086904083082,41.96841367905428],[-87.63091063157897,41.968286328449246],[-87.63116947493481,41.967927241774696],[-87.63142834710511,41.96747817174245],[-87.63157354733076,41.96717074832733],[-87.63169967649371,41.96684858155979],[-87.63179751401906,41.966530961781956],[-87.63188832712386,41.96607600653645],[-87.63192649329238,41.96561691482516],[-87.63190782948264,41.965102647235376],[-87.63184041020338,41.96464535266589],[-87.63167404425829,41.964038469152094],[-87.6314141562792,41.96386899999458],[-87.63121986925117,41.963684669574],[-87.63103895837033,41.96339969245728],[-87.63099581784091,41.96323154804293],[-87.63101489093077,41.96298442211589],[-87.63107378558134,41.96283521614151],[-87.63131415776293,41.962546710594474],[-87.63152831608036,41.962410663474586],[-87.6317256469737,41.96231724558836],[-87.63206188405016,41.96223688572137],[-87.63250551222673,41.96207545698205],[-87.63288937338179,41.96191353922297],[-87.63346280932495,41.961745931958355],[-87.63385385741071,41.96153144178045],[-87.63422352990209,41.96138385360834],[-87.63447966297632,41.961215595063955],[-87.63485102312934,41.96091318049723],[-87.63529098379216,41.96045634745951],[-87.63558823972215,41.96019843214598],[-87.63599304562521,41.95989621735448],[-87.63631640832737,41.959698394617014],[-87.63663933381206,41.959540525314935],[-87.63690116567824,41.95946219962955],[-87.63745763243503,41.95936568067411],[-87.63793967842898,41.95934362811111],[-87.6385415710633,41.95937724007992],[-87.63894925336737,41.95942465860396],[-87.6393299000304,41.95949688535191],[-87.63977033604834,41.959609429610474],[-87.64009875059901,41.95967028514273],[-87.64030032620258,41.95919218757215],[-87.6403687520499,41.95920656120644],[-87.64016089238491,41.95968927430533],[-87.6404716266961,41.95978189432665],[-87.64080307376797,41.959977015718],[-87.64093753529166,41.96022679096578],[-87.64096714554586,41.96037122941878],[-87.64094715774348,41.96048977409237],[-87.6408612547138,41.960649802991234],[-87.640735079217,41.96078632130365],[-87.64050876874225,41.960880474458364],[-87.64026367411098,41.96089447270598],[-87.64012169130558,41.96083228194472],[-87.63968273210878,41.96058443640843],[-87.63932353735508,41.96040306844367],[-87.6390749665031,41.960327582314726],[-87.63882159945945,41.96028749377911],[-87.63847163173855,41.96027590835667],[-87.63816531236054,41.96030761586516],[-87.63764332156194,41.960403244796716],[-87.63731905072217,41.96049323795476],[-87.63703130393671,41.96060205660854],[-87.63676861692754,41.960725736898475],[-87.63639086329569,41.960935625721426],[-87.63606577659658,41.96117086141999],[-87.63582978952674,41.96138449098888],[-87.63556513776494,41.96169451441295],[-87.63534703472932,41.96203783354988],[-87.63533008612819,41.962307238555965],[-87.63537390626868,41.96242912865786],[-87.63551009252981,41.962614750969685],[-87.63572601148157,41.96276833908879],[-87.63592262610527,41.96284456018354],[-87.63631013264656,41.96288793938421],[-87.63684601813573,41.96287565949352],[-87.63790693459646,41.962753881346686],[-87.63789166892325,41.9626935813043],[-87.63836422090252,41.96264229942617],[-87.63837500357089,41.962695520213096],[-87.63956887958916,41.96254206780458],[-87.64005495256194,41.96248806212771],[-87.64118565717902,41.96234779438521],[-87.64163946568644,41.96222388494074],[-87.64185142688183,41.96209865394849],[-87.64206436909109,41.96190968099644],[-87.64217011010392,41.96176037440808],[-87.64227592173863,41.96151589814496],[-87.64228192008058,41.961185421886405],[-87.64219566817971,41.96095702385612],[-87.64194921925638,41.96067793667016],[-87.64167305982438,41.96044353744425],[-87.6415250920017,41.960183428225335],[-87.64152179113718,41.96009090088077],[-87.6416051365927,41.95938762399828],[-87.6410218654985,41.95935112230606],[-87.6410256472396,41.95929722173317],[-87.64162913033861,41.9593311555874],[-87.6416656303809,41.95908719628996],[-87.6417451410393,41.95836430244089],[-87.64161807108802,41.95784490898892],[-87.6415441774193,41.957399106667054],[-87.64152714540874,41.95715177415566],[-87.64142416131494,41.95659153158787],[-87.64134718776879,41.95629137275588],[-87.64128800003778,41.95585614111703],[-87.64122613203456,41.95564484862359],[-87.6411262468285,41.95517907572439],[-87.64102430212411,41.95480280636105],[-87.64399618363731,41.95465419702108],[-87.64430883972359,41.95466276972383],[-87.64509528271023,41.954639749784754],[-87.65130934155997,41.95453503260843],[-87.65454473815758,41.95448837667949],[-87.65659023553513,41.95445283680405],[-87.65746945998569,41.95444703920569],[-87.65982136874223,41.95441239773228],[-87.66131592499137,41.95439409772038],[-87.66224996120175,41.95437810528625],[-87.66287968532947,41.95538448735804],[-87.66370664015628,41.95673114953952],[-87.66447119030305,41.957955818640414],[-87.6646449684754,41.958329768827916],[-87.66518635458382,41.95962755576183],[-87.66590570187005,41.961472746183894],[-87.6659535628065,41.961634627178746],[-87.66848334100669,41.96160461439796],[-87.67397665771149,41.96152543576247]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Norwood Park","SEC_NEIGH":"NORWOOD PARK","Creation D":"08/01/2014","Street Add":"5701 N MEADE AVE","Community":10,"COUNT":20,"Area":12195910,"sqmi":0.437442,"density":45.72034},"geometry":{"type":"Polygon","coordinates":[[[-87.78002228629332,41.997413553897665],[-87.78241669459509,41.99738955285379],[-87.78285175403856,41.997400302578185],[-87.78286947833574,41.996161091481326],[-87.780047654663,41.994891450846836],[-87.77781885277409,41.9938570460622],[-87.77783284504723,41.993770973138254],[-87.77785650451149,41.99223452889019],[-87.77787152154336,41.99159468192303],[-87.77789159228786,41.99011535395128],[-87.77793222753832,41.98821672899209],[-87.77799303583288,41.984936083935345],[-87.77803847345731,41.98290485643694],[-87.778244350677,41.982909086969435],[-87.78102929701002,41.98290473685217],[-87.78331371393313,41.98290354776155],[-87.78377763482557,41.98291463331716],[-87.7843576006885,41.98289962550515],[-87.78542002696712,41.982895453487224],[-87.78773497083313,41.982898685388214],[-87.78775417466242,41.98179508546498],[-87.78779326763402,41.97994274133897],[-87.78787548062152,41.97553670608267],[-87.788009407652,41.968888240071955],[-87.79273301682686,41.96884726649611],[-87.79297581485692,41.9688437443849],[-87.79757866887488,41.96880401092587],[-87.79903504321503,41.968796857491824],[-87.80252463697745,41.96877310813389],[-87.80254225120434,41.96829705117163],[-87.80715600156078,41.96826957885923],[-87.8071458244972,41.96918085747823],[-87.80712175300488,41.96970192733797],[-87.80709465730787,41.971233621185746],[-87.80708050636942,41.972519465388785],[-87.80705996689974,41.973196340403845],[-87.8070689439915,41.97385694000423],[-87.80706668534071,41.97453821392946],[-87.80729193003044,41.97453827836987],[-87.81173354480055,41.97442380416917],[-87.81548357761943,41.97432420699592],[-87.81691746330688,41.97428894906341],[-87.81692364324849,41.97391115858911],[-87.8169533460274,41.97066020014294],[-87.81898673951316,41.97060777524201],[-87.81896778816241,41.97321924541106],[-87.81943251450515,41.973219592566714],[-87.81942609196945,41.97403097678229],[-87.81939805899783,41.974222571876965],[-87.8230533839798,41.974128138113855],[-87.82404023753458,41.97410540748227],[-87.8267353821829,41.974033623049834],[-87.82674256177015,41.973142700750216],[-87.83172914474235,41.97305606532292],[-87.83172260263062,41.973948561866386],[-87.8334184754809,41.97392029154288],[-87.83341371683555,41.97491685240927],[-87.83363013393885,41.97491296480554],[-87.83362664967977,41.97536804926686],[-87.83644116546473,41.97532110048709],[-87.83662673905829,41.97530980926342],[-87.8366108514188,41.97732735733777],[-87.83659471416075,41.9780258476057],[-87.83658161930157,41.97954447842451],[-87.8365808787372,41.986396112425766],[-87.82373473011964,41.98456019267897],[-87.82332742037393,41.98450899479612],[-87.82314344185625,41.985858977589764],[-87.82282896988218,41.988219294913904],[-87.82236229405049,41.99166536325362],[-87.82216370436797,41.993111934755824],[-87.82180964130596,41.99522045516652],[-87.82172257454926,41.99565576361399],[-87.82160914641435,41.99612583294036],[-87.82141432291371,41.99685053033612],[-87.82110958227686,41.9968628370568],[-87.81940806299643,41.99690824996159],[-87.81400755958532,41.9970453865757],[-87.81093528001068,41.99712502909873],[-87.81035351295502,41.99712427418464],[-87.81031907944971,41.99654519533272],[-87.81033339891574,41.99541965227499],[-87.80792864962804,41.99540350486759],[-87.80681811925203,41.99539194064284],[-87.80678281028553,41.99854546497454],[-87.80677237236748,41.99981027208625],[-87.80675853374643,42.00083736165221],[-87.80538846791984,42.0008587024676],[-87.80530871293905,42.00090432615596],[-87.80529455281217,42.00149782251404],[-87.80459615908583,42.00150205471676],[-87.80167910131063,42.00153676956844],[-87.80107851083464,42.00154019841149],[-87.80108609938003,42.000872437003714],[-87.79965934876641,42.000869174734916],[-87.79948090836405,41.99998535019182],[-87.79799163245714,42.000001213829535],[-87.79714196667628,42.00000509632968],[-87.79712617614679,42.000050795752486],[-87.79712422986388,42.000939658956256],[-87.79116627156972,42.00098014176704],[-87.79064802095913,42.00039915045544],[-87.79019396249365,42.000613118749555],[-87.79000372416846,42.00047064600871],[-87.78912496712371,42.00019291453855],[-87.78892646857776,42.000078336202755],[-87.78859591965953,41.99992638618963],[-87.788432674648,41.99978513605521],[-87.78811282177881,41.99966476622167],[-87.78793358114959,41.9996347714011],[-87.78760915038124,41.99964137976906],[-87.78729073363587,41.999757838519024],[-87.78703431077845,41.9998264859639],[-87.78673129224038,41.999837199999135],[-87.78645097983349,41.999752578579916],[-87.7862868586719,41.99973566070369],[-87.78597242670769,41.99974741629682],[-87.78558963345861,41.999721249107914],[-87.785339983582,41.999750683094724],[-87.78497631272845,41.999905475039405],[-87.78462920758571,42.000135948128325],[-87.78428005810514,42.00018886070148],[-87.78381656901672,42.00014284553345],[-87.78327180197401,42.00000829551635],[-87.78317523694878,42.000020181630966],[-87.78302269390711,42.000115497261746],[-87.78292284426671,42.000312079438814],[-87.7829062543419,42.000503901148],[-87.78279949004086,42.00100744280297],[-87.78260538654861,42.00145082421778],[-87.78229708019907,42.00203503798001],[-87.78215208438921,42.002367816283886],[-87.7820346199414,42.002592550501056],[-87.7818078854238,42.002834157826186],[-87.7816444320752,42.00293507218684],[-87.78151044374025,42.00295561332805],[-87.78098753687455,42.00286920814947],[-87.7808268994698,42.00276355229099],[-87.78068075218196,42.00260755486045],[-87.78053776820792,42.002383845776684],[-87.78039344438758,42.00186869667683],[-87.78028931026263,42.001607112418085],[-87.78026805025435,42.00111371393982],[-87.78023102071002,42.00080146520687],[-87.78019717471307,42.000202381954225],[-87.7801450324245,42.000008253337555],[-87.77999137277132,41.99910667588055],[-87.78004355739706,41.9986799855261],[-87.7800896342332,41.998124445456085],[-87.78004250631295,41.99779785908131],[-87.78002228629332,41.997413553897665]],[[-87.83320990189107,41.98365988649729],[-87.83321106309091,41.9835679063537],[-87.83358399143133,41.98357112149772],[-87.83359591866274,41.982666683371804],[-87.83421037089144,41.98265634898158],[-87.83445293739948,41.98267013646307],[-87.83507161269348,41.98267474429274],[-87.8350919945071,41.98114887069541],[-87.83434964499294,41.981155806046374],[-87.83435523849353,41.98084605145555],[-87.83509588280799,41.98083546325993],[-87.83510037430233,41.98049520114998],[-87.82885945676819,41.9806003811231],[-87.82886118827864,41.98032514511524],[-87.82869139119498,41.98032794820085],[-87.82869565319166,41.97928573538183],[-87.82808178632152,41.979291149948104],[-87.8280824571956,41.979122863866465],[-87.82869622894202,41.97911960362787],[-87.82869526461457,41.978838997638],[-87.82864026203245,41.97883993722795],[-87.82863885614606,41.978439501553964],[-87.82971693243664,41.978423215348485],[-87.82971062518875,41.97813147843579],[-87.83002312662661,41.97812615278275],[-87.83005429685065,41.978058145548765],[-87.83003984506895,41.97732887953201],[-87.82960729436451,41.97733620898137],[-87.8296042364637,41.97695912520707],[-87.8336188663953,41.97689061207076],[-87.83362227373968,41.975918463620786],[-87.82659510433136,41.976040019182776],[-87.82442649151585,41.97607478600186],[-87.82434507535402,41.97668593120865],[-87.82396171793036,41.97965790867144],[-87.82363707867572,41.98213887639662],[-87.82352010647865,41.983093285734434],[-87.8252992852238,41.98306788837782],[-87.82527130891977,41.981962752734816],[-87.82813597149725,41.98191858988277],[-87.8281601984692,41.98373456447561],[-87.82817787271647,41.9838422202871],[-87.82831314494706,41.98378880428969],[-87.82856915667159,41.983772367331646],[-87.82953234132414,41.98375675774918],[-87.83199049588364,41.98372380396237],[-87.83295349455345,41.983708219744265],[-87.83320990189107,41.98365988649729]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Streeterville","SEC_NEIGH":"STREETERVILLE","Creation D":"08/01/2014","Street Add":"863 E GRAND AVE","Community":8,"COUNT":14,"Area":17894338,"sqmi":0.641834,"density":21.81249},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60520233379148,41.888469075448654],[-87.607617499587,41.88842950450689],[-87.61045127408688,41.8884797118449],[-87.61142723791372,41.888512453680704],[-87.61178559838334,41.88846492408184],[-87.61325332204103,41.888404295723255],[-87.61442515410695,41.88841163773795],[-87.61526597329514,41.888422716235226],[-87.61584971764786,41.88839074468879],[-87.61692168332758,41.888352925682355],[-87.61725531645996,41.8883283051532],[-87.6180118355836,41.888311038710775],[-87.61908447877038,41.888433028168784],[-87.62120026804487,41.88865563604029],[-87.62271368559637,41.88883592241056],[-87.62360708350964,41.88890516861959],[-87.62385808886262,41.888893327765054],[-87.62400652170282,41.88882933572185],[-87.62372631476812,41.88985308583364],[-87.6238197791462,41.89254829717968],[-87.62391747123517,41.89653327147559],[-87.62383885482663,41.89695195067189],[-87.62374367550363,41.89775284249361],[-87.62373674082322,41.89837924371687],[-87.62375843828998,41.89920388857372],[-87.6238242053269,41.90050324466998],[-87.62375076860168,41.900834165246586],[-87.6236898974939,41.900836436583354],[-87.62028150357877,41.90094861007768],[-87.61912520509883,41.90097419566296],[-87.61897908818044,41.90077210167325],[-87.61880337464169,41.90048404404186],[-87.61795057134002,41.89921240782693],[-87.61720092230355,41.89806404875557],[-87.6168485736818,41.897550243349464],[-87.61636157941021,41.89688186368194],[-87.61587236572714,41.89612710833572],[-87.6149065215252,41.89467120825362],[-87.61368620759772,41.8931290179181],[-87.61336961145895,41.89323342743591],[-87.61286701300382,41.893361531749804],[-87.6125548312665,41.893412865477536],[-87.61203014095952,41.89332688767943],[-87.61188402500837,41.89354323091156],[-87.61138013512523,41.894333367868],[-87.61135186175416,41.8943946881422],[-87.61082778274786,41.895202148111274],[-87.6103831566162,41.895926544961334],[-87.61017819325056,41.896213975262285],[-87.61002733410693,41.896244007532644],[-87.6088182407398,41.8962678339815],[-87.6080107638491,41.89627453698722],[-87.60785261833405,41.896253697163736],[-87.60723489376521,41.89625355248192],[-87.60655409233529,41.89628349371485],[-87.60586507648563,41.89629600814656],[-87.60566744451789,41.89628523320339],[-87.60513805058729,41.896295296639224],[-87.60499909240286,41.89632814227453],[-87.60402978314289,41.89633143014138],[-87.60312720511945,41.896364415975846],[-87.60242598467323,41.89637131515189],[-87.60234267408384,41.89622366676799],[-87.60232289068158,41.89489223068053],[-87.60231900147025,41.8941768389259],[-87.60229307146766,41.89331367475864],[-87.60235195550482,41.89326459094512],[-87.60429304682455,41.893235821505804],[-87.60982234546773,41.89314576495557],[-87.6097959852677,41.89222059962665],[-87.60445691873059,41.89230634700978],[-87.60303660831649,41.892332943107334],[-87.6009113469987,41.89236537359328],[-87.60078302709867,41.89244194196846],[-87.60059234679399,41.892415204580765],[-87.60058211452439,41.89224038639063],[-87.59854931958759,41.89227429618697],[-87.59852438757756,41.89145029032185],[-87.60056686476624,41.89141523469188],[-87.60056133694681,41.891111604620505],[-87.6007190591409,41.89107493232379],[-87.60088992651572,41.89115093937532],[-87.60389620674759,41.89110127767185],[-87.60452218448462,41.891094769514254],[-87.60953544572403,41.89101294800675],[-87.60948553117764,41.88938999387086],[-87.60769030638745,41.88937163810267],[-87.6076713489943,41.8892262386705],[-87.60765313394894,41.888674476711124],[-87.60751403594854,41.888640338016685],[-87.6054383334551,41.88867267095146],[-87.60519850948306,41.888715195564096],[-87.60514628349198,41.88867652768437],[-87.604744372983,41.888681497350234],[-87.6047341553851,41.888569166600405],[-87.60513424165292,41.88855971147112],[-87.60520233379148,41.888469075448654]]],[[[-87.6247637870586,41.88889545316219],[-87.62496824493145,41.88890284331983],[-87.62519042921969,41.88887026714521],[-87.62520160176358,41.88886671947762],[-87.6252877068359,41.88928017040438],[-87.62529519402229,41.890025578810686],[-87.62532710019515,41.890229288212424],[-87.62533047194148,41.89057914443175],[-87.62537320679648,41.89153840885105],[-87.62536978081451,41.891828700854376],[-87.62542327645798,41.8934433278994],[-87.62543540166573,41.89420127834793],[-87.62547154633164,41.89523209889193],[-87.62548071347486,41.8957218664003],[-87.62550478169764,41.89671273849245],[-87.6256139178218,41.89671198580107],[-87.625867045485,41.89731581890708],[-87.62610958484186,41.89783457365258],[-87.62653911053445,41.89870126775807],[-87.62676824895458,41.89911832393635],[-87.626849708463,41.899165625569374],[-87.62696464388712,41.89955169795687],[-87.62731574520427,41.900346740291795],[-87.62751090523423,41.900757762983076],[-87.62532219120257,41.90079648504265],[-87.6246786000566,41.90079954029029],[-87.62450367033325,41.90080606893057],[-87.62454737333783,41.900480217418654],[-87.62453328056787,41.90001231278662],[-87.62445079876935,41.897888630720416],[-87.62451225563214,41.89755793901427],[-87.62457649699432,41.89697536250707],[-87.6246493351525,41.89648640248064],[-87.62461796184435,41.89496759958512],[-87.6245372276286,41.89181472637689],[-87.6244935901029,41.890011556873354],[-87.6247637870586,41.88889545316219]]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"South Shore","SEC_NEIGH":"SOUTH SHORE, GRAND CROSSING","Creation D":"08/06/2014","Street Add":"7743 S PAXTON AVE","Community":43,"COUNT":27,"Area":81812716,"sqmi":2.934458,"density":9.201017},"geometry":{"type":"Polygon","coordinates":[[[-87.5920985689942,41.7732754629642],[-87.58663741644101,41.773330255627975],[-87.58629615363863,41.77333929086786],[-87.58594587222052,41.77334856390429],[-87.58546499481551,41.773339945957396],[-87.58435680437576,41.77335561399298],[-87.57745046552473,41.77343873191525],[-87.57687298121579,41.77345268646947],[-87.57592731080202,41.773461274963914],[-87.5750237047271,41.77346231210559],[-87.57317173512037,41.773485721367834],[-87.5725803015915,41.7734887495401],[-87.57021646786174,41.77351972510876],[-87.56727627017524,41.77355024060897],[-87.56681082630504,41.77355896339619],[-87.56644818641274,41.77379108279014],[-87.56630751352148,41.7736655134497],[-87.56629494943601,41.77347080433081],[-87.56593727275838,41.77313432625821],[-87.56565238401274,41.77292275925501],[-87.56535593568569,41.77275831604089],[-87.5650008531246,41.7725309098712],[-87.56490423874985,41.772517091101264],[-87.56471638076646,41.77240770943232],[-87.56437192461134,41.77227312993137],[-87.56407321143567,41.77211470540202],[-87.56398185527802,41.772090493589076],[-87.56364100512472,41.77208381923844],[-87.5635808428073,41.77202578594311],[-87.56359189091268,41.77183760144351],[-87.5635208474677,41.77170869295423],[-87.5634847972855,41.7713511451653],[-87.56342091775055,41.7711750822786],[-87.5634677226594,41.77106233064963],[-87.56324006323432,41.770358267180875],[-87.56313342794475,41.77020167666622],[-87.56292501971922,41.76997250266865],[-87.56264164793211,41.76957487568688],[-87.56251732878627,41.76942584996735],[-87.5624291689878,41.769257308133255],[-87.56233766293131,41.76900092647142],[-87.56212426995948,41.76888258742615],[-87.56179470292454,41.76873108577607],[-87.56154000150356,41.768633873004546],[-87.56092358270956,41.76843763011676],[-87.56052670428365,41.768397089365855],[-87.56032238057657,41.76843962369027],[-87.5601699957543,41.76855276049293],[-87.55981159872402,41.76897077358484],[-87.55966329997722,41.769109733267655],[-87.55953563332217,41.769179126883415],[-87.5595202196834,41.76893642820711],[-87.55943410919632,41.768720147222695],[-87.55941307724063,41.7685180254831],[-87.55944721439417,41.768056666283016],[-87.55952001926667,41.76797702311034],[-87.55951856432125,41.767854069351245],[-87.55943699988185,41.767747590317754],[-87.55942907297766,41.767187152670374],[-87.55939214224576,41.76678294392854],[-87.55953887944642,41.766712581302585],[-87.55952706269015,41.766597790053076],[-87.55963982763495,41.76654805426819],[-87.559969597829,41.76649813331763],[-87.56018070420122,41.76643972862407],[-87.56044323248949,41.766250492340475],[-87.56055217574792,41.76609150685507],[-87.56062305372221,41.765805479782614],[-87.56061181542356,41.76564239379712],[-87.56051367728729,41.76538980767284],[-87.56035832217582,41.76532344865802],[-87.5601448612124,41.76508984405746],[-87.56022020451587,41.76504260067508],[-87.56002213144089,41.76490122665409],[-87.55984246267607,41.76495808639256],[-87.55959001973626,41.764713983184166],[-87.5595995371205,41.76463262412343],[-87.55951706467353,41.76453190226845],[-87.55974234951988,41.76439118246581],[-87.55960877112375,41.764221042149174],[-87.55943939424871,41.76408040922144],[-87.55928041519907,41.7640413846546],[-87.55897906978686,41.763752575647864],[-87.55845597502811,41.764017522391825],[-87.55757247557592,41.7631150822828],[-87.55764967626725,41.762995787974624],[-87.55764110569696,41.762846165858555],[-87.55716624223054,41.7626069492721],[-87.55686964510546,41.762430216264434],[-87.55671948595585,41.76226819364589],[-87.55653594539264,41.76213890354769],[-87.55626159523496,41.761992973959444],[-87.55607856965325,41.76182112206889],[-87.55573391000125,41.76162759519091],[-87.55559338548238,41.76157908621804],[-87.55526973775301,41.76162126924916],[-87.55487554083463,41.76178737301653],[-87.5547674848206,41.7617299165384],[-87.5546696052626,41.761488660987204],[-87.55434745474506,41.761052879037635],[-87.55425114506488,41.761033481915135],[-87.55410598169719,41.76081385929014],[-87.55390680198929,41.76071464723453],[-87.55269391758833,41.76018636879029],[-87.55225173843914,41.75997523622231],[-87.55179680070262,41.75981297336896],[-87.55106913380818,41.75952124240213],[-87.55033870652979,41.7592551194452],[-87.54954549479649,41.75895637351771],[-87.54899638447398,41.758796502976324],[-87.5487088663779,41.75872620712988],[-87.54840100170952,41.758692435057846],[-87.5479742287532,41.75867464475775],[-87.54754349033253,41.75872054771758],[-87.54724584388217,41.75872054237192],[-87.54693676057256,41.758771611619245],[-87.54685073563739,41.75882000842218],[-87.54659034496746,41.758878462885654],[-87.54606427074683,41.759095472786385],[-87.54550977451842,41.75936157316579],[-87.54528236114395,41.759537350071575],[-87.54493547238363,41.7597511650957],[-87.54450395471598,41.76007244224259],[-87.54424523047685,41.76019177096053],[-87.54415815389423,41.76019701821312],[-87.54403440791314,41.76011383933781],[-87.54385300612692,41.76011166017302],[-87.54434372675976,41.76058279542039],[-87.54446499700835,41.76061974360994],[-87.54644351840581,41.76061552811972],[-87.54641082951986,41.76065709954014],[-87.54600150276359,41.760647352396695],[-87.5456377205576,41.7606597603618],[-87.54443362694032,41.760676197864434],[-87.54428858245764,41.760623197732485],[-87.54328026011784,41.75970071634131],[-87.54318496969428,41.759703272126806],[-87.54304101126101,41.75960085315803],[-87.54256095659004,41.75912805570637],[-87.54253283878874,41.75893455466369],[-87.54262731203345,41.75873857513281],[-87.54164910960694,41.75782402733996],[-87.54137601974037,41.757836222906036],[-87.541148459724,41.757794011359266],[-87.54060672737492,41.75730511043262],[-87.54062365902446,41.7572277563708],[-87.54092875995771,41.757030342329],[-87.54099638468016,41.75703504343696],[-87.54180021431561,41.75653610015907],[-87.54249525042978,41.75614793108852],[-87.5428074399647,41.755950514415446],[-87.54376165364515,41.75538264008198],[-87.54394554212783,41.75525566273073],[-87.54397811710436,41.75515222351072],[-87.54399539346068,41.75516375573087],[-87.54494620222901,41.754435155788606],[-87.54526075778331,41.754362541628495],[-87.54656290319477,41.753870965261264],[-87.5477399938112,41.75453010385062],[-87.54870689655719,41.75409316417786],[-87.54874882993538,41.7540188880017],[-87.55016012940615,41.75316960679615],[-87.55181366150627,41.75217908210836],[-87.55228728193387,41.75191863856876],[-87.55479256070534,41.75188629740289],[-87.55943818022438,41.7518236084188],[-87.5607811990554,41.7518026790365],[-87.56427666345502,41.751758180648146],[-87.56691216539912,41.751718764899586],[-87.56810823455803,41.75170922862198],[-87.56931019334468,41.75169132149981],[-87.5845375421394,41.751498589505985],[-87.58565529833406,41.75150194330308],[-87.58582440079178,41.751505559314495],[-87.58582075286999,41.75167151746407],[-87.58889676250476,41.753886109459074],[-87.59108957082408,41.755466962184336],[-87.59306193471095,41.75688178942047],[-87.59454951789661,41.75795356006138],[-87.59492934309148,41.75818611147661],[-87.59563037137984,41.758695855166735],[-87.59537967522233,41.75869662259434],[-87.59506736075714,41.76020323388619],[-87.59458211125158,41.762346294102635],[-87.59332411468355,41.762354440596745],[-87.59337816616657,41.764354942737306],[-87.59338957871579,41.76502374602403],[-87.59337657175926,41.76506699274468],[-87.59329946094205,41.76600540676922],[-87.592281804026,41.76601157084554],[-87.59235103807367,41.767821404386375],[-87.59239410515197,41.76989896201154],[-87.59274066243938,41.769901004442126],[-87.59274594806593,41.77027803567196],[-87.59249476961092,41.77131958994726],[-87.59224355499047,41.77248292171033],[-87.59222017989312,41.7727222103209],[-87.5920985689942,41.7732754629642]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Chatham","SEC_NEIGH":"CHATHAM,BURNSIDE","Creation D":"08/03/2014","Street Add":"8636 S INGLESIDE AVE","Community":44,"COUNT":23,"Area":82320670,"sqmi":2.952678,"density":7.789538},"geometry":{"type":"Polygon","coordinates":[[[-87.59534740898852,41.736782373181036],[-87.60039359191387,41.73671025494308],[-87.60049055244387,41.736076765734765],[-87.60075217736328,41.734938173611],[-87.60116059580858,41.733131933563236],[-87.60184679354865,41.73303314237904],[-87.60201876399134,41.73303053550756],[-87.60294454993061,41.72897566609864],[-87.60327306000767,41.727551472964024],[-87.60293014967178,41.727556133950316],[-87.60335385600379,41.72572429348441],[-87.60306164118602,41.725729349927576],[-87.60358543434427,41.72342734638388],[-87.6040720903002,41.72351585278714],[-87.60450702502789,41.72361397338808],[-87.60451813827855,41.72312973097551],[-87.60449169337411,41.72254809439688],[-87.60523483725557,41.72273003654928],[-87.60589304545299,41.72292306938333],[-87.60642377374151,41.72310371079004],[-87.60673637242701,41.72322190963213],[-87.60723366743942,41.72343126096611],[-87.60757359206758,41.72358890134984],[-87.60937166880085,41.72448492888755],[-87.60939105631898,41.724944229802084],[-87.60960860156435,41.725098925050986],[-87.61035498396076,41.72545538986846],[-87.61065641824369,41.725584320381735],[-87.61082749630933,41.72560037989057],[-87.61158426748555,41.72558793882326],[-87.61222447312966,41.72591599734662],[-87.61427276571986,41.726933770034215],[-87.61430105545773,41.727888893400426],[-87.61462462494897,41.72804425267032],[-87.6157017094665,41.72849316207898],[-87.61636604045904,41.72871033679098],[-87.61696489610821,41.72892709892944],[-87.61734633793712,41.729052284393056],[-87.61791304931026,41.729195088141154],[-87.6185230907946,41.72939510315539],[-87.61919016105425,41.729541266450376],[-87.61917672453728,41.72911946704599],[-87.62285992173837,41.72906167180493],[-87.62361583413069,41.72904581574861],[-87.6256714057414,41.72901930158696],[-87.62578287865298,41.729176801448155],[-87.62645482459992,41.72989610528854],[-87.62904079532548,41.732617930434124],[-87.62904593662297,41.73267507301138],[-87.63068355616184,41.73422537214365],[-87.63093166243308,41.73441115041273],[-87.63096961179386,41.73449888998605],[-87.63116107031016,41.73470677515473],[-87.63125382952178,41.73475625905032],[-87.63173394466604,41.73517602540799],[-87.63197524646026,41.73531048788459],[-87.63210294587823,41.73541352032613],[-87.63272051871775,41.73597232045124],[-87.63266060990999,41.7363800111501],[-87.63251248849846,41.736439825417094],[-87.63270616324584,41.7366554058209],[-87.63286295318302,41.7368937446421],[-87.63305891948322,41.737235919736605],[-87.63357217024047,41.7382630174393],[-87.63361077025016,41.738377827459026],[-87.63365179762211,41.73869092864329],[-87.63375249240373,41.73903458050816],[-87.63396298438572,41.73947426538414],[-87.6340083503104,41.739556527754566],[-87.63403202612909,41.74079709964957],[-87.63404014220481,41.74086970857442],[-87.63410781962709,41.74349809316972],[-87.63422572593885,41.74351174071584],[-87.63463955196163,41.74365213193038],[-87.63594552887565,41.74416216652269],[-87.63608122319201,41.74397835111496],[-87.6364772315056,41.74351783934349],[-87.6372922129424,41.74348161574514],[-87.63919014216546,41.743434070656924],[-87.63909216858808,41.745173411507814],[-87.6390623705381,41.74705284781699],[-87.63906613816654,41.747935918878],[-87.63909665928277,41.748870945561244],[-87.63948538880078,41.74885758475661],[-87.63945226568126,41.75048717706985],[-87.63936877346053,41.75071054303825],[-87.63685064329113,41.75074345106799],[-87.63516814822097,41.75076979383424],[-87.63440347340887,41.75077628661476],[-87.63327002628998,41.75079896995628],[-87.62725768803018,41.75090433395417],[-87.62652308022871,41.75093582243792],[-87.6258244432412,41.75092641778804],[-87.62472571472452,41.75094972430684],[-87.6238500045196,41.75097541334347],[-87.62319936440896,41.75097597676716],[-87.6200992459605,41.75102779663297],[-87.61797181537202,41.75106627320267],[-87.6157297296067,41.75110327175005],[-87.61479850559756,41.75111474998163],[-87.61341293646119,41.75114521055817],[-87.61031249255203,41.75119528205995],[-87.60797845744719,41.751238118590265],[-87.60582988423155,41.75127192825088],[-87.6055211969027,41.75128224029206],[-87.60362773435088,41.751305330024366],[-87.59720802064982,41.751369385249866],[-87.59738311528395,41.75059829201197],[-87.59708022174252,41.75052671479961],[-87.59718104170669,41.750082097820254],[-87.59722354328002,41.74968993491734],[-87.59761805481516,41.747955661219194],[-87.59767715048802,41.74747372832057],[-87.59783380212714,41.74679208572128],[-87.59728074012394,41.74679610431082],[-87.59733963103317,41.7463443440757],[-87.597451379741,41.74534304581933],[-87.59761353722088,41.74405816816055],[-87.59787471991318,41.74405481819894],[-87.59783213286937,41.74332636151776],[-87.5978822896272,41.74226257809906],[-87.59786692507528,41.741842943987706],[-87.59777666567945,41.74128355687026],[-87.59769856967335,41.74098289838943],[-87.59748640769148,41.74042993423668],[-87.59722138680549,41.73993391842087],[-87.59591152581592,41.737727672180654],[-87.59534740898852,41.736782373181036]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"South Chicago","SEC_NEIGH":"SOUTH CHICAGO","Creation D":"08/07/2014","Street Add":"8616 S ESCANABA AVE","Community":46,"COUNT":15,"Area":93272185,"sqmi":3.345487,"density":4.483652},"geometry":{"type":"Polygon","coordinates":[[[-87.54397811710436,41.75515222351072],[-87.54393347809616,41.755046793545496],[-87.54417809525323,41.75479695927636],[-87.54415139267888,41.754616256346736],[-87.54441321238671,41.75413157279716],[-87.544340897384,41.75397056260067],[-87.54414661294162,41.753444711136986],[-87.54371608549931,41.75253418615548],[-87.54351442717814,41.752245939240545],[-87.54318778205524,41.75198924179772],[-87.54302699713523,41.75191546722158],[-87.54293804411923,41.751928137714735],[-87.54233095825283,41.75191767503354],[-87.54113896635121,41.75193188331647],[-87.54094110434816,41.75191709954529],[-87.540649707873,41.7518554279224],[-87.54048966675278,41.7518644498245],[-87.54021528712057,41.751769140496],[-87.53991769305847,41.75163352086266],[-87.53891480481424,41.75130904855113],[-87.53850128352367,41.751118423754875],[-87.53772478816546,41.750837714023206],[-87.53758935066492,41.75076564389099],[-87.5373524773038,41.750711285136404],[-87.53689001151439,41.75049633000671],[-87.53623876083564,41.75023859766189],[-87.5360137241877,41.75016368142277],[-87.5357213242537,41.75001834442468],[-87.53548652685713,41.74987656291398],[-87.53504714174213,41.749722245499505],[-87.53438081454709,41.7494463121174],[-87.5338991656095,41.74931109859491],[-87.53339476555819,41.749086946071905],[-87.53319402011813,41.74902188107484],[-87.53273625540909,41.748820004804564],[-87.53208240262991,41.74859151213656],[-87.53183843392257,41.74846631653979],[-87.53137823911028,41.74828362908559],[-87.5309482981291,41.7480259556576],[-87.53091177052535,41.74795764251183],[-87.53076476726163,41.74728535984291],[-87.53075739357946,41.74711241807955],[-87.53070563847359,41.746913369327714],[-87.53066980532229,41.746612892450564],[-87.53056515117134,41.74591255716365],[-87.53007901134387,41.74240383812561],[-87.5300372278806,41.74219890350182],[-87.53007521503037,41.742114562010244],[-87.52999053557791,41.741973434332536],[-87.53004226805426,41.74192387746474],[-87.53003987264117,41.74179268285765],[-87.52997880505565,41.7416005113089],[-87.5298466042598,41.741456252053524],[-87.5297297949224,41.74141026888545],[-87.52949622781748,41.74139820178372],[-87.52448335775313,41.74145086675046],[-87.52446332497682,41.741385851277734],[-87.5298866681021,41.74132875755251],[-87.53010952702007,41.74123717468347],[-87.53018877759618,41.74126404625095],[-87.53068695841972,41.74111672839792],[-87.5317600150964,41.74110116704475],[-87.53985520153404,41.74101300684815],[-87.53983004356455,41.74049690456305],[-87.53886926602404,41.74050069338504],[-87.53418068717228,41.74055819204046],[-87.53140650934242,41.74059374883158],[-87.52985663784874,41.740607317991696],[-87.52983432124338,41.74034593186331],[-87.52971286545538,41.739357737793085],[-87.52954684124947,41.73809186472161],[-87.52948549033613,41.7378345682364],[-87.52942512792416,41.73716025488712],[-87.52933471787178,41.736553872508416],[-87.52928084305144,41.735935368861625],[-87.52917268062474,41.73533081046083],[-87.52912182774479,41.73497235031063],[-87.5291499449741,41.734897709930664],[-87.5290630281693,41.73429955648401],[-87.52908249125595,41.7342548510573],[-87.52899210412613,41.733699950339854],[-87.52925100995012,41.73301356873034],[-87.53286496938858,41.73152123369246],[-87.53672913009522,41.72985970854452],[-87.53725609509716,41.729622115775875],[-87.53941395633697,41.72879354703084],[-87.54042213403228,41.72828169545177],[-87.54139893639129,41.72758576760823],[-87.5419020286948,41.72713590207119],[-87.5422517760694,41.72657920063814],[-87.54299695620738,41.72402810939932],[-87.54316197689667,41.723313319286675],[-87.54317679419086,41.723125835191546],[-87.54314429934144,41.7228617528358],[-87.54558842614662,41.72282921711961],[-87.54567696315205,41.72282057819379],[-87.54611621709968,41.723167502645026],[-87.54761213726607,41.72424319259032],[-87.5482042753303,41.72465079093226],[-87.54917604936409,41.72529575334571],[-87.55014315176282,41.725989140175436],[-87.55088288606844,41.726529045786705],[-87.55230200081816,41.72754383137223],[-87.56161546898355,41.73426030795445],[-87.56570062502061,41.73719771954058],[-87.56694127498102,41.73809264735893],[-87.56997650191212,41.74027185222163],[-87.57228196014759,41.741934743945706],[-87.57675350580614,41.74514843564374],[-87.5810306321022,41.74822876087026],[-87.58263198369416,41.749375677594095],[-87.58475268177624,41.75090080081694],[-87.58565529833406,41.75150194330308],[-87.5845375421394,41.751498589505985],[-87.56931019334468,41.75169132149981],[-87.56810823455803,41.75170922862198],[-87.56691216539912,41.751718764899586],[-87.56427666345502,41.751758180648146],[-87.5607811990554,41.7518026790365],[-87.55943818022438,41.7518236084188],[-87.55479256070534,41.75188629740289],[-87.55228728193387,41.75191863856876],[-87.55181366150627,41.75217908210836],[-87.55016012940615,41.75316960679615],[-87.54874882993538,41.7540188880017],[-87.54870689655719,41.75409316417786],[-87.5477399938112,41.75453010385062],[-87.54656290319477,41.753870965261264],[-87.54526075778331,41.754362541628495],[-87.54494620222901,41.754435155788606],[-87.54399539346068,41.75516375573087],[-87.54397811710436,41.75515222351072]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Roseland","SEC_NEIGH":"WASHINGTON HEIGHTS,ROSELAND","Creation D":"08/06/2014","Street Add":"9410 S MICHIGAN AVE","Community":49,"COUNT":26,"Area":13431370,"sqmi":0.481756,"density":53.96922},"geometry":{"type":"Polygon","coordinates":[[[-87.60449169337411,41.72254809439688],[-87.60448161243,41.72204432475851],[-87.60366023061798,41.72203882728776],[-87.60318224047138,41.72204834956648],[-87.60349191071325,41.72066650591962],[-87.60378967734721,41.71943241144352],[-87.6043521563718,41.716975645555],[-87.60533480868516,41.71265232735986],[-87.60619937955937,41.70887025386274],[-87.60663180245861,41.706914750409936],[-87.60683024563393,41.70600176128824],[-87.60722470091702,41.70427313482762],[-87.6073295807254,41.703863115626575],[-87.60749723109117,41.70308145948448],[-87.60807947131136,41.700544329143426],[-87.60814838480226,41.7003066662944],[-87.60826256874569,41.69980396754917],[-87.60832270335933,41.69947398490932],[-87.60894247578312,41.696744927446815],[-87.60965901157746,41.69361986415305],[-87.60975778865686,41.69323194392981],[-87.61009348031047,41.69169802802152],[-87.61062866830802,41.68935847709656],[-87.6112829691215,41.686476787164025],[-87.61141692720835,41.685936418774254],[-87.61143851379498,41.68572474672229],[-87.6113954673734,41.68544234978132],[-87.61227916267306,41.68543388394388],[-87.61777531103867,41.68537868768085],[-87.62020485133,41.685349166198655],[-87.62103118618651,41.685344685604576],[-87.62618814337817,41.685279932016265],[-87.62669991791198,41.685276109265764],[-87.629146798994,41.685243678668414],[-87.63172791076097,41.68521602250939],[-87.63333002896997,41.68519247559143],[-87.6350762508189,41.68517159349831],[-87.6358233976991,41.68515675553934],[-87.63651616444515,41.685153383658516],[-87.63822431375094,41.68513216798812],[-87.63872136945372,41.685118130957996],[-87.63955394642161,41.68511498194047],[-87.64215204650583,41.685082120447184],[-87.6423146834307,41.69030213327754],[-87.64234307819531,41.69104615552929],[-87.64239183572703,41.69289813250161],[-87.64244159908769,41.694293649446784],[-87.64248572819456,41.69580571216578],[-87.64258149009731,41.69874357177679],[-87.64260803433334,41.69964094612875],[-87.6427399684757,41.70384655975457],[-87.64283396928677,41.70691708829667],[-87.63313251342746,41.70704266074295],[-87.63316689891309,41.70797460607203],[-87.63318540918202,41.70888446233078],[-87.63327263343153,41.71168900639117],[-87.63331108647854,41.713419192527226],[-87.63333617298096,41.71435618815046],[-87.63333574431795,41.714645315986395],[-87.63335743269207,41.71522386620236],[-87.63338001489477,41.71613854866771],[-87.6334166421312,41.717952631005765],[-87.63353297476287,41.721591907073574],[-87.63364365759396,41.72522007496831],[-87.63364623470058,41.72578439067751],[-87.63368674028148,41.72698904890166],[-87.63373383514153,41.728852725292896],[-87.63374238946697,41.72992134505504],[-87.63379764451794,41.72997793989698],[-87.63381543744111,41.7304061612001],[-87.63385500033428,41.7308832726675],[-87.63390665153311,41.73170717805759],[-87.63395747309374,41.73289028657783],[-87.63406893101374,41.73519652992753],[-87.63412816477782,41.73594231372028],[-87.63407976672525,41.73596925703623],[-87.63381038994625,41.73594828097585],[-87.63384692703947,41.737380679424156],[-87.6338828484795,41.73820659248985],[-87.63394025274496,41.73861447197032],[-87.63408106198757,41.73914463747513],[-87.63403720450566,41.73917661647778],[-87.63396298438572,41.73947426538414],[-87.63375249240373,41.73903458050816],[-87.63365179762211,41.73869092864329],[-87.63361077025016,41.738377827459026],[-87.63357217024047,41.7382630174393],[-87.63305891948322,41.737235919736605],[-87.63286295318302,41.7368937446421],[-87.63270616324584,41.7366554058209],[-87.63251248849846,41.736439825417094],[-87.63266060990999,41.7363800111501],[-87.63272051871775,41.73597232045124],[-87.63210294587823,41.73541352032613],[-87.63197524646026,41.73531048788459],[-87.63173394466604,41.73517602540799],[-87.63125382952178,41.73475625905032],[-87.63116107031016,41.73470677515473],[-87.63096961179386,41.73449888998605],[-87.63093166243308,41.73441115041273],[-87.63068355616184,41.73422537214365],[-87.62904593662297,41.73267507301138],[-87.62904079532548,41.732617930434124],[-87.62645482459992,41.72989610528854],[-87.62578287865298,41.729176801448155],[-87.6256714057414,41.72901930158696],[-87.62361583413069,41.72904581574861],[-87.62285992173837,41.72906167180493],[-87.61917672453728,41.72911946704599],[-87.61919016105425,41.729541266450376],[-87.6185230907946,41.72939510315539],[-87.61791304931026,41.729195088141154],[-87.61734633793712,41.729052284393056],[-87.61696489610821,41.72892709892944],[-87.61636604045904,41.72871033679098],[-87.6157017094665,41.72849316207898],[-87.61462462494897,41.72804425267032],[-87.61430105545773,41.727888893400426],[-87.61427276571986,41.726933770034215],[-87.61222447312966,41.72591599734662],[-87.61158426748555,41.72558793882326],[-87.61082749630933,41.72560037989057],[-87.61065641824369,41.725584320381735],[-87.61035498396076,41.72545538986846],[-87.60960860156435,41.725098925050986],[-87.60939105631898,41.724944229802084],[-87.60937166880085,41.72448492888755],[-87.60757359206758,41.72358890134984],[-87.60723366743942,41.72343126096611],[-87.60673637242701,41.72322190963213],[-87.60642377374151,41.72310371079004],[-87.60589304545299,41.72292306938333],[-87.60523483725557,41.72273003654928],[-87.60449169337411,41.72254809439688]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"North Center","SEC_NEIGH":"NORTH CENTER","Creation D":"08/01/2014","Street Add":"2011 W BRADLEY PL","Community":5,"COUNT":247,"Area":57054167,"sqmi":2.046419,"density":120.6986},"geometry":{"type":"Polygon","coordinates":[[[-87.673364154085,41.932342745477555],[-87.6759370385603,41.93231305894172],[-87.6828401597124,41.93222871287948],[-87.68284108068192,41.93232839618211],[-87.68305815229886,41.93275695593636],[-87.68341163184647,41.93333905825297],[-87.68353065326616,41.933442063909496],[-87.68426865133685,41.93361692872355],[-87.6845541738826,41.933635090077374],[-87.68465564623054,41.93367128339109],[-87.68505850357917,41.933690819825664],[-87.6852576230493,41.933785302302326],[-87.68549344247599,41.93379780209393],[-87.6856698168619,41.93390285797949],[-87.68596769200936,41.934033488786454],[-87.6866022033693,41.93466738460833],[-87.68682507052979,41.93490738692474],[-87.68692443156118,41.93513475618259],[-87.6870279778065,41.93527164451764],[-87.68740070063097,41.9356161561724],[-87.68767309096333,41.935898815770074],[-87.6879867878435,41.936103941181344],[-87.688149798775,41.93619537401946],[-87.68848742048344,41.93642830657907],[-87.68877811597498,41.93648528948593],[-87.68924836714214,41.93651517878331],[-87.68993368777703,41.936608345523],[-87.6900723604705,41.93664833742308],[-87.69041339021797,41.93690493858165],[-87.69071708152161,41.93739944568488],[-87.69078107129265,41.93754209159551],[-87.69087243021211,41.93785445593425],[-87.69105685595741,41.93823965101079],[-87.69148630576937,41.93879180194483],[-87.69166962942252,41.938924604013664],[-87.69190251550512,41.9390007673102],[-87.6923427589074,41.93921774179679],[-87.6924316162682,41.93929636574271],[-87.69243859978685,41.93938081689392],[-87.69279425360581,41.93952272929665],[-87.69305950738494,41.939776951339844],[-87.693310401532,41.93993101106766],[-87.69363310773636,41.94025506307195],[-87.69366986139272,41.940361853283214],[-87.69379258612594,41.94051291983659],[-87.69387038217623,41.94069469136449],[-87.69408237922723,41.94102317478471],[-87.69417589441666,41.94112171887621],[-87.69431056597887,41.9413391242287],[-87.69445825513161,41.94151184420779],[-87.69490982292015,41.942180624643576],[-87.6949952870254,41.942342213118785],[-87.69527864252802,41.94276631503123],[-87.69539566057061,41.94309640855281],[-87.69545170046311,41.94331142745856],[-87.69548115913712,41.943579015067506],[-87.69618841060172,41.94657265590127],[-87.6962044731134,41.946695970194504],[-87.69622117852391,41.947017839718434],[-87.69631706189767,41.94742248516361],[-87.69637168786957,41.947736232206914],[-87.69646617608969,41.94794885702482],[-87.6965748465054,41.94839127808474],[-87.69668220668484,41.948906413703256],[-87.69686355982492,41.9500062574581],[-87.69683994713544,41.950240235445236],[-87.69678764389724,41.95039093211777],[-87.69653765253521,41.95085040933944],[-87.69640239885365,41.951024773105715],[-87.6962124164185,41.95134577383659],[-87.69615414296074,41.95148664021653],[-87.69579005074483,41.952158295853174],[-87.6954965914481,41.952614126164065],[-87.69539779218888,41.95271182004701],[-87.69507261735473,41.95310707287865],[-87.69464716160317,41.953681485666614],[-87.6945546873355,41.95392229692796],[-87.69444273502657,41.9546593181254],[-87.6944447381273,41.95502194938561],[-87.69447313097109,41.95505396767716],[-87.6944654847989,41.95537046963647],[-87.69443012936392,41.95551653962616],[-87.6943925993951,41.9558802954914],[-87.69439203762084,41.95637659032113],[-87.69436649324221,41.9568117548922],[-87.6942744955707,41.95684977155866],[-87.6942671045703,41.95703024458711],[-87.69437611283922,41.957059665526316],[-87.69437559884702,41.95742395659663],[-87.69433744232676,41.957717786360256],[-87.69434609351659,41.95788594482338],[-87.69440179437845,41.9580735471605],[-87.69443806306334,41.95850977651038],[-87.69458003393605,41.959203808719806],[-87.69459767613739,41.95939213219977],[-87.69458552480599,41.9596406350764],[-87.69466473510515,41.96005517691355],[-87.69467327208676,41.96056257375791],[-87.69470348081353,41.96110153974241],[-87.69474577254057,41.961273426606034],[-87.69085930813802,41.96129855800114],[-87.68893169956816,41.96130932411724],[-87.68643263984512,41.96134282697744],[-87.68433309395053,41.96137639409335],[-87.68314865838005,41.96139861083459],[-87.6809324436185,41.96143236603408],[-87.67861271714187,41.96146334221098],[-87.6773626493526,41.961474702439965],[-87.67397665771149,41.96152543576247],[-87.67387666958264,41.95796294641912],[-87.67388717313857,41.957650276701095],[-87.67379204047278,41.95436117899487],[-87.67379530947294,41.95407969664817],[-87.67375024541003,41.95252797059921],[-87.6737540075665,41.95233065624027],[-87.67371042130351,41.95068203979076],[-87.67372381648742,41.95048096598464],[-87.67368052949708,41.948828454211736],[-87.67364614052774,41.948459406919845],[-87.67361144175288,41.94716495405871],[-87.67372245248252,41.94692668225786],[-87.67365266322872,41.9464647302592],[-87.67363193187099,41.94537718868523],[-87.67357413965546,41.943712956605815],[-87.67354520003444,41.942993942988004],[-87.6735299516751,41.942105689809175],[-87.67349939650332,41.940858898921725],[-87.67344746446167,41.9402346752648],[-87.67344032400102,41.93942997479523],[-87.67340703458423,41.93804581947501],[-87.6733785866658,41.93711185329809],[-87.6733523972202,41.935987455251784],[-87.67347292076603,41.93598592762488],[-87.67338221197338,41.93339500681683],[-87.673364154085,41.932342745477555]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"South Deering","SEC_NEIGH":"SOUTHEAST SIDE","Creation D":"08/21/2014","Street Add":"2129 E 97TH PL","Community":51,"COUNT":7,"Area":30379705,"sqmi":1.089659,"density":6.424028},"geometry":{"type":"Polygon","coordinates":[[[-87.54567696315205,41.72282057819379],[-87.54558842614662,41.72282921711961],[-87.54314429934144,41.7228617528358],[-87.54302190552424,41.721992179111815],[-87.54295835878149,41.72163228938284],[-87.54280855973634,41.72123347452141],[-87.54269243576447,41.72081609783098],[-87.54270459734585,41.72050609731857],[-87.54288891834328,41.72013463842507],[-87.54297379283797,41.71969045484472],[-87.54316417423894,41.718022269996645],[-87.54303003369864,41.717147524647125],[-87.5424200204785,41.71643859084516],[-87.54231840624692,41.71586157311157],[-87.5422118438554,41.71576212982277],[-87.54218035621209,41.71564306419739],[-87.54218486343844,41.71527554921563],[-87.54221100470998,41.71462230762741],[-87.54228813493177,41.71425532025773],[-87.54240052007943,41.71397021857529],[-87.54253310780005,41.71352191415981],[-87.54259537048505,41.71288253293589],[-87.54261355415734,41.71139888878917],[-87.54267351451121,41.71095008449799],[-87.54285984599409,41.71055659620148],[-87.54316757118528,41.71010127369793],[-87.54327853397152,41.70984765438647],[-87.54364112204482,41.709403701466286],[-87.54426151159461,41.70889485814471],[-87.54458744012318,41.70867532742622],[-87.54526584395971,41.708141711382105],[-87.54563774899367,41.707697623507016],[-87.54579324720845,41.707469648489095],[-87.5458559686779,41.7073326428585],[-87.54585327535611,41.70630191320592],[-87.54587630209002,41.705611952698334],[-87.54571472887338,41.705144288061504],[-87.54562926095633,41.70463979028522],[-87.54562265736071,41.70392970715362],[-87.54565990459983,41.703380247704494],[-87.5457555733143,41.70304878576749],[-87.54590480602255,41.70276727241476],[-87.5437957347676,41.7027627197509],[-87.54400375601546,41.702484073595905],[-87.54424873642498,41.70210258027679],[-87.54488312006558,41.70124453200168],[-87.5450489110959,41.700937276283845],[-87.5451575726991,41.70062276768628],[-87.54521134341753,41.70015522935943],[-87.54520734011727,41.699021111115236],[-87.54517230331197,41.69323103406963],[-87.54516904516996,41.691923340725715],[-87.54514300814112,41.68719537332607],[-87.54513143300944,41.68551919548603],[-87.54510676883612,41.68480498408797],[-87.54507849423683,41.6827703866572],[-87.54507870575053,41.681065815956906],[-87.54491911986959,41.67318368432855],[-87.5449668850784,41.672831365008804],[-87.54510507654595,41.672192539830995],[-87.54519931378277,41.67204361985281],[-87.54527134864217,41.67180192624777],[-87.5457139253355,41.67081391228023],[-87.54584922439597,41.67041142206562],[-87.5460557382195,41.66987151607335],[-87.54621499475884,41.66941739039001],[-87.54632853730728,41.668922472185756],[-87.54638904379917,41.66838705504366],[-87.54645249092218,41.668136039318625],[-87.54506841163817,41.66105885425876],[-87.54471034026268,41.65922222809449],[-87.54486985704531,41.65923172320088],[-87.54586421329127,41.659833129678596],[-87.54713020732598,41.66056458700532],[-87.54800957103453,41.6610793312413],[-87.5495423489554,41.66193264827956],[-87.55041106908142,41.66241094009772],[-87.5512699290697,41.66292311834665],[-87.551976594612,41.66342464985253],[-87.55234404434616,41.66375681136143],[-87.55319611978906,41.664871653974735],[-87.55411797046017,41.666272717702604],[-87.55428937306586,41.66651332316163],[-87.55573064854396,41.66870311714299],[-87.55659704817795,41.66996862621576],[-87.55674958622137,41.669953190990896],[-87.55683910315604,41.6698519123137],[-87.55684008423103,41.669770274919586],[-87.55705186676893,41.669659873833766],[-87.5573990937098,41.66958572020004],[-87.55772146550008,41.66933335891059],[-87.55769481220959,41.669266971628666],[-87.55784513759792,41.669206924805906],[-87.55806408731475,41.66907084203479],[-87.55817461579512,41.66893402764142],[-87.5583646463692,41.668920215022915],[-87.55864306478487,41.66893718615973],[-87.55882565460401,41.66900976952808],[-87.55925947987518,41.66865172098105],[-87.55927050068816,41.667252740227724],[-87.55926753080155,41.66561242900629],[-87.55927929368924,41.661950570823414],[-87.55928617360087,41.65918933573829],[-87.55963596445994,41.65917457362507],[-87.56085424569066,41.659162597189614],[-87.56412929997757,41.6591731455746],[-87.56996682182972,41.6591859934656],[-87.5712364516727,41.65919513765701],[-87.57550441024124,41.65920540440571],[-87.57634755805324,41.65919932457862],[-87.57694669759007,41.659183153000875],[-87.57745235238899,41.65919391673971],[-87.57938550625859,41.659192123798285],[-87.58066233679867,41.65919901040078],[-87.5815885871418,41.659221593262494],[-87.58210793290793,41.659265483605665],[-87.58243450749205,41.65930576895958],[-87.58300016921913,41.65941029060479],[-87.5833514749065,41.659492881336355],[-87.58397471629937,41.659664630221556],[-87.58435099651606,41.659806061379115],[-87.58482901784375,41.65994815392437],[-87.58536421675107,41.6601247128647],[-87.58604990926497,41.66026948151824],[-87.58663413056166,41.66034140572627],[-87.58696093347993,41.66036260350085],[-87.58770343558496,41.66037979455664],[-87.58800967066217,41.66036263434473],[-87.58853226342083,41.660419088015544],[-87.5886499411316,41.660393766086884],[-87.58899968212802,41.66039163650521],[-87.5901196026453,41.66165219387626],[-87.59074108968333,41.6624096978025],[-87.59171997275946,41.663530325612186],[-87.59212430857416,41.66370861350648],[-87.5927073442608,41.66439488115842],[-87.5938396621978,41.665701892475674],[-87.5945572573171,41.66654037546661],[-87.5966326225719,41.6689411087955],[-87.5975733267938,41.67005359778213],[-87.59854640615251,41.67118654351449],[-87.59861662658987,41.67125573374203],[-87.60006845222978,41.67294149489557],[-87.60045655608239,41.673431584449624],[-87.60074079636178,41.67384968530421],[-87.60090843099266,41.67412812399055],[-87.60113448385574,41.67456185248913],[-87.60127869247259,41.674885779698926],[-87.60144574995633,41.67533834210765],[-87.60154371538668,41.67566683193068],[-87.60165675723476,41.67619619334993],[-87.60170908780987,41.67657239090577],[-87.60173272897045,41.67689609872882],[-87.6017513679901,41.677661503112624],[-87.60179641409397,41.678984834339396],[-87.60184595526032,41.680687186552134],[-87.60187546804188,41.68192786861676],[-87.60187890745726,41.68262615894242],[-87.60191034351278,41.68317341429466],[-87.60194049635648,41.6841700457707],[-87.60193580305658,41.684741589184036],[-87.60190019334085,41.68506194539531],[-87.6017198261263,41.6858367574301],[-87.60157012805102,41.686209355763154],[-87.6013677439931,41.68666700877052],[-87.60069388790558,41.68796105834353],[-87.60029586616865,41.688677458242076],[-87.59973682619359,41.689740305114775],[-87.59917489277456,41.69073266164831],[-87.5988560968612,41.691309376397015],[-87.5987088201172,41.69160065128009],[-87.59830571541785,41.69233951971009],[-87.59724716531636,41.69430873309063],[-87.59679781770579,41.69517602562135],[-87.59640624313234,41.69587285234356],[-87.59616655623996,41.696317683243805],[-87.5957073798508,41.6969571256844],[-87.59436552781351,41.69897584429195],[-87.59415872516519,41.69920130400625],[-87.59368755777197,41.69979031154411],[-87.59271744916829,41.700880531231235],[-87.59222487133673,41.70138933685779],[-87.59186438275054,41.7017473687345],[-87.59099055568632,41.70256732978996],[-87.58958411183939,41.7038791336223],[-87.58835955084696,41.70496062344406],[-87.58814261398751,41.70511218048645],[-87.58766815920843,41.706425152163455],[-87.58750576612555,41.70667327010771],[-87.58741296317645,41.70690796590217],[-87.58734104262813,41.70716727652413],[-87.58729619288037,41.707558984244635],[-87.58729978537448,41.70774655558624],[-87.58574571692935,41.70777426142034],[-87.58552278584023,41.70811838596491],[-87.58525556706141,41.708615975892194],[-87.58508645492051,41.70901277391404],[-87.58493764039383,41.709418156356904],[-87.5848292805612,41.709815157481714],[-87.5847373385912,41.71029006689979],[-87.58462819264354,41.711250087257476],[-87.58466227976456,41.71179066582183],[-87.58468297629032,41.712491095994714],[-87.58468365079337,41.713606713658066],[-87.5847023981532,41.71369533978758],[-87.58473697887591,41.71429512367183],[-87.58477698884171,41.71531662729369],[-87.58481874357439,41.71602699113693],[-87.58482960277232,41.71642625051635],[-87.584880644412,41.717381056368886],[-87.5849002499726,41.717907461634944],[-87.5848892141938,41.718318762761164],[-87.58490775522803,41.71865591298044],[-87.58493726492068,41.71990718381978],[-87.58496308087368,41.72068469433593],[-87.58546710803864,41.72113152437073],[-87.58564801432271,41.721325146987176],[-87.5861044661714,41.72176446189142],[-87.58665234924561,41.722256511373175],[-87.58670378966852,41.72232155546232],[-87.58711377906508,41.72282072086446],[-87.58737431599778,41.72325635746181],[-87.58585802292116,41.723274633151846],[-87.58531076815414,41.72332046958827],[-87.58389649203188,41.72334658754926],[-87.58198768824963,41.72337288542851],[-87.58012642851149,41.72340563822905],[-87.57809124547586,41.723431729518744],[-87.57683181026492,41.72345123097909],[-87.5753801110544,41.723478708789386],[-87.5751117483235,41.72346939499974],[-87.57274406457843,41.7235010869517],[-87.57227196031418,41.72350242027399],[-87.57070794961416,41.7235280698426],[-87.56911014184932,41.723546269524874],[-87.56858477131054,41.723560269177916],[-87.56792064298207,41.723614164145665],[-87.56563065067803,41.723888355717726],[-87.56558907657268,41.72258926212083],[-87.56258420424888,41.72262629904051],[-87.56132948740239,41.7226381439169],[-87.56029820487768,41.722654248016966],[-87.55486450726076,41.72272102499404],[-87.54989436826385,41.722778466831144],[-87.54855921507576,41.72277747911231],[-87.54822534878294,41.72275428678264],[-87.54654400563332,41.722764466657026],[-87.54599760706974,41.72278929233841],[-87.54567696315205,41.72282057819379]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"East Side","SEC_NEIGH":"SOUTHEAST SIDE","Creation D":"08/04/2014","Street Add":"10416 S GREEN BAY AVE","Community":52,"COUNT":3,"Area":83241728,"sqmi":2.985714,"density":1.004784},"geometry":{"type":"Polygon","coordinates":[[[-87.52462014975411,41.69180077089621],[-87.52655633989761,41.6918127052886],[-87.53036416444112,41.691826316832035],[-87.53040054588152,41.68820374049796],[-87.53037988402399,41.68636901379242],[-87.53034494270166,41.685130734985904],[-87.53041374052701,41.68456622691351],[-87.53129113080472,41.684579113045935],[-87.53164145890035,41.684567155187274],[-87.53164118246609,41.68450104020167],[-87.53405468488266,41.684518196353835],[-87.53646597928959,41.684519160007866],[-87.53766926655572,41.68449388022504],[-87.53887464433897,41.684509763103755],[-87.54012967171096,41.68450677204194],[-87.5401170921525,41.682775795692756],[-87.54132749691767,41.68278796205684],[-87.54252311796036,41.68277850663238],[-87.54380531166964,41.682756169593425],[-87.54493956443848,41.682753889511915],[-87.54507849423683,41.6827703866572],[-87.54510676883612,41.68480498408797],[-87.54513143300944,41.68551919548603],[-87.54514300814112,41.68719537332607],[-87.54516904516996,41.691923340725715],[-87.54517230331197,41.69323103406963],[-87.54520734011727,41.699021111115236],[-87.54521134341753,41.70015522935943],[-87.5451575726991,41.70062276768628],[-87.5450489110959,41.700937276283845],[-87.54488312006558,41.70124453200168],[-87.54424873642498,41.70210258027679],[-87.54400375601546,41.702484073595905],[-87.5437957347676,41.7027627197509],[-87.54590480602255,41.70276727241476],[-87.5457555733143,41.70304878576749],[-87.54565990459983,41.703380247704494],[-87.54562265736071,41.70392970715362],[-87.54562926095633,41.70463979028522],[-87.54571472887338,41.705144288061504],[-87.54587630209002,41.705611952698334],[-87.54585327535611,41.70630191320592],[-87.5458559686779,41.7073326428585],[-87.54579324720845,41.707469648489095],[-87.54563774899367,41.707697623507016],[-87.54526584395971,41.708141711382105],[-87.54458744012318,41.70867532742622],[-87.54426151159461,41.70889485814471],[-87.54364112204482,41.709403701466286],[-87.54327853397152,41.70984765438647],[-87.54316757118528,41.71010127369793],[-87.54285984599409,41.71055659620148],[-87.54267351451121,41.71095008449799],[-87.54261355415734,41.71139888878917],[-87.54259537048505,41.71288253293589],[-87.54253310780005,41.71352191415981],[-87.54240052007943,41.71397021857529],[-87.54228813493177,41.71425532025773],[-87.54221100470998,41.71462230762741],[-87.54218486343844,41.71527554921563],[-87.54218035621209,41.71564306419739],[-87.5422118438554,41.71576212982277],[-87.54231840624692,41.71586157311157],[-87.5424200204785,41.71643859084516],[-87.54303003369864,41.717147524647125],[-87.54316417423894,41.718022269996645],[-87.54297379283797,41.71969045484472],[-87.54288891834328,41.72013463842507],[-87.54270459734585,41.72050609731857],[-87.54269243576447,41.72081609783098],[-87.54280855973634,41.72123347452141],[-87.54295835878149,41.72163228938284],[-87.54302190552424,41.721992179111815],[-87.54314429934144,41.7228617528358],[-87.54317679419086,41.723125835191546],[-87.54316197689667,41.723313319286675],[-87.54299695620738,41.72402810939932],[-87.5422517760694,41.72657920063814],[-87.5419020286948,41.72713590207119],[-87.54139893639129,41.72758576760823],[-87.54042213403228,41.72828169545177],[-87.53941395633697,41.72879354703084],[-87.53725609509716,41.729622115775875],[-87.53672913009522,41.72985970854452],[-87.53286496938858,41.73152123369246],[-87.52925100995012,41.73301356873034],[-87.52949478805321,41.732367239134646],[-87.5294631762218,41.732313970281226],[-87.529268541396,41.73228335413133],[-87.5291812434487,41.73213007804132],[-87.52894985837277,41.732048802232455],[-87.52733038183977,41.731824703452354],[-87.52526345776522,41.73153109020078],[-87.52494871868629,41.731408292084986],[-87.52473359576226,41.731221098424754],[-87.52468841216157,41.73109349982946],[-87.52453873602938,41.723583032969884],[-87.52453615019122,41.72329263941486],[-87.5244713714997,41.72320030368618],[-87.5244667551811,41.72189779469116],[-87.52450275753785,41.721793050545976],[-87.52467833963907,41.721800872954994],[-87.52483943897563,41.72168992923062],[-87.52500267020297,41.72152279598021],[-87.52469977379991,41.721254110238526],[-87.5248182286342,41.72117867994508],[-87.5250927359903,41.72141538658516],[-87.52523637429209,41.72122149591604],[-87.52540810134406,41.720920005770864],[-87.52508149349335,41.720848086010044],[-87.52513612394539,41.72072991550392],[-87.52545399587589,41.720797409962444],[-87.5255206261768,41.72058969555238],[-87.52555561443343,41.72036973830699],[-87.52560897082742,41.71955178758909],[-87.52560229274513,41.71932462118224],[-87.52554826268289,41.71899432054604],[-87.52540493499897,41.71866372081165],[-87.52529414887034,41.71848703116972],[-87.5251025765961,41.718253543372015],[-87.52490509634893,41.718050282344045],[-87.52450479714194,41.71798794125673],[-87.52447174010864,41.71779083109134],[-87.52446843068084,41.71740333867094],[-87.5251414376779,41.71739130637878],[-87.52554925467294,41.71736782857207],[-87.52580496006115,41.71731762085173],[-87.52642112986285,41.71711442529926],[-87.52651698675616,41.717266584147104],[-87.52660512697987,41.717236191700174],[-87.52651900553994,41.717084622974845],[-87.52679668105566,41.71699090556352],[-87.52683782768152,41.71686975853658],[-87.52700288185916,41.71694803203933],[-87.52764140519601,41.716620229497494],[-87.527902328681,41.71645388719925],[-87.52827647107061,41.71614922807732],[-87.52856719639355,41.71585155866288],[-87.52866856696485,41.7156865150718],[-87.52869957909856,41.71536605566559],[-87.52861846319047,41.71501857953403],[-87.5284844434352,41.714725178600645],[-87.52813339976592,41.71423941849145],[-87.52791513903574,41.71376161348752],[-87.52777131131637,41.7135121076598],[-87.52757729884178,41.713248637410565],[-87.52742306745019,41.713084544117216],[-87.52648607722244,41.71235498197381],[-87.52522620647993,41.71336803301397],[-87.52516701588412,41.71332714277602],[-87.5264327607911,41.71231346785566],[-87.52840800676042,41.71080310094105],[-87.52720402819466,41.71003157590475],[-87.52689969352208,41.70991363124037],[-87.52668624342587,41.709855654245835],[-87.5262425181954,41.70981990948865],[-87.52589990563027,41.71014456988301],[-87.52602110811875,41.71025470009612],[-87.52599743015053,41.71034984382049],[-87.5257839680645,41.71041857093486],[-87.52565292559193,41.71036314784886],[-87.52547075741526,41.71012914907664],[-87.52536190089324,41.7100627125388],[-87.52515894935712,41.709999867308035],[-87.52495731029397,41.709890789234514],[-87.52459204920767,41.709590873366984],[-87.52419122358724,41.709428716453125],[-87.52413710388583,41.7093256982281],[-87.52423301959021,41.70928199775168],[-87.52448649962858,41.70925496636449],[-87.52488172712387,41.70940489755668],[-87.52488423714615,41.70944138799569],[-87.52512267501154,41.70973514249159],[-87.52525750775533,41.70971295642317],[-87.5255296005632,41.7099370218401],[-87.52558712658737,41.70993778298036],[-87.52622020642393,41.709539448091505],[-87.5257694756004,41.70915652296289],[-87.52530687946145,41.709461265642204],[-87.5252254198938,41.70936834658877],[-87.52567873936457,41.709085027026426],[-87.52543128867238,41.70884705711949],[-87.5253742984586,41.70882695224169],[-87.52486222791998,41.709153365396155],[-87.52478382782728,41.709080901179284],[-87.52501919509746,41.708915099420494],[-87.52488859477677,41.70866678031264],[-87.52453540785574,41.708482291948],[-87.52455205497947,41.707951878706375],[-87.5245273888406,41.702603358659985],[-87.52453725690008,41.70097719935678],[-87.52455094491576,41.699543004256014],[-87.52456217259356,41.699114503017285],[-87.52459621993548,41.697238834538986],[-87.52461324447823,41.69542100601369],[-87.52463638971365,41.69528913899363],[-87.5246474650322,41.69327381365203],[-87.52465931122147,41.69227548464811],[-87.52462014975411,41.69180077089621]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"West Pullman","SEC_NEIGH":"WEST PULLMAN","Creation D":"08/04/2014","Street Add":"110 W 119TH ST","Community":53,"COUNT":23,"Area":99365198,"sqmi":3.564031,"density":6.453366},"geometry":{"type":"Polygon","coordinates":[[[-87.61828127816172,41.65910686100657],[-87.61866273968396,41.65908497709014],[-87.61968414569643,41.659062477767804],[-87.61945847290824,41.659537157320955],[-87.61938552433867,41.66006056312934],[-87.6195118424547,41.66078668766567],[-87.61985720925965,41.661141429731444],[-87.62025290227928,41.66136569049933],[-87.62202410987263,41.66213025282181],[-87.62203529490102,41.66241420699303],[-87.6232861485213,41.66239685800061],[-87.62380883335076,41.662269455013444],[-87.62406871363373,41.66223884013434],[-87.62420159793099,41.662275446622175],[-87.62442319001138,41.662258920460836],[-87.62475592533464,41.66208560830628],[-87.62534779700404,41.66194259811552],[-87.6256607690746,41.66184254566335],[-87.62590145204852,41.66181361997417],[-87.62627449219353,41.66166201252788],[-87.62644066415781,41.66148585996509],[-87.62688629705114,41.661214768768325],[-87.62754358351158,41.66075731787314],[-87.62777242531972,41.66057227172777],[-87.62804201488463,41.66029499096423],[-87.62875415994931,41.65963769672548],[-87.62914651503957,41.659317036715805],[-87.62973309777362,41.65901123134276],[-87.63009849660708,41.65872547577621],[-87.6307602830075,41.65827379659703],[-87.63084043400123,41.65811138202103],[-87.6308185364444,41.65795778425061],[-87.63107539330392,41.657832737929176],[-87.63125516220528,41.657818953834905],[-87.63138957354536,41.657996510519645],[-87.63154499876154,41.65792495395132],[-87.63202338014871,41.657896149204234],[-87.6322738187362,41.65780288724097],[-87.63264606460666,41.65773457251011],[-87.6326418644196,41.657622412565324],[-87.63300437289845,41.65752725274299],[-87.6335518719736,41.657482012448156],[-87.63391750261965,41.65747013200287],[-87.63501184111765,41.65736591434841],[-87.63574325637882,41.6573480168414],[-87.63611085933371,41.657390699034984],[-87.63629408798185,41.657393896073394],[-87.63782555880772,41.65761756196296],[-87.63856147367423,41.65771235670363],[-87.63913514028063,41.6577518836913],[-87.64005001287599,41.657764046996775],[-87.64041681513586,41.65778629263918],[-87.64104964166066,41.65777407869828],[-87.64106161164126,41.65809623852306],[-87.641427613674,41.65809410328801],[-87.64141554442628,41.657771132494545],[-87.64366354576143,41.657749945972036],[-87.64384195578609,41.65771974697426],[-87.64475182789499,41.65772480387339],[-87.64591056125795,41.65778042107265],[-87.64608685725189,41.65774744540415],[-87.64663458806093,41.657686611143085],[-87.6469884648369,41.657630489478315],[-87.64721294990933,41.66301399022647],[-87.64721678666243,41.66315940916125],[-87.64488879989347,41.66319301973206],[-87.64364507029332,41.663213967520534],[-87.64142093383657,41.66324511327687],[-87.64166503125782,41.67053953614776],[-87.64384923204722,41.67050812403623],[-87.64959299309145,41.6704185851761],[-87.65083498494536,41.6704018987293],[-87.65774864690087,41.67029559451019],[-87.65865229768234,41.670285232509],[-87.65879485671202,41.670334643615774],[-87.65936381242847,41.670318387069024],[-87.66115004322222,41.67033513228663],[-87.66116185819865,41.670740513825805],[-87.66125874220037,41.67348160875404],[-87.66131845119786,41.675247255741944],[-87.66136132918346,41.67670277637784],[-87.66138359004796,41.67730753973081],[-87.66136505811134,41.677544268261634],[-87.66151906228157,41.68289352913681],[-87.66155235508717,41.683880971883326],[-87.66159876515239,41.684820342824594],[-87.65651983118508,41.6848886949132],[-87.65581146067235,41.68490008087896],[-87.65043041628797,41.68497007460737],[-87.64967443702675,41.68498284159446],[-87.64676437002902,41.685020490375344],[-87.64597507907261,41.68503284218401],[-87.64215204650583,41.685082120447184],[-87.63955394642161,41.68511498194047],[-87.63872136945372,41.685118130957996],[-87.63822431375094,41.68513216798812],[-87.63651616444515,41.685153383658516],[-87.6358233976991,41.68515675553934],[-87.6350762508189,41.68517159349831],[-87.63333002896997,41.68519247559143],[-87.63172791076097,41.68521602250939],[-87.629146798994,41.685243678668414],[-87.62669991791198,41.685276109265764],[-87.62618814337817,41.685279932016265],[-87.62103118618651,41.685344685604576],[-87.62020485133,41.685349166198655],[-87.61777531103867,41.68537868768085],[-87.61227916267306,41.68543388394388],[-87.6126137470902,41.68382917429615],[-87.6128203345672,41.68294953824735],[-87.6128944836011,41.68257883179348],[-87.61301219152227,41.68224133031045],[-87.61316583431278,41.681594630052665],[-87.61405498197232,41.677605473500215],[-87.61414793392026,41.67722973791824],[-87.61420237429695,41.676901787178394],[-87.61433449744061,41.6764597465702],[-87.61455998842295,41.67560389410499],[-87.61485326506805,41.67432995342862],[-87.61497315152351,41.67383534961392],[-87.61506755251355,41.67336940192331],[-87.61515334317177,41.673060513758855],[-87.61522111848298,41.67268461939244],[-87.61530202399048,41.672362322171296],[-87.61546803608458,41.671586367898016],[-87.61556788640219,41.671205871241995],[-87.61566171483145,41.6707495244562],[-87.61576126098413,41.67035496092659],[-87.6158953167662,41.66973660585403],[-87.6160894678725,41.66889736278196],[-87.61618234708001,41.6684434110282],[-87.61625508867922,41.66819618803233],[-87.61656870941763,41.66685547454425],[-87.61675291960618,41.66616847949985],[-87.61696736725816,41.66522953571621],[-87.61714877542133,41.66434046977467],[-87.6172109696401,41.66388838385938],[-87.6172338764708,41.663555088486916],[-87.61727411270984,41.663350542475044],[-87.6174865455999,41.66250935197164],[-87.61767318777241,41.66172460247835],[-87.61828127816172,41.65910686100657]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Garfield Ridge","SEC_NEIGH":"MIDWAY AIRPORT","Creation D":"08/01/2014","Street Add":"4854 S LAVERGNE AVE","Community":56,"COUNT":45,"Area":11789077,"sqmi":0.42285,"density":106.4207},"geometry":{"type":"Polygon","coordinates":[[[-87.73855658142487,41.818706145062336],[-87.73853045620653,41.81862758214432],[-87.73850512219228,41.81725222362296],[-87.73848974592975,41.81683261283849],[-87.73847845295678,41.81602127640838],[-87.73844646178502,41.814969022352045],[-87.73850240460222,41.8149689687466],[-87.73830520834201,41.8087288232554],[-87.7382739299955,41.807352402718486],[-87.73824283127907,41.806452116411606],[-87.73816450703043,41.80391736345785],[-87.73803877230085,41.79962053157177],[-87.7380049232505,41.79862177814607],[-87.73790510808719,41.79529038021962],[-87.73785908826824,41.79367547030951],[-87.7378229201252,41.79362108281543],[-87.73785142460798,41.793463433871686],[-87.73781845922046,41.79246880062798],[-87.7376457137998,41.786768009848686],[-87.73762325642592,41.785783192719244],[-87.73845196123459,41.78579226883677],[-87.73971934614895,41.785777830761724],[-87.74068059289655,41.78575186546137],[-87.74253048091789,41.78573439045014],[-87.76202164873838,41.78532536103165],[-87.76202440991352,41.78539287153905],[-87.763248443117,41.78537139856514],[-87.76702053960327,41.785297338983085],[-87.7679509561189,41.785276921159145],[-87.77281093296504,41.78518328032595],[-87.7812629735991,41.7850142689057],[-87.78179858151111,41.78500792255878],[-87.78414335636135,41.78496759018272],[-87.79339195912974,41.784820399636615],[-87.79635440685558,41.784775474400796],[-87.7969142129349,41.78476014220965],[-87.79761815837016,41.784757608494175],[-87.79781326063308,41.7847444401417],[-87.80096079625567,41.78469487990691],[-87.80121615884285,41.78468843328335],[-87.80128144597244,41.78617598119849],[-87.80145728925581,41.790329903567],[-87.80153801975598,41.79219518984924],[-87.80161538493613,41.79481431814082],[-87.80160562356802,41.795760148176136],[-87.8016197139129,41.797778010062],[-87.80162605978006,41.797995168077925],[-87.79718700786613,41.79940197716071],[-87.79658471926493,41.79941159789955],[-87.79615213810123,41.79942912265944],[-87.79527087644334,41.799433635198035],[-87.79461836700665,41.79945865147452],[-87.7940501404351,41.79945252756196],[-87.79324800001929,41.79947277169587],[-87.79282425017564,41.79946496078613],[-87.7922491723865,41.79948417986797],[-87.79079593847895,41.79951338600719],[-87.78962491426896,41.799564627269575],[-87.7891335135796,41.799568092804265],[-87.7879389003566,41.79960691235173],[-87.78310866430198,41.79967454984661],[-87.78179361713958,41.799669149245666],[-87.77940339928067,41.79971552537176],[-87.77365090464738,41.799834929309256],[-87.77207728155771,41.79988998622449],[-87.76798587650765,41.79997327373038],[-87.76428075116353,41.80004529425269],[-87.76287274046678,41.80006320157175],[-87.76222547861435,41.800052740602155],[-87.76061309080262,41.80007715049603],[-87.7572822434127,41.80011823619986],[-87.75273612508752,41.80018714320551],[-87.75274865634978,41.80074515048223],[-87.7528339935738,41.803732518535476],[-87.75288700141894,41.80567087582456],[-87.75293351786932,41.80749359912371],[-87.75307704035366,41.81331033708709],[-87.75200767486785,41.81364579809862],[-87.74465491931302,41.81596322009409],[-87.7447198410517,41.81947381654524],[-87.74473451607236,41.82000249410747],[-87.74476347919025,41.82203184387479],[-87.73864925100685,41.82211760105355],[-87.73864811220413,41.82205888135164],[-87.73862004529323,41.82098683643912],[-87.73861975697157,41.82062313419047],[-87.73858204677076,41.818850478875824],[-87.73855658142487,41.818706145062336]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"New City","SEC_NEIGH":"BACK OF THE YARDS","Creation D":"08/01/2014","Street Add":"2307 W 47TH PL","Community":61,"COUNT":69,"Area":13463696,"sqmi":0.482915,"density":142.8822},"geometry":{"type":"Polygon","coordinates":[[[-87.63545749911513,41.79447604857853],[-87.63759326491143,41.79443930974112],[-87.64048132934344,41.79438459006257],[-87.64260959993742,41.79434891500709],[-87.64494376434415,41.79430450018955],[-87.64628264768345,41.79429824525019],[-87.64860723202561,41.794264593493594],[-87.64986050869814,41.79423544807755],[-87.65014881132242,41.79424342024721],[-87.65343914502331,41.79419581557403],[-87.65467432863788,41.79416766314445],[-87.65498757839784,41.79417427106965],[-87.65824951557403,41.79412764084078],[-87.6590928337334,41.79410531536832],[-87.65989135157348,41.79410275436444],[-87.66323374580303,41.794055119668876],[-87.663970637436,41.794033042865664],[-87.66483189136919,41.79402068690533],[-87.6667289717651,41.79400149626658],[-87.66712965264864,41.79399385886051],[-87.67052523476129,41.793958093402765],[-87.6728123217906,41.79393111753],[-87.67539814850883,41.793906383769574],[-87.6788150039512,41.79386785479857],[-87.67881809511229,41.794014258430465],[-87.6788814048785,41.79445987990353],[-87.67925310145048,41.79608935799879],[-87.67935896909297,41.79663298653684],[-87.67941310818917,41.79703430316705],[-87.67945510954121,41.798810094876785],[-87.67948456840892,41.799835595767775],[-87.67954807670758,41.80238230922166],[-87.67953308684054,41.8028195939683],[-87.67938912471082,41.80426295306906],[-87.67940651094229,41.804852517186674],[-87.68192243787766,41.804857474150126],[-87.68222381208209,41.80481115782956],[-87.68376082573465,41.80479708193669],[-87.68375270397802,41.80474110754384],[-87.68437225764065,41.80472240642285],[-87.6843478136081,41.80567862446181],[-87.6843514756895,41.805932656122074],[-87.68442535589206,41.80842575155064],[-87.6838737034425,41.80841735147616],[-87.6838841742036,41.8091955447003],[-87.68394729733114,41.8113205223838],[-87.683973839041,41.81243342251909],[-87.68401569226526,41.81362846289439],[-87.68403934184387,41.81466467111907],[-87.68408925690268,41.81624579397648],[-87.68409681287439,41.816848836538945],[-87.68419354584482,41.82061990783957],[-87.68422696426698,41.82181168799577],[-87.68423972710924,41.8229997932273],[-87.6797761798367,41.82305202686692],[-87.67596735211892,41.823094672920114],[-87.67483643436428,41.823119699413034],[-87.67055772968392,41.82316616740995],[-87.66826059449065,41.823194877207214],[-87.66635600244169,41.82314080353253],[-87.66491464489587,41.82315679418329],[-87.6633986771639,41.82317842389699],[-87.66195425093646,41.82319301480239],[-87.65997584916535,41.82320759851228],[-87.65764957388213,41.82326745335608],[-87.65611232130212,41.8233136663246],[-87.65472613561518,41.823338412109315],[-87.65333000485622,41.82336860266306],[-87.65271303345095,41.82336686949011],[-87.65043972414983,41.8233962421749],[-87.64634715489011,41.82345191584833],[-87.64562980060667,41.82346414372478],[-87.6440082572652,41.82347983587748],[-87.6433148580408,41.82349565083172],[-87.64270206314644,41.82349781327546],[-87.63953438804324,41.823544311707224],[-87.63755080973965,41.82356234780688],[-87.63711493502707,41.82357728538845],[-87.6361178796625,41.82358577982778],[-87.63607723637622,41.82179134007042],[-87.63610520253573,41.82179093600117],[-87.63607677354999,41.81996496048598],[-87.63603338495162,41.81905245582123],[-87.63605750655995,41.81900282609251],[-87.63603555494875,41.818152016967005],[-87.63588787476264,41.81815380153142],[-87.6358224028873,41.81725663847482],[-87.63571574554996,41.81635268387241],[-87.63616198200039,41.81634669678707],[-87.63621125356268,41.81577786668578],[-87.63622289500823,41.81542323994564],[-87.63615529774954,41.812607889785546],[-87.63617574359368,41.811948701990566],[-87.63624594418751,41.81147917054727],[-87.63637959631428,41.810908390583094],[-87.63586154692621,41.81091840640113],[-87.63582147511181,41.80942243422533],[-87.63577434849873,41.80904719861387],[-87.63591791651541,41.809044291757765],[-87.63587829003148,41.80796357875868],[-87.63581925239376,41.806009294452686],[-87.63569929553844,41.80147192914225],[-87.63568358486788,41.80118745738593],[-87.63560235386731,41.80064599796526],[-87.63553914706418,41.79916164426084],[-87.6354954110189,41.79765751183348],[-87.6354916758801,41.797156657612575],[-87.63551386090445,41.79646386101172],[-87.63545749911513,41.79447604857853]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Englewood","SEC_NEIGH":"ENGLEWOOD","Creation D":"08/01/2014","Street Add":"439 W 61ST PL","Community":68,"COUNT":112,"Area":17360001,"sqmi":0.622668,"density":179.8711},"geometry":{"type":"Polygon","coordinates":[[[-87.62826259186303,41.78316030294901],[-87.62896996245419,41.78314744316511],[-87.62891332097651,41.780765694992574],[-87.62888897011426,41.78030398356275],[-87.62859923802752,41.78013785107257],[-87.62854268890457,41.780004792492115],[-87.63014970093062,41.77998703057192],[-87.63013257729594,41.77940749601667],[-87.6300848545977,41.77817480492242],[-87.63005256955853,41.77693456300704],[-87.63008505102738,41.77625741738036],[-87.6300522350284,41.77543897834162],[-87.63004071064461,41.77535290166965],[-87.6299730741449,41.772862864993684],[-87.62995549387524,41.77270899651122],[-87.63103881150381,41.77269487319853],[-87.63125279926639,41.7713928351698],[-87.6313589102554,41.76905736437551],[-87.63235649082472,41.76903201670339],[-87.63354628674371,41.76901467449647],[-87.63350242427379,41.76735378549314],[-87.63353733920563,41.767193670880566],[-87.63471176738852,41.767171100980605],[-87.634667856168,41.765487731367294],[-87.6346427696967,41.764279566420115],[-87.6346775538683,41.764134357600874],[-87.63484275022047,41.76369556083672],[-87.6348429505147,41.76360277733026],[-87.63448127817315,41.76351796302056],[-87.6344317958601,41.76342066260028],[-87.6345582430874,41.763164839834594],[-87.63460978210139,41.762995610526566],[-87.63457872594194,41.76189182960006],[-87.63453047967856,41.759900210943364],[-87.63574692102345,41.75988030457634],[-87.63570170906118,41.75805756312666],[-87.63719698965812,41.758035845295566],[-87.63859256679342,41.758011196369296],[-87.63927352550557,41.757979073519635],[-87.63927510279316,41.75719489891744],[-87.63929505460914,41.75666125275597],[-87.63933485385125,41.75615703831963],[-87.63990005778422,41.75614578321938],[-87.64408352433672,41.75607720745328],[-87.64418368640348,41.75608841693436],[-87.64423522513943,41.75814375377993],[-87.64432680904791,41.75810725442188],[-87.64652533252192,41.75807307890015],[-87.64666170390986,41.758107508150125],[-87.65102595408113,41.758043979477506],[-87.65393281335696,41.757999459788856],[-87.6540096113927,41.75789014070911],[-87.6566434303793,41.75784873912943],[-87.65717684394743,41.757835413741816],[-87.65792915105253,41.75783126273086],[-87.65877900393264,41.75781636231077],[-87.66199390402042,41.757774693500394],[-87.66360827937254,41.75776631154881],[-87.66374161174933,41.75773801745605],[-87.66450480736219,41.75769992608874],[-87.66547495763574,41.75767366700865],[-87.66635738444755,41.757668501905165],[-87.66969650218326,41.75763073929983],[-87.66969235550563,41.75778388616951],[-87.67234039269263,41.757755659391584],[-87.6754633004304,41.75771455337514],[-87.67712566334379,41.75767323566598],[-87.67815131699467,41.75765952189081],[-87.67854016036412,41.763844995112514],[-87.67855105344523,41.764756037172006],[-87.67835077127229,41.76593301460575],[-87.67845122969588,41.766732864319856],[-87.67845088009757,41.767533168377554],[-87.67835603344719,41.768388362163954],[-87.67862000357829,41.768385304075224],[-87.678715064095,41.77201461975879],[-87.67835026379662,41.77201922046883],[-87.67855717648344,41.775644125144936],[-87.67880834364553,41.775640904237235],[-87.67881603718389,41.77596573048507],[-87.67879928082122,41.77617145743783],[-87.67848283692636,41.779122858019186],[-87.67848523599666,41.779247346820824],[-87.67875100560178,41.780332904545666],[-87.67894585646066,41.78104684472236],[-87.67897519320915,41.78104632575079],[-87.67912332519046,41.786564073676125],[-87.67967186677443,41.786557246165636],[-87.67964293667444,41.78835659888575],[-87.6796634780827,41.789707193086755],[-87.67937232191879,41.79349448434809],[-87.6788063652771,41.79350041170016],[-87.6788150039512,41.79386785479857],[-87.67539814850883,41.793906383769574],[-87.6728123217906,41.79393111753],[-87.67052523476129,41.793958093402765],[-87.66712965264864,41.79399385886051],[-87.6667289717651,41.79400149626658],[-87.66483189136919,41.79402068690533],[-87.663970637436,41.794033042865664],[-87.66323374580303,41.794055119668876],[-87.65989135157348,41.79410275436444],[-87.6590928337334,41.79410531536832],[-87.65824951557403,41.79412764084078],[-87.65498757839784,41.79417427106965],[-87.65467432863788,41.79416766314445],[-87.65343914502331,41.79419581557403],[-87.65014881132242,41.79424342024721],[-87.64986050869814,41.79423544807755],[-87.64860723202561,41.794264593493594],[-87.64628264768345,41.79429824525019],[-87.64494376434415,41.79430450018955],[-87.64260959993742,41.79434891500709],[-87.64048132934344,41.79438459006257],[-87.63759326491143,41.79443930974112],[-87.63545749911513,41.79447604857853],[-87.63402814164648,41.79450224139265],[-87.63319450482332,41.794509897122495],[-87.63214028391586,41.794531156939],[-87.63116501553472,41.794535765364685],[-87.63067187635671,41.794548622166424],[-87.6303879977016,41.794577117272866],[-87.62934093485799,41.794584152364095],[-87.62855540675656,41.79459928532754],[-87.62847267222347,41.791690414445156],[-87.6284259419272,41.78984734031647],[-87.628246981574,41.78325617985315],[-87.62826259186303,41.78316030294901]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Grand Crossing","SEC_NEIGH":"SOUTH SHORE, GRAND CROSSING","Creation D":"08/01/2014","Street Add":"331 W 76TH ST","Community":69,"COUNT":33,"Area":98853167,"sqmi":3.545665,"density":9.307139},"geometry":{"type":"Polygon","coordinates":[[[-87.61562233042909,41.780239138429835],[-87.61558905288656,41.778626212850966],[-87.61557279660833,41.778140921089765],[-87.6155225805237,41.776121220839975],[-87.61544979997477,41.77296977132699],[-87.61281993787715,41.77105999191343],[-87.61090494945668,41.76968273494732],[-87.61006411778067,41.769083332406666],[-87.60836014264012,41.76785497656773],[-87.60608794410116,41.766237947811256],[-87.60558716421765,41.765868564041035],[-87.60560885555144,41.76617278333729],[-87.60560339530062,41.76653269048115],[-87.60562397459661,41.76684597231616],[-87.60576875390603,41.773140861685015],[-87.60423762709091,41.77315309114444],[-87.60223153264047,41.77317552419918],[-87.59863454032252,41.773211470019675],[-87.59577462612972,41.77323793219417],[-87.5920985689942,41.7732754629642],[-87.59222017989312,41.7727222103209],[-87.59224355499047,41.77248292171033],[-87.59249476961092,41.77131958994726],[-87.59274594806593,41.77027803567196],[-87.59274066243938,41.769901004442126],[-87.59239410515197,41.76989896201154],[-87.59235103807367,41.767821404386375],[-87.592281804026,41.76601157084554],[-87.59329946094205,41.76600540676922],[-87.59337657175926,41.76506699274468],[-87.59338957871579,41.76502374602403],[-87.59337816616657,41.764354942737306],[-87.59332411468355,41.762354440596745],[-87.59458211125158,41.762346294102635],[-87.59506736075714,41.76020323388619],[-87.59537967522233,41.75869662259434],[-87.59563037137984,41.758695855166735],[-87.59492934309148,41.75818611147661],[-87.59454951789661,41.75795356006138],[-87.59306193471095,41.75688178942047],[-87.59579793663984,41.75685823981859],[-87.59621609691841,41.75502628688927],[-87.59559556884257,41.755032183041486],[-87.59553005328993,41.75314641173713],[-87.5954906239353,41.75138664341337],[-87.59720802064982,41.751369385249866],[-87.60362773435088,41.751305330024366],[-87.6055211969027,41.75128224029206],[-87.60582988423155,41.75127192825088],[-87.60797845744719,41.751238118590265],[-87.61031249255203,41.75119528205995],[-87.61341293646119,41.75114521055817],[-87.61479850559756,41.75111474998163],[-87.6157297296067,41.75110327175005],[-87.61797181537202,41.75106627320267],[-87.6200992459605,41.75102779663297],[-87.62319936440896,41.75097597676716],[-87.6238500045196,41.75097541334347],[-87.62472571472452,41.75094972430684],[-87.6258244432412,41.75092641778804],[-87.62652308022871,41.75093582243792],[-87.62725768803018,41.75090433395417],[-87.63327002628998,41.75079896995628],[-87.63440347340887,41.75077628661476],[-87.63516814822097,41.75076979383424],[-87.63685064329113,41.75074345106799],[-87.63936877346053,41.75071054303825],[-87.63975860222672,41.750704658241915],[-87.63976639034503,41.75083897228201],[-87.63980978296925,41.7527231993181],[-87.63983673594807,41.75353876320267],[-87.63990005778422,41.75614578321938],[-87.63933485385125,41.75615703831963],[-87.63929505460914,41.75666125275597],[-87.63927510279316,41.75719489891744],[-87.63927352550557,41.757979073519635],[-87.63859256679342,41.758011196369296],[-87.63719698965812,41.758035845295566],[-87.63570170906118,41.75805756312666],[-87.63574692102345,41.75988030457634],[-87.63453047967856,41.759900210943364],[-87.63457872594194,41.76189182960006],[-87.63460978210139,41.762995610526566],[-87.6345582430874,41.763164839834594],[-87.6344317958601,41.76342066260028],[-87.63448127817315,41.76351796302056],[-87.6348429505147,41.76360277733026],[-87.63484275022047,41.76369556083672],[-87.6346775538683,41.764134357600874],[-87.6346427696967,41.764279566420115],[-87.634667856168,41.765487731367294],[-87.63471176738852,41.767171100980605],[-87.63353733920563,41.767193670880566],[-87.63350242427379,41.76735378549314],[-87.63354628674371,41.76901467449647],[-87.63235649082472,41.76903201670339],[-87.6313589102554,41.76905736437551],[-87.63125279926639,41.7713928351698],[-87.63103881150381,41.77269487319853],[-87.62995549387524,41.77270899651122],[-87.6299730741449,41.772862864993684],[-87.63004071064461,41.77535290166965],[-87.6300522350284,41.77543897834162],[-87.63008505102738,41.77625741738036],[-87.63005256955853,41.77693456300704],[-87.6300848545977,41.77817480492242],[-87.63013257729594,41.77940749601667],[-87.63014970093062,41.77998703057192],[-87.62854268890457,41.780004792492115],[-87.62859923802752,41.78013785107257],[-87.62888897011426,41.78030398356275],[-87.62891332097651,41.780765694992574],[-87.62896996245419,41.78314744316511],[-87.62826259186303,41.78316030294901],[-87.62677988354001,41.783182634204685],[-87.62540406584016,41.78320997753243],[-87.62538289104641,41.782242677134306],[-87.62536105253798,41.78158147077703],[-87.62535705931965,41.78079789667596],[-87.62537484909593,41.78005828631045],[-87.62473182781268,41.78004839096945],[-87.62396624464904,41.78001251858103],[-87.62354198543909,41.780011325153],[-87.6210631553623,41.780047520968004],[-87.62055250137972,41.78008769984285],[-87.62010157093822,41.78015385146736],[-87.61970345981547,41.78016850352982],[-87.61843314829314,41.78018692329736],[-87.61562233042909,41.780239138429835]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Ashburn","SEC_NEIGH":"ASHBURN","Creation D":"08/01/2014","Street Add":"8300 S KOSTNER AVE","Community":70,"COUNT":41,"Area":13546033,"sqmi":0.485869,"density":84.38488},"geometry":{"type":"Polygon","coordinates":[[[-87.71254775561133,41.75733733382746],[-87.71184372077529,41.75722993013596],[-87.71134846810199,41.75718334123181],[-87.71100546942546,41.7571684484268],[-87.70964418009082,41.75718610841541],[-87.70902158084289,41.757232810882485],[-87.70743205101837,41.757259495637626],[-87.7074474726574,41.75713402765187],[-87.70695444911952,41.75714128895744],[-87.70611869955867,41.75719984862027],[-87.70423176568039,41.75723412719379],[-87.70278114698813,41.75725087393461],[-87.70261651280879,41.75719886390427],[-87.70212920099776,41.75720612954342],[-87.70117854169926,41.757255788995124],[-87.69933779570214,41.75729813117734],[-87.69605242542644,41.75735267931115],[-87.69190575105485,41.75740747380611],[-87.69017507359895,41.757437248148435],[-87.68954416820287,41.757488257482855],[-87.68876905127506,41.75748322581906],[-87.68816884924186,41.75744177983625],[-87.68674584504201,41.757451466626115],[-87.68669743252605,41.757529886822375],[-87.6848071281907,41.75757001685262],[-87.68410303519559,41.75756363911976],[-87.68382751366788,41.75758163506576],[-87.68348028580414,41.757577613396585],[-87.68324873235434,41.757596885748924],[-87.68199602753114,41.75761243144281],[-87.68153947804085,41.757636599299225],[-87.68120060450151,41.757621983955126],[-87.67858798381364,41.75765343521107],[-87.67853456428365,41.75745519785143],[-87.67851260609773,41.75682113844142],[-87.67841241002145,41.75532080484092],[-87.67838801486617,41.754791357925086],[-87.67836675070235,41.75404409927517],[-87.67821015067611,41.74817999481541],[-87.67824187818974,41.747447027917715],[-87.67813665492746,41.74744841673921],[-87.67811846574152,41.747273369917345],[-87.67811752355811,41.74680381328699],[-87.67815604305983,41.746562557615654],[-87.67813644777056,41.74587963784397],[-87.6781517692084,41.74570622996396],[-87.67812172451235,41.74449485748782],[-87.67807846762372,41.74369653792465],[-87.6780232784659,41.74321767001666],[-87.6778902023125,41.74254290848685],[-87.67763940500411,41.741723316047306],[-87.67741656261171,41.741156660817786],[-87.67719330659556,41.74065984603134],[-87.67688881542152,41.740111384726326],[-87.67609101024617,41.739297595194444],[-87.67529902019257,41.7386752763243],[-87.67525961396716,41.73861961552423],[-87.67435514430915,41.73755221779044],[-87.67352997490131,41.736554384262995],[-87.67301549971101,41.735943563366966],[-87.67279134817521,41.7358982424922],[-87.67278502251766,41.735654382069356],[-87.67308255593424,41.73565672496481],[-87.67337226768963,41.735659005699446],[-87.67513382674072,41.7356288159937],[-87.67755949364813,41.73559447924745],[-87.67817765222378,41.73558960243734],[-87.68162706118886,41.73554172318311],[-87.6825140471793,41.73552728457392],[-87.6869532291348,41.7354509678767],[-87.68861328833404,41.735424371326836],[-87.69233317263698,41.7353591764217],[-87.69401065586588,41.735333696256525],[-87.69547013744527,41.735304787259736],[-87.69855476341647,41.735255457328435],[-87.70048521369469,41.73522038546072],[-87.70124398010418,41.73521040101906],[-87.70147060109849,41.735220374369455],[-87.70215111590856,41.73518709372194],[-87.7046469611944,41.73514852484876],[-87.7061006148056,41.735122714099404],[-87.7076908628599,41.7350998242361],[-87.70915746155879,41.73508384195258],[-87.71277852710924,41.73501528072354],[-87.71399093546509,41.7349869964461],[-87.71969644867623,41.73488695212211],[-87.7223391202868,41.734844418619005],[-87.72358779915348,41.73481949193215],[-87.72595576140402,41.734779781435826],[-87.72715956935726,41.73473388657728],[-87.72790960968355,41.73472368025882],[-87.73111051138766,41.734666486481544],[-87.733584527706,41.73462717480448],[-87.73825787135907,41.73454913655859],[-87.73860654428377,41.73456617300133],[-87.73952657909621,41.734560036042396],[-87.74106728335792,41.73452355755392],[-87.74095302515089,41.73555867432575],[-87.74092795510548,41.73603808720968],[-87.74093262844742,41.736865138893485],[-87.74098202750028,41.738415109469074],[-87.74109437803567,41.74164001296467],[-87.74116359787477,41.74354986398062],[-87.74119528959841,41.744332073973254],[-87.74122779774778,41.745436169420266],[-87.74130387435453,41.74764556926052],[-87.74130686314612,41.748369259531074],[-87.74131987859091,41.74871966546539],[-87.7413919359154,41.74952414750195],[-87.74141308909921,41.75066814003336],[-87.74144411315503,41.75149167570577],[-87.74146648421646,41.751781233381756],[-87.7414674131179,41.752278479488155],[-87.7414973732931,41.75267140113425],[-87.74149563409958,41.75329154995907],[-87.74121169064661,41.75327851973341],[-87.73939561354997,41.75314462312159],[-87.73911916149599,41.75311815216437],[-87.73730617663347,41.75314615251838],[-87.73658220015909,41.753164349071],[-87.73658196972673,41.75304085394303],[-87.7323291107071,41.75332075276165],[-87.73227317017131,41.753200561260286],[-87.73201306937639,41.753165884378234],[-87.7310791928876,41.753193277381676],[-87.72920157962837,41.75322022157188],[-87.7272451956273,41.75326143922741],[-87.72650797862325,41.75326490848334],[-87.72494487779709,41.753293443495735],[-87.7242823535497,41.75332880630066],[-87.7220362851674,41.753374093186814],[-87.72210187865319,41.754134164150585],[-87.72214654090367,41.754334901446114],[-87.72217066159756,41.7548602518911],[-87.72214691450942,41.75552264646883],[-87.72217742507301,41.75660158418158],[-87.7221782079012,41.757501947954],[-87.7221917834026,41.7578017256133],[-87.72228674742378,41.76146963460922],[-87.72207406387913,41.76141053394928],[-87.72156998590823,41.76122775573336],[-87.72129847127198,41.76111276407639],[-87.72062116549797,41.760790471649756],[-87.72016110603876,41.760556809300674],[-87.71861471552708,41.759751668605794],[-87.7182981553807,41.75960521207781],[-87.71800601515658,41.7594925040282],[-87.71722880485162,41.759224542298746],[-87.71710263122748,41.75919573622935],[-87.71622608710014,41.758776298356054],[-87.71622182861559,41.758886047710234],[-87.71553846086718,41.758532133185305],[-87.71460743321951,41.75811101808617],[-87.71392076367499,41.757768739434916],[-87.71372003731301,41.7576798393165],[-87.71327673065694,41.75751930738347],[-87.7129720114535,41.75743018744834],[-87.71254775561133,41.75733733382746]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Mount Greenwood","SEC_NEIGH":"MOUNT GREENWOOD,MORGAN PARK","Creation D":"08/05/2014","Street Add":"10852 S DRAKE AVE","Community":74,"COUNT":30,"Area":75584290,"sqmi":2.711057,"density":11.06579},"geometry":{"type":"Polygon","coordinates":[[[-87.69645961375062,41.70714491311908],[-87.69643643133797,41.706261990205924],[-87.69631721263876,41.7027048259276],[-87.69630093019563,41.702285861546066],[-87.69614814752507,41.698940575566006],[-87.69602076977921,41.69892817508596],[-87.6957623011374,41.69171534137866],[-87.69575662111806,41.6916265569354],[-87.69591677453086,41.69162485165815],[-87.69576593650325,41.68807557664976],[-87.69605432522296,41.6880770397849],[-87.69614779236892,41.68803279816105],[-87.69660587429613,41.68798448416308],[-87.69742588957183,41.68795565300535],[-87.69798597030676,41.687944645078225],[-87.69843632915149,41.68794817651841],[-87.69947334702094,41.6879333462454],[-87.69941144504735,41.68632891117778],[-87.69939777789376,41.68614740781099],[-87.70062407850148,41.6861362996708],[-87.70055274104567,41.68426278536215],[-87.7021559101748,41.68423932770898],[-87.70541706462592,41.68418729279604],[-87.70538598234673,41.68348706969072],[-87.70528452347916,41.68083836285029],[-87.70528495978486,41.680578860528115],[-87.70581160697645,41.68056601220552],[-87.70714577095416,41.68055341982914],[-87.70732362981099,41.680566381805136],[-87.70879781715755,41.68056131166354],[-87.7099310854709,41.680548144224964],[-87.71013225485108,41.68046216357153],[-87.71048718422763,41.68044961863446],[-87.71135671221549,41.680441058237534],[-87.71139079984175,41.68127051489911],[-87.71157979544651,41.68126742373868],[-87.71159748271165,41.681832630761996],[-87.71141376560095,41.681835589420075],[-87.71150730348204,41.684093583318706],[-87.71547643003,41.68403766209433],[-87.71782033420979,41.68399957812268],[-87.71930678720568,41.683979317927594],[-87.72225678800355,41.68392972612385],[-87.72280755959859,41.68392337742471],[-87.72489572248223,41.68388341896244],[-87.7272822196572,41.6838561648071],[-87.72830829799057,41.68382692103065],[-87.72846902907382,41.68382956159875],[-87.72967646331189,41.68380000028779],[-87.7319535133672,41.68376791980633],[-87.73678385511862,41.683665104449354],[-87.73732841227834,41.68366928986648],[-87.73944971236625,41.683632011095035],[-87.73966082290359,41.68905841722973],[-87.73973900881657,41.69085991065276],[-87.73688208075451,41.691012904991915],[-87.736387702859,41.69102818731003],[-87.73224098906059,41.69110405230485],[-87.73041546006307,41.691134557003224],[-87.72811622957444,41.69118822605722],[-87.72549785262338,41.69123626461049],[-87.72429089545611,41.69125550676264],[-87.72181599450153,41.691300434493556],[-87.72053343382147,41.691315337626406],[-87.72031696722186,41.69128486623446],[-87.72037283994322,41.69221462368137],[-87.72052596545034,41.696152465526836],[-87.72056711454914,41.697109827076034],[-87.72058978930944,41.6974483796557],[-87.72062982383675,41.698349805214825],[-87.72066374003104,41.69928256601694],[-87.72068272003678,41.70025355765873],[-87.72070291724889,41.700687324376226],[-87.72076411227201,41.702450006402785],[-87.72083951912292,41.704278298256376],[-87.72088474087742,41.70500817527068],[-87.72098298264218,41.707869306881946],[-87.72107198292483,41.710690018419925],[-87.72109295268729,41.7115601366379],[-87.72110407531969,41.712526254835225],[-87.7211251070853,41.71316991091953],[-87.71842805890817,41.71321215438701],[-87.7125776238965,41.71329747028653],[-87.71258049404628,41.71318565473777],[-87.71252474067687,41.71147377220838],[-87.71129797078272,41.7114912323222],[-87.71123163718492,41.70945963203851],[-87.71117703750582,41.707658562246],[-87.71112354112954,41.70607372336467],[-87.71018828485097,41.706089897346125],[-87.70921201018449,41.706087452838055],[-87.70791778014282,41.706100505549344],[-87.70502280977232,41.70614783302088],[-87.70261042615029,41.706177649303214],[-87.70213574364001,41.70616930682173],[-87.7013248861407,41.70617824280966],[-87.70137473525372,41.70705170908945],[-87.7012015384393,41.707083577305575],[-87.69668007587092,41.70713551334687],[-87.69645961375062,41.70714491311908]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Morgan Park","SEC_NEIGH":"MOUNT GREENWOOD,MORGAN PARK","Creation D":"08/01/2014","Street Add":"1710 W EDMAIRE ST","Community":75,"COUNT":23,"Area":91877340,"sqmi":3.295456,"density":6.979307},"geometry":{"type":"Polygon","coordinates":[[[-87.64215204650583,41.685082120447184],[-87.64597507907261,41.68503284218401],[-87.64676437002902,41.685020490375344],[-87.64967443702675,41.68498284159446],[-87.65043041628797,41.68497007460737],[-87.65581146067235,41.68490008087896],[-87.65651983118508,41.6848886949132],[-87.66159876515239,41.684820342824594],[-87.66155235508717,41.683880971883326],[-87.66151906228157,41.68289352913681],[-87.66136505811134,41.677544268261634],[-87.66403655085942,41.677489079808595],[-87.66529793639221,41.677468152199395],[-87.6667714086049,41.677437665335084],[-87.66731578160223,41.67596305622931],[-87.66840417725355,41.67618823659244],[-87.66795069271338,41.677417147096016],[-87.67016974761012,41.67738008898793],[-87.67136488430265,41.677350918286905],[-87.67267280841175,41.6773317417622],[-87.67849927396804,41.67722866569634],[-87.67955501892129,41.67722770553639],[-87.68038323239294,41.67724415936508],[-87.68112840685197,41.67726954911722],[-87.6816878556579,41.67730129167911],[-87.68285362075642,41.67726925498976],[-87.68522218955066,41.67722003805677],[-87.68620516228381,41.67720825968185],[-87.68586886028297,41.677972421843265],[-87.68578243014498,41.678202678902466],[-87.68565239808852,41.678670954206794],[-87.68558012984919,41.67914619620858],[-87.68556625489859,41.67962445753666],[-87.68572195737302,41.684475296490774],[-87.68807260230464,41.68444345686061],[-87.68927126025777,41.68442232549755],[-87.6905276274067,41.68440715776234],[-87.69562541555091,41.68433322117062],[-87.69567223542842,41.68567203221662],[-87.69576593650325,41.68807557664976],[-87.69591677453086,41.69162485165815],[-87.69575662111806,41.6916265569354],[-87.6957623011374,41.69171534137866],[-87.69208981237996,41.691759842474056],[-87.69210486704023,41.6922015450007],[-87.69170580292842,41.69220639723764],[-87.69170815973153,41.69227496499966],[-87.69100890321278,41.69228343553862],[-87.69123796907331,41.698981850710894],[-87.68863033510625,41.69901629290535],[-87.68538783829422,41.69904901892144],[-87.68354624720806,41.699072074235],[-87.68153570521918,41.699087418018735],[-87.68124139521107,41.699070599947156],[-87.6805583686052,41.6990593399485],[-87.6798612914498,41.69905790303248],[-87.67673797312113,41.6991164202055],[-87.6746097106424,41.699148890900155],[-87.67287994249303,41.69918641226635],[-87.67229348953141,41.69919541730259],[-87.66921700459002,41.69925987200459],[-87.66575147055875,41.69932931285997],[-87.6651232395755,41.69933781877504],[-87.66283385418139,41.69938711000174],[-87.66170182210716,41.69940720188979],[-87.6587416722618,41.69944359037727],[-87.65777778134364,41.699455499008124],[-87.65732186975998,41.6994712324693],[-87.65206573880543,41.69953640928656],[-87.65122824122767,41.69955098097504],[-87.64973598234518,41.699565083978335],[-87.64716469503416,41.6995968800024],[-87.64399518280423,41.69963160674068],[-87.64260803433334,41.69964094612875],[-87.64258149009731,41.69874357177679],[-87.64248572819456,41.69580571216578],[-87.64244159908769,41.694293649446784],[-87.64239183572703,41.69289813250161],[-87.64234307819531,41.69104615552929],[-87.6423146834307,41.69030213327754],[-87.64215204650583,41.685082120447184]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"O'Hare","SEC_NEIGH":"OHARE","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":37183560,"sqmi":1.3337,"density":0},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.8365808787372,41.986396112425766],[-87.83658161930157,41.97954447842451],[-87.83659471416075,41.9780258476057],[-87.8366108514188,41.97732735733777],[-87.83662673905829,41.97530980926342],[-87.83663074713928,41.974770881201906],[-87.83681311760283,41.97477145302812],[-87.84155493604007,41.974690321566314],[-87.84155823368575,41.97394084342704],[-87.84155036519249,41.9737878883443],[-87.84066006761176,41.97379942525626],[-87.83793390091785,41.973843704915716],[-87.83795130235899,41.97134671095664],[-87.83664890934315,41.97136622097612],[-87.83665028724727,41.97023249310925],[-87.84053248313442,41.9701657891987],[-87.84158907473477,41.970143358158126],[-87.84157511893096,41.971975237547774],[-87.84651078911921,41.971886998398325],[-87.8465387826461,41.971581876289285],[-87.84654591373622,41.970227860642424],[-87.84656061007671,41.96954971562959],[-87.84653912529112,41.96819795218957],[-87.84655501160175,41.96694594345401],[-87.84657035336055,41.966407036435065],[-87.84609104741729,41.96642116172582],[-87.84428312567704,41.96645787571654],[-87.84196994886902,41.9664978342545],[-87.84051814491698,41.96652994811717],[-87.83825599976421,41.966565357432636],[-87.83668207223546,41.96659715541065],[-87.83669376003425,41.96320424709266],[-87.8366958166864,41.96114005747579],[-87.83670198644383,41.96026023361363],[-87.83669886448163,41.959360212603144],[-87.83667243331885,41.957828257370885],[-87.83668658999962,41.956004926076524],[-87.83669260364591,41.954051804611744],[-87.83666372085007,41.951879997201296],[-87.83662996119843,41.95033645400481],[-87.8365763168429,41.94899769971166],[-87.83652053855121,41.94734081160316],[-87.83650127215132,41.94694951681426],[-87.83648502045538,41.94622101999745],[-87.83643294850826,41.944760730652725],[-87.83517826886438,41.94479293765335],[-87.8351208589973,41.944667668585886],[-87.83508050391441,41.94430347219429],[-87.83496714309996,41.94150439266451],[-87.8349063626993,41.940435884220854],[-87.83479499061865,41.93774647059934],[-87.83481017093202,41.93757642243202],[-87.83542315569603,41.93757150821315],[-87.83853014170639,41.93751117425795],[-87.83891143502242,41.93750068702772],[-87.84260554841025,41.93742729289852],[-87.84444642923047,41.9373951628435],[-87.84661919742594,41.93734830172494],[-87.84854945470254,41.93731203878504],[-87.84962055260053,41.937285354279474],[-87.8497776811662,41.937430472553054],[-87.85018742142094,41.937750829432154],[-87.85066017932404,41.938078667084426],[-87.85099761262171,41.93834800428571],[-87.85141194452136,41.93870457267582],[-87.85164285109688,41.93895175367713],[-87.85180609362317,41.939169671416444],[-87.85211178719773,41.93979007750677],[-87.85226713439626,41.94041347637016],[-87.85253233904359,41.94125821697658],[-87.85274177217607,41.94182149572325],[-87.8529549551643,41.942267693348164],[-87.85307559182245,41.94260060631989],[-87.8530955089936,41.94288043568405],[-87.85302429943286,41.94310735993796],[-87.85301273186907,41.94335072431278],[-87.85304727741791,41.943439726556676],[-87.85326069045867,41.94376314784004],[-87.85341606761452,41.94435572667471],[-87.85358278781818,41.945044070631916],[-87.8538222375097,41.94584273452247],[-87.85408173714666,41.946556685268995],[-87.85487051622722,41.94779542407624],[-87.85497588779661,41.948033980188654],[-87.85500439348144,41.94819888925796],[-87.85502174282998,41.94862695078462],[-87.85501321104034,41.948942116641426],[-87.85493571069878,41.94948416129683],[-87.8546643654003,41.95008549713447],[-87.85453280421216,41.95030064440343],[-87.85424601366306,41.950921453604906],[-87.85407255571965,41.951448553209666],[-87.84661243460866,41.9516391771093],[-87.8466207943792,41.95178718065794],[-87.846604725994,41.95568681326672],[-87.8580787825293,41.95544460021708],[-87.85825043250125,41.955578624531896],[-87.8584461861716,41.95585816447236],[-87.85858712224986,41.95614318620716],[-87.85863554117533,41.95638581072831],[-87.85870843805863,41.95659505694177],[-87.85877505124972,41.95693254191781],[-87.85878197269857,41.9572436002789],[-87.85875826618455,41.95741603103974],[-87.858681136832,41.95760865874934],[-87.8584225447952,41.957928250750264],[-87.8581315985989,41.958341643648374],[-87.85774025036274,41.95895640169981],[-87.85757725573883,41.95918997281417],[-87.85741634108261,41.95955900688618],[-87.85703032810751,41.96019582110231],[-87.8568436400438,41.96055420985472],[-87.85647451643956,41.96122728811838],[-87.85629870293761,41.96159079705868],[-87.85582008443492,41.962414652100335],[-87.85567657353306,41.96284377162069],[-87.85559467900589,41.96365722802752],[-87.85550645823488,41.964456031537395],[-87.8554428295791,41.964709359883294],[-87.85530144320855,41.96511864692679],[-87.85496772509742,41.965948643604776],[-87.85486729051682,41.96635851365081],[-87.85477187595316,41.966912940604985],[-87.85477734387803,41.96719951420462],[-87.85485695577898,41.96751842207012],[-87.85497959602327,41.96793029018761],[-87.85503691570976,41.968329400683686],[-87.85502853322132,41.968707710700144],[-87.85477705235641,41.969429597863794],[-87.85432295406487,41.970298030804294],[-87.85417261874188,41.97078477552439],[-87.85413499525708,41.97116817698993],[-87.85418821163287,41.97143241944485],[-87.85427078960775,41.9716209354779],[-87.85446683319007,41.97189532354917],[-87.85459762817902,41.972039007111164],[-87.8549793255915,41.972340814886586],[-87.85515841980448,41.972458052473],[-87.85536192710407,41.97251715953362],[-87.85584134835496,41.972586360546664],[-87.85606341343012,41.97257831009777],[-87.85659222862266,41.97245954274069],[-87.8570432466647,41.972313556390525],[-87.85746442718883,41.97214949826865],[-87.85783321627984,41.97197355816202],[-87.8583869762581,41.971614327406066],[-87.858676048609,41.97146640246299],[-87.85879533610385,41.97143248372457],[-87.85902956043451,41.97143056994139],[-87.85940534760438,41.97149521101171],[-87.85974632890091,41.971597001665685],[-87.86010604580845,41.971756194846954],[-87.8604260227681,41.97192910864378],[-87.86085177525533,41.97222446539034],[-87.86133777507418,41.97260856825489],[-87.86170113718826,41.972987829713766],[-87.86190219194359,41.97332067761687],[-87.86485129693345,41.97324441352508],[-87.86701138584614,41.973195113231164],[-87.86848169846937,41.97315535723911],[-87.86882639064478,41.973169869742506],[-87.86988726227086,41.97312393814948],[-87.87243724364403,41.973061838849986],[-87.88077274736686,41.972854551810244],[-87.88079492254509,41.96918129137848],[-87.88083506872698,41.96550387251259],[-87.88079337575842,41.95823883200541],[-87.88078844362042,41.957200454568095],[-87.88163261361545,41.95711146252463],[-87.88382845797754,41.95736201216052],[-87.88384646561092,41.957300282012056],[-87.88562937968155,41.95753984866097],[-87.88562916640286,41.957486170892814],[-87.89026621410365,41.95809597729608],[-87.89289910543035,41.958050564742656],[-87.89287730506149,41.950793772849565],[-87.90377631734944,41.9506179952036],[-87.91229803534127,41.95237144059234],[-87.91228176291314,41.95143259746741],[-87.91450989306699,41.95198492652992],[-87.91473120033095,41.9520261617904],[-87.9147734281171,41.95434136382896],[-87.9148376768013,41.95508544688825],[-87.91489179282898,41.95545644339062],[-87.91504365918153,41.95619414959003],[-87.91522778870201,41.95684476137234],[-87.91578099413836,41.95713178888967],[-87.9161394268859,41.95727145524992],[-87.91679171236751,41.95746432827699],[-87.91727225289334,41.95755212919673],[-87.91970785119355,41.95796800795226],[-87.91999980324839,41.958012321205636],[-87.92000005879605,41.958151255434665],[-87.92038081081095,41.95819605971271],[-87.92132586603509,41.95828919102685],[-87.92217074485697,41.958383515118044],[-87.92218745076362,41.956531395019454],[-87.92216869398897,41.953872698510416],[-87.92332029300441,41.95414446087181],[-87.92475222991995,41.95450197841751],[-87.92635293591145,41.954864083577164],[-87.9263475212645,41.955715102874365],[-87.9263536851884,41.95690167134763],[-87.92635694306374,41.959016840365585],[-87.927316346255,41.959171723406506],[-87.92838988036225,41.959335722440755],[-87.93001171689424,41.95961706080976],[-87.93073503804956,41.95973814983673],[-87.93153245599613,41.95985197448309],[-87.93208233538819,41.95994203040951],[-87.93215467599553,41.96173709684664],[-87.93222837234478,41.96410923758607],[-87.93225426782782,41.96479938969401],[-87.9347709289782,41.96479989363216],[-87.93476384273356,41.96682462218569],[-87.93680465114358,41.96540610780035],[-87.93812643739032,41.964279471547044],[-87.93971807604416,41.96428493944242],[-87.93971488326999,41.973680122700316],[-87.93971319478686,41.978636371885116],[-87.93972933447755,41.980207872353155],[-87.93975155033674,41.9818918783935],[-87.93982796443345,41.987019117752496],[-87.93982453300532,41.987797364044205],[-87.93985847012323,41.99015288758582],[-87.9398781090123,41.990488022456596],[-87.93989061230798,41.991659347184054],[-87.93991024138651,41.992868291699445],[-87.93993042504016,41.993491404828184],[-87.93916328708511,41.9935264295594],[-87.93880096678623,41.99353262746453],[-87.93865123031495,41.99424940028285],[-87.93848465342566,41.994868913545574],[-87.93838719757336,41.995184232529674],[-87.938172648447,41.995790649493],[-87.93791500303682,41.996402587620956],[-87.93761546042602,41.997031212524256],[-87.93739218041652,41.99744685012952],[-87.9370806125572,41.99796658078424],[-87.93687728799192,41.998282677696466],[-87.93652819454296,41.99879304594318],[-87.9362416024962,41.999174158138096],[-87.93590627997901,41.99959521178583],[-87.93540868722697,42.000165846340245],[-87.93465521663616,42.0009018641673],[-87.93428563431227,42.00123656842037],[-87.93376891213158,42.00166474552069],[-87.9333222867483,42.00200591955502],[-87.93087880400908,42.00376936328142],[-87.93040272011292,42.00412633284005],[-87.93037785323861,42.002741390236466],[-87.93036256114291,42.002206486504164],[-87.92961577415127,42.00221663953282],[-87.92709039089648,42.002240617478044],[-87.92546315694666,42.0022600878814],[-87.92544530168948,42.00104520024658],[-87.92051589583231,42.00113107351271],[-87.92043714294321,42.00119937332627],[-87.92051082593632,42.00495343097986],[-87.91377083923113,42.00507469164804],[-87.91377038952334,42.008704538979316],[-87.91330990301007,42.008720983663416],[-87.91330550110096,42.00625782526989],[-87.91302985085134,42.006268068073865],[-87.91302716811803,42.00508805321887],[-87.91133545305435,42.00511839846652],[-87.91133391439254,42.005095067950656],[-87.90827427748839,42.00520803651995],[-87.90827429679823,42.00522724542715],[-87.90767354642134,42.005248674328904],[-87.90768048201276,42.00892180729195],[-87.90575035197244,42.00899059684222],[-87.90238346823507,42.00809125810991],[-87.90238436836822,42.007916240769525],[-87.89916205353474,42.007049920444274],[-87.89835425972032,42.00679346399618],[-87.89793027092385,42.00663905970869],[-87.89717927998558,42.00633116381537],[-87.89598347934917,42.005784525411386],[-87.89598339378031,42.0056466011912],[-87.8957626587994,42.00565388335786],[-87.89576275153492,42.00587660164619],[-87.89530933861191,42.005668783466234],[-87.89429464735512,42.00570217327624],[-87.89434620660064,42.002707649149734],[-87.89354676381694,42.00273698303351],[-87.89357787890118,42.003332487608226],[-87.89322945989628,42.00334390269093],[-87.89326474627393,42.00394155277518],[-87.89188956233579,42.00398670271348],[-87.88999682254699,42.00322672813381],[-87.89026472973788,42.002853427533076],[-87.89038168143375,42.00284958585416],[-87.89038549265018,42.00230009596923],[-87.89435546903279,42.00216964492238],[-87.89435736226505,42.00205970968183],[-87.89923621866673,42.00189917783642],[-87.9024064737636,42.003614994806064],[-87.90240435766229,42.00402700051055],[-87.90406027816721,42.003972558675244],[-87.90406237512244,42.00356044281286],[-87.90311505896925,42.00342009697085],[-87.8995427730907,42.00147669792639],[-87.89744096188615,42.001546243850406],[-87.89745824030219,42.00053219524716],[-87.89297034687179,41.99991342898577],[-87.89186656589015,41.999744592320916],[-87.89081079367331,41.99957170295871],[-87.89075343180981,41.99960979112093],[-87.88982811523051,41.99944717895861],[-87.88939787950486,41.999387600419276],[-87.88834950456483,41.99918974617999],[-87.88673239598191,41.99886217587713],[-87.88500701433507,41.99846939630981],[-87.88495539401734,41.99829694756401],[-87.88453326950588,41.99819503671944],[-87.88454287392207,41.99509891911318],[-87.88035483859638,41.99522985246135],[-87.8769109308715,41.98566860520764],[-87.8758570476722,41.9857013470323],[-87.87586299763885,41.9829385042073],[-87.87489387458623,41.980247240524896],[-87.87502218126305,41.98024396142661],[-87.8737306419111,41.97665700078379],[-87.87588274121151,41.976603467172254],[-87.87589258615718,41.97388141420574],[-87.87300847878782,41.97395303572254],[-87.87297617594703,41.973863225368184],[-87.87257606601455,41.9738732002731],[-87.87264599492474,41.973962449060764],[-87.86965031797197,41.97403235787786],[-87.86860487031439,41.9740537075048],[-87.86860731850244,41.97379757274782],[-87.86783745952687,41.97381517201832],[-87.86783925649452,41.9739825215727],[-87.86749189630267,41.97399055241782],[-87.86749285197486,41.973727990450186],[-87.86550123399047,41.97377417198151],[-87.86200864643806,41.97386352695526],[-87.8620079404697,41.974310427015084],[-87.86175798190209,41.975167624917056],[-87.86168371421817,41.97534931584544],[-87.86124454253917,41.976001181833425],[-87.86102050826261,41.97622937414617],[-87.86067487842784,41.976538678790696],[-87.85996441105743,41.9769934304673],[-87.85937924407972,41.97756570841294],[-87.85883009730073,41.97822849926091],[-87.85845581482629,41.97866415868368],[-87.85701213310308,41.97986510852096],[-87.85627391651039,41.9804615971492],[-87.85603970880724,41.98080655871092],[-87.85587717147907,41.9810985797037],[-87.85578362145854,41.981696921680786],[-87.85578014197435,41.982162571654904],[-87.8559713645914,41.982802026414845],[-87.85623353372425,41.98348167586754],[-87.8565720674089,41.98414624736866],[-87.8566394510731,41.98431869865983],[-87.85664471903264,41.98466278930643],[-87.8565709761681,41.98502230082039],[-87.85647147577568,41.985363241162595],[-87.85636035844487,41.985994056461635],[-87.85630604827952,41.986154476547696],[-87.85608785796913,41.98661745059045],[-87.85587386515901,41.98715316167824],[-87.85558218839738,41.98773745240689],[-87.85553747001578,41.98794272511919],[-87.85556800058013,41.988188595090975],[-87.85568054413275,41.98866265781662],[-87.85576567132503,41.98892700463675],[-87.85583520967614,41.9890520931382],[-87.85550173309127,41.9889439631842],[-87.85482978690709,41.98876018409664],[-87.85460664093813,41.98871836484663],[-87.85385768937755,41.98861606389575],[-87.85316789282946,41.98857676516282],[-87.85198789744996,41.988530989487714],[-87.85107280625658,41.988472045260345],[-87.85058319912392,41.988426272231365],[-87.84953106526582,41.98829821657696],[-87.84856800054605,41.98815864503363],[-87.84505253461775,41.98763368132623],[-87.84440362601399,41.98752137081645],[-87.84398685180673,41.98747675797859],[-87.8432037545506,41.98736094136277],[-87.8417421677689,41.98713545957759],[-87.83892480957066,41.986726976398025],[-87.83801599463762,41.9865750363952],[-87.8374722472674,41.98649404012974],[-87.8365808787372,41.986396112425766]]],[[[-87.94001271998195,41.99810813842864],[-87.94002020835312,41.99810694346464],[-87.94011408251838,42.0007893191036],[-87.93897153744983,42.000806332722966],[-87.93639423702145,42.000857796888596],[-87.93514385941454,42.000889117184926],[-87.93551196383076,42.00048078277277],[-87.93590356821024,42.00010497621949],[-87.936327840657,41.99960327029944],[-87.93693408809665,41.99880335594388],[-87.93707950925942,41.99858574280139],[-87.93905445886372,41.99826104097537],[-87.94001271998195,41.99810813842864]]],[[[-87.93348486778798,42.00542371431415],[-87.93361269599384,42.004881554022624],[-87.9343732483066,42.00498311450207],[-87.93430262703302,42.001963225913755],[-87.93388915192037,42.001971779523785],[-87.93429522123276,42.001646513684385],[-87.93429713978496,42.00172855328583],[-87.9350947345579,42.000937859407976],[-87.93516694540352,42.00333279480531],[-87.93523091803574,42.00583014728664],[-87.93528082400499,42.008008053016404],[-87.93528753192399,42.008151434521814],[-87.93358035370395,42.008173453602545],[-87.93356294656438,42.008018534632356],[-87.93350595411744,42.00565872875376],[-87.93348486778798,42.00542371431415]]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Jackson Park","SEC_NEIGH":"JACKSON PARK","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":23545658,"sqmi":0.844535,"density":0},"geometry":{"type":"Polygon","coordinates":[[[-87.56644818641274,41.77379108279014],[-87.56681082630504,41.77355896339619],[-87.56727627017524,41.77355024060897],[-87.57021646786174,41.77351972510876],[-87.5725803015915,41.7734887495401],[-87.57317173512037,41.773485721367834],[-87.5750237047271,41.77346231210559],[-87.57592731080202,41.773461274963914],[-87.57687298121579,41.77345268646947],[-87.57745046552473,41.77343873191525],[-87.58435680437576,41.77335561399298],[-87.58546499481551,41.773339945957396],[-87.58594587222052,41.77334856390429],[-87.58629615363863,41.77333929086786],[-87.58630034688423,41.773799451079995],[-87.5863341573534,41.7746200489548],[-87.58632714752291,41.77491149441333],[-87.58628964906325,41.77517496857353],[-87.58629645630027,41.77608957247715],[-87.58632393740415,41.77687820319484],[-87.58641370848153,41.778538148230155],[-87.58644629593199,41.77971716883887],[-87.58646472203037,41.78098550599938],[-87.58648830914039,41.78155636118364],[-87.58653675595389,41.78374494230611],[-87.58659538226519,41.786142511403355],[-87.58661434214048,41.787148057728714],[-87.5866990362616,41.790653222291596],[-87.58671273075348,41.7913311764032],[-87.58671010596574,41.79176275253905],[-87.58663757044073,41.79338382667711],[-87.5848170289477,41.793405399403525],[-87.58183885245535,41.79344852503771],[-87.58060247367823,41.79346150633951],[-87.57930134740252,41.79348709998676],[-87.57927654944054,41.793102789889616],[-87.57928365187446,41.79285478016606],[-87.57932472345055,41.79257245388025],[-87.5795208421731,41.792306844835586],[-87.57962814391958,41.792035545915546],[-87.57927456117213,41.79143152458483],[-87.57867844104575,41.79066963953963],[-87.57858214946694,41.79050050831928],[-87.57842327756003,41.79010209241088],[-87.5782719430404,41.78993644091293],[-87.57794645291338,41.78967524141859],[-87.57781664422762,41.789550345406674],[-87.57724722258438,41.78914044559788],[-87.57664974858274,41.78874682359654],[-87.57638976976683,41.78859088164435],[-87.57631743234286,41.78850588163269],[-87.57667938168271,41.78847204140585],[-87.57668143560191,41.788422108717796],[-87.57766705359003,41.78836218522546],[-87.57775900603409,41.788297548502584],[-87.57774763815226,41.7882040682988],[-87.57763871024652,41.788152884714506],[-87.5771499400435,41.78818259900866],[-87.57715232933027,41.788104128250886],[-87.57727358928784,41.78808242353016],[-87.57733018465913,41.78757235965508],[-87.57733832529453,41.787191506462875],[-87.57731050251607,41.78681316140627],[-87.57719685058265,41.78631240495861],[-87.57699663882384,41.7856892323019],[-87.57681817871389,41.78521219811797],[-87.57638250083895,41.784221386171374],[-87.57609953702972,41.78365144600807],[-87.57604590408334,41.78359841037107],[-87.57555584969916,41.7833663055533],[-87.5751892867016,41.78317178709618],[-87.5749687079538,41.78303476406828],[-87.57420719989823,41.78262797098171],[-87.57357344931552,41.78233233808916],[-87.57310061660843,41.78213381695099],[-87.57247865979741,41.78189588659586],[-87.5721324039898,41.781783820868185],[-87.571350459965,41.78155744793044],[-87.57049691753498,41.78137120968774],[-87.56986224811767,41.781279176184725],[-87.56968346015528,41.781296883095344],[-87.56901052001561,41.781454911293615],[-87.5683968426302,41.781608405810964],[-87.56764386869655,41.784622009719904],[-87.56753232043374,41.78459664446813],[-87.56830556246243,41.78153885715131],[-87.56911628981914,41.78135819117404],[-87.57037535439031,41.78104822302874],[-87.57128197047109,41.78083908826072],[-87.5730795982873,41.78025054930143],[-87.57292761096413,41.779894981342885],[-87.57302488121852,41.77979244024465],[-87.57369617082182,41.779638810368766],[-87.57411030979003,41.77952793430661],[-87.57443845816972,41.779371482162595],[-87.57473483239863,41.7791110863238],[-87.57494367399546,41.77881169160499],[-87.57510043445527,41.77845157789545],[-87.57527963177982,41.777867129567746],[-87.57530263797449,41.7774078873676],[-87.57524488632122,41.777144055223175],[-87.57507098920027,41.77678066131739],[-87.57492261218512,41.776554101697094],[-87.57469483157105,41.77628365698515],[-87.57460555923795,41.77608163696112],[-87.57469687728582,41.77598564079813],[-87.57507886784437,41.7759313564259],[-87.57504326602346,41.775785454068036],[-87.57480934792544,41.7757745246623],[-87.57447147021476,41.77563837231879],[-87.5741230056515,41.7755295910789],[-87.5734758352449,41.77550720039982],[-87.5733954527838,41.77548416499757],[-87.57321607482483,41.77558616409282],[-87.5728418759456,41.775607837645644],[-87.57199834495589,41.77582124458485],[-87.57193608338605,41.775877913427294],[-87.57184138682123,41.77607322767402],[-87.57175678996788,41.77640637231318],[-87.57174566733923,41.776602789859425],[-87.57193008233921,41.77688118529663],[-87.57215897722202,41.77718073117973],[-87.57231478840274,41.77733599265364],[-87.57245030416532,41.777409338908676],[-87.57264622666932,41.77733489457361],[-87.57286796317057,41.777620122159334],[-87.57279112075086,41.777669559231605],[-87.57315671998536,41.77800458631384],[-87.57327101636857,41.778136520028696],[-87.5733606764075,41.778305611862116],[-87.57332052097108,41.77841511824847],[-87.57338038052002,41.77862407949734],[-87.57336461716207,41.778903343621415],[-87.57329875474255,41.77907854253527],[-87.5732138353327,41.77919104475817],[-87.5729234850379,41.77925114416267],[-87.57274669856363,41.779319130440015],[-87.57247700098334,41.779306916554695],[-87.5721690094381,41.77918467686066],[-87.57208680673062,41.77900520442823],[-87.57207772970065,41.778904703114485],[-87.5718234666234,41.77857974045912],[-87.57167141576959,41.77854031300789],[-87.57156598455177,41.77846496908254],[-87.57114269700037,41.77804832335884],[-87.57032525241205,41.77741884621674],[-87.57014933316914,41.777228321048696],[-87.5698983655456,41.77699778054433],[-87.5696934264787,41.776966779897904],[-87.56950199364721,41.77684805176289],[-87.56918859678964,41.776688446355664],[-87.56881267156655,41.77640405178623],[-87.56855872849042,41.776150051220306],[-87.56813138892575,41.77569777418004],[-87.56781919410012,41.775311411685315],[-87.5673131159597,41.77464065438977],[-87.56720149159888,41.77447678982432],[-87.56686192776077,41.774074627419594],[-87.56681339256326,41.77395731430078],[-87.56644818641274,41.77379108279014]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Loop","SEC_NEIGH":"LOOP","Creation D":"08/01/2014","Street Add":"299 N LA SALLE ST","Community":32,"COUNT":24,"Area":31485185,"sqmi":1.12931,"density":21.25191},"geometry":{"type":"Polygon","coordinates":[[[-87.60520233379148,41.888469075448654],[-87.6051295633863,41.88834749764723],[-87.60252377672995,41.88838596604802],[-87.60252401641768,41.8882747161958],[-87.60513615674783,41.88822940031024],[-87.60518428324815,41.8881924104697],[-87.60541107603433,41.88822362299272],[-87.6075059524756,41.888189655130766],[-87.60755830829244,41.88815529887338],[-87.60781038872123,41.88818485555462],[-87.60984644418521,41.88797042307699],[-87.60987899991616,41.88778992120845],[-87.60987994269144,41.887159492497894],[-87.6099384850438,41.88708768782467],[-87.6099533269662,41.88612364798861],[-87.60995751642012,41.885263986907866],[-87.60997877590563,41.884798725006206],[-87.60996957943108,41.88435728386971],[-87.60998588782968,41.88408032843201],[-87.6115959834693,41.884069932293066],[-87.61273610868437,41.884058512822676],[-87.61275859430356,41.883675146097445],[-87.61290700825562,41.883346768706694],[-87.61303273794765,41.88321020871322],[-87.6133754417798,41.8829380157579],[-87.61371426134902,41.88275635791224],[-87.61397686810302,41.88265772892463],[-87.61421545323232,41.882592180844576],[-87.61466847023635,41.88251587256706],[-87.61546151831197,41.88249015188179],[-87.61578953516668,41.88243632997465],[-87.61599520938756,41.882361461668275],[-87.61623845661376,41.88220713513309],[-87.61643209567305,41.881963750189186],[-87.61650554443418,41.88172669433012],[-87.61649765861225,41.88141377469742],[-87.61575364817841,41.881416537275435],[-87.6157221294756,41.88056749124293],[-87.61647767660291,41.88055681512531],[-87.61645807565203,41.879777465247464],[-87.61637226980473,41.87977975642409],[-87.6163356173914,41.87782576403151],[-87.61630466613289,41.877818929442526],[-87.61624150920996,41.877020729227795],[-87.61619209371611,41.8760149017627],[-87.6161823299755,41.87497345499878],[-87.61619083701248,41.87462633402037],[-87.61623855270253,41.873767326320134],[-87.61620000751122,41.871969934170444],[-87.61628092171715,41.87196739302138],[-87.61627346227577,41.871780655670314],[-87.61623374258824,41.87171435365963],[-87.61626785064341,41.871556744767304],[-87.61622780204581,41.86981167562019],[-87.61621190289776,41.86889871283204],[-87.61586080129122,41.8687477988571],[-87.61556540034209,41.868540684120205],[-87.61535246000199,41.86830427999869],[-87.61660246599551,41.86816620374142],[-87.618541399331,41.8679898851898],[-87.6178749537702,41.86870473842161],[-87.61761605982596,41.868960069157346],[-87.61746712783612,41.86917557969232],[-87.61733532329795,41.86944199282226],[-87.61723643007018,41.86982869925477],[-87.61722697651656,41.8701395085942],[-87.61725277719626,41.870735829617146],[-87.61727058200853,41.87139395602886],[-87.61737213801761,41.87590118860092],[-87.61746675610536,41.87989256661803],[-87.61749366589211,41.880646577649344],[-87.61748807413787,41.88091766180862],[-87.61747363218912,41.8816189571192],[-87.61742850445258,41.881871969277526],[-87.61733762708408,41.88211454248342],[-87.61719632407188,41.88236089008011],[-87.61704277900722,41.88256232051091],[-87.61675038411231,41.88283947561015],[-87.61653173108813,41.882991294539046],[-87.61629192370506,41.88312678994196],[-87.6153786718636,41.883539882562914],[-87.61487074103655,41.883849549297466],[-87.61466461667732,41.8840263332727],[-87.61435780282865,41.88438086924876],[-87.61521889911799,41.884374474508334],[-87.61723343248956,41.884369685762195],[-87.61897758595939,41.8844247265188],[-87.62129103253154,41.884414986303064],[-87.6215054283038,41.8844007462749],[-87.62287533102761,41.88440294521552],[-87.62383384322861,41.88443977132208],[-87.62412523800296,41.88443690606257],[-87.6244517068887,41.88447144487897],[-87.6243883110251,41.88297943073358],[-87.6243884389777,41.8826262309283],[-87.62437059868658,41.88228439961177],[-87.62433535379377,41.88082729336637],[-87.62435709486525,41.88052258727578],[-87.62436552129384,41.88009179158173],[-87.62433401266884,41.87885382222782],[-87.62431103881418,41.87861178495483],[-87.62431329158916,41.877965983434336],[-87.62430079905116,41.877549206898564],[-87.62425083855267,41.87532893569357],[-87.62423952611178,41.87458446633837],[-87.62417812794627,41.87229429271527],[-87.62414519093409,41.870744130330515],[-87.6241193007785,41.86977182307184],[-87.62413411010024,41.86942641403716],[-87.62409686013527,41.867935100719144],[-87.6241315120037,41.86745658606269],[-87.62563875661456,41.867433371100304],[-87.62741867651461,41.867413588800254],[-87.62746178584429,41.86893095552228],[-87.62748640976547,41.87022285721282],[-87.62751740010019,41.87152447340545],[-87.62755513014905,41.87280194101273],[-87.62759525663321,41.87386171244113],[-87.6276111519886,41.874552398421585],[-87.62796784305232,41.87455500774028],[-87.63067547794122,41.8745216335484],[-87.63064686470446,41.87359738857435],[-87.63056510977242,41.87057607635729],[-87.63049175239168,41.86964771496226],[-87.63043520045342,41.86737398596491],[-87.63175475819865,41.86735005227622],[-87.63302055703346,41.86733388432665],[-87.63361874179957,41.8673190759065],[-87.63473401864778,41.86731465855107],[-87.63481347017078,41.868018120481835],[-87.63496253937333,41.86897847131398],[-87.6350701250208,41.86993887145117],[-87.63517960363008,41.87060743209902],[-87.63543953750234,41.8719653837342],[-87.6355380305366,41.87238211984933],[-87.63575747831722,41.873463231773854],[-87.63586889862324,41.87397131965642],[-87.63593101995886,41.8741448588512],[-87.63606556606156,41.87467311991623],[-87.63629353803131,41.875201069712695],[-87.63634907068953,41.8752774223629],[-87.63682712674864,41.87573861173743],[-87.63706634663274,41.87603295565087],[-87.63733008396775,41.876470614916855],[-87.6374289198279,41.87668825621964],[-87.63765932908747,41.87730798546383],[-87.63771808419828,41.87765299106011],[-87.63777033758326,41.87810997755888],[-87.6378625748008,41.87843534466415],[-87.63809665255334,41.87907331685633],[-87.63811347096217,41.8794086552301],[-87.63819881209922,41.87977432118044],[-87.63827805842128,41.88037041144448],[-87.63828619761132,41.881019748646445],[-87.6382614529421,41.88155025340797],[-87.63822362245102,41.88176097409506],[-87.63823173674407,41.88211684170619],[-87.63818248496118,41.88276797183517],[-87.63813891002063,41.88319041903521],[-87.63808141628495,41.8833819055602],[-87.63791748646788,41.884296200187684],[-87.63788146645045,41.884712200323875],[-87.63776121869049,41.88558029931533],[-87.63765315591834,41.886069656351836],[-87.63758838582004,41.88623413710881],[-87.63743969853276,41.88641962582205],[-87.63727049078622,41.88655660817578],[-87.63684403469964,41.88680775495643],[-87.63597547453067,41.88734318144081],[-87.63579691662022,41.887427690105994],[-87.63561908583124,41.887452048623665],[-87.63483997671243,41.887467619710655],[-87.63426569727089,41.88751898257228],[-87.63377407676359,41.88753412820329],[-87.63337190691172,41.88747635369554],[-87.63223001016337,41.88747987082682],[-87.63125527051326,41.88745481577285],[-87.63078467461874,41.88743141080619],[-87.63006787670649,41.88742117810104],[-87.62928432996642,41.887419423047554],[-87.6287923100251,41.88744077432305],[-87.62823789632489,41.887448540343456],[-87.62761676633801,41.88751182185323],[-87.627264963522,41.887659741786315],[-87.62635599012751,41.88824487427598],[-87.6259871471041,41.88850530891491],[-87.6256644565379,41.88867667436523],[-87.62529215783877,41.888837964926765],[-87.62519042921969,41.88887026714521],[-87.62496824493145,41.88890284331983],[-87.62473020921367,41.88889423945436],[-87.62444186118148,41.888872125011744],[-87.62418745710605,41.88882269475292],[-87.62403204515275,41.88881833207631],[-87.62385808886262,41.888893327765054],[-87.62360708350964,41.88890516861959],[-87.62271368559637,41.88883592241056],[-87.62120026804487,41.88865563604029],[-87.61908447877038,41.888433028168784],[-87.6180118355836,41.888311038710775],[-87.61725531645996,41.8883283051532],[-87.61692168332758,41.888352925682355],[-87.61584971764786,41.88839074468879],[-87.61526597329514,41.888422716235226],[-87.61442515410695,41.88841163773795],[-87.61325332204103,41.888404295723255],[-87.61178559838334,41.88846492408184],[-87.61142723791372,41.888512453680704],[-87.61045127408688,41.8884797118449],[-87.607617499587,41.88842950450689],[-87.60520233379148,41.888469075448654]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Greektown","SEC_NEIGH":"GREEKTOWN","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":1650645,"sqmi":0.059205,"density":0},"geometry":{"type":"Polygon","coordinates":[[[-87.64833293023892,41.87536702787531],[-87.64836389011664,41.87653703826579],[-87.64844493999671,41.878932918721965],[-87.64853076683926,41.881761840252],[-87.64693308183041,41.88178547981461],[-87.64599778630325,41.88179403199025],[-87.6459386642924,41.88050851349928],[-87.64592415369349,41.88004233849813],[-87.64587414405604,41.879067057740286],[-87.64586882753983,41.87877360250849],[-87.64580280042568,41.87769957056219],[-87.64576293908996,41.87719873026929],[-87.64560980428354,41.87591607608718],[-87.64557736514926,41.875416902151],[-87.64606369144082,41.87541447850517],[-87.64728981160282,41.8753943109395],[-87.64833293023892,41.87536702787531]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Museum Campus","SEC_NEIGH":"MUSEUM CAMPUS","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":15517071,"sqmi":0.556566,"density":0},"geometry":{"type":"Polygon","coordinates":[[[-87.60914087617004,41.84469250346106],[-87.60940949181385,41.84521773407547],[-87.60940614539744,41.84526650479311],[-87.61141060506466,41.84526654971398],[-87.61172829646101,41.84612372937566],[-87.61204707872741,41.84694763693336],[-87.6123175001081,41.847617561520416],[-87.61294436940707,41.84913978619639],[-87.613978830354,41.85161735909393],[-87.61427483824609,41.85228741634832],[-87.61456575107843,41.85287756358844],[-87.6150310839813,41.85390159383284],[-87.61557464631153,41.85523605905734],[-87.61626970838417,41.8569705216138],[-87.61677681443854,41.85804336889604],[-87.61723752274696,41.85898590181853],[-87.61753749842491,41.859631820304465],[-87.61808306975065,41.86090867522754],[-87.61824216521498,41.86129857818814],[-87.61852673714782,41.86207700316767],[-87.61884481319125,41.86264386281002],[-87.61895025723223,41.862914774452875],[-87.61961074311324,41.864815714765506],[-87.6199374758368,41.86581344077681],[-87.62006233611447,41.866133811822635],[-87.62035425388261,41.867034612621545],[-87.6204143288494,41.86725054490454],[-87.62040042129765,41.86751255459215],[-87.61921454114362,41.8675374569326],[-87.61896156419712,41.867502856860426],[-87.618541399331,41.8679898851898],[-87.61660246599551,41.86816620374142],[-87.61535246000199,41.86830427999869],[-87.61473988030365,41.86832437849477],[-87.61440312329933,41.868446996922984],[-87.61413894363677,41.868494766464394],[-87.61380514917965,41.86850686395134],[-87.61329517759509,41.868491456093],[-87.61305696475232,41.868436805979925],[-87.61277324953582,41.868308269724054],[-87.61259817983827,41.86817569427004],[-87.61241595899293,41.86793799642054],[-87.61234882015268,41.867757387378546],[-87.61234027734012,41.86750794598719],[-87.6123950167127,41.86732501929338],[-87.61248598346292,41.86717232433319],[-87.61268930591876,41.86696931853122],[-87.6126878424318,41.86675309937447],[-87.610655530865,41.866780467226654],[-87.61058381976451,41.86681725594564],[-87.60774861159497,41.86685859827585],[-87.60752593465672,41.86704135820662],[-87.6072438020597,41.867170310490614],[-87.6068420576196,41.86724065702918],[-87.6065126548977,41.86721878732648],[-87.60627816303237,41.86715747818309],[-87.60600233851909,41.86702112660601],[-87.60583508656892,41.86688384280169],[-87.60565363388915,41.86660686862083],[-87.60561110162838,41.86642394226537],[-87.60563614544948,41.86617744795837],[-87.60571512811372,41.86600141037261],[-87.60584201824562,41.86584178549301],[-87.60605108590366,41.865680869699865],[-87.60604539159117,41.86479362747167],[-87.60629255840139,41.86478534073314],[-87.60633569130667,41.864996198222315],[-87.60658571142027,41.865212572410016],[-87.6066742908237,41.86523261789715],[-87.60698801760134,41.86512711029106],[-87.60730338158426,41.8648735596884],[-87.60747192014698,41.864646907272906],[-87.60757256325334,41.86435994577397],[-87.6075751160621,41.86410172808021],[-87.60752503092051,41.86384625128304],[-87.60708686887055,41.862737658615444],[-87.60697702435627,41.862410508553644],[-87.60680670405472,41.862311680224416],[-87.60676527931658,41.86220603951758],[-87.6066243378665,41.862164724703234],[-87.60653156767918,41.86220384749397],[-87.60641300798407,41.86206958855559],[-87.60608571944897,41.862074075556954],[-87.60602100533131,41.86200547113858],[-87.60599438677764,41.86127048446549],[-87.60596459473682,41.86008025127458],[-87.60683766115365,41.86005692582991],[-87.60707239399741,41.85995838277487],[-87.60701083493201,41.8590758542258],[-87.60681370169021,41.8564366122821],[-87.60674760204475,41.85562814917566],[-87.60669698152442,41.85484031114556],[-87.60659665987588,41.85341071551682],[-87.60651073534719,41.85335858913807],[-87.60750340299221,41.85326738162597],[-87.60875835655561,41.85317044810753],[-87.60900419734834,41.853181328730166],[-87.60931652780563,41.85325588387935],[-87.60952530897707,41.85335352289139],[-87.60968327009138,41.853465907832074],[-87.60984694244408,41.85366114929726],[-87.60991436113194,41.85382823279598],[-87.6099229478976,41.85398476451815],[-87.60944961640517,41.85640734508509],[-87.60934181608688,41.85667019644118],[-87.60934467662787,41.85686560525789],[-87.60946418302066,41.857078406933326],[-87.60960054188355,41.85718996916176],[-87.60977043969702,41.85737756677253],[-87.60992459050105,41.857656420549354],[-87.60997357918666,41.857830522872746],[-87.60999210261686,41.85803051261115],[-87.60996382346035,41.85823691259587],[-87.60988973108745,41.85843694067233],[-87.60987749118132,41.85859136494754],[-87.60994245091182,41.85879139099514],[-87.61007357553109,41.85894767868555],[-87.6104216715733,41.85919002030488],[-87.61048200237649,41.85930572281939],[-87.61035812141692,41.85974789224867],[-87.61037368034617,41.85992103293136],[-87.61042572829375,41.860081350947944],[-87.61054660159161,41.86018329253103],[-87.61066811274277,41.86020591062066],[-87.61067484821064,41.86065092355221],[-87.61053016997161,41.8606873074671],[-87.61034789297395,41.860848217621836],[-87.610361283451,41.86139640189615],[-87.61028472199713,41.86139827969153],[-87.6100362249286,41.86180272678947],[-87.60988266472543,41.86215121266848],[-87.60977623199446,41.8624876466648],[-87.60969414731854,41.862998464726694],[-87.60967391983546,41.863245896030676],[-87.60960534641735,41.86340516126879],[-87.60964508530719,41.86350770756218],[-87.6097398643658,41.86409143056776],[-87.6099554867365,41.86463434710697],[-87.61010018116166,41.86490325337445],[-87.61037087814799,41.865322028945776],[-87.61044764100829,41.865318917457415],[-87.61048037230616,41.86586465236232],[-87.61157844077809,41.86585899012811],[-87.61266898964233,41.86584273174424],[-87.61265013859034,41.86527892748686],[-87.6127410779228,41.86528832444383],[-87.6130417477091,41.86466078964289],[-87.61321025970378,41.86425484679251],[-87.61329407446271,41.8639994161685],[-87.61342400749909,41.863461781513124],[-87.61345698601396,41.86309089396695],[-87.61342740510555,41.86285455520447],[-87.6132596447313,41.86237614091325],[-87.61295348306946,41.861799959367055],[-87.6126482340413,41.861371862174956],[-87.61256111018793,41.86137287964872],[-87.61254824992194,41.86082480924569],[-87.61247141645735,41.86082799429153],[-87.61241762183279,41.8607051807089],[-87.61220285628254,41.86063440311779],[-87.61220524435826,41.860461100687175],[-87.61239051507792,41.86045487234872],[-87.61239330262465,41.8603537090355],[-87.61215037785459,41.860345542765856],[-87.61218316545398,41.86017512085664],[-87.6123156166529,41.86015190363165],[-87.61244271270259,41.859987664399625],[-87.61235188324822,41.85963898320627],[-87.61220091236744,41.85926525074298],[-87.61216500728206,41.8586678387198],[-87.61226529556792,41.858507615805074],[-87.61253910862163,41.85849418604847],[-87.6127247240527,41.858358522971145],[-87.61283501010806,41.85818725978764],[-87.61296801714256,41.85785576545271],[-87.61304175707195,41.85761105643958],[-87.61306965803256,41.85726071751382],[-87.61303956516036,41.856962383707305],[-87.61289917559148,41.85658150618418],[-87.61285259338753,41.856355828474854],[-87.6127788755218,41.85620629844845],[-87.61262828815384,41.85599561717382],[-87.61240026762812,41.85577902948468],[-87.61223589825768,41.85566101034684],[-87.61149267492716,41.85519925868723],[-87.61136375925355,41.855098201064365],[-87.61112421774932,41.85480078132391],[-87.61103926305496,41.8545803780176],[-87.61100749003977,41.85438341492192],[-87.61100827362172,41.85418987722938],[-87.61096376747598,41.8538358259217],[-87.61082110945063,41.8533254583219],[-87.61059042384284,41.85283569424415],[-87.61037318446525,41.852504769169244],[-87.61013682811675,41.85219639083841],[-87.60943753008875,41.851352929408506],[-87.6093437341804,41.851211146531114],[-87.60924383031701,41.85098611869724],[-87.60918826237156,41.85068653502039],[-87.60919854608595,41.85044845364086],[-87.60949800356963,41.848980956095794],[-87.6095433483547,41.848696223948274],[-87.60948965299832,41.848074228841355],[-87.60943316777109,41.8478496670612],[-87.60930379125377,41.847602307787824],[-87.60857908728899,41.84664462851874],[-87.608448085877,41.846362927874075],[-87.60840838556283,41.84606613228855],[-87.60843105669497,41.84587851382254],[-87.60854801282845,41.845593326896484],[-87.60868487657493,41.8454009395795],[-87.60900158215617,41.84500611817106],[-87.60914087617004,41.84469250346106]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Edgewater","SEC_NEIGH":"EDGEWATER","Creation D":"08/01/2014","Street Add":"1300 W ARDMORE AVE","Community":77,"COUNT":88,"Area":38865397,"sqmi":1.394024,"density":63.1266},"geometry":{"type":"Polygon","coordinates":[[[-87.64729034405137,41.97774762451641],[-87.64886012839149,41.97704214990636],[-87.64895753506076,41.97696109073609],[-87.64904328091335,41.976814061422104],[-87.64911500253814,41.97684000858708],[-87.64939618438056,41.97684791344977],[-87.64977633117391,41.97678736016096],[-87.65081699738484,41.97652481531228],[-87.6512604016954,41.97645997077322],[-87.65293638361774,41.97642729884024],[-87.66114249176961,41.976303270780036],[-87.66117867409478,41.9776887620187],[-87.66125764997821,41.98041885110331],[-87.66129621109305,41.98193167802807],[-87.6613442034317,41.98360405572127],[-87.66509632950955,41.9835460442874],[-87.66668418216214,41.98352739521256],[-87.66857698952268,41.98349007365863],[-87.6689360131522,41.983488968830464],[-87.67279908393088,41.98342819482654],[-87.67426021687103,41.98340308613368],[-87.674473999501,41.98339443419383],[-87.67460924399388,41.98335739913632],[-87.6746965961668,41.98652725094532],[-87.67459962171986,41.986792963789235],[-87.674705454831,41.99076347183243],[-87.67484988170871,41.9907615732067],[-87.67483452086414,41.992077755688754],[-87.67489095233917,41.994236750752655],[-87.67500654833279,41.99789772531809],[-87.67501250028106,41.99799274794261],[-87.67085836365108,41.99807314362261],[-87.66765946792455,41.99811306158699],[-87.6657495002747,41.99813155214735],[-87.66149845097209,41.998177578355644],[-87.65954846357688,41.998202180337046],[-87.65853312293223,41.9982099919587],[-87.65690019334143,41.99822968907466],[-87.65600350939361,41.99823617421253],[-87.65573692712825,41.998175210363456],[-87.65455589789782,41.99816614613489],[-87.65449857389753,41.9979921074179],[-87.65443113210308,41.99758790145564],[-87.65443789659021,41.997276860195385],[-87.65437848267743,41.99696896779099],[-87.65431006608699,41.996476639725984],[-87.65426176000246,41.99599258079243],[-87.65435365803619,41.99607539492734],[-87.65463828333117,41.9960406627034],[-87.65466375307375,41.99594254385443],[-87.65463897996042,41.99568433350596],[-87.65448468623629,41.99537000722657],[-87.65448453598897,41.9951280239337],[-87.65455864922767,41.994956099611514],[-87.6545568377504,41.99476303484227],[-87.65460042678043,41.99453140904455],[-87.65439068750446,41.994533214503825],[-87.65436054757959,41.99429547167004],[-87.65427799572085,41.99420931001028],[-87.65425913489467,41.99396600826755],[-87.65427989846673,41.99388147281394],[-87.65443270703045,41.99386080648634],[-87.6545061638915,41.993657018770364],[-87.65445491572778,41.99346368959273],[-87.65449651215556,41.99336410164418],[-87.65428646563103,41.99308018020951],[-87.65410034239756,41.993051335292186],[-87.6541486402958,41.99258436762962],[-87.6542121629687,41.99230469872167],[-87.65429995859517,41.991814254780344],[-87.65432458451546,41.99099591750781],[-87.65438202606009,41.99092466183961],[-87.65423844893795,41.99086656843711],[-87.65418695365796,41.99021580501786],[-87.65428880163336,41.9900675651353],[-87.65421043468953,41.989979150996106],[-87.65423268532919,41.98968883673544],[-87.65419792458208,41.98946390860189],[-87.65423810924345,41.98865946717758],[-87.65423209081831,41.988526640065786],[-87.6543078927288,41.988406234197896],[-87.65416564870095,41.988237036733786],[-87.65367887276511,41.98770356568357],[-87.65338840428096,41.98745774927565],[-87.65309224764154,41.98729721622622],[-87.65266418402773,41.986968284173166],[-87.65226168344523,41.98669150465323],[-87.65192572416657,41.986428620694696],[-87.65159029316912,41.98613706150415],[-87.6513124150703,41.98596057830601],[-87.65105608317577,41.98576429964085],[-87.65073595429111,41.98562831520605],[-87.65028006091117,41.985544512806456],[-87.6498936991903,41.9854216056272],[-87.64939645514619,41.98640416692262],[-87.64935180711939,41.98639333548583],[-87.65022107627193,41.98466939518884],[-87.65036503711164,41.98433902716196],[-87.6504864657832,41.98400366795628],[-87.65061967102538,41.98352301861209],[-87.65068344968955,41.983192255831355],[-87.65072389562204,41.98285946076099],[-87.65074131979637,41.98248146907411],[-87.650705431035,41.9811000742884],[-87.65066855636793,41.980661360109934],[-87.65058927932708,41.98034988855222],[-87.65051754584273,41.980210166471664],[-87.6502212180287,41.97972304043179],[-87.65038421519435,41.97961558398856],[-87.65047512813652,41.97945745532008],[-87.6502813800599,41.97939225339025],[-87.65018791260167,41.97932141832687],[-87.64987874940347,41.97900580605791],[-87.6495248144759,41.97871580514638],[-87.64932587375282,41.97857595511326],[-87.64877399668978,41.97815310569233],[-87.64865054937339,41.977997404370115],[-87.64860387243047,41.977840020366976],[-87.64754273519912,41.97778280823541],[-87.64729034405137,41.97774762451641]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Lake View","SEC_NEIGH":"LAKE VIEW","Creation D":"08/01/2014","Street Add":"3245 N WILTON AVE","Community":6,"COUNT":312,"Area":76561177,"sqmi":2.746096,"density":113.6158},"geometry":{"type":"Polygon","coordinates":[[[-87.65454473815758,41.95448837667949],[-87.65130934155997,41.95453503260843],[-87.64509528271023,41.954639749784754],[-87.64430883972359,41.95466276972383],[-87.64399618363731,41.95465419702108],[-87.64102430212411,41.95480280636105],[-87.64084524792322,41.954249728145925],[-87.64078151815875,41.95417678713001],[-87.64066813503221,41.95389196775387],[-87.64059164161226,41.95361245065176],[-87.64048680859356,41.953600625250786],[-87.64022386539163,41.95288762033935],[-87.64003020862656,41.95246529094804],[-87.63984445521861,41.95201739860634],[-87.63952391580122,41.95134388307014],[-87.63920387700259,41.95062483875942],[-87.63889432307006,41.94999407283675],[-87.63863742827543,41.94942907518572],[-87.63844720222869,41.9490437578201],[-87.63813701396334,41.94847274518107],[-87.63790566931374,41.94801319009775],[-87.637546032477,41.94743333928005],[-87.63738457803362,41.94720755242181],[-87.6368846972464,41.946555706946945],[-87.63648965830296,41.946078082406224],[-87.6362529414647,41.945763620818035],[-87.63584238735602,41.94531151043566],[-87.63515280245953,41.94458167189064],[-87.63506247660747,41.944475832347294],[-87.63471164767876,41.94414075375387],[-87.63361713431183,41.94314663888466],[-87.63316416132666,41.94274263689144],[-87.63305116037617,41.942619583510236],[-87.63299551639243,41.94247980594705],[-87.6330275945987,41.94233487195028],[-87.63315470659258,41.94221328298271],[-87.6334527660006,41.94214395818329],[-87.63364289522107,41.94218495668896],[-87.63383584083559,41.942317033560165],[-87.63387742926282,41.942387267673254],[-87.63405568560572,41.942913238962326],[-87.63426787779458,41.94310893067168],[-87.6344927767751,41.943191254095055],[-87.63468928616312,41.943214293971934],[-87.63490303983357,41.94316274147296],[-87.63515990526277,41.943007032321056],[-87.63548486810292,41.94290313618271],[-87.635730762154,41.942914098028815],[-87.63590195075383,41.94296692134984],[-87.63607388881101,41.94309952407926],[-87.63618351167025,41.943243409995624],[-87.63657885901678,41.94409185057437],[-87.63696461589116,41.944897119932136],[-87.63682233033866,41.94504526814391],[-87.6373134125174,41.94575216421327],[-87.6374214498712,41.945819393704326],[-87.63810075879728,41.94603492331696],[-87.63869816093104,41.94620083198604],[-87.63888712230987,41.94631075510914],[-87.63913518870494,41.94632600406188],[-87.63964214590123,41.94632791563612],[-87.63979390900386,41.94635632949202],[-87.63997373513256,41.94645458790044],[-87.6400214495983,41.946396754450475],[-87.64026476055989,41.94651858406873],[-87.6400995248534,41.9467158558234],[-87.64026910504234,41.946697917392285],[-87.6404094488262,41.946833916392706],[-87.6407774652781,41.94730399814507],[-87.64103072431713,41.947549925058006],[-87.64142566429634,41.94780529416227],[-87.64187010255137,41.948004759115854],[-87.64200745731505,41.948013078239605],[-87.64211011501486,41.947966633657146],[-87.64213434125216,41.9478576693784],[-87.64189327123778,41.94753100072604],[-87.6413610887819,41.9470429204982],[-87.64064238840446,41.946464057552134],[-87.64032556028918,41.946175814767564],[-87.64010080204395,41.94600755490332],[-87.64003047780093,41.945912976884856],[-87.64004031203541,41.945772092965306],[-87.64019677576088,41.9455157951729],[-87.64012318007501,41.94538395766357],[-87.6401988198665,41.945293114924056],[-87.6404126421579,41.94523888989305],[-87.64049586070087,41.945055721938935],[-87.6404595414175,41.9448319042909],[-87.63958593610272,41.943595602009104],[-87.63933031261503,41.94352232367525],[-87.63911069533818,41.943372561720466],[-87.63884530284375,41.94311228685121],[-87.63866580555607,41.94285604396112],[-87.63851161208976,41.94250722665135],[-87.63843395026043,41.942124213466286],[-87.63840473472247,41.94177505545966],[-87.63840467959861,41.94142815843187],[-87.63826077706952,41.94114062669668],[-87.63754125746317,41.94028408063237],[-87.63711549993454,41.93982634390386],[-87.6370375663775,41.93981308325776],[-87.63695053949216,41.940258777442374],[-87.63673420567922,41.94022957620339],[-87.6368157667849,41.9397583077909],[-87.63631424279778,41.93974157058998],[-87.63584093311958,41.93977659384681],[-87.63580017917658,41.93961062283363],[-87.63550174803267,41.939713336817896],[-87.63516690303673,41.93995314912309],[-87.63498757455959,41.940148544583],[-87.63477512229673,41.94072828695285],[-87.63472735237707,41.940993194722274],[-87.63469970926116,41.94141440008848],[-87.63460177713955,41.94153688242063],[-87.63444752544675,41.941593789140875],[-87.6344527553098,41.94186115490522],[-87.63434069869055,41.941860472752616],[-87.63433462920256,41.941732147086135],[-87.63411835298353,41.94169736338063],[-87.6339996183911,41.94162412930804],[-87.63390390526912,41.94149525755831],[-87.6338532584414,41.941344349007274],[-87.63388243570982,41.940725393845625],[-87.63385627260779,41.94038499026118],[-87.63373330228387,41.94001610790881],[-87.63355374245074,41.93935683618443],[-87.633430226491,41.939038150053115],[-87.63316789249988,41.93843415083767],[-87.63298504728573,41.93807605793865],[-87.63236514245348,41.937380630495035],[-87.63229203153442,41.93723516190303],[-87.63242555922409,41.937182208320394],[-87.63232698109555,41.937002881732525],[-87.63218798353402,41.93647574774143],[-87.63220604201989,41.936387384204075],[-87.6321697556613,41.93613664308554],[-87.63210056055071,41.935840421659904],[-87.63202766749463,41.93568728822538],[-87.63172147412823,41.93518816546194],[-87.63165279050004,41.935123914697336],[-87.63144812217706,41.93481158009154],[-87.63093766619089,41.93420569088412],[-87.63070741520175,41.93391441011673],[-87.63044280946767,41.93366613999574],[-87.63042364358114,41.933503866565246],[-87.63053027158216,41.933214785323216],[-87.63071269277752,41.9330619508885],[-87.6306915177325,41.93258366929679],[-87.63076184595064,41.93256815547639],[-87.63077251478701,41.93302590172785],[-87.63090763552471,41.93298358933742],[-87.63138352966422,41.93296995185072],[-87.63138042976337,41.932800148674254],[-87.63144137911664,41.93263778886826],[-87.63159975616992,41.93257920712498],[-87.6318181026948,41.93258180277189],[-87.63199679713766,41.93260425912459],[-87.63244210852788,41.93258914092443],[-87.63256157289912,41.932628975230344],[-87.63282239265904,41.93293311686947],[-87.63392613990757,41.93290622894782],[-87.63393002779245,41.933012934388586],[-87.63423994334292,41.932986693565596],[-87.63446987143278,41.93292326087696],[-87.63472384396792,41.93280337479922],[-87.63623951655427,41.93285406607258],[-87.63734572930656,41.932931193286855],[-87.63808930350298,41.93293232280395],[-87.64005646225462,41.93289696206527],[-87.64713918672429,41.932755948793954],[-87.64901192377398,41.932719973981435],[-87.64986950305021,41.93270036235405],[-87.65093975819981,41.932687409131404],[-87.65340537558188,41.93264687767973],[-87.65471934459201,41.93262169313882],[-87.65716832212134,41.93258336998734],[-87.65871047912336,41.93255620619184],[-87.66335918518774,41.93248393204516],[-87.66607575806366,41.932439982238215],[-87.66706947810935,41.93242116465577],[-87.67035280554548,41.93237842514654],[-87.673364154085,41.932342745477555],[-87.67338221197338,41.93339500681683],[-87.67347292076603,41.93598592762488],[-87.6733523972202,41.935987455251784],[-87.6733785866658,41.93711185329809],[-87.67340703458423,41.93804581947501],[-87.67344032400102,41.93942997479523],[-87.67344746446167,41.9402346752648],[-87.67349939650332,41.940858898921725],[-87.6735299516751,41.942105689809175],[-87.67354520003444,41.942993942988004],[-87.67357413965546,41.943712956605815],[-87.67363193187099,41.94537718868523],[-87.67365266322872,41.9464647302592],[-87.67372245248252,41.94692668225786],[-87.67361144175288,41.94716495405871],[-87.67364614052774,41.948459406919845],[-87.67368052949708,41.948828454211736],[-87.67372381648742,41.95048096598464],[-87.67371042130351,41.95068203979076],[-87.6737540075665,41.95233065624027],[-87.67375024541003,41.95252797059921],[-87.67379530947294,41.95407969664817],[-87.67379204047278,41.95436117899487],[-87.67388717313857,41.957650276701095],[-87.67387666958264,41.95796294641912],[-87.67397665771149,41.96152543576247],[-87.66848334100669,41.96160461439796],[-87.6659535628065,41.961634627178746],[-87.66590570187005,41.961472746183894],[-87.66518635458382,41.95962755576183],[-87.6646449684754,41.958329768827916],[-87.66447119030305,41.957955818640414],[-87.66370664015628,41.95673114953952],[-87.66287968532947,41.95538448735804],[-87.66224996120175,41.95437810528625],[-87.66421530892369,41.95435490078523],[-87.66421100385712,41.95408944060565],[-87.66407044289484,41.94897774727792],[-87.66405179937642,41.94846523921414],[-87.66401530118841,41.947067933839605],[-87.65958236134954,41.94714179891845],[-87.65684907960214,41.9471838488155],[-87.65651625625311,41.94720205287502],[-87.65453692204836,41.944747171681094],[-87.65424496895815,41.94446642863957],[-87.65427400527379,41.945514929844634],[-87.65433810603332,41.9474796444057],[-87.65446269362843,41.95179557132567],[-87.65454473815758,41.95448837667949]],[[-87.64878470805161,41.93998753647492],[-87.6462264296278,41.940022144838586],[-87.64547001778806,41.94002110076377],[-87.64439968803708,41.94004496686407],[-87.64448488112666,41.94272779606717],[-87.64454502135855,41.94287066392133],[-87.64537584190437,41.94424816349428],[-87.6471820187944,41.947194895895585],[-87.64817659510864,41.948844728248474],[-87.64927811829334,41.950656685652284],[-87.64937991075465,41.95084579221349],[-87.64961999005958,41.951197896075456],[-87.64961875016002,41.95064282542218],[-87.64958931718921,41.95043867321862],[-87.64953555830458,41.94894720351635],[-87.64947828153416,41.947104069074626],[-87.64940965239862,41.94469314350751],[-87.64936925839562,41.94341695288651],[-87.64936161623173,41.9428314020528],[-87.64926661399122,41.93998093510219],[-87.64878470805161,41.93998753647492]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Lincoln Park","SEC_NEIGH":"LINCOLN PARK","Creation D":"08/01/2014","Street Add":"1350 W SCHUBERT AVE","Community":7,"COUNT":160,"Area":67401451,"sqmi":2.417555,"density":66.18256},"geometry":{"type":"Polygon","coordinates":[[[-87.63168235200274,41.91118052934087],[-87.63171177047273,41.91129160693455],[-87.63186090026703,41.91155267090192],[-87.63403454688012,41.9150909991021],[-87.6347689226485,41.91629057981179],[-87.63611731619602,41.91847335454678],[-87.63653025376841,41.91835654227428],[-87.63712501839801,41.91835238416028],[-87.63820269174016,41.918331470816966],[-87.64056645508253,41.91829507062574],[-87.64434129656108,41.91824393624828],[-87.6479255997701,41.918184515325216],[-87.64850888668116,41.9181797091415],[-87.64845492853443,41.91705617435532],[-87.64843964340548,41.916197140177836],[-87.64841217476977,41.915749118458926],[-87.64837625134008,41.9147517616661],[-87.64835168062993,41.91341775560503],[-87.64829890349975,41.91188709416282],[-87.64827157386186,41.9109196199186],[-87.64950135391493,41.910900486271174],[-87.6557759862591,41.91079486956878],[-87.65686079758385,41.91078451039367],[-87.65693010338137,41.91107558587283],[-87.65741201034346,41.912356438829924],[-87.65759512578248,41.912814530112186],[-87.65771538144746,41.91342524254535],[-87.6578619692033,41.913808640301745],[-87.65807722706323,41.91410805886249],[-87.6583080249177,41.91436256411291],[-87.65865084323794,41.91470773536893],[-87.65923478593132,41.91514735978833],[-87.65954698199344,41.915307287143655],[-87.65986984529759,41.9154513048054],[-87.66026814792855,41.91571176230171],[-87.66073539839365,41.91596963108986],[-87.66092978289075,41.91611802482036],[-87.66117222591473,41.91618242431713],[-87.66132892672101,41.916179115667866],[-87.66206618405333,41.91591951536771],[-87.66244891656112,41.91569184102754],[-87.66264862736091,41.91559149842104],[-87.66302887729509,41.915488258108795],[-87.66362055999934,41.91561500657829],[-87.66377108192783,41.915678454992324],[-87.6638959129563,41.915890143592904],[-87.66421599039326,41.916796192955545],[-87.66429737804333,41.91711941581468],[-87.6644451319081,41.91755438597197],[-87.66460194310842,41.917801236996056],[-87.66475210367658,41.917991902184305],[-87.66495784755435,41.918151771191624],[-87.66542629352676,41.9185882465106],[-87.66572184695087,41.91893000547953],[-87.66607058072252,41.9194374916901],[-87.66646258903764,41.92002755493425],[-87.66733892889398,41.920879097770566],[-87.66767813935876,41.92134341221058],[-87.66809607152626,41.9220297499515],[-87.66836608141884,41.922170528526316],[-87.66892530414407,41.922283809212175],[-87.66928497829798,41.92238888064657],[-87.6695096734256,41.922413835121326],[-87.66975772522757,41.92240813393118],[-87.67015119924878,41.92237234204994],[-87.67062687553262,41.922383972044315],[-87.67088909414615,41.92237603953556],[-87.67111167939602,41.92241117569657],[-87.67165006085146,41.922550749806284],[-87.67216130359884,41.922806410512806],[-87.67297374320411,41.92339804819548],[-87.67345951038533,41.92378429119042],[-87.67376691632921,41.923995826252536],[-87.67425507051838,41.92439025763055],[-87.67442009748973,41.924629595571595],[-87.6744648201823,41.92483651976422],[-87.67451286991064,41.92595232265616],[-87.67455456906816,41.92614246221142],[-87.67474610136112,41.92643134771864],[-87.67493827585007,41.9266579426982],[-87.67583066903,41.92722559472249],[-87.6765235099479,41.92759141339206],[-87.67720225966562,41.92784493605606],[-87.67778988372184,41.928022550662874],[-87.6782891766374,41.928123819016335],[-87.67970518413081,41.928464203007124],[-87.67983989776504,41.92860533681711],[-87.67995081489481,41.92886005565705],[-87.68039977943802,41.92980028310126],[-87.68047476884705,41.92992804143875],[-87.6808046842501,41.93064045090729],[-87.68129420644856,41.93093497012586],[-87.68214868660849,41.93140427898385],[-87.68284169128378,41.93215263224994],[-87.6828401597124,41.93222871287948],[-87.6759370385603,41.93231305894172],[-87.673364154085,41.932342745477555],[-87.67035280554548,41.93237842514654],[-87.66706947810935,41.93242116465577],[-87.66607575806366,41.932439982238215],[-87.66335918518774,41.93248393204516],[-87.65871047912336,41.93255620619184],[-87.65860272464516,41.92967407054861],[-87.65856073851326,41.928441421328344],[-87.65853433461952,41.927993354239135],[-87.65852934103523,41.927511796217786],[-87.65844028248843,41.92492991946887],[-87.65833494805526,41.9216614422918],[-87.65136840468801,41.92177223293181],[-87.64863255832,41.921817050922485],[-87.64872855803684,41.92457972655343],[-87.6487705416888,41.92566413699422],[-87.64884791691863,41.927851798174885],[-87.64897835941635,41.93177941826951],[-87.64901192377398,41.932719973981435],[-87.64713918672429,41.932755948793954],[-87.64005646225462,41.93289696206527],[-87.63808930350298,41.93293232280395],[-87.63734572930656,41.932931193286855],[-87.63623951655427,41.93285406607258],[-87.63472384396792,41.93280337479922],[-87.63446987143278,41.93292326087696],[-87.63423994334292,41.932986693565596],[-87.63393002779245,41.933012934388586],[-87.63392613990757,41.93290622894782],[-87.63282239265904,41.93293311686947],[-87.63256157289912,41.932628975230344],[-87.63244210852788,41.93258914092443],[-87.63199679713766,41.93260425912459],[-87.6318181026948,41.93258180277189],[-87.63182144548125,41.93244420215723],[-87.63153908660523,41.93244453481911],[-87.63128086571943,41.93241855929316],[-87.6310007605947,41.93227436917669],[-87.63085012174933,41.93216692009048],[-87.63073643975726,41.93198262942543],[-87.63067367185273,41.931771650968244],[-87.63069726127536,41.93159899983957],[-87.63078634353987,41.93138895031262],[-87.63095176288354,41.93081217776964],[-87.63099959049943,41.93040748121962],[-87.63101037510425,41.930083555598685],[-87.63096461687836,41.929640487097764],[-87.63091026617045,41.92932156305573],[-87.63083410496976,41.92901330513279],[-87.63074947004499,41.928818392501114],[-87.63069399486349,41.92860205876711],[-87.63039599913259,41.928081848027226],[-87.6306114338804,41.92799640423594],[-87.63032679690055,41.92762737990402],[-87.63003116035851,41.92734277749889],[-87.62979119513551,41.927078658034326],[-87.62963921811773,41.92680003901382],[-87.62959750395656,41.92657983459661],[-87.62962913101897,41.92622322454058],[-87.62970626308213,41.926092258237134],[-87.62987646114665,41.926160135438614],[-87.63017717452814,41.9258857772184],[-87.63027496853759,41.92574761732385],[-87.63027011164193,41.92543020156274],[-87.63019161557709,41.924677694921265],[-87.63008003700844,41.92403681119669],[-87.62993780263666,41.92354746866002],[-87.62990313077752,41.92348243744667],[-87.62958141444186,41.92319885450082],[-87.62927316820772,41.92299718541099],[-87.62900319971374,41.9227499763869],[-87.62838292881128,41.9231180669394],[-87.62833630664554,41.923073955732136],[-87.62926848560537,41.92252064958629],[-87.62948583343262,41.9224405061385],[-87.6294269066156,41.922285562828634],[-87.62925831635704,41.92204196702729],[-87.62898827174726,41.92169165727539],[-87.62885208194254,41.92148250778617],[-87.62867969791635,41.921293525868535],[-87.62853576782689,41.92103323132371],[-87.6277570691683,41.921404599056565],[-87.6277031942947,41.9213619795046],[-87.62876114808802,41.92085717275187],[-87.62893387887847,41.92082077387861],[-87.62891721183787,41.9207291240546],[-87.62868058009474,41.92028829444746],[-87.62842682956042,41.9199775180521],[-87.62822639020473,41.91983424632756],[-87.62795613050226,41.919504843704864],[-87.62735021406289,41.91979974604765],[-87.62732504012725,41.9197467926681],[-87.62836525028496,41.91923957513807],[-87.62840630016804,41.919141968119504],[-87.62829408799729,41.919024951219264],[-87.6281520421437,41.91880445892733],[-87.62789328716616,41.918528474213595],[-87.62749436353022,41.91821897135206],[-87.62735447734248,41.918002827200695],[-87.62683157583292,41.9183009263434],[-87.62680008230605,41.91825144683445],[-87.6278557872078,41.917643066373174],[-87.62790894676246,41.91760033580745],[-87.62758233027658,41.91721471434856],[-87.62735384788111,41.91705655908546],[-87.62708483995104,41.916838412873844],[-87.62684557226753,41.91656227170934],[-87.62670522606194,41.91643500935046],[-87.62609272731709,41.9168357641223],[-87.62604372859595,41.91679440897517],[-87.62681257607723,41.91628594498294],[-87.62663238447153,41.91613379338197],[-87.62628807821504,41.91575771841768],[-87.62608613192633,41.91563281963969],[-87.62580017062754,41.91552998810082],[-87.62564443047171,41.91536651528427],[-87.62545130900614,41.915224518909945],[-87.6250103759311,41.914829540075864],[-87.62482453635818,41.91469702769679],[-87.62454671341673,41.914546712421966],[-87.62433923150023,41.91438481247996],[-87.62402450457832,41.91417639342746],[-87.623535996434,41.913951586069665],[-87.62326942810571,41.913807403102986],[-87.62290563515508,41.913680756539854],[-87.62242722821398,41.913572692294125],[-87.62173208451783,41.91352843020566],[-87.62155260920416,41.913538377045455],[-87.62109438533635,41.91360463503766],[-87.62077322782761,41.91377091902782],[-87.62059011983345,41.91378701605333],[-87.62052019772412,41.91371487482593],[-87.62044228701627,41.913488980654584],[-87.62025855856746,41.91377872783886],[-87.62019897587254,41.9139658982387],[-87.62019937125726,41.91450140899187],[-87.62014037770611,41.914496981135585],[-87.62013214544967,41.914058320885495],[-87.62016642306962,41.913857106476364],[-87.62029388439751,41.91358888263488],[-87.62044206876327,41.9134128818968],[-87.62077863530666,41.91317572956452],[-87.62105256034572,41.91306074456981],[-87.62126065732957,41.91299773800497],[-87.62158650665849,41.9129344459208],[-87.62209173392544,41.91289622041334],[-87.622323011226,41.912863048582444],[-87.62263422761096,41.91278734050861],[-87.62302837246753,41.91262803514643],[-87.62329009102768,41.912470159064746],[-87.62375790508727,41.91210425447533],[-87.62446476693455,41.911566999612454],[-87.62470625197899,41.911564818366365],[-87.62640461935658,41.91137318855122],[-87.6265661422285,41.91167345874128],[-87.62682719451558,41.91136743592906],[-87.6269029938728,41.911313603068166],[-87.62717118433187,41.91124926472428],[-87.63100570871873,41.911189184368304],[-87.63138196617427,41.91119776883646],[-87.63168235200274,41.91118052934087]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Magnificent Mile","SEC_NEIGH":"STREETERVILLE","Creation D":null,"Street Add":null,"Community":null,"COUNT":0,"Area":882405,"sqmi":0.03165,"density":0},"geometry":{"type":"Polygon","coordinates":[[[-87.62400652170282,41.88882933572185],[-87.62403204515275,41.88881833207631],[-87.62418745710605,41.88882269475292],[-87.62444186118148,41.888872125011744],[-87.62473020921367,41.88889423945436],[-87.6247637870586,41.88889545316219],[-87.6244935901029,41.890011556873354],[-87.6245372276286,41.89181472637689],[-87.62461796184435,41.89496759958512],[-87.6246493351525,41.89648640248064],[-87.62457649699432,41.89697536250707],[-87.62451225563214,41.89755793901427],[-87.62445079876935,41.897888630720416],[-87.62453328056787,41.90001231278662],[-87.62454737333783,41.900480217418654],[-87.62450367033325,41.90080606893057],[-87.62422503467373,41.9008164674995],[-87.62411765911189,41.90082047451393],[-87.62375076860168,41.900834165246586],[-87.6238242053269,41.90050324466998],[-87.62375843828998,41.89920388857372],[-87.62373674082322,41.89837924371687],[-87.62374367550363,41.89775284249361],[-87.62383885482663,41.89695195067189],[-87.62391747123517,41.89653327147559],[-87.6238197791462,41.89254829717968],[-87.62372631476812,41.88985308583364],[-87.62400652170282,41.88882933572185]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Lincoln Square","SEC_NEIGH":"LINCOLN SQUARE","Creation D":"08/01/2014","Street Add":"5014 N WOLCOTT AVE","Community":4,"COUNT":99,"Area":71352328,"sqmi":2.559265,"density":38.68298},"geometry":{"type":"Polygon","coordinates":[[[-87.67440756779523,41.97610340524937],[-87.67438323431772,41.97509979184605],[-87.67435450986267,41.97421539052399],[-87.67433814548208,41.973455427227975],[-87.67428515118743,41.973273759003064],[-87.67424788704143,41.97188731145099],[-87.67423659003457,41.97168472418665],[-87.67419468469772,41.97025288791781],[-87.6742084651911,41.97004333736197],[-87.67418564080194,41.969175461770426],[-87.67410345027211,41.9663370435858],[-87.67407655787234,41.96526481053057],[-87.67407846747489,41.965068885226344],[-87.67402227549698,41.963254395434866],[-87.67397665771149,41.96152543576247],[-87.6773626493526,41.961474702439965],[-87.67861271714187,41.96146334221098],[-87.6809324436185,41.96143236603408],[-87.68314865838005,41.96139861083459],[-87.68433309395053,41.96137639409335],[-87.68643263984512,41.96134282697744],[-87.68893169956816,41.96130932411724],[-87.69085930813802,41.96129855800114],[-87.69474577254057,41.961273426606034],[-87.69484531134788,41.96147532142996],[-87.69493480838555,41.96172532255118],[-87.69507228967508,41.96198991513608],[-87.69547679776797,41.962931203802704],[-87.6956238624513,41.96317916414039],[-87.69597174683952,41.96356116875036],[-87.69605055379486,41.96368163786738],[-87.69667256957064,41.964287826673875],[-87.69693008053406,41.96457440499301],[-87.69703753181825,41.96472110216353],[-87.69729171298894,41.96491026929608],[-87.69792839423027,41.96553036325124],[-87.6983124249114,41.96588528328697],[-87.6984719751738,41.96607740944909],[-87.69902145732597,41.966619875372395],[-87.69910576866835,41.96673145408344],[-87.69948555599368,41.96708181875713],[-87.6995581329608,41.96717544011839],[-87.69986954373236,41.96746889536832],[-87.70011095776107,41.96764958847755],[-87.70048720172421,41.96800240003735],[-87.70073191888703,41.96825476124453],[-87.70090768604332,41.96837008068105],[-87.70108291805366,41.96852098924451],[-87.70143941554628,41.96894182751105],[-87.70145263666026,41.96906259070173],[-87.70154489604846,41.969196713263514],[-87.7018828132632,41.96954480902845],[-87.70202109970172,41.969624438011],[-87.70223987760247,41.96985716944936],[-87.70256444262411,41.97023246689793],[-87.70306262922686,41.97097945875261],[-87.70321880159631,41.971240933123575],[-87.70356940737388,41.97195297465159],[-87.70366301336942,41.972343274819586],[-87.70376085628283,41.97268060782442],[-87.70382496349542,41.973053045652776],[-87.70403771340096,41.97355158381825],[-87.70420679202718,41.97401327731119],[-87.70433822450649,41.974439431281496],[-87.70439128750452,41.97469021282923],[-87.704456335336,41.97485549575784],[-87.70449226006362,41.9751998704308],[-87.7045850271074,41.97537364748147],[-87.70464004215762,41.9756093464546],[-87.70471410739124,41.97569921303415],[-87.70472916065998,41.97585132426341],[-87.70482728252665,41.97613520036678],[-87.70480591785726,41.97619855679128],[-87.70487055617923,41.97644682186958],[-87.7049325101648,41.97656798822174],[-87.70495546433246,41.97672826548484],[-87.70516681778598,41.97740191621643],[-87.70534367809715,41.978049417660664],[-87.70535938839065,41.9781760332257],[-87.7055089851566,41.9786528660419],[-87.70564814500615,41.97899429209445],[-87.7059114796488,41.979829117884535],[-87.70595528612324,41.97992241312898],[-87.70600897249763,41.980193202331904],[-87.70608399843367,41.98045197873252],[-87.70619806272448,41.98071291672492],[-87.70624747447262,41.98095473112128],[-87.70635581727554,41.98118794870734],[-87.70648943597847,41.981649099934394],[-87.70650381841506,41.981761416501186],[-87.70666435927059,41.98212532312283],[-87.7067179106243,41.982440375093105],[-87.70681700540675,41.98273945737062],[-87.70690177438159,41.983080467376965],[-87.70506364735128,41.983092773821625],[-87.70233719501894,41.98310690247797],[-87.70052851431949,41.983112725792886],[-87.69970993896129,41.983119955771905],[-87.6985178823381,41.9831214105525],[-87.6944603543895,41.98314588193726],[-87.69143541283829,41.98316056591615],[-87.68944833314637,41.98316768674831],[-87.68946231581917,41.98406511779795],[-87.68954115882828,41.986581961026175],[-87.68961364796644,41.98881356328845],[-87.68967255378443,41.99050000314951],[-87.6880677647875,41.99052434176646],[-87.68684561818084,41.99054850097686],[-87.68051013196414,41.99066464803415],[-87.67676115024759,41.990724440814155],[-87.67484988170871,41.9907615732067],[-87.674705454831,41.99076347183243],[-87.67459962171986,41.986792963789235],[-87.6746965961668,41.98652725094532],[-87.67460924399388,41.98335739913632],[-87.67458611403924,41.98237311115809],[-87.67455608787601,41.98147533927503],[-87.67450764592357,41.97981311998708],[-87.67441803676535,41.979682832537314],[-87.67437298331672,41.978009847430705],[-87.67445757627654,41.97781664737464],[-87.67440756779523,41.97610340524937]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Washington Park","SEC_NEIGH":"WASHINGTON PARK","Creation D":"08/06/2014","Street Add":"354 E 57TH ST","Community":40,"COUNT":13,"Area":42373881,"sqmi":1.519866,"density":8.553385},"geometry":{"type":"Polygon","coordinates":[[[-87.60603749216126,41.785874065789926],[-87.60679841839601,41.78586318688841],[-87.60884972835446,41.78582317695127],[-87.61526675237552,41.785710993736366],[-87.61575954154111,41.78569891455303],[-87.6157051193232,41.78357582355873],[-87.61567192978741,41.78207366745556],[-87.61566768308232,41.781895701272724],[-87.61562233042909,41.780239138429835],[-87.61843314829314,41.78018692329736],[-87.61970345981547,41.78016850352982],[-87.62010157093822,41.78015385146736],[-87.62055250137972,41.78008769984285],[-87.6210631553623,41.780047520968004],[-87.62354198543909,41.780011325153],[-87.62396624464904,41.78001251858103],[-87.62473182781268,41.78004839096945],[-87.62537484909593,41.78005828631045],[-87.62535705931965,41.78079789667596],[-87.62536105253798,41.78158147077703],[-87.62538289104641,41.782242677134306],[-87.62540406584016,41.78320997753243],[-87.62677988354001,41.783182634204685],[-87.62826259186303,41.78316030294901],[-87.628246981574,41.78325617985315],[-87.6284259419272,41.78984734031647],[-87.62847267222347,41.791690414445156],[-87.62855540675656,41.79459928532754],[-87.62861132771548,41.79652394829029],[-87.62868512522536,41.79937022106225],[-87.62880936759299,41.799369610966856],[-87.62884901378955,41.8008980753863],[-87.6287948044789,41.80149428109159],[-87.62879823732868,41.801893034487996],[-87.62658307537609,41.80193852279683],[-87.62611153132808,41.80194168526693],[-87.61985043900451,41.80204641168372],[-87.61634772581857,41.802100893407946],[-87.61539069001678,41.802107892354215],[-87.61110853154791,41.802171587675296],[-87.60676961320158,41.80223972709811],[-87.60640720551969,41.80225116311798],[-87.60636958267425,41.801126916085835],[-87.60633581833171,41.799370308930065],[-87.60624210838789,41.795286089355926],[-87.60621151874486,41.79506262100128],[-87.60622221130573,41.79480124097766],[-87.60610328602888,41.788676016814414],[-87.60607770668813,41.78749048852063],[-87.60606392588545,41.787334169129025],[-87.60603749216126,41.785874065789926]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Millenium Park","SEC_NEIGH":"MILLENIUM PARK","Creation D":"08/25/2014","Street Add":"121 E MONROE DR","Community":32,"COUNT":1,"Area":2775228,"sqmi":0.099541,"density":10.04611},"geometry":{"type":"Polygon","coordinates":[[[-87.61748807413787,41.88091766180862],[-87.62031875583081,41.880879328856274],[-87.62201138755955,41.8808595017398],[-87.62433535379377,41.88082729336637],[-87.62437059868658,41.88228439961177],[-87.6243884389777,41.8826262309283],[-87.6243883110251,41.88297943073358],[-87.6244517068887,41.88447144487897],[-87.62412523800296,41.88443690606257],[-87.62383384322861,41.88443977132208],[-87.62287533102761,41.88440294521552],[-87.6215054283038,41.8844007462749],[-87.62129103253154,41.884414986303064],[-87.61897758595939,41.8844247265188],[-87.61723343248956,41.884369685762195],[-87.61521889911799,41.884374474508334],[-87.61435780282865,41.88438086924876],[-87.61466461667732,41.8840263332727],[-87.61487074103655,41.883849549297466],[-87.6153786718636,41.883539882562914],[-87.61629192370506,41.88312678994196],[-87.61653173108813,41.882991294539046],[-87.61675038411231,41.88283947561015],[-87.61704277900722,41.88256232051091],[-87.61719632407188,41.88236089008011],[-87.61733762708408,41.88211454248342],[-87.61742850445258,41.881871969277526],[-87.61747363218912,41.8816189571192],[-87.61748807413787,41.88091766180862]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Near South Side","SEC_NEIGH":"NEAR SOUTH SIDE","Creation D":"08/07/2014","Street Add":"2502 S DR MARTIN LUTHER KING JR DR","Community":33,"COUNT":15,"Area":34252582,"sqmi":1.228571,"density":12.2093},"geometry":{"type":"Polygon","coordinates":[[[-87.61141060506466,41.84526654971398],[-87.61158088907105,41.845266235439574],[-87.61240099156907,41.84516639324702],[-87.6150007913105,41.84516621703663],[-87.61499270628717,41.84510993387019],[-87.61596180511135,41.84509217345766],[-87.61619627182661,41.84515917057372],[-87.61643788912784,41.8455260495211],[-87.61659503182247,41.84564215190308],[-87.61720985189281,41.84565509793266],[-87.61767140559553,41.84572320337663],[-87.61783987811779,41.84572625879264],[-87.62033059867875,41.84568719208079],[-87.6263770885865,41.845596494326294],[-87.62723696033008,41.845579719984926],[-87.62916818463971,41.84555660662325],[-87.62918829845029,41.84613083689359],[-87.62918769436033,41.846601550417276],[-87.62920071904182,41.847127061385216],[-87.62919515044364,41.84750183174276],[-87.62922156591333,41.84796022634965],[-87.62923122226053,41.848709632608625],[-87.62924992511785,41.848888453324214],[-87.62931649141422,41.8517147599934],[-87.62934971662864,41.85288175627776],[-87.63006129854423,41.852877152445245],[-87.63010370299936,41.85329906670897],[-87.63015739910206,41.85496156369408],[-87.63015867400148,41.85550196986057],[-87.63019149518593,41.85632920674688],[-87.63022640691237,41.85777915023551],[-87.6310682569382,41.85776139824259],[-87.63220854315838,41.85775070880566],[-87.6341018908757,41.857720106448454],[-87.63515815936724,41.85772209606266],[-87.63509305352744,41.85819962357536],[-87.63479710986084,41.8588793112818],[-87.63456410789873,41.85921540820143],[-87.63450859376367,41.85938425335215],[-87.63451703348936,41.86041501696011],[-87.63455680335605,41.86098853326786],[-87.63455643758432,41.86166948975999],[-87.63457775888766,41.862327691064614],[-87.63457053617194,41.86290339108437],[-87.63461927778505,41.86371792781188],[-87.63469651853826,41.86631015667711],[-87.63468593415247,41.866746153559646],[-87.63473401864778,41.86731465855107],[-87.63361874179957,41.8673190759065],[-87.63302055703346,41.86733388432665],[-87.63175475819865,41.86735005227622],[-87.63043520045342,41.86737398596491],[-87.62741867651461,41.867413588800254],[-87.62563875661456,41.867433371100304],[-87.6241315120037,41.86745658606269],[-87.62317851139979,41.86747662415325],[-87.62040042129765,41.86751255459215],[-87.6204143288494,41.86725054490454],[-87.62035425388261,41.867034612621545],[-87.62006233611447,41.866133811822635],[-87.6199374758368,41.86581344077681],[-87.61961074311324,41.864815714765506],[-87.61895025723223,41.862914774452875],[-87.61884481319125,41.86264386281002],[-87.61852673714782,41.86207700316767],[-87.61824216521498,41.86129857818814],[-87.61808306975065,41.86090867522754],[-87.61753749842491,41.859631820304465],[-87.61723752274696,41.85898590181853],[-87.61677681443854,41.85804336889604],[-87.61626970838417,41.8569705216138],[-87.61557464631153,41.85523605905734],[-87.6150310839813,41.85390159383284],[-87.61456575107843,41.85287756358844],[-87.61427483824609,41.85228741634832],[-87.613978830354,41.85161735909393],[-87.61294436940707,41.84913978619639],[-87.6123175001081,41.847617561520416],[-87.61204707872741,41.84694763693336],[-87.61172829646101,41.84612372937566],[-87.61141060506466,41.84526654971398]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Chicago Lawn","SEC_NEIGH":"MARQUETTE PARK,GAGE PARK","Creation D":"08/01/2014","Street Add":"6355 S CAMPBELL AVE","Community":66,"COUNT":70,"Area":98279465,"sqmi":3.525088,"density":19.85766},"geometry":{"type":"Polygon","coordinates":[[[-87.67815131699467,41.75765952189081],[-87.67858798381364,41.75765343521107],[-87.68120060450151,41.757621983955126],[-87.68153947804085,41.757636599299225],[-87.68199602753114,41.75761243144281],[-87.68324873235434,41.757596885748924],[-87.68348028580414,41.757577613396585],[-87.68382751366788,41.75758163506576],[-87.68410303519559,41.75756363911976],[-87.6848071281907,41.75757001685262],[-87.68669743252605,41.757529886822375],[-87.68674584504201,41.757451466626115],[-87.68816884924186,41.75744177983625],[-87.68876905127506,41.75748322581906],[-87.68954416820287,41.757488257482855],[-87.69017507359895,41.757437248148435],[-87.69190575105485,41.75740747380611],[-87.69605242542644,41.75735267931115],[-87.69933779570214,41.75729813117734],[-87.70117854169926,41.757255788995124],[-87.70212920099776,41.75720612954342],[-87.70261651280879,41.75719886390427],[-87.70278114698813,41.75725087393461],[-87.70423176568039,41.75723412719379],[-87.70611869955867,41.75719984862027],[-87.70695444911952,41.75714128895744],[-87.7074474726574,41.75713402765187],[-87.70743205101837,41.757259495637626],[-87.70902158084289,41.757232810882485],[-87.70964418009082,41.75718610841541],[-87.71100546942546,41.7571684484268],[-87.71134846810199,41.75718334123181],[-87.71184372077529,41.75722993013596],[-87.71254775561133,41.75733733382746],[-87.71252473720713,41.76058132147183],[-87.7124315869871,41.7605962548218],[-87.71249531587864,41.76268295641857],[-87.71254431906476,41.76439635222147],[-87.71262936346874,41.76717198782777],[-87.7126694102128,41.76829393676434],[-87.71274919291486,41.77080814690491],[-87.71277479028585,41.771522187549884],[-87.71280843356378,41.77317199488183],[-87.71282076446123,41.77334753193748],[-87.7128364445885,41.774259574421684],[-87.71289197416387,41.7765335249089],[-87.7129254632738,41.77809898400675],[-87.712945454977,41.778829694137336],[-87.71272560684896,41.77883209187493],[-87.71274502615424,41.77901371246929],[-87.7127661593994,41.77953691684581],[-87.71289681450311,41.78408719643238],[-87.71290171706875,41.784461023391316],[-87.7129363814257,41.78568038995084],[-87.71289672804387,41.78609662248922],[-87.70971688319587,41.78614836898771],[-87.7055114812553,41.78621185393285],[-87.70372349595428,41.78624328801437],[-87.70233163835242,41.78626226753377],[-87.69507096903952,41.786383086625364],[-87.6943942378576,41.786390247092896],[-87.6931774283796,41.78641623990314],[-87.68771746995166,41.78650012207255],[-87.68484123064414,41.78654813864936],[-87.68400854722871,41.78655196995235],[-87.68368560195637,41.78650977564584],[-87.68078080634272,41.78654594787914],[-87.67967186677443,41.786557246165636],[-87.67912332519046,41.786564073676125],[-87.67897519320915,41.78104632575079],[-87.67894585646066,41.78104684472236],[-87.67875100560178,41.780332904545666],[-87.67848523599666,41.779247346820824],[-87.67848283692636,41.779122858019186],[-87.67879928082122,41.77617145743783],[-87.67881603718389,41.77596573048507],[-87.67880834364553,41.775640904237235],[-87.67855717648344,41.775644125144936],[-87.67835026379662,41.77201922046883],[-87.678715064095,41.77201461975879],[-87.67862000357829,41.768385304075224],[-87.67835603344719,41.768388362163954],[-87.67845088009757,41.767533168377554],[-87.67845122969588,41.766732864319856],[-87.67835077127229,41.76593301460575],[-87.67855105344523,41.764756037172006],[-87.67854016036412,41.763844995112514],[-87.67815131699467,41.75765952189081]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Auburn Gresham","SEC_NEIGH":"AUBURN GRESHAM","Creation D":"08/01/2014","Street Add":"8330 S ADA ST","Community":71,"COUNT":81,"Area":10506535,"sqmi":0.376848,"density":214.9407},"geometry":{"type":"Polygon","coordinates":[[[-87.63990005778422,41.75614578321938],[-87.63983673594807,41.75353876320267],[-87.63980978296925,41.7527231993181],[-87.63976639034503,41.75083897228201],[-87.63975860222672,41.750704658241915],[-87.63936877346053,41.75071054303825],[-87.63945226568126,41.75048717706985],[-87.63948538880078,41.74885758475661],[-87.63909665928277,41.748870945561244],[-87.63906613816654,41.747935918878],[-87.6390623705381,41.74705284781699],[-87.63909216858808,41.745173411507814],[-87.63919014216546,41.743434070656924],[-87.6372922129424,41.74348161574514],[-87.6364772315056,41.74351783934349],[-87.63608122319201,41.74397835111496],[-87.63594552887565,41.74416216652269],[-87.63463955196163,41.74365213193038],[-87.63422572593885,41.74351174071584],[-87.63410781962709,41.74349809316972],[-87.63404014220481,41.74086970857442],[-87.63403202612909,41.74079709964957],[-87.6340083503104,41.739556527754566],[-87.63396298438572,41.73947426538414],[-87.63403720450566,41.73917661647778],[-87.63408106198757,41.73914463747513],[-87.63394025274496,41.73861447197032],[-87.6338828484795,41.73820659248985],[-87.63384692703947,41.737380679424156],[-87.63381038994625,41.73594828097585],[-87.63407976672525,41.73596925703623],[-87.63412816477782,41.73594231372028],[-87.63406893101374,41.73519652992753],[-87.63395747309374,41.73289028657783],[-87.63390665153311,41.73170717805759],[-87.63385500033428,41.7308832726675],[-87.63381543744111,41.7304061612001],[-87.63379764451794,41.72997793989698],[-87.63374238946697,41.72992134505504],[-87.63373383514153,41.728852725292896],[-87.63497248618098,41.7288562536843],[-87.63503783679002,41.72888044405501],[-87.63535424940392,41.72888050036396],[-87.63750289393889,41.72884772931996],[-87.6399654659859,41.72881423317446],[-87.64313264991992,41.72876845288061],[-87.64374429802938,41.728768694824794],[-87.64451753185412,41.728749237575464],[-87.64464608417997,41.72880396136545],[-87.64467358284385,41.72934036537463],[-87.64468120891424,41.72983545778868],[-87.6451831116376,41.72983537734837],[-87.64544295177002,41.72981772326673],[-87.6458243749822,41.729735618643886],[-87.64610237557494,41.72964671898673],[-87.64643267451125,41.72950598959044],[-87.64671104491299,41.729339220994376],[-87.64698144796843,41.72914633313081],[-87.64724342406055,41.72892766634808],[-87.64749244899824,41.72863482513405],[-87.64795136678363,41.72870033904],[-87.64767449189718,41.729454197814846],[-87.64695574866532,41.7313850053861],[-87.64655980183477,41.732436017032626],[-87.64651275537263,41.7325265907278],[-87.64782339721386,41.73252586446912],[-87.64827335528801,41.732440976949505],[-87.64862013441345,41.73245698504117],[-87.64992737531016,41.732449316953684],[-87.65118470624853,41.732428796188366],[-87.65566775218879,41.732365885882],[-87.65711894112772,41.73234723916296],[-87.65809856097299,41.73232924994489],[-87.65818482248983,41.73229980098699],[-87.65940288405247,41.73228505657659],[-87.66045275121068,41.73228208646944],[-87.66079882499348,41.732264042009874],[-87.66168316128147,41.73225096903802],[-87.66239953189091,41.73222778542026],[-87.66296089097106,41.73218920556308],[-87.66333345042212,41.732122851340655],[-87.6637292255103,41.732109598126755],[-87.66538724144904,41.73208558040805],[-87.6653309701785,41.73023722264205],[-87.66789111389383,41.73020852877096],[-87.66811663188147,41.730200613943914],[-87.66914919019521,41.73123296125264],[-87.67308255593424,41.73565672496481],[-87.67278502251766,41.735654382069356],[-87.67279134817521,41.7358982424922],[-87.67301549971101,41.735943563366966],[-87.67352997490131,41.736554384262995],[-87.67435514430915,41.73755221779044],[-87.67525961396716,41.73861961552423],[-87.67529902019257,41.7386752763243],[-87.67609101024617,41.739297595194444],[-87.67688881542152,41.740111384726326],[-87.67719330659556,41.74065984603134],[-87.67741656261171,41.741156660817786],[-87.67763940500411,41.741723316047306],[-87.6778902023125,41.74254290848685],[-87.6780232784659,41.74321767001666],[-87.67807846762372,41.74369653792465],[-87.67812172451235,41.74449485748782],[-87.6781517692084,41.74570622996396],[-87.67813644777056,41.74587963784397],[-87.67815604305983,41.746562557615654],[-87.67811752355811,41.74680381328699],[-87.67811846574152,41.747273369917345],[-87.67813665492746,41.74744841673921],[-87.67824187818974,41.747447027917715],[-87.67821015067611,41.74817999481541],[-87.67836675070235,41.75404409927517],[-87.67838801486617,41.754791357925086],[-87.67841241002145,41.75532080484092],[-87.67851260609773,41.75682113844142],[-87.67853456428365,41.75745519785143],[-87.67858798381364,41.75765343521107],[-87.67815131699467,41.75765952189081],[-87.67712566334379,41.75767323566598],[-87.6754633004304,41.75771455337514],[-87.67234039269263,41.757755659391584],[-87.66969235550563,41.75778388616951],[-87.66969650218326,41.75763073929983],[-87.66635738444755,41.757668501905165],[-87.66547495763574,41.75767366700865],[-87.66450480736219,41.75769992608874],[-87.66374161174933,41.75773801745605],[-87.66360827937254,41.75776631154881],[-87.66199390402042,41.757774693500394],[-87.65877900393264,41.75781636231077],[-87.65792915105253,41.75783126273086],[-87.65717684394743,41.757835413741816],[-87.6566434303793,41.75784873912943],[-87.6540096113927,41.75789014070911],[-87.65393281335696,41.757999459788856],[-87.65102595408113,41.758043979477506],[-87.64666170390986,41.758107508150125],[-87.64652533252192,41.75807307890015],[-87.64432680904791,41.75810725442188],[-87.64423522513943,41.75814375377993],[-87.64418368640348,41.75608841693436],[-87.64408352433672,41.75607720745328],[-87.63990005778422,41.75614578321938]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Beverly","SEC_NEIGH":"BEVERLY","Creation D":"08/02/2014","Street Add":"9542 S LEAVITT ST","Community":72,"COUNT":3,"Area":88779363,"sqmi":3.184338,"density":0.942111},"geometry":{"type":"Polygon","coordinates":[[[-87.67308255593424,41.73565672496481],[-87.66914919019521,41.73123296125264],[-87.66811663188147,41.730200613943914],[-87.66805725338601,41.73014126709761],[-87.66726347237005,41.7288718816715],[-87.66730931845177,41.72868184468322],[-87.66731972340908,41.728436509540465],[-87.66708438610297,41.728033140938905],[-87.6653621497244,41.724803370978144],[-87.66344522717192,41.721201626608696],[-87.66326342096937,41.72120432685627],[-87.66320230798632,41.72109282495527],[-87.66308531650239,41.72010178597474],[-87.66106584437172,41.71568981236206],[-87.65997595429687,41.71400107651105],[-87.65866825351051,41.71134493611463],[-87.65636440824792,41.706777841092396],[-87.65601924562573,41.70678549908544],[-87.65627170540228,41.70610692865233],[-87.65655280553953,41.705377879968616],[-87.65692510742436,41.704356712249194],[-87.65725994615029,41.703474268068554],[-87.65751525224286,41.70275590501028],[-87.65822164687,41.7008575235259],[-87.6587416722618,41.69944359037727],[-87.66170182210716,41.69940720188979],[-87.66283385418139,41.69938711000174],[-87.6651232395755,41.69933781877504],[-87.66575147055875,41.69932931285997],[-87.66921700459002,41.69925987200459],[-87.67229348953141,41.69919541730259],[-87.67287994249303,41.69918641226635],[-87.6746097106424,41.699148890900155],[-87.67673797312113,41.6991164202055],[-87.6798612914498,41.69905790303248],[-87.6805583686052,41.6990593399485],[-87.68124139521107,41.699070599947156],[-87.68153570521918,41.699087418018735],[-87.68354624720806,41.699072074235],[-87.68538783829422,41.69904901892144],[-87.68863033510625,41.69901629290535],[-87.69123796907331,41.698981850710894],[-87.69602076977921,41.69892817508596],[-87.69614814752507,41.698940575566006],[-87.69630093019563,41.702285861546066],[-87.69631721263876,41.7027048259276],[-87.69643643133797,41.706261990205924],[-87.69645961375062,41.70714491311908],[-87.69630527246261,41.70715149340505],[-87.69481771883306,41.70716535722224],[-87.69151939157354,41.707203132717815],[-87.69153330180734,41.70741368421615],[-87.69158406789278,41.7088969634305],[-87.69165319692063,41.71104187632731],[-87.6916950562519,41.71244520186082],[-87.69173048429728,41.713416424239014],[-87.69172881610433,41.713565679071706],[-87.6889708473541,41.71359841037912],[-87.68615945626283,41.71362558757994],[-87.68272418077568,41.71366683831144],[-87.6818416914854,41.71366175671112],[-87.68186083332294,41.7143812899746],[-87.68196390037038,41.717569735731914],[-87.68199706730441,41.71876139865816],[-87.68207714534304,41.721300185949914],[-87.68224384197549,41.72668924632297],[-87.68227701525845,41.727859200062696],[-87.68240167505317,41.731877037730584],[-87.68246755938652,41.73392988479657],[-87.6825140471793,41.73552728457392],[-87.68162706118886,41.73554172318311],[-87.67817765222378,41.73558960243734],[-87.67755949364813,41.73559447924745],[-87.67513382674072,41.7356288159937],[-87.67337226768963,41.735659005699446],[-87.67308255593424,41.73565672496481]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Washington Heights","SEC_NEIGH":"WASHINGTON HEIGHTS,ROSELAND","Creation D":"08/04/2014","Street Add":"10130 S LOWE AVE","Community":73,"COUNT":19,"Area":79635752,"sqmi":2.856375,"density":6.651787},"geometry":{"type":"Polygon","coordinates":[[[-87.63373383514153,41.728852725292896],[-87.63368674028148,41.72698904890166],[-87.63364623470058,41.72578439067751],[-87.63364365759396,41.72522007496831],[-87.63353297476287,41.721591907073574],[-87.6334166421312,41.717952631005765],[-87.63338001489477,41.71613854866771],[-87.63335743269207,41.71522386620236],[-87.63333574431795,41.714645315986395],[-87.63333617298096,41.71435618815046],[-87.63331108647854,41.713419192527226],[-87.63327263343153,41.71168900639117],[-87.63318540918202,41.70888446233078],[-87.63316689891309,41.70797460607203],[-87.63313251342746,41.70704266074295],[-87.64283396928677,41.70691708829667],[-87.6427399684757,41.70384655975457],[-87.64260803433334,41.69964094612875],[-87.64399518280423,41.69963160674068],[-87.64716469503416,41.6995968800024],[-87.64973598234518,41.699565083978335],[-87.65122824122767,41.69955098097504],[-87.65206573880543,41.69953640928656],[-87.65732186975998,41.6994712324693],[-87.65777778134364,41.699455499008124],[-87.6587416722618,41.69944359037727],[-87.65822164687,41.7008575235259],[-87.65751525224286,41.70275590501028],[-87.65725994615029,41.703474268068554],[-87.65692510742436,41.704356712249194],[-87.65655280553953,41.705377879968616],[-87.65627170540228,41.70610692865233],[-87.65601924562573,41.70678549908544],[-87.65636440824792,41.706777841092396],[-87.65866825351051,41.71134493611463],[-87.65997595429687,41.71400107651105],[-87.66106584437172,41.71568981236206],[-87.66308531650239,41.72010178597474],[-87.66320230798632,41.72109282495527],[-87.66326342096937,41.72120432685627],[-87.66344522717192,41.721201626608696],[-87.6653621497244,41.724803370978144],[-87.66708438610297,41.728033140938905],[-87.66731972340908,41.728436509540465],[-87.66730931845177,41.72868184468322],[-87.66726347237005,41.7288718816715],[-87.66805725338601,41.73014126709761],[-87.66811663188147,41.730200613943914],[-87.66789111389383,41.73020852877096],[-87.6653309701785,41.73023722264205],[-87.66538724144904,41.73208558040805],[-87.6637292255103,41.732109598126755],[-87.66333345042212,41.732122851340655],[-87.66296089097106,41.73218920556308],[-87.66239953189091,41.73222778542026],[-87.66168316128147,41.73225096903802],[-87.66079882499348,41.732264042009874],[-87.66045275121068,41.73228208646944],[-87.65940288405247,41.73228505657659],[-87.65818482248983,41.73229980098699],[-87.65809856097299,41.73232924994489],[-87.65711894112772,41.73234723916296],[-87.65566775218879,41.732365885882],[-87.65118470624853,41.732428796188366],[-87.64992737531016,41.732449316953684],[-87.64862013441345,41.73245698504117],[-87.64827335528801,41.732440976949505],[-87.64782339721386,41.73252586446912],[-87.64651275537263,41.7325265907278],[-87.64655980183477,41.732436017032626],[-87.64695574866532,41.7313850053861],[-87.64767449189718,41.729454197814846],[-87.64795136678363,41.72870033904],[-87.64749244899824,41.72863482513405],[-87.64724342406055,41.72892766634808],[-87.64698144796843,41.72914633313081],[-87.64671104491299,41.729339220994376],[-87.64643267451125,41.72950598959044],[-87.64610237557494,41.72964671898673],[-87.6458243749822,41.729735618643886],[-87.64544295177002,41.72981772326673],[-87.6451831116376,41.72983537734837],[-87.64468120891424,41.72983545778868],[-87.64467358284385,41.72934036537463],[-87.64464608417997,41.72880396136545],[-87.64451753185412,41.728749237575464],[-87.64374429802938,41.728768694824794],[-87.64313264991992,41.72876845288061],[-87.6399654659859,41.72881423317446],[-87.63750289393889,41.72884772931996],[-87.63535424940392,41.72888050036396],[-87.63503783679002,41.72888044405501],[-87.63497248618098,41.7288562536843],[-87.63373383514153,41.728852725292896]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Edison Park","SEC_NEIGH":"EDISON PARK","Creation D":"08/01/2014","Street Add":"7334 W COYLE AVE","Community":9,"COUNT":11,"Area":31636313,"sqmi":1.134731,"density":9.693927},"geometry":{"type":"Polygon","coordinates":[[[-87.80675853374643,42.00083736165221],[-87.80677237236748,41.99981027208625],[-87.80678281028553,41.99854546497454],[-87.80681811925203,41.99539194064284],[-87.80792864962804,41.99540350486759],[-87.81033339891574,41.99541965227499],[-87.81031907944971,41.99654519533272],[-87.81035351295502,41.99712427418464],[-87.81093528001068,41.99712502909873],[-87.81400755958532,41.9970453865757],[-87.81940806299643,41.99690824996159],[-87.82110958227686,41.9968628370568],[-87.82141432291371,41.99685053033612],[-87.82140444596864,41.99692164334745],[-87.82139029528344,41.999449123639025],[-87.8213810237305,42.00054604691212],[-87.82136611070544,42.000832310395175],[-87.82133757126107,42.00392409536694],[-87.82134504495278,42.004120860021985],[-87.82130835064925,42.007228770420014],[-87.82131802560995,42.00748141682923],[-87.82128300550589,42.009278953513345],[-87.82126874533354,42.00982745417614],[-87.8212534613193,42.01135686118605],[-87.81972901245913,42.011385587344805],[-87.81973052815968,42.01193344497257],[-87.82009826553073,42.01192559405548],[-87.82006889372185,42.015569638168785],[-87.82123064074095,42.01554129193605],[-87.82120976747073,42.01864249186611],[-87.81740501559031,42.01873047085514],[-87.81619962861625,42.018750842529094],[-87.81161197557677,42.0188507165295],[-87.8079583895977,42.01893229392714],[-87.80729843806594,42.01895495671303],[-87.80654721881675,42.018964573895175],[-87.80655981584816,42.01817831232545],[-87.80657784257942,42.016524692652204],[-87.80661511341124,42.01367568223325],[-87.80664097146405,42.01147817121561],[-87.80667207776418,42.00843448473602],[-87.80669591098393,42.00651294589902],[-87.80675853374643,42.00083736165221]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Hyde Park","SEC_NEIGH":"HYDE PARK","Creation D":"08/02/2014","Street Add":"5340 S HARPER AVE","Community":41,"COUNT":13,"Area":38859161,"sqmi":1.3938,"density":9.327019},"geometry":{"type":"Polygon","coordinates":[[[-87.57930134740252,41.79348709998676],[-87.58060247367823,41.79346150633951],[-87.58183885245535,41.79344852503771],[-87.5848170289477,41.793405399403525],[-87.58663757044073,41.79338382667711],[-87.58671010596574,41.79176275253905],[-87.58671273075348,41.7913311764032],[-87.5866990362616,41.790653222291596],[-87.58661434214048,41.787148057728714],[-87.58659538226519,41.786142511403355],[-87.58843685367506,41.78612043715268],[-87.5892268074257,41.7861207266795],[-87.58967696870603,41.78611129233737],[-87.59119912910568,41.78609882471035],[-87.59563594356769,41.786055775488386],[-87.59600049288646,41.786042555760545],[-87.59658165203017,41.78598618450524],[-87.59692910541101,41.78596979862133],[-87.59824532309818,41.78595943738319],[-87.6056094007213,41.78588079868838],[-87.60603749216126,41.785874065789926],[-87.60606392588545,41.787334169129025],[-87.60607770668813,41.78749048852063],[-87.60610328602888,41.788676016814414],[-87.60622221130573,41.79480124097766],[-87.60621151874486,41.79506262100128],[-87.60624210838789,41.795286089355926],[-87.60633581833171,41.799370308930065],[-87.60636958267425,41.801126916085835],[-87.60640720551969,41.80225116311798],[-87.60585583763627,41.802264295598995],[-87.60395807821071,41.80228328648479],[-87.60347683539064,41.802292427354075],[-87.60042460196135,41.80232357112628],[-87.59792908057231,41.80235441205302],[-87.59532016604037,41.80238095762737],[-87.5947498468187,41.802390574423455],[-87.59217412853843,41.8024165758973],[-87.58934435861647,41.802451357618935],[-87.58819966541847,41.80247214929285],[-87.58702079513581,41.80248609381082],[-87.58664669271948,41.80248945312334],[-87.585584151971,41.80250721258458],[-87.5838235604796,41.80253009731658],[-87.58264801449923,41.80253398803543],[-87.58164791298111,41.802434142663905],[-87.5810482081987,41.80263397933835],[-87.58060819321754,41.802584443641834],[-87.5803766208451,41.80252502285023],[-87.58044958027264,41.802131805813694],[-87.58050068966485,41.80157786169425],[-87.58049731526948,41.80110369634603],[-87.58041651575861,41.80038193539004],[-87.58034182813795,41.79990062485874],[-87.58028256509206,41.79962643569832],[-87.58011002911459,41.79911777122265],[-87.5797877461909,41.7984411725212],[-87.57993726103312,41.79836914607858],[-87.57960801354838,41.7980254731858],[-87.57914171924365,41.79763327434957],[-87.57836321638328,41.79709522113289],[-87.57821015387526,41.79701298471274],[-87.57798804098331,41.79693962462278],[-87.57755324729136,41.79686431535669],[-87.57731642653913,41.7968567198886],[-87.576507385411,41.79704623632107],[-87.57613789512804,41.797031178012695],[-87.57588328231385,41.79697735733593],[-87.57562124852197,41.79686860294933],[-87.57548046129668,41.796740888564386],[-87.57531214340061,41.796646471991885],[-87.57522937382002,41.796512554401495],[-87.57516436913278,41.796240441802226],[-87.57520040786844,41.79604528700093],[-87.57532641263171,41.79580901227208],[-87.5754437144147,41.79543985823957],[-87.5757321671452,41.7953599811522],[-87.57609744057137,41.79510936727184],[-87.576224743061,41.79507398186719],[-87.57645845455595,41.79509582906971],[-87.57661890167716,41.795048586497934],[-87.57691454427439,41.795105419730795],[-87.577388399271,41.79503883424493],[-87.57782985031957,41.79492099009512],[-87.57830371062516,41.79472871285414],[-87.57857411253313,41.794561442144726],[-87.57901162656259,41.79419968313588],[-87.57908204418914,41.79394616046653],[-87.57927029325491,41.79363654072261],[-87.57930134740252,41.79348709998676]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Grant Park","SEC_NEIGH":"GRANT PARK","Creation D":"08/12/2014","Street Add":"888 S MICHIGAN AVE","Community":32,"COUNT":5,"Area":8974786,"sqmi":0.321907,"density":15.53243},"geometry":{"type":"Polygon","coordinates":[[[-87.62040042129765,41.86751255459215],[-87.62317851139979,41.86747662415325],[-87.6241315120037,41.86745658606269],[-87.62409686013527,41.867935100719144],[-87.62413411010024,41.86942641403716],[-87.6241193007785,41.86977182307184],[-87.62414519093409,41.870744130330515],[-87.62417812794627,41.87229429271527],[-87.62423952611178,41.87458446633837],[-87.62425083855267,41.87532893569357],[-87.62430079905116,41.877549206898564],[-87.62431329158916,41.877965983434336],[-87.62431103881418,41.87861178495483],[-87.62433401266884,41.87885382222782],[-87.62436552129384,41.88009179158173],[-87.62435709486525,41.88052258727578],[-87.62433535379377,41.88082729336637],[-87.62201138755955,41.8808595017398],[-87.62031875583081,41.880879328856274],[-87.61748807413787,41.88091766180862],[-87.61749366589211,41.880646577649344],[-87.61746675610536,41.87989256661803],[-87.61737213801761,41.87590118860092],[-87.61727058200853,41.87139395602886],[-87.61725277719626,41.870735829617146],[-87.61722697651656,41.8701395085942],[-87.61723643007018,41.86982869925477],[-87.61733532329795,41.86944199282226],[-87.61746712783612,41.86917557969232],[-87.61761605982596,41.868960069157346],[-87.6178749537702,41.86870473842161],[-87.618541399331,41.8679898851898],[-87.61896156419712,41.867502856860426],[-87.61921454114362,41.8675374569326],[-87.62040042129765,41.86751255459215]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"West Loop","SEC_NEIGH":"WEST LOOP","Creation D":"08/03/2014","Street Add":"945 W MONROE ST","Community":28,"COUNT":3,"Area":52945063,"sqmi":1.899033,"density":1.579751},"geometry":{"type":"Polygon","coordinates":[[[-87.64446845179364,41.859954492253706],[-87.64448811613491,41.86047525514466],[-87.64454239604224,41.862376784974316],[-87.64459378226152,41.863966792984684],[-87.64463090382722,41.86488395667336],[-87.64466953831476,41.86533705452213],[-87.64469733709629,41.866041742814446],[-87.64474973063767,41.866961655245554],[-87.64483774552858,41.86804852167236],[-87.6448966274632,41.868603542356624],[-87.645079157261,41.869946519276795],[-87.64525477865047,41.871372879357814],[-87.6453926858521,41.87229374206902],[-87.64565705766739,41.87370713088983],[-87.64567365800366,41.874015025023645],[-87.64566172606827,41.87434031147105],[-87.64559308955984,41.87499209808436],[-87.64557736514926,41.875416902151],[-87.64560980428354,41.87591607608718],[-87.64576293908996,41.87719873026929],[-87.64580280042568,41.87769957056219],[-87.64586882753983,41.87877360250849],[-87.64587414405604,41.879067057740286],[-87.64592415369349,41.88004233849813],[-87.6459386642924,41.88050851349928],[-87.64599778630325,41.88179403199025],[-87.64693308183041,41.88178547981461],[-87.64853076683926,41.881761840252],[-87.64844493999671,41.878932918721965],[-87.64836389011664,41.87653703826579],[-87.64833293023892,41.87536702787531],[-87.64950388832486,41.87532917386756],[-87.65042688138548,41.87530766275884],[-87.6513649803385,41.87529507040876],[-87.65330849526362,41.87541060212114],[-87.65585035489448,41.87553182769598],[-87.65769819974267,41.87558437141822],[-87.65834428968441,41.8755953605858],[-87.65974034224651,41.875603749560064],[-87.66080852079548,41.875592693675586],[-87.66663654838817,41.87548966125409],[-87.6666647980857,41.876351010649564],[-87.66668783301006,41.87764333990277],[-87.66675412123355,41.878925180599985],[-87.66674916269244,41.87999150637367],[-87.66678986142905,41.88077716998303],[-87.66679327499381,41.88118874474577],[-87.66686970371136,41.883212239169644],[-87.66690708760873,41.88512201645524],[-87.66697889496533,41.88540355338089],[-87.66705621160314,41.88798243704958],[-87.66706868914595,41.88885187769543],[-87.6668586219056,41.888845177650865],[-87.66557488605243,41.888857478613495],[-87.6651179643089,41.888855424499624],[-87.66365280991128,41.88887754281974],[-87.66194133799331,41.88888739331943],[-87.6608449097651,41.888904386181274],[-87.66067605043293,41.88886122810621],[-87.6604803347064,41.88891099460417],[-87.65885265765309,41.88892294066826],[-87.65772558058079,41.88893983349451],[-87.65599459614391,41.88895878051129],[-87.65485717140899,41.88897816373178],[-87.65383505453605,41.888981231183735],[-87.65332975547307,41.88897651129189],[-87.6519716963807,41.888997770262954],[-87.65002296813154,41.88901947862597],[-87.64963323769021,41.889015484962414],[-87.64857455001639,41.88903837568476],[-87.64758261746196,41.889049516700226],[-87.64756583721153,41.88856752795853],[-87.64432225746897,41.888582201971396],[-87.644333925258,41.88903357345529],[-87.64191928163966,41.889055550713636],[-87.64158920448291,41.88905070887455],[-87.64081267635365,41.88907723063452],[-87.64067598852415,41.889042706994665],[-87.63982844587345,41.88904760820938],[-87.63936098293489,41.88908028505858],[-87.639278268374,41.888852818739174],[-87.63920199263774,41.888448789852085],[-87.63906376812255,41.88813574212032],[-87.63884785954816,41.88737277280848],[-87.63876516586556,41.88716154248187],[-87.63856385462724,41.886872042276835],[-87.63839249552372,41.8867264937216],[-87.63758838582004,41.88623413710881],[-87.63765315591834,41.886069656351836],[-87.63776121869049,41.88558029931533],[-87.63788146645045,41.884712200323875],[-87.63791748646788,41.884296200187684],[-87.63808141628495,41.8833819055602],[-87.63813891002063,41.88319041903521],[-87.63818248496118,41.88276797183517],[-87.63823173674407,41.88211684170619],[-87.63822362245102,41.88176097409506],[-87.6382614529421,41.88155025340797],[-87.63828619761132,41.881019748646445],[-87.63827805842128,41.88037041144448],[-87.63819881209922,41.87977432118044],[-87.63811347096217,41.8794086552301],[-87.63809665255334,41.87907331685633],[-87.6378625748008,41.87843534466415],[-87.63777033758326,41.87810997755888],[-87.63771808419828,41.87765299106011],[-87.63765932908747,41.87730798546383],[-87.6374289198279,41.87668825621964],[-87.63733008396775,41.876470614916855],[-87.63706634663274,41.87603295565087],[-87.63682712674864,41.87573861173743],[-87.63634907068953,41.8752774223629],[-87.63629353803131,41.875201069712695],[-87.63606556606156,41.87467311991623],[-87.63593101995886,41.8741448588512],[-87.63586889862324,41.87397131965642],[-87.63575747831722,41.873463231773854],[-87.6355380305366,41.87238211984933],[-87.63543953750234,41.8719653837342],[-87.63517960363008,41.87060743209902],[-87.6350701250208,41.86993887145117],[-87.63496253937333,41.86897847131398],[-87.63481347017078,41.868018120481835],[-87.63473401864778,41.86731465855107],[-87.63468593415247,41.866746153559646],[-87.63469651853826,41.86631015667711],[-87.63461927778505,41.86371792781188],[-87.63457053617194,41.86290339108437],[-87.63457775888766,41.862327691064614],[-87.63455643758432,41.86166948975999],[-87.63455680335605,41.86098853326786],[-87.63451703348936,41.86041501696011],[-87.63450859376367,41.85938425335215],[-87.63456410789873,41.85921540820143],[-87.63479710986084,41.8588793112818],[-87.63509305352744,41.85819962357536],[-87.63515815936724,41.85772209606266],[-87.63601568613528,41.85772870565972],[-87.63663110536936,41.85770724037483],[-87.63776666277172,41.857681900008956],[-87.63893572318932,41.8576654755149],[-87.6390136663026,41.86001802754479],[-87.64051154367466,41.859993648793704],[-87.64125181581322,41.85999446196236],[-87.64335562747772,41.8599606055379],[-87.64446845179364,41.859954492253706]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Bucktown","SEC_NEIGH":"BUCKTOWN","Creation D":"08/01/2014","Street Add":"2023 W ARMITAGE AVE","Community":22,"COUNT":67,"Area":28800760,"sqmi":1.033025,"density":64.85806},"geometry":{"type":"Polygon","coordinates":[[[-87.6828401597124,41.93222871287948],[-87.68284169128378,41.93215263224994],[-87.68214868660849,41.93140427898385],[-87.68129420644856,41.93093497012586],[-87.6808046842501,41.93064045090729],[-87.68047476884705,41.92992804143875],[-87.68039977943802,41.92980028310126],[-87.67995081489481,41.92886005565705],[-87.67983989776504,41.92860533681711],[-87.67970518413081,41.928464203007124],[-87.6782891766374,41.928123819016335],[-87.67778988372184,41.928022550662874],[-87.67720225966562,41.92784493605606],[-87.6765235099479,41.92759141339206],[-87.67583066903,41.92722559472249],[-87.67493827585007,41.9266579426982],[-87.67474610136112,41.92643134771864],[-87.67455456906816,41.92614246221142],[-87.67451286991064,41.92595232265616],[-87.6744648201823,41.92483651976422],[-87.67442009748973,41.924629595571595],[-87.67425507051838,41.92439025763055],[-87.67376691632921,41.923995826252536],[-87.67345951038533,41.92378429119042],[-87.67297374320411,41.92339804819548],[-87.67216130359884,41.922806410512806],[-87.67165006085146,41.922550749806284],[-87.67111167939602,41.92241117569657],[-87.67088909414615,41.92237603953556],[-87.67062687553262,41.922383972044315],[-87.67015119924878,41.92237234204994],[-87.66975772522757,41.92240813393118],[-87.6695096734256,41.922413835121326],[-87.66928497829798,41.92238888064657],[-87.66892530414407,41.922283809212175],[-87.66836608141884,41.922170528526316],[-87.66809607152626,41.9220297499515],[-87.66767813935876,41.92134341221058],[-87.66733892889398,41.920879097770566],[-87.66646258903764,41.92002755493425],[-87.66607058072252,41.9194374916901],[-87.66572184695087,41.91893000547953],[-87.66542629352676,41.9185882465106],[-87.66495784755435,41.918151771191624],[-87.66475210367658,41.917991902184305],[-87.66460194310842,41.917801236996056],[-87.6644451319081,41.91755438597197],[-87.66429737804333,41.91711941581468],[-87.66421599039326,41.916796192955545],[-87.6638959129563,41.915890143592904],[-87.66377108192783,41.915678454992324],[-87.66362055999934,41.91561500657829],[-87.66381368020228,41.91549769408234],[-87.66593637188423,41.91457495546627],[-87.66621424124132,41.91448498153915],[-87.66681142199387,41.91433854600104],[-87.66743699455901,41.91428124540015],[-87.66780074681198,41.91430182267978],[-87.66792950303724,41.91427025009443],[-87.66901169251203,41.91425364851088],[-87.6702314465778,41.914292348083066],[-87.67570177198789,41.914198506829095],[-87.67632589084292,41.91417880879521],[-87.67754520615986,41.914170810832964],[-87.67755510271998,41.914715718513825],[-87.67974261337592,41.91467588569086],[-87.6824468630701,41.91461915556909],[-87.6824195080737,41.913582236672916],[-87.68315485379648,41.91405856926341],[-87.68731554880475,41.913994802592455],[-87.6873767283545,41.91618645254088],[-87.68741562546437,41.91779451515854],[-87.68746363484762,41.91918410570178],[-87.68754706836727,41.92185772633122],[-87.68760511046423,41.92362890256703],[-87.6876333518655,41.92466915036154],[-87.6877052709707,41.926581977727906],[-87.68772179568327,41.9272197512781],[-87.68779690483326,41.92930989474253],[-87.68782993072571,41.930072864385075],[-87.68789281450579,41.93179658988893],[-87.68788269111234,41.93217912664734],[-87.68791721148641,41.93257723862208],[-87.68792696320592,41.93327953973071],[-87.68797074487378,41.9355058977793],[-87.6879867878435,41.936103941181344],[-87.68767309096333,41.935898815770074],[-87.68740070063097,41.9356161561724],[-87.6870279778065,41.93527164451764],[-87.68692443156118,41.93513475618259],[-87.68682507052979,41.93490738692474],[-87.6866022033693,41.93466738460833],[-87.68596769200936,41.934033488786454],[-87.6856698168619,41.93390285797949],[-87.68549344247599,41.93379780209393],[-87.6852576230493,41.933785302302326],[-87.68505850357917,41.933690819825664],[-87.68465564623054,41.93367128339109],[-87.6845541738826,41.933635090077374],[-87.68426865133685,41.93361692872355],[-87.68353065326616,41.933442063909496],[-87.68341163184647,41.93333905825297],[-87.68305815229886,41.93275695593636],[-87.68284108068192,41.93232839618211],[-87.6828401597124,41.93222871287948]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Lower West Side","SEC_NEIGH":"LOWER WEST SIDE","Creation D":"08/04/2014","Street Add":"709 W 19TH ST","Community":31,"COUNT":20,"Area":81550723,"sqmi":2.925061,"density":6.837464},"geometry":{"type":"Polygon","coordinates":[[[-87.63515815936724,41.85772209606266],[-87.63532120103137,41.857225186110576],[-87.63549373688248,41.8569383807132],[-87.6361610989353,41.85629188408102],[-87.63697883617122,41.85567341789413],[-87.63747871967794,41.85532980765088],[-87.63844034466945,41.85488369936645],[-87.63904440174323,41.85456783478625],[-87.6393939802199,41.85428497192239],[-87.63964786809937,41.85394971630925],[-87.639872381307,41.85358684156457],[-87.64034168609483,41.85298621227137],[-87.64114753378755,41.85179303904942],[-87.64159395155065,41.85121929741333],[-87.64191934556948,41.850782120678815],[-87.64218185451686,41.8504546916386],[-87.64264003997303,41.850023827776425],[-87.64331567594935,41.84969300706868],[-87.64331690460179,41.849692665243374],[-87.6439988344598,41.849505239315434],[-87.64488928136923,41.84941759624651],[-87.64585034793384,41.84938430218908],[-87.64679998386069,41.84921163319505],[-87.64759270029623,41.84894350726916],[-87.6486437465966,41.848614895900155],[-87.64963716161431,41.848396333374176],[-87.65100295040399,41.848305936568906],[-87.65157843342945,41.84817605818574],[-87.65258344149491,41.848004884558584],[-87.65311725753979,41.847949716142786],[-87.65750460979149,41.84716610259943],[-87.65860463387303,41.84726484615937],[-87.6607203280855,41.845716086579614],[-87.66077326669634,41.845838906166605],[-87.6616382027065,41.845346372536596],[-87.66252443300546,41.84490964353392],[-87.66345070413492,41.84450343783438],[-87.66377767622164,41.84429156639365],[-87.66388768731132,41.844096020360126],[-87.66430961138153,41.842801458316224],[-87.66495177757588,41.84171561458609],[-87.66496896860632,41.841618869570766],[-87.6648434823159,41.84124283381389],[-87.664573557481,41.840757009718814],[-87.66452844904748,41.840429877800425],[-87.6645664824746,41.839882234389044],[-87.66453755697583,41.83955519665114],[-87.66428511787335,41.83906503224786],[-87.66576432851973,41.838220731797726],[-87.66614347257496,41.83802670530379],[-87.66698374184706,41.83766025666332],[-87.66762727431284,41.837467087261246],[-87.66824256149181,41.83732210464975],[-87.66877889423121,41.837228501121835],[-87.66926401237885,41.83717603740612],[-87.6700437176495,41.83714232991882],[-87.67056112835276,41.83713617172297],[-87.67056206303434,41.83734707256968],[-87.67087735935363,41.83734408217355],[-87.6745846540145,41.837272648267],[-87.67675801020246,41.83722131580454],[-87.67788144376533,41.83719872510755],[-87.67816732447123,41.837192593175715],[-87.67908245614902,41.83716498509033],[-87.67945249735652,41.83712941352095],[-87.68013230653276,41.837028552984705],[-87.6804520835835,41.836965282320755],[-87.68143775882687,41.83668069333268],[-87.68374052731969,41.83596962714994],[-87.68457795013389,41.835707443414464],[-87.68684625223943,41.83497524990485],[-87.68739948177165,41.83480098281808],[-87.68745790501102,41.834913102952896],[-87.68751312145137,41.83681210349047],[-87.6874894247407,41.83701851585549],[-87.68756026951382,41.84479497867855],[-87.68779117194083,41.848367862327876],[-87.68787474362848,41.85200933535455],[-87.68791118264404,41.85334475302508],[-87.68797582471707,41.855084290294265],[-87.68797895317012,41.85569222694016],[-87.68799300656804,41.85579412062573],[-87.68801822859145,41.85689093637181],[-87.68803384627768,41.8569697656528],[-87.68802266927057,41.85708820455653],[-87.68804391429784,41.85816990456904],[-87.68807300498915,41.859338427058425],[-87.68742052363575,41.85934176544376],[-87.68583387730075,41.85936589919849],[-87.68581099434903,41.85841523521145],[-87.68482200946163,41.85860696052353],[-87.681315836,41.85888211682564],[-87.6785706779013,41.85904247448785],[-87.67785221371616,41.85912138997688],[-87.67604608639205,41.85941948136448],[-87.67427259102351,41.859545880806685],[-87.67359923586305,41.85951723855257],[-87.67307914518246,41.85951328929917],[-87.67134343089299,41.85953428040204],[-87.6710036311617,41.85954692073161],[-87.66981203772893,41.859566085660326],[-87.66590719322694,41.859611307810084],[-87.66036440152868,41.85970473191298],[-87.65861895477208,41.859728839200635],[-87.65799453906159,41.85974199146008],[-87.65035982892566,41.859860035154306],[-87.64522181880594,41.859933437275835],[-87.64446845179364,41.859954492253706],[-87.64335562747772,41.8599606055379],[-87.64125181581322,41.85999446196236],[-87.64051154367466,41.859993648793704],[-87.6390136663026,41.86001802754479],[-87.63893572318932,41.8576654755149],[-87.63776666277172,41.857681900008956],[-87.63663110536936,41.85770724037483],[-87.63601568613528,41.85772870565972],[-87.63515815936724,41.85772209606266]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Wrigleyville","SEC_NEIGH":"WRIGLEYVILLE","Creation D":"08/01/2014","Street Add":"1121 W ADDISON ST","Community":6,"COUNT":30,"Area":7287843,"sqmi":0.2614,"density":114.7666},"geometry":{"type":"Polygon","coordinates":[[[-87.66224996120175,41.95437810528625],[-87.66131592499137,41.95439409772038],[-87.65982136874223,41.95441239773228],[-87.65746945998569,41.95444703920569],[-87.65659023553513,41.95445283680405],[-87.65454473815758,41.95448837667949],[-87.65446269362843,41.95179557132567],[-87.65433810603332,41.9474796444057],[-87.65427400527379,41.945514929844634],[-87.65424496895815,41.94446642863957],[-87.65453692204836,41.944747171681094],[-87.65651625625311,41.94720205287502],[-87.65684907960214,41.9471838488155],[-87.65958236134954,41.94714179891845],[-87.66401530118841,41.947067933839605],[-87.66405179937642,41.94846523921414],[-87.66407044289484,41.94897774727792],[-87.66421100385712,41.95408944060565],[-87.66421530892369,41.95435490078523],[-87.66224996120175,41.95437810528625]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Andersonville","SEC_NEIGH":"ANDERSONVILLE","Creation D":"08/01/2014","Street Add":"1469 W GREGORY ST","Community":77,"COUNT":17,"Area":9584592,"sqmi":0.34378,"density":49.45022},"geometry":{"type":"Polygon","coordinates":[[[-87.66114249176961,41.976303270780036],[-87.66803329756748,41.97619827882459],[-87.66860285487174,41.97618705668094],[-87.67440756779523,41.97610340524937],[-87.67445757627654,41.97781664737464],[-87.67437298331672,41.978009847430705],[-87.67441803676535,41.979682832537314],[-87.67450764592357,41.97981311998708],[-87.67455608787601,41.98147533927503],[-87.67458611403924,41.98237311115809],[-87.67460924399388,41.98335739913632],[-87.674473999501,41.98339443419383],[-87.67426021687103,41.98340308613368],[-87.67279908393088,41.98342819482654],[-87.6689360131522,41.983488968830464],[-87.66857698952268,41.98349007365863],[-87.66668418216214,41.98352739521256],[-87.66509632950955,41.9835460442874],[-87.6613442034317,41.98360405572127],[-87.66129621109305,41.98193167802807],[-87.66125764997821,41.98041885110331],[-87.66117867409478,41.9776887620187],[-87.66114249176961,41.976303270780036]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Rush & Division","SEC_NEIGH":"RUSH & DIVISION","Creation D":"08/22/2014","Street Add":"10 W CHESTNUT ST","Community":8,"COUNT":2,"Area":3489575,"sqmi":0.125164,"density":15.97903},"geometry":{"type":"Polygon","coordinates":[[[-87.62548071347486,41.8957218664003],[-87.62783535845888,41.895681799155085],[-87.62937579028853,41.89566317922534],[-87.63122297961787,41.89563466296862],[-87.63124794655037,41.89681322405646],[-87.63135801538516,41.900849018906456],[-87.63144510787798,41.903900858474046],[-87.63041322964327,41.903918536073704],[-87.62867800138463,41.903941897809894],[-87.62866054775989,41.90326413423061],[-87.62832098969362,41.90237276536767],[-87.6280900358789,41.90198514009339],[-87.62751090523423,41.900757762983076],[-87.62731574520427,41.900346740291795],[-87.62696464388712,41.89955169795687],[-87.626849708463,41.899165625569374],[-87.62676824895458,41.89911832393635],[-87.62653911053445,41.89870126775807],[-87.62610958484186,41.89783457365258],[-87.625867045485,41.89731581890708],[-87.6256139178218,41.89671198580107],[-87.62550478169764,41.89671273849245],[-87.62548071347486,41.8957218664003]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Archer Heights","SEC_NEIGH":"ARCHER HEIGHTS,WEST ELSDON","Creation D":"08/05/2014","Street Add":"4851 S KOMENSKY AVE","Community":57,"COUNT":29,"Area":55922505,"sqmi":2.005828,"density":14.45786},"geometry":{"type":"Polygon","coordinates":[[[-87.71436934735934,41.826040563642316],[-87.71436194672728,41.825632559193146],[-87.71436665951722,41.8245085082036],[-87.71432301164718,41.824194408119475],[-87.71426040608856,41.822421840968026],[-87.71432667813399,41.822231573614594],[-87.71433016760867,41.82205973188733],[-87.71428268852229,41.82032337867565],[-87.71425066784084,41.8189819408434],[-87.7141986872838,41.81738003175967],[-87.71401470927346,41.810630856915516],[-87.7139942753209,41.810039011123614],[-87.71391508816772,41.809501391065155],[-87.71387381565917,41.807988668792376],[-87.7137894616785,41.80602275420578],[-87.71400447447961,41.80521942010103],[-87.71405477758168,41.80509002389477],[-87.71422877541337,41.80477982834026],[-87.71442109253,41.804519128864584],[-87.71473560573294,41.804185334238575],[-87.7152275523028,41.803755071494486],[-87.71568106628295,41.80360245904518],[-87.71773076710735,41.802798408719255],[-87.71902440198622,41.80228494886063],[-87.71968719632078,41.802010632724965],[-87.72130875485105,41.80128724496567],[-87.72172950427452,41.801105618684154],[-87.7229665980468,41.80055307754374],[-87.7233729493952,41.800545644335784],[-87.72336502623247,41.80022274437941],[-87.72820788599986,41.79831029858262],[-87.72816818670023,41.79683084411835],[-87.73102064020443,41.796803573212976],[-87.73196716655865,41.796790855815146],[-87.73205356769441,41.79675999876671],[-87.73238845267605,41.79678730043195],[-87.73551248659844,41.796755312437774],[-87.73547981506414,41.795621163189885],[-87.73541205291667,41.79546438602248],[-87.73564473438533,41.79543540967523],[-87.73607226169668,41.79535461847194],[-87.73644807974196,41.79531334921281],[-87.73790510808719,41.79529038021962],[-87.7380049232505,41.79862177814607],[-87.73803877230085,41.79962053157177],[-87.73816450703043,41.80391736345785],[-87.73824283127907,41.806452116411606],[-87.7382739299955,41.807352402718486],[-87.73830520834201,41.8087288232554],[-87.73850240460222,41.8149689687466],[-87.73844646178502,41.814969022352045],[-87.73847845295678,41.81602127640838],[-87.73848974592975,41.81683261283849],[-87.73850512219228,41.81725222362296],[-87.73853045620653,41.81862758214432],[-87.73855658142487,41.818706145062336],[-87.73681224538404,41.81926134068262],[-87.73291017931432,41.820488202360174],[-87.73182302928356,41.82083283251613],[-87.73011143272241,41.821368683615376],[-87.72748330801438,41.822199256471],[-87.72725069436012,41.822252811676584],[-87.72674071429986,41.82242888017215],[-87.72452987741903,41.823122590512234],[-87.72195235728313,41.82393646130219],[-87.7195937755906,41.824678284457896],[-87.71858348687923,41.82499187307108],[-87.71775801273597,41.825237156750006],[-87.71764166917586,41.82529124743219],[-87.71437442000341,41.8263211199608],[-87.71436934735934,41.826040563642316]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Brighton Park","SEC_NEIGH":"BRIGHTON PARK,MCKINLEY PARK","Creation D":"08/05/2014","Street Add":"3823 S CALIFORNIA AVE","Community":58,"COUNT":38,"Area":75892790,"sqmi":2.722123,"density":13.95969},"geometry":{"type":"Polygon","coordinates":[[[-87.68423972710924,41.8229997932273],[-87.68422696426698,41.82181168799577],[-87.68419354584482,41.82061990783957],[-87.68409681287439,41.816848836538945],[-87.68408925690268,41.81624579397648],[-87.68403934184387,41.81466467111907],[-87.68401569226526,41.81362846289439],[-87.683973839041,41.81243342251909],[-87.68394729733114,41.8113205223838],[-87.6838841742036,41.8091955447003],[-87.6838737034425,41.80841735147616],[-87.68442535589206,41.80842575155064],[-87.6843514756895,41.805932656122074],[-87.6843478136081,41.80567862446181],[-87.68437225764065,41.80472240642285],[-87.68436794530243,41.804554647973454],[-87.68617451367709,41.80453258600156],[-87.68938921749091,41.80449679511423],[-87.6898646837193,41.80449362785122],[-87.69314908943964,41.804456063660005],[-87.69409480638846,41.8044094462569],[-87.69410205265987,41.804644211941124],[-87.69688569272877,41.80458865664918],[-87.69804450374777,41.80456316911025],[-87.70084998476429,41.804507298778326],[-87.7026518632539,41.804498681464416],[-87.70387037954778,41.804482720215525],[-87.70386282561,41.80421751381299],[-87.70754563131248,41.80416457159163],[-87.70805055754843,41.804196136383794],[-87.71086600338275,41.80415036695506],[-87.71133613161636,41.80412992983272],[-87.7123264492627,41.80398503848583],[-87.71283294852358,41.80394866918111],[-87.71377631234343,41.80392803879567],[-87.71378305855296,41.8042972821043],[-87.71377065740509,41.80558448460204],[-87.7137894616785,41.80602275420578],[-87.71387381565917,41.807988668792376],[-87.71391508816772,41.809501391065155],[-87.7139942753209,41.810039011123614],[-87.71401470927346,41.810630856915516],[-87.7141986872838,41.81738003175967],[-87.71425066784084,41.8189819408434],[-87.71428268852229,41.82032337867565],[-87.71433016760867,41.82205973188733],[-87.71432667813399,41.822231573614594],[-87.71426040608856,41.822421840968026],[-87.71432301164718,41.824194408119475],[-87.71436665951722,41.8245085082036],[-87.71436194672728,41.825632559193146],[-87.71436934735934,41.826040563642316],[-87.71420137247611,41.826087235009275],[-87.71146007524905,41.82695539657412],[-87.70999196663487,41.82741026046301],[-87.70748377612253,41.82819827849814],[-87.70457772629845,41.82911553420861],[-87.70460744033217,41.82979817962557],[-87.70417384887563,41.82987418018528],[-87.70300978085574,41.83020034887056],[-87.70225299987801,41.83039463166159],[-87.70038325249877,41.830916814437174],[-87.69854186381562,41.83149214271506],[-87.69781084892466,41.83173099544849],[-87.69729074774796,41.83193964518042],[-87.69661466513132,41.83219452212629],[-87.69635786270992,41.83199450179381],[-87.6951893686447,41.832348247066236],[-87.69036388424011,41.833871491530445],[-87.68739948177165,41.83480098281808],[-87.68745140831933,41.83469249588236],[-87.68742315788846,41.83371572082963],[-87.6873704815682,41.83078900427802],[-87.68735537506679,41.8302382324229],[-87.68731861485858,41.83023888134273],[-87.68743774675742,41.8284049405745],[-87.68735751022312,41.82662243688955],[-87.68685898953642,41.82664948109323],[-87.68686096924498,41.826543838044664],[-87.68659727597665,41.82594959088257],[-87.68610957633105,41.82522636592722],[-87.68666755611028,41.82488596932955],[-87.68619717708157,41.824418914901564],[-87.68612369811922,41.824275881044215],[-87.68607003887098,41.823174109778144],[-87.68608030540261,41.82295560957581],[-87.68546079600848,41.82296628159824],[-87.68473019095548,41.823005792393374],[-87.68423972710924,41.8229997932273]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Mckinley Park","SEC_NEIGH":"BRIGHTON PARK,MCKINLEY PARK","Creation D":"08/04/2014","Street Add":"1643 W 32ND PL","Community":59,"COUNT":23,"Area":39431799,"sqmi":1.414339,"density":16.26201},"geometry":{"type":"Polygon","coordinates":[[[-87.65611232130212,41.8233136663246],[-87.65764957388213,41.82326745335608],[-87.65997584916535,41.82320759851228],[-87.66195425093646,41.82319301480239],[-87.6633986771639,41.82317842389699],[-87.66491464489587,41.82315679418329],[-87.66635600244169,41.82314080353253],[-87.66826059449065,41.823194877207214],[-87.67055772968392,41.82316616740995],[-87.67483643436428,41.823119699413034],[-87.67596735211892,41.823094672920114],[-87.6797761798367,41.82305202686692],[-87.68423972710924,41.8229997932273],[-87.68473019095548,41.823005792393374],[-87.68546079600848,41.82296628159824],[-87.68608030540261,41.82295560957581],[-87.68607003887098,41.823174109778144],[-87.68612369811922,41.824275881044215],[-87.68619717708157,41.824418914901564],[-87.68666755611028,41.82488596932955],[-87.68610957633105,41.82522636592722],[-87.68659727597665,41.82594959088257],[-87.68686096924498,41.826543838044664],[-87.68685898953642,41.82664948109323],[-87.68735751022312,41.82662243688955],[-87.68743774675742,41.8284049405745],[-87.68731861485858,41.83023888134273],[-87.68735537506679,41.8302382324229],[-87.6873704815682,41.83078900427802],[-87.68742315788846,41.83371572082963],[-87.68745140831933,41.83469249588236],[-87.68739948177165,41.83480098281808],[-87.68684625223943,41.83497524990485],[-87.68457795013389,41.835707443414464],[-87.68374052731969,41.83596962714994],[-87.68143775882687,41.83668069333268],[-87.6804520835835,41.836965282320755],[-87.68013230653276,41.837028552984705],[-87.67945249735652,41.83712941352095],[-87.67908245614902,41.83716498509033],[-87.67816732447123,41.837192593175715],[-87.67788144376533,41.83719872510755],[-87.67675801020246,41.83722131580454],[-87.6745846540145,41.837272648267],[-87.67087735935363,41.83734408217355],[-87.67056206303434,41.83734707256968],[-87.67056112835276,41.83713617172297],[-87.6700437176495,41.83714232991882],[-87.66926401237885,41.83717603740612],[-87.66877889423121,41.837228501121835],[-87.66824256149181,41.83732210464975],[-87.66762727431284,41.837467087261246],[-87.66698374184706,41.83766025666332],[-87.66614347257496,41.83802670530379],[-87.66576432851973,41.838220731797726],[-87.66428511787335,41.83906503224786],[-87.66388575187621,41.83846181666175],[-87.66343971827018,41.83780547730853],[-87.66336061095242,41.83763553008667],[-87.66317335484842,41.83698069878501],[-87.66307794094094,41.83682275841339],[-87.6624865802575,41.83614133519194],[-87.66198991800054,41.835690514229725],[-87.66167098705921,41.835252805322156],[-87.66128690111869,41.8348631505978],[-87.66035395483598,41.83437036128591],[-87.65865855104467,41.83255658085663],[-87.65742970530486,41.831197338214686],[-87.65736590123231,41.830882991050714],[-87.65740555023552,41.83030552850385],[-87.65751649445777,41.82932658725179],[-87.65757093719976,41.828755194037264],[-87.65756468942006,41.828225842654895],[-87.65752790458775,41.82780215803304],[-87.65734507380883,41.82648729049418],[-87.65734890512334,41.826074256752705],[-87.65713749345072,41.82403664276519],[-87.65611232130212,41.8233136663246]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Bridgeport","SEC_NEIGH":"BRIDGEPORT","Creation D":"08/01/2014","Street Add":"906 W 34TH ST","Community":60,"COUNT":73,"Area":58291519,"sqmi":2.0908,"density":34.91486},"geometry":{"type":"Polygon","coordinates":[[[-87.6417266672238,41.847283047146135],[-87.64185030822797,41.8471109295425],[-87.64160273121121,41.84646597904545],[-87.64160007235051,41.846300552508666],[-87.63998133068283,41.846321370357636],[-87.63952500061991,41.84637366177874],[-87.63835783199207,41.84618255681766],[-87.63830147759211,41.844175132939085],[-87.63829148955722,41.84361678149604],[-87.63651203899373,41.84364268856471],[-87.6364303889569,41.84053574451778],[-87.63637566127484,41.83817264487237],[-87.63647559638969,41.838171569551946],[-87.63643064208215,41.83635405559882],[-87.6359320166277,41.836359626889504],[-87.63588969757824,41.83453484298405],[-87.63653165999591,41.834526405739176],[-87.63657613685209,41.834146789694444],[-87.63653520673047,41.832253683979],[-87.63641656956695,41.827418594943445],[-87.63640384194198,41.8272309102082],[-87.63620338027235,41.82723349152155],[-87.63618864403684,41.82636649835859],[-87.63616486672754,41.82540642577738],[-87.63607190500974,41.82540427696235],[-87.63606374419643,41.82521045237787],[-87.63396392306535,41.823613287848666],[-87.63573973766769,41.82359418903507],[-87.6361178796625,41.82358577982778],[-87.63711493502707,41.82357728538845],[-87.63755080973965,41.82356234780688],[-87.63953438804324,41.823544311707224],[-87.64270206314644,41.82349781327546],[-87.6433148580408,41.82349565083172],[-87.6440082572652,41.82347983587748],[-87.64562980060667,41.82346414372478],[-87.64634715489011,41.82345191584833],[-87.65043972414983,41.8233962421749],[-87.65271303345095,41.82336686949011],[-87.65333000485622,41.82336860266306],[-87.65472613561518,41.823338412109315],[-87.65611232130212,41.8233136663246],[-87.65713749345072,41.82403664276519],[-87.65734890512334,41.826074256752705],[-87.65734507380883,41.82648729049418],[-87.65752790458775,41.82780215803304],[-87.65756468942006,41.828225842654895],[-87.65757093719976,41.828755194037264],[-87.65751649445777,41.82932658725179],[-87.65740555023552,41.83030552850385],[-87.65736590123231,41.830882991050714],[-87.65742970530486,41.831197338214686],[-87.65865855104467,41.83255658085663],[-87.66035395483598,41.83437036128591],[-87.66128690111869,41.8348631505978],[-87.66167098705921,41.835252805322156],[-87.66198991800054,41.835690514229725],[-87.6624865802575,41.83614133519194],[-87.66307794094094,41.83682275841339],[-87.66317335484842,41.83698069878501],[-87.66336061095242,41.83763553008667],[-87.66343971827018,41.83780547730853],[-87.66388575187621,41.83846181666175],[-87.66428511787335,41.83906503224786],[-87.66453755697583,41.83955519665114],[-87.6645664824746,41.839882234389044],[-87.66452844904748,41.840429877800425],[-87.664573557481,41.840757009718814],[-87.6648434823159,41.84124283381389],[-87.66496896860632,41.841618869570766],[-87.66495177757588,41.84171561458609],[-87.66430961138153,41.842801458316224],[-87.66388768731132,41.844096020360126],[-87.66377767622164,41.84429156639365],[-87.66345070413492,41.84450343783438],[-87.66252443300546,41.84490964353392],[-87.6616382027065,41.845346372536596],[-87.66077326669634,41.845838906166605],[-87.6607203280855,41.845716086579614],[-87.65860463387303,41.84726484615937],[-87.65750460979149,41.84716610259943],[-87.65311725753979,41.847949716142786],[-87.65258344149491,41.848004884558584],[-87.65157843342945,41.84817605818574],[-87.65100295040399,41.848305936568906],[-87.64963716161431,41.848396333374176],[-87.6486437465966,41.848614895900155],[-87.64759270029623,41.84894350726916],[-87.64679998386069,41.84921163319505],[-87.64585034793384,41.84938430218908],[-87.64488928136923,41.84941759624651],[-87.6439988344598,41.849505239315434],[-87.6436768320059,41.84901020938418],[-87.64346618850318,41.848748233742526],[-87.64323272035082,41.84852247046703],[-87.64276095522688,41.848691696054345],[-87.64224823353005,41.84892555411835],[-87.64162365814926,41.84819277923378],[-87.64162818183223,41.848119281747465],[-87.64242591053677,41.84810954311799],[-87.6417266672238,41.847283047146135]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"West Elsdon","SEC_NEIGH":"ARCHER HEIGHTS,WEST ELSDON","Creation D":"08/04/2014","Street Add":"5125 S RIDGEWAY AVE","Community":62,"COUNT":55,"Area":32711091,"sqmi":1.173281,"density":46.87709},"geometry":{"type":"Polygon","coordinates":[[[-87.71377631234343,41.80392803879567],[-87.71374972306582,41.80247257167256],[-87.71370624388939,41.80081332451703],[-87.71361443207716,41.80068769943331],[-87.71352416276154,41.79754243552827],[-87.71339583737532,41.7932579092274],[-87.71327580715419,41.78973119177474],[-87.71347282384777,41.789722306937506],[-87.71341784358654,41.78775986939967],[-87.71337487273365,41.78608857679575],[-87.71789678677503,41.78601580355461],[-87.72039835072401,41.7859793411794],[-87.72323435148478,41.78593145572967],[-87.72526486198188,41.78591277461644],[-87.73195976282486,41.78584299175643],[-87.73600972575247,41.78580278578679],[-87.73762325642592,41.785783192719244],[-87.7376457137998,41.786768009848686],[-87.73781845922046,41.79246880062798],[-87.73785142460798,41.793463433871686],[-87.7378229201252,41.79362108281543],[-87.73785908826824,41.79367547030951],[-87.73790510808719,41.79529038021962],[-87.73644807974196,41.79531334921281],[-87.73607226169668,41.79535461847194],[-87.73564473438533,41.79543540967523],[-87.73541205291667,41.79546438602248],[-87.73547981506414,41.795621163189885],[-87.73551248659844,41.796755312437774],[-87.73238845267605,41.79678730043195],[-87.73205356769441,41.79675999876671],[-87.73196716655865,41.796790855815146],[-87.73102064020443,41.796803573212976],[-87.72816818670023,41.79683084411835],[-87.72820788599986,41.79831029858262],[-87.72336502623247,41.80022274437941],[-87.7233729493952,41.800545644335784],[-87.7229665980468,41.80055307754374],[-87.72172950427452,41.801105618684154],[-87.72130875485105,41.80128724496567],[-87.71968719632078,41.802010632724965],[-87.71902440198622,41.80228494886063],[-87.71773076710735,41.802798408719255],[-87.71568106628295,41.80360245904518],[-87.7152275523028,41.803755071494486],[-87.71473560573294,41.804185334238575],[-87.71442109253,41.804519128864584],[-87.71422877541337,41.80477982834026],[-87.71405477758168,41.80509002389477],[-87.71400447447961,41.80521942010103],[-87.7137894616785,41.80602275420578],[-87.71377065740509,41.80558448460204],[-87.71378305855296,41.8042972821043],[-87.71377631234343,41.80392803879567]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Gage Park","SEC_NEIGH":"MARQUETTE PARK,GAGE PARK","Creation D":"08/01/2014","Street Add":"5718 S CALIFORNIA AVE","Community":63,"COUNT":27,"Area":61284896,"sqmi":2.198167,"density":12.28296},"geometry":{"type":"Polygon","coordinates":[[[-87.6788150039512,41.79386785479857],[-87.6788063652771,41.79350041170016],[-87.67937232191879,41.79349448434809],[-87.6796634780827,41.789707193086755],[-87.67964293667444,41.78835659888575],[-87.67967186677443,41.786557246165636],[-87.68078080634272,41.78654594787914],[-87.68368560195637,41.78650977564584],[-87.68400854722871,41.78655196995235],[-87.68484123064414,41.78654813864936],[-87.68771746995166,41.78650012207255],[-87.6931774283796,41.78641623990314],[-87.6943942378576,41.786390247092896],[-87.69507096903952,41.786383086625364],[-87.70233163835242,41.78626226753377],[-87.70372349595428,41.78624328801437],[-87.7055114812553,41.78621185393285],[-87.70971688319587,41.78614836898771],[-87.71289672804387,41.78609662248922],[-87.71337487273365,41.78608857679575],[-87.71341784358654,41.78775986939967],[-87.71347282384777,41.789722306937506],[-87.71327580715419,41.78973119177474],[-87.71339583737532,41.7932579092274],[-87.71352416276154,41.79754243552827],[-87.71361443207716,41.80068769943331],[-87.71370624388939,41.80081332451703],[-87.71374972306582,41.80247257167256],[-87.71377631234343,41.80392803879567],[-87.71283294852358,41.80394866918111],[-87.7123264492627,41.80398503848583],[-87.71133613161636,41.80412992983272],[-87.71086600338275,41.80415036695506],[-87.70805055754843,41.804196136383794],[-87.70754563131248,41.80416457159163],[-87.70386282561,41.80421751381299],[-87.70387037954778,41.804482720215525],[-87.7026518632539,41.804498681464416],[-87.70084998476429,41.804507298778326],[-87.69804450374777,41.80456316911025],[-87.69688569272877,41.80458865664918],[-87.69410205265987,41.804644211941124],[-87.69409480638846,41.8044094462569],[-87.69314908943964,41.804456063660005],[-87.6898646837193,41.80449362785122],[-87.68938921749091,41.80449679511423],[-87.68617451367709,41.80453258600156],[-87.68436794530243,41.804554647973454],[-87.68437225764065,41.80472240642285],[-87.68375270397802,41.80474110754384],[-87.68376082573465,41.80479708193669],[-87.68222381208209,41.80481115782956],[-87.68192243787766,41.804857474150126],[-87.67940651094229,41.804852517186674],[-87.67938912471082,41.80426295306906],[-87.67953308684054,41.8028195939683],[-87.67954807670758,41.80238230922166],[-87.67948456840892,41.799835595767775],[-87.67945510954121,41.798810094876785],[-87.67941310818917,41.79703430316705],[-87.67935896909297,41.79663298653684],[-87.67925310145048,41.79608935799879],[-87.6788814048785,41.79445987990353],[-87.67881809511229,41.794014258430465],[-87.6788150039512,41.79386785479857]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Clearing","SEC_NEIGH":"MIDWAY AIRPORT","Creation D":"08/01/2014","Street Add":"7130 W 64TH ST","Community":64,"COUNT":62,"Area":71145192,"sqmi":2.551836,"density":24.29623},"geometry":{"type":"Polygon","coordinates":[[[-87.73762325642592,41.785783192719244],[-87.73761498364517,41.78573050739853],[-87.737542365494,41.78337586897964],[-87.73739315493513,41.77835474772332],[-87.73731002807872,41.77575066351144],[-87.73725616172199,41.773946350285286],[-87.73720282098785,41.77203604059152],[-87.73717602842362,41.77120211052382],[-87.74205453853608,41.771128721043475],[-87.7421452734133,41.77445381343129],[-87.7421653722569,41.77478022094937],[-87.74268185607711,41.774759489415636],[-87.74446391701677,41.77471770324494],[-87.74690357826584,41.77466999116925],[-87.76158270793165,41.77438783499672],[-87.76182165587579,41.774392673273056],[-87.76286102260516,41.77437999522523],[-87.77162036333256,41.77419979347858],[-87.7724939661242,41.77419019720165],[-87.77366403416356,41.774163555459616],[-87.77686233743732,41.774100531840034],[-87.77814970972271,41.774072101545265],[-87.7818975219591,41.77399772847463],[-87.7825087093182,41.77399372885486],[-87.7839194786812,41.77397275701066],[-87.78575940940597,41.77393764027407],[-87.7882012260697,41.7739030408323],[-87.78986211595183,41.77386931941177],[-87.79134390995402,41.77384397121077],[-87.79247987882947,41.77383315048585],[-87.79368072208865,41.77381569171419],[-87.79897191098281,41.77372951623138],[-87.80080566869607,41.77369747947694],[-87.80082111737613,41.774051999521845],[-87.8007752943911,41.77420236703053],[-87.80083101382827,41.77547046545281],[-87.800819334212,41.77560161641554],[-87.8008503047871,41.776338357844075],[-87.8008863914421,41.776567455863265],[-87.8008718817872,41.77694761245928],[-87.8009238198375,41.77760964011909],[-87.80095591276289,41.77846354067885],[-87.80101059675144,41.77913499545075],[-87.80100660142853,41.77968015969189],[-87.80102359250779,41.780219109505715],[-87.80121615884285,41.78468843328335],[-87.80096079625567,41.78469487990691],[-87.79781326063308,41.7847444401417],[-87.79761815837016,41.784757608494175],[-87.7969142129349,41.78476014220965],[-87.79635440685558,41.784775474400796],[-87.79339195912974,41.784820399636615],[-87.78414335636135,41.78496759018272],[-87.78179858151111,41.78500792255878],[-87.7812629735991,41.7850142689057],[-87.77281093296504,41.78518328032595],[-87.7679509561189,41.785276921159145],[-87.76702053960327,41.785297338983085],[-87.763248443117,41.78537139856514],[-87.76202440991352,41.78539287153905],[-87.76202164873838,41.78532536103165],[-87.74253048091789,41.78573439045014],[-87.74068059289655,41.78575186546137],[-87.73971934614895,41.785777830761724],[-87.73845196123459,41.78579226883677],[-87.73762325642592,41.785783192719244]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"West Lawn","SEC_NEIGH":"WEST LAWN","Creation D":"08/01/2014","Street Add":"6512 S KOLIN AVE","Community":65,"COUNT":120,"Area":82315301,"sqmi":2.952485,"density":40.64372},"geometry":{"type":"Polygon","coordinates":[[[-87.71254775561133,41.75733733382746],[-87.7129720114535,41.75743018744834],[-87.71327673065694,41.75751930738347],[-87.71372003731301,41.7576798393165],[-87.71392076367499,41.757768739434916],[-87.71460743321951,41.75811101808617],[-87.71553846086718,41.758532133185305],[-87.71622182861559,41.758886047710234],[-87.71622608710014,41.758776298356054],[-87.71710263122748,41.75919573622935],[-87.71722880485162,41.759224542298746],[-87.71800601515658,41.7594925040282],[-87.7182981553807,41.75960521207781],[-87.71861471552708,41.759751668605794],[-87.72016110603876,41.760556809300674],[-87.72062116549797,41.760790471649756],[-87.72129847127198,41.76111276407639],[-87.72156998590823,41.76122775573336],[-87.72207406387913,41.76141053394928],[-87.72228674742378,41.76146963460922],[-87.7221917834026,41.7578017256133],[-87.7221782079012,41.757501947954],[-87.72217742507301,41.75660158418158],[-87.72214691450942,41.75552264646883],[-87.72217066159756,41.7548602518911],[-87.72214654090367,41.754334901446114],[-87.72210187865319,41.754134164150585],[-87.7220362851674,41.753374093186814],[-87.7242823535497,41.75332880630066],[-87.72494487779709,41.753293443495735],[-87.72650797862325,41.75326490848334],[-87.7272451956273,41.75326143922741],[-87.72920157962837,41.75322022157188],[-87.7310791928876,41.753193277381676],[-87.73201306937639,41.753165884378234],[-87.73227317017131,41.753200561260286],[-87.7323291107071,41.75332075276165],[-87.73658196972673,41.75304085394303],[-87.73658220015909,41.753164349071],[-87.73730617663347,41.75314615251838],[-87.73911916149599,41.75311815216437],[-87.73939561354997,41.75314462312159],[-87.74121169064661,41.75327851973341],[-87.74149563409958,41.75329154995907],[-87.74150194860732,41.75372521030739],[-87.74153256523937,41.754697101052436],[-87.74169036066418,41.7589368263576],[-87.74173376673237,41.75977376160179],[-87.7417788573558,41.760463227183294],[-87.74179224271832,41.760837591487544],[-87.74178484741188,41.76128358575728],[-87.74184169557373,41.76226952329706],[-87.74186684053151,41.76297192049024],[-87.74186835866605,41.76327753412495],[-87.74189941090205,41.76429869721735],[-87.74203394848571,41.770396835273765],[-87.74205453853608,41.771128721043475],[-87.73717602842362,41.77120211052382],[-87.73720282098785,41.77203604059152],[-87.73725616172199,41.773946350285286],[-87.73731002807872,41.77575066351144],[-87.73739315493513,41.77835474772332],[-87.737542365494,41.78337586897964],[-87.73761498364517,41.78573050739853],[-87.73762325642592,41.785783192719244],[-87.73600972575247,41.78580278578679],[-87.73195976282486,41.78584299175643],[-87.72526486198188,41.78591277461644],[-87.72323435148478,41.78593145572967],[-87.72039835072401,41.7859793411794],[-87.71789678677503,41.78601580355461],[-87.71337487273365,41.78608857679575],[-87.71289672804387,41.78609662248922],[-87.7129363814257,41.78568038995084],[-87.71290171706875,41.784461023391316],[-87.71289681450311,41.78408719643238],[-87.7127661593994,41.77953691684581],[-87.71274502615424,41.77901371246929],[-87.71272560684896,41.77883209187493],[-87.712945454977,41.778829694137336],[-87.7129254632738,41.77809898400675],[-87.71289197416387,41.7765335249089],[-87.7128364445885,41.774259574421684],[-87.71282076446123,41.77334753193748],[-87.71280843356378,41.77317199488183],[-87.71277479028585,41.771522187549884],[-87.71274919291486,41.77080814690491],[-87.7126694102128,41.76829393676434],[-87.71262936346874,41.76717198782777],[-87.71254431906476,41.76439635222147],[-87.71249531587864,41.76268295641857],[-87.7124315869871,41.7605962548218],[-87.71252473720713,41.76058132147183],[-87.71254775561133,41.75733733382746]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Chinatown","SEC_NEIGH":"ARMOUR SQUARE,CHINATOWN","Creation D":"08/06/2014","Street Add":"212 W CERMAK RD","Community":34,"COUNT":2,"Area":10624727,"sqmi":0.381087,"density":5.248145},"geometry":{"type":"Polygon","coordinates":[[[-87.62920071904182,41.847127061385216],[-87.62959659801061,41.84718274389274],[-87.63049345706018,41.84735637638424],[-87.6311893784305,41.847479459316546],[-87.63146706176568,41.84751019109437],[-87.63192359520713,41.84753287839121],[-87.63313955765786,41.84750909286291],[-87.63323454518155,41.8474954305761],[-87.63430701446123,41.84743533091437],[-87.63622585749444,41.84736625732149],[-87.64120588951043,41.84730246723017],[-87.6417266672238,41.847283047146135],[-87.64242591053677,41.84810954311799],[-87.64162818183223,41.848119281747465],[-87.64162365814926,41.84819277923378],[-87.64224823353005,41.84892555411835],[-87.64276095522688,41.848691696054345],[-87.64323272035082,41.84852247046703],[-87.64346618850318,41.848748233742526],[-87.6436768320059,41.84901020938418],[-87.6439988344598,41.849505239315434],[-87.64331690460179,41.849692665243374],[-87.64331567594935,41.84969300706868],[-87.64264003997303,41.850023827776425],[-87.64218185451686,41.8504546916386],[-87.64191934556948,41.850782120678815],[-87.64159395155065,41.85121929741333],[-87.64114753378755,41.85179303904942],[-87.64034168609483,41.85298621227137],[-87.639872381307,41.85358684156457],[-87.63964786809937,41.85394971630925],[-87.6393939802199,41.85428497192239],[-87.63904440174323,41.85456783478625],[-87.63844034466945,41.85488369936645],[-87.63747871967794,41.85532980765088],[-87.63697883617122,41.85567341789413],[-87.6361610989353,41.85629188408102],[-87.63549373688248,41.8569383807132],[-87.63532120103137,41.857225186110576],[-87.63515815936724,41.85772209606266],[-87.6341018908757,41.857720106448454],[-87.63220854315838,41.85775070880566],[-87.6310682569382,41.85776139824259],[-87.63022640691237,41.85777915023551],[-87.63019149518593,41.85632920674688],[-87.63015867400148,41.85550196986057],[-87.63015739910206,41.85496156369408],[-87.63010370299936,41.85329906670897],[-87.63006129854423,41.852877152445245],[-87.62934971662864,41.85288175627776],[-87.62931649141422,41.8517147599934],[-87.62924992511785,41.848888453324214],[-87.62923122226053,41.848709632608625],[-87.62922156591333,41.84796022634965],[-87.62919515044364,41.84750183174276],[-87.62920071904182,41.847127061385216]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"East Village","SEC_NEIGH":"UKRAINIAN VILLAGE AND EAST VILLAGE","Creation D":"09/05/2014","Street Add":"1857 W CHICAGO AVE","Community":24,"COUNT":3,"Area":7050048,"sqmi":0.252871,"density":11.86375},"geometry":{"type":"Polygon","coordinates":[[[-87.67705236078733,41.89591164182318],[-87.67720202617913,41.90118331692697],[-87.67725780382368,41.90319112646103],[-87.67506337613827,41.90322719536916],[-87.67338905713136,41.90324982982975],[-87.66749526016135,41.90334633326624],[-87.66744105798236,41.9014576174454],[-87.6672915166923,41.896073639440466],[-87.67500983843543,41.895944041377625],[-87.67705236078733,41.89591164182318]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"West Town","SEC_NEIGH":"WICKER PARK,WEST TOWN","Creation D":"08/01/2014","Street Add":"519 N MAY ST","Community":24,"COUNT":69,"Area":58507728,"sqmi":2.098555,"density":32.87976},"geometry":{"type":"Polygon","coordinates":[[[-87.65686079758385,41.91078451039367],[-87.65693683468002,41.9105215520112],[-87.65894982240064,41.909850767659115],[-87.6592287748644,41.90907019963548],[-87.65748556599955,41.90909031933962],[-87.65773586116627,41.90844109304794],[-87.6579586909306,41.90704515087469],[-87.65816987519688,41.90566920006257],[-87.65828901180053,41.90504119620618],[-87.6581572686314,41.904526207539135],[-87.65749659929538,41.90360242656715],[-87.6573402724123,41.90339906427895],[-87.65647438814774,41.90262201067789],[-87.656184717558,41.90192203249842],[-87.65616058787437,41.90169222523227],[-87.65588779532173,41.9011685533161],[-87.65538096865167,41.900812955186815],[-87.65450732628024,41.90052766247813],[-87.65343196121358,41.90028353991105],[-87.65257643045224,41.90011708278881],[-87.65247720532386,41.90013537484469],[-87.6521156107535,41.90008018425684],[-87.65189956534464,41.900013205418325],[-87.65135543331002,41.89974193226297],[-87.65086286616115,41.89941219080987],[-87.6497351157485,41.8985561219498],[-87.64939841218177,41.89830691521851],[-87.64878990112462,41.89808777958376],[-87.6479003579759,41.897968380111216],[-87.64631503892186,41.89785749017038],[-87.645408264212,41.89776332229607],[-87.64488578604984,41.89769401962531],[-87.64478012676057,41.89754197210081],[-87.64443161889733,41.89724205847148],[-87.64423178153231,41.89663645327955],[-87.64419243978598,41.89593370451753],[-87.64414429936369,41.89477625526049],[-87.64411665253289,41.89427430586371],[-87.6440748389028,41.89413912047981],[-87.64397693365147,41.89402168316751],[-87.64381128744989,41.89391915188268],[-87.64355315303706,41.89353725059536],[-87.64321544010045,41.89337630247381],[-87.64294310922908,41.893215033229055],[-87.64271570752904,41.89303583925475],[-87.64245012719746,41.892868626994854],[-87.64203770104429,41.892502856448715],[-87.64192666176444,41.89237285969913],[-87.64157415756702,41.8920485069743],[-87.6412674285981,41.89162810764473],[-87.64119165541355,41.891434566359614],[-87.64103723856606,41.89118429432063],[-87.64066876156889,41.89064310360469],[-87.64012224895966,41.88999919074702],[-87.6397896849714,41.889636370183545],[-87.63943528455954,41.88922830140196],[-87.63936098293489,41.88908028505858],[-87.63982844587345,41.88904760820938],[-87.64067598852415,41.889042706994665],[-87.64081267635365,41.88907723063452],[-87.64158920448291,41.88905070887455],[-87.64191928163966,41.889055550713636],[-87.644333925258,41.88903357345529],[-87.64432225746897,41.888582201971396],[-87.64756583721153,41.88856752795853],[-87.64758261746196,41.889049516700226],[-87.64857455001639,41.88903837568476],[-87.64963323769021,41.889015484962414],[-87.65002296813154,41.88901947862597],[-87.6519716963807,41.888997770262954],[-87.65332975547307,41.88897651129189],[-87.65383505453605,41.888981231183735],[-87.65485717140899,41.88897816373178],[-87.65599459614391,41.88895878051129],[-87.65772558058079,41.88893983349451],[-87.65885265765309,41.88892294066826],[-87.6604803347064,41.88891099460417],[-87.66067605043293,41.88886122810621],[-87.6608449097651,41.888904386181274],[-87.66194133799331,41.88888739331943],[-87.66365280991128,41.88887754281974],[-87.6651179643089,41.888855424499624],[-87.66557488605243,41.888857478613495],[-87.6668586219056,41.888845177650865],[-87.66706868914595,41.88885187769543],[-87.66726460291515,41.88885812588952],[-87.66899138112942,41.88884501812272],[-87.67180881751617,41.88880415147279],[-87.67278550868983,41.88878249585881],[-87.67529050264882,41.888747206652454],[-87.67874584251902,41.888691083746835],[-87.67928985244895,41.88868780221446],[-87.68173967938506,41.88864103364698],[-87.68599308499935,41.88857227849705],[-87.68662242195047,41.88863493672473],[-87.68662375196502,41.888410875443185],[-87.6872352229969,41.88840287384991],[-87.6874589652015,41.88838560854263],[-87.687850292253,41.88832023237869],[-87.68846692624265,41.88817310614266],[-87.68867151040168,41.88817459398869],[-87.69157000947968,41.88819563499646],[-87.69158683544401,41.88852098519807],[-87.69164800123527,41.89191212776506],[-87.69170143235276,41.89200379500472],[-87.69166778192343,41.892332379684625],[-87.69173826135808,41.894530792096155],[-87.6917725928045,41.89570221551958],[-87.69121228009067,41.895698709452475],[-87.68725021364112,41.89573680464933],[-87.6860581389131,41.895755640153105],[-87.68158966893202,41.89583368699041],[-87.67919088181857,41.89587251736271],[-87.67705236078733,41.89591164182318],[-87.67500983843543,41.895944041377625],[-87.6672915166923,41.896073639440466],[-87.66744105798236,41.9014576174454],[-87.66749526016135,41.90334633326624],[-87.667534476381,41.904780686081175],[-87.66761747455222,41.90814567909093],[-87.66767735137029,41.910044979600876],[-87.66770230069551,41.91107006703628],[-87.66776578399859,41.91333346441016],[-87.66780074681198,41.91430182267978],[-87.66743699455901,41.91428124540015],[-87.66681142199387,41.91433854600104],[-87.66621424124132,41.91448498153915],[-87.66593637188423,41.91457495546627],[-87.66381368020228,41.91549769408234],[-87.66362055999934,41.91561500657829],[-87.66302887729509,41.915488258108795],[-87.66264862736091,41.91559149842104],[-87.66244891656112,41.91569184102754],[-87.66206618405333,41.91591951536771],[-87.66132892672101,41.916179115667866],[-87.66117222591473,41.91618242431713],[-87.66092978289075,41.91611802482036],[-87.66073539839365,41.91596963108986],[-87.66026814792855,41.91571176230171],[-87.65986984529759,41.9154513048054],[-87.65954698199344,41.915307287143655],[-87.65923478593132,41.91514735978833],[-87.65865084323794,41.91470773536893],[-87.6583080249177,41.91436256411291],[-87.65807722706323,41.91410805886249],[-87.6578619692033,41.913808640301745],[-87.65771538144746,41.91342524254535],[-87.65759512578248,41.912814530112186],[-87.65741201034346,41.912356438829924],[-87.65693010338137,41.91107558587283],[-87.65686079758385,41.91078451039367]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Wicker Park","SEC_NEIGH":"WICKER PARK,WEST TOWN","Creation D":"08/01/2014","Street Add":"1531 N CLAREMONT AVE","Community":24,"COUNT":58,"Area":26853193,"sqmi":0.96317,"density":60.21782},"geometry":{"type":"Polygon","coordinates":[[[-87.66780074681198,41.91430182267978],[-87.66776578399859,41.91333346441016],[-87.66770230069551,41.91107006703628],[-87.66767735137029,41.910044979600876],[-87.66761747455222,41.90814567909093],[-87.667534476381,41.904780686081175],[-87.66749526016135,41.90334633326624],[-87.67338905713136,41.90324982982975],[-87.67506337613827,41.90322719536916],[-87.67725780382368,41.90319112646103],[-87.67937996772972,41.90315191419487],[-87.68242609736025,41.90310234429353],[-87.68424457382841,41.90306689135409],[-87.68673536636044,41.90302304034368],[-87.6872233117001,41.90301146195615],[-87.69054052967581,41.902983481657365],[-87.69195209632194,41.902968358649375],[-87.6920420321092,41.906533284836634],[-87.69203663506889,41.906709160110466],[-87.69210502051955,41.909790794796436],[-87.69211542576721,41.91012400274728],[-87.69210455880088,41.91044627961466],[-87.69214871692431,41.91192948177417],[-87.69220339182874,41.91394989472546],[-87.69105153257763,41.91395657828413],[-87.69099121862058,41.913861633547185],[-87.69087016208519,41.91396225984068],[-87.68750953401457,41.913990443482646],[-87.68731554880475,41.913994802592455],[-87.68315485379648,41.91405856926341],[-87.6824195080737,41.913582236672916],[-87.6824468630701,41.91461915556909],[-87.67974261337592,41.91467588569086],[-87.67755510271998,41.914715718513825],[-87.67754520615986,41.914170810832964],[-87.67632589084292,41.91417880879521],[-87.67570177198789,41.914198506829095],[-87.6702314465778,41.914292348083066],[-87.66901169251203,41.91425364851088],[-87.66792950303724,41.91427025009443],[-87.66780074681198,41.91430182267978]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Galewood","SEC_NEIGH":"MONTCLARE, GALEWOOD","Creation D":"08/11/2014","Street Add":"1620 N MERRIMAC AVE","Community":25,"COUNT":8,"Area":29257505,"sqmi":1.049408,"density":7.623345},"geometry":{"type":"Polygon","coordinates":[[[-87.77547078066183,41.9165887268438],[-87.77541586445021,41.91490790495831],[-87.77536645549225,41.913565624093756],[-87.77525135105631,41.910187047018134],[-87.77525066592203,41.909704743992805],[-87.7755992995212,41.90925355991669],[-87.78193602797482,41.9091742529442],[-87.78305286453717,41.90917285959812],[-87.78696581787419,41.90912217031537],[-87.78989645615034,41.90909161988876],[-87.79745499466213,41.90899113804701],[-87.8001128667139,41.90895337302846],[-87.80174235506449,41.908936230505375],[-87.8025661481581,41.908931889643064],[-87.80574541300062,41.90883935174278],[-87.805768766708,41.909594728801245],[-87.80582049013508,41.91055457153906],[-87.80588568560198,41.91237270918765],[-87.80611399409285,41.919594610994366],[-87.80622657631278,41.92307701088106],[-87.80622973676593,41.92336003067474],[-87.80554249114684,41.923196371046004],[-87.80476257426419,41.92298581348001],[-87.80404199582425,41.92276320255089],[-87.80325242511572,41.92249493389392],[-87.80248884536577,41.92222156592174],[-87.80169385333745,41.921926285664085],[-87.7925449411355,41.91860604146059],[-87.79044693545414,41.917840297039355],[-87.78870603106239,41.91720698668634],[-87.78783420128285,41.91689788008734],[-87.78742191612942,41.91677311622997],[-87.78703283267156,41.91667453123324],[-87.7864367669566,41.91655849442846],[-87.78601287776168,41.916502275559964],[-87.78560856236436,41.91646673135369],[-87.78489868169572,41.91644859241073],[-87.78175456921946,41.91649390567632],[-87.77839775279368,41.916545651652214],[-87.77547078066183,41.9165887268438]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Montclare","SEC_NEIGH":"MONTCLARE, GALEWOOD","Creation D":"08/01/2014","Street Add":"3012 N NORMANDY AVE","Community":18,"COUNT":29,"Area":27535347,"sqmi":0.987637,"density":29.36301},"geometry":{"type":"Polygon","coordinates":[[[-87.78870603106239,41.91720698668634],[-87.79044693545414,41.917840297039355],[-87.7925449411355,41.91860604146059],[-87.80169385333745,41.921926285664085],[-87.80248884536577,41.92222156592174],[-87.80325242511572,41.92249493389392],[-87.80404199582425,41.92276320255089],[-87.80476257426419,41.92298581348001],[-87.80554249114684,41.923196371046004],[-87.80622973676593,41.92336003067474],[-87.80627259346038,41.92463827886109],[-87.80631186052891,41.9255464978868],[-87.8063388539275,41.926419067750956],[-87.80657413105443,41.93303662347792],[-87.80662355728559,41.934511184302345],[-87.80670052273855,41.9366146028556],[-87.8067468067356,41.93799634676591],[-87.80413326317189,41.93803237592611],[-87.79897267127895,41.93811220625923],[-87.7979514231128,41.9381246825675],[-87.79457118175256,41.938175610664494],[-87.79372815916317,41.93819176726963],[-87.79076918756718,41.93823861491971],[-87.79071604946624,41.93658567407732],[-87.79069676652328,41.93629370713008],[-87.79058551264292,41.93276966822136],[-87.79069283616482,41.93276822433905],[-87.79064311360492,41.93110126680834],[-87.79050299112245,41.926551359029546],[-87.79039987692794,41.923435140121676],[-87.79031238233836,41.920698726557866],[-87.79025526515323,41.91898468328406],[-87.79022716391069,41.91866964954714],[-87.79007672097366,41.91821236568016],[-87.78993518184309,41.91800519233583],[-87.78963585011016,41.91766623431549],[-87.78941717052618,41.917511178789944],[-87.78895694290193,41.91729837811554],[-87.78870603106239,41.91720698668634]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Belmont Cragin","SEC_NEIGH":"BELMONT CRAGIN,HERMOSA","Creation D":"08/01/2014","Street Add":"5100 W OAKDALE AVE","Community":19,"COUNT":95,"Area":10909940,"sqmi":0.391317,"density":242.7699},"geometry":{"type":"Polygon","coordinates":[[[-87.74133544805055,41.91389760542001],[-87.74600890561737,41.91446908362366],[-87.74600623982671,41.91439016641246],[-87.74701995556876,41.914515066645606],[-87.74772398680534,41.914566683405084],[-87.74830381471774,41.914640645796055],[-87.75508739199024,41.91547083530211],[-87.75563829384066,41.91549487575943],[-87.75588614422344,41.91549201102218],[-87.75588259711601,41.91540300674376],[-87.75751474297738,41.9157626021497],[-87.75924740672217,41.91608720773012],[-87.7628937293429,41.91653142197876],[-87.7638141883215,41.91662620739501],[-87.76461789423291,41.91668061639751],[-87.76522573643442,41.916707294621126],[-87.76585482948462,41.91672000990665],[-87.76639584685017,41.91672096750391],[-87.77547078066183,41.9165887268438],[-87.77839775279368,41.916545651652214],[-87.78175456921946,41.91649390567632],[-87.78489868169572,41.91644859241073],[-87.78560856236436,41.91646673135369],[-87.78601287776168,41.916502275559964],[-87.7864367669566,41.91655849442846],[-87.78703283267156,41.91667453123324],[-87.78742191612942,41.91677311622997],[-87.78783420128285,41.91689788008734],[-87.78870603106239,41.91720698668634],[-87.78895694290193,41.91729837811554],[-87.78941717052618,41.917511178789944],[-87.78963585011016,41.91766623431549],[-87.78993518184309,41.91800519233583],[-87.79007672097366,41.91821236568016],[-87.79022716391069,41.91866964954714],[-87.79025526515323,41.91898468328406],[-87.79031238233836,41.920698726557866],[-87.79039987692794,41.923435140121676],[-87.79050299112245,41.926551359029546],[-87.79064311360492,41.93110126680834],[-87.79069283616482,41.93276822433905],[-87.79058551264292,41.93276966822136],[-87.79069676652328,41.93629370713008],[-87.79071604946624,41.93658567407732],[-87.79076918756718,41.93823861491971],[-87.78650517593866,41.93831105114521],[-87.78399229326921,41.93834798533556],[-87.77906119123557,41.93841001625296],[-87.77621462941518,41.938448147208405],[-87.77054208424471,41.93852096181701],[-87.76847364774133,41.93855062287617],[-87.76599848480781,41.93858018634046],[-87.76255372474829,41.93862741053094],[-87.76108233450422,41.938643384960386],[-87.75709024125298,41.93869622307329],[-87.75080069908167,41.93877587281429],[-87.7478892697926,41.93881452195956],[-87.74663728210169,41.93882813669473],[-87.74365305871439,41.93887242603103],[-87.74217497783293,41.93889077989773],[-87.74206263113562,41.93591589536571],[-87.74192582701681,41.93212576066268],[-87.74179993204183,41.928797052090886],[-87.7416481341589,41.92464391097781],[-87.74158828953877,41.92262007673999],[-87.74141235146045,41.916310525995534],[-87.74136902232213,41.915184480886964],[-87.74133544805055,41.91389760542001]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Austin","SEC_NEIGH":"AUSTIN","Creation D":"08/01/2014","Street Add":"5452 W HIRSCH ST","Community":25,"COUNT":117,"Area":17003775,"sqmi":0.609891,"density":191.8375},"geometry":{"type":"Polygon","coordinates":[[[-87.74133544805055,41.91389760542001],[-87.74130062029556,41.91283275616117],[-87.74128477193372,41.91205250730681],[-87.74130814458448,41.91153467878363],[-87.7413427213397,41.911072796785795],[-87.74132384662569,41.91063053433387],[-87.7413700658177,41.91000199997791],[-87.74137991259568,41.90943330819286],[-87.74136701599326,41.909039786627645],[-87.74141068667775,41.908657266023134],[-87.74135437727362,41.90856874224315],[-87.74134015012599,41.90792171492379],[-87.7412305531536,41.903432263404255],[-87.74116367849325,41.90063142245578],[-87.7413395727612,41.90062752695417],[-87.74134479720465,41.90006189714073],[-87.7413307377053,41.899496168407],[-87.74124887342228,41.89906352873421],[-87.74121249648915,41.89877608750005],[-87.7411192817953,41.89877744161426],[-87.74107438360758,41.89692829540165],[-87.7410209704888,41.896509550491295],[-87.74109776439813,41.89643513853404],[-87.74116838104516,41.89604719219355],[-87.7411520040653,41.89578228837864],[-87.74104225444066,41.89498932266394],[-87.74076206222544,41.89281786670339],[-87.74058130990268,41.89146264923021],[-87.74074886855122,41.891463857575694],[-87.74069436023089,41.890705478504955],[-87.7405956750926,41.88782316893227],[-87.74046469389452,41.88416088521676],[-87.74044160018296,41.88345725062338],[-87.7403305146626,41.88035534671538],[-87.74021207554493,41.87690735960856],[-87.73951452972365,41.87690912074896],[-87.73949330074744,41.87617992463052],[-87.73945298114083,41.87529573781564],[-87.7393898587919,41.873265629852426],[-87.74008463893335,41.87325169918853],[-87.7400275301429,41.871676842810615],[-87.73996885174785,41.869684554275075],[-87.73989424215752,41.86896303271127],[-87.73976647132831,41.86596219585272],[-87.74039140735945,41.86595349281462],[-87.7421268665636,41.865929124656326],[-87.74317204054377,41.865913616412286],[-87.74507615283974,41.8658935276961],[-87.75573365097344,41.865732389604425],[-87.76258269527113,41.865630735698716],[-87.76399439722202,41.86561128773688],[-87.76456856518345,41.86559261793818],[-87.77260497189218,41.86548331350944],[-87.77413884276608,41.8654591515543],[-87.77413887370834,41.865705201488794],[-87.77417439798434,41.86673480049618],[-87.77426963503525,41.86925435551029],[-87.77428584638338,41.87002312806817],[-87.77427552986671,41.870212733114414],[-87.7742834701535,41.87073415350212],[-87.7743429664666,41.87136427694987],[-87.7743622936328,41.8718683535249],[-87.77441899128107,41.8729969301936],[-87.77443803279573,41.87377839418972],[-87.77449600731524,41.87558678318827],[-87.77456131060127,41.877405691671406],[-87.77457199478962,41.877823224602736],[-87.77461394123398,41.87885880787911],[-87.77471146397332,41.88176440105008],[-87.77498148991934,41.89024500359574],[-87.77515506853798,41.89548779567176],[-87.77523595634247,41.89776903886455],[-87.77525266323326,41.898571344842296],[-87.77535619197567,41.90183483330424],[-87.77559052505545,41.90888219093051],[-87.7755992995212,41.90925355991669],[-87.77525066592203,41.909704743992805],[-87.77525135105631,41.910187047018134],[-87.77536645549225,41.913565624093756],[-87.77541586445021,41.91490790495831],[-87.77547078066183,41.9165887268438],[-87.76639584685017,41.91672096750391],[-87.76585482948462,41.91672000990665],[-87.76522573643442,41.916707294621126],[-87.76461789423291,41.91668061639751],[-87.7638141883215,41.91662620739501],[-87.7628937293429,41.91653142197876],[-87.75924740672217,41.91608720773012],[-87.75751474297738,41.9157626021497],[-87.75588259711601,41.91540300674376],[-87.75588614422344,41.91549201102218],[-87.75563829384066,41.91549487575943],[-87.75508739199024,41.91547083530211],[-87.74830381471774,41.914640645796055],[-87.74772398680534,41.914566683405084],[-87.74701995556876,41.914515066645606],[-87.74600623982671,41.91439016641246],[-87.74600890561737,41.91446908362366],[-87.74133544805055,41.91389760542001]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Ukrainian Village","SEC_NEIGH":"UKRAINIAN VILLAGE AND EAST VILLAGE","Creation D":"08/01/2014","Street Add":"1125 N HOYNE AVE","Community":24,"COUNT":19,"Area":10622385,"sqmi":0.381003,"density":49.86837},"geometry":{"type":"Polygon","coordinates":[[[-87.67705236078733,41.89591164182318],[-87.67919088181857,41.89587251736271],[-87.68158966893202,41.89583368699041],[-87.6860581389131,41.895755640153105],[-87.68725021364112,41.89573680464933],[-87.69121228009067,41.895698709452475],[-87.6917725928045,41.89570221551958],[-87.69181234986868,41.89722039589212],[-87.69184581621336,41.89871369548133],[-87.69186806263802,41.89950775518886],[-87.69195209632194,41.902968358649375],[-87.69054052967581,41.902983481657365],[-87.6872233117001,41.90301146195615],[-87.68673536636044,41.90302304034368],[-87.68424457382841,41.90306689135409],[-87.68242609736025,41.90310234429353],[-87.67937996772972,41.90315191419487],[-87.67725780382368,41.90319112646103],[-87.67720202617913,41.90118331692697],[-87.67705236078733,41.89591164182318]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Old Town","SEC_NEIGH":"OLD TOWN","Creation D":"08/01/2014","Street Add":"1850 N LARRABEE ST","Community":7,"COUNT":52,"Area":19847998,"sqmi":0.711908,"density":73.04314},"geometry":{"type":"Polygon","coordinates":[[[-87.63168235200274,41.91118052934087],[-87.63165244892679,41.91062637277366],[-87.63163314959573,41.90995320528559],[-87.63160555855332,41.90947364757548],[-87.63158872626379,41.908441083002394],[-87.63151445932304,41.905971096321586],[-87.63144510787798,41.903900858474046],[-87.63419286368497,41.9038561826599],[-87.63474026458081,41.903850952202845],[-87.63964219563373,41.9037716607469],[-87.63977431573345,41.90391942041452],[-87.64448772363134,41.90729913036568],[-87.64715773969114,41.90921931078589],[-87.64950135391493,41.910900486271174],[-87.64827157386186,41.9109196199186],[-87.64829890349975,41.91188709416282],[-87.64835168062993,41.91341775560503],[-87.64837625134008,41.9147517616661],[-87.64841217476977,41.915749118458926],[-87.64843964340548,41.916197140177836],[-87.64845492853443,41.91705617435532],[-87.64850888668116,41.9181797091415],[-87.6479255997701,41.918184515325216],[-87.64434129656108,41.91824393624828],[-87.64056645508253,41.91829507062574],[-87.63820269174016,41.918331470816966],[-87.63712501839801,41.91835238416028],[-87.63653025376841,41.91835654227428],[-87.63611731619602,41.91847335454678],[-87.6347689226485,41.91629057981179],[-87.63403454688012,41.9150909991021],[-87.63186090026703,41.91155267090192],[-87.63171177047273,41.91129160693455],[-87.63168235200274,41.91118052934087]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Gold Coast","SEC_NEIGH":"GOLD COAST","Creation D":"08/03/2014","Street Add":"1500 N CLARK ST","Community":8,"COUNT":13,"Area":7165705,"sqmi":0.257019,"density":50.57991},"geometry":{"type":"Polygon","coordinates":[[[-87.62446476693455,41.911566999612454],[-87.62466294355288,41.911416377059304],[-87.62468704588892,41.9108515438858],[-87.62480170963892,41.91062209333101],[-87.62504149646604,41.91038987391962],[-87.62511589347672,41.91018023495308],[-87.62514472650528,41.90981853109549],[-87.6250896861335,41.90911133373025],[-87.62501943607887,41.90854040236108],[-87.62484231790786,41.907684042868084],[-87.6248005301559,41.90752618447103],[-87.62459578818631,41.906998878999076],[-87.62357245906351,41.90407730705713],[-87.6237226841407,41.90404917464113],[-87.62355584271835,41.903919219506776],[-87.62316861934207,41.90372401595303],[-87.62287360528607,41.903475511547676],[-87.62259114714907,41.90318814399629],[-87.62229604979449,41.90284831064313],[-87.6219507297072,41.902400151603516],[-87.6218543805796,41.902174829518394],[-87.62186821236966,41.90204583532573],[-87.62163724548972,41.901966733519686],[-87.62127485660224,41.90187875684539],[-87.62056998023915,41.9017499333916],[-87.61992112735989,41.90156151855799],[-87.6196381241009,41.901417334880435],[-87.61939199550162,41.90124739134399],[-87.61912520509883,41.90097419566296],[-87.62028150357877,41.90094861007768],[-87.6236898974939,41.900836436583354],[-87.62411765911189,41.90082047451393],[-87.62422503467373,41.9008164674995],[-87.6246786000566,41.90079954029029],[-87.62532219120257,41.90079648504265],[-87.62751090523423,41.900757762983076],[-87.6280900358789,41.90198514009339],[-87.62832098969362,41.90237276536767],[-87.62866054775989,41.90326413423061],[-87.62867800138463,41.903941897809894],[-87.63041322964327,41.903918536073704],[-87.63144510787798,41.903900858474046],[-87.63151445932304,41.905971096321586],[-87.63158872626379,41.908441083002394],[-87.63160555855332,41.90947364757548],[-87.63163314959573,41.90995320528559],[-87.63165244892679,41.91062637277366],[-87.63168235200274,41.91118052934087],[-87.63138196617427,41.91119776883646],[-87.63100570871873,41.911189184368304],[-87.62717118433187,41.91124926472428],[-87.6269029938728,41.911313603068166],[-87.62682719451558,41.91136743592906],[-87.6265661422285,41.91167345874128],[-87.62640461935658,41.91137318855122],[-87.62470625197899,41.911564818366365],[-87.62446476693455,41.911566999612454]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"Boystown","SEC_NEIGH":"BOYSTOWN","Creation D":"08/08/2014","Street Add":"635 W BELMONT AVE","Community":6,"COUNT":6,"Area":3365778,"sqmi":0.120723,"density":49.70055},"geometry":{"type":"Polygon","coordinates":[[[-87.64878470805161,41.93998753647492],[-87.64926661399122,41.93998093510219],[-87.64936161623173,41.9428314020528],[-87.64936925839562,41.94341695288651],[-87.64940965239862,41.94469314350751],[-87.64947828153416,41.947104069074626],[-87.64953555830458,41.94894720351635],[-87.64958931718921,41.95043867321862],[-87.64961875016002,41.95064282542218],[-87.64961999005958,41.951197896075456],[-87.64937991075465,41.95084579221349],[-87.64927811829334,41.950656685652284],[-87.64817659510864,41.948844728248474],[-87.6471820187944,41.947194895895585],[-87.64537584190437,41.94424816349428],[-87.64454502135855,41.94287066392133],[-87.64448488112666,41.94272779606717],[-87.64439968803708,41.94004496686407],[-87.64547001778806,41.94002110076377],[-87.6462264296278,41.940022144838586],[-87.64878470805161,41.93998753647492]]]}},
{"type":"Feature","properties":{"PRI_NEIGH":"River North","SEC_NEIGH":"RIVER NORTH","Creation D":"08/04/2014","Street Add":"640 N WABASH AVE","Community":8,"COUNT":16,"Area":38766442,"sqmi":1.390474,"density":11.50686},"geometry":{"type":"Polygon","coordinates":[[[-87.63144510787798,41.903900858474046],[-87.63135801538516,41.900849018906456],[-87.63124794655037,41.89681322405646],[-87.63122297961787,41.89563466296862],[-87.62937579028853,41.89566317922534],[-87.62783535845888,41.895681799155085],[-87.62548071347486,41.8957218664003],[-87.62547154633164,41.89523209889193],[-87.62543540166573,41.89420127834793],[-87.62542327645798,41.8934433278994],[-87.62536978081451,41.891828700854376],[-87.62537320679648,41.89153840885105],[-87.62533047194148,41.89057914443175],[-87.62532710019515,41.890229288212424],[-87.62529519402229,41.890025578810686],[-87.6252877068359,41.88928017040438],[-87.62520160176358,41.88886671947762],[-87.62529215783877,41.888837964926765],[-87.6256644565379,41.88867667436523],[-87.6259871471041,41.88850530891491],[-87.62635599012751,41.88824487427598],[-87.627264963522,41.887659741786315],[-87.62761676633801,41.88751182185323],[-87.62823789632489,41.887448540343456],[-87.6287923100251,41.88744077432305],[-87.62928432996642,41.887419423047554],[-87.63006787670649,41.88742117810104],[-87.63078467461874,41.88743141080619],[-87.63125527051326,41.88745481577285],[-87.63223001016337,41.88747987082682],[-87.63337190691172,41.88747635369554],[-87.63377407676359,41.88753412820329],[-87.63426569727089,41.88751898257228],[-87.63483997671243,41.887467619710655],[-87.63561908583124,41.887452048623665],[-87.63579691662022,41.887427690105994],[-87.63597547453067,41.88734318144081],[-87.63684403469964,41.88680775495643],[-87.63727049078622,41.88655660817578],[-87.63743969853276,41.88641962582205],[-87.63758838582004,41.88623413710881],[-87.63839249552372,41.8867264937216],[-87.63856385462724,41.886872042276835],[-87.63876516586556,41.88716154248187],[-87.63884785954816,41.88737277280848],[-87.63906376812255,41.88813574212032],[-87.63920199263774,41.888448789852085],[-87.639278268374,41.888852818739174],[-87.63936098293489,41.88908028505858],[-87.63943528455954,41.88922830140196],[-87.6397896849714,41.889636370183545],[-87.64012224895966,41.88999919074702],[-87.64066876156889,41.89064310360469],[-87.64103723856606,41.89118429432063],[-87.64119165541355,41.891434566359614],[-87.6412674285981,41.89162810764473],[-87.64157415756702,41.8920485069743],[-87.64192666176444,41.89237285969913],[-87.64203770104429,41.892502856448715],[-87.64245012719746,41.892868626994854],[-87.64271570752904,41.89303583925475],[-87.64294310922908,41.893215033229055],[-87.64321544010045,41.89337630247381],[-87.64355315303706,41.89353725059536],[-87.64381128744989,41.89391915188268],[-87.64397693365147,41.89402168316751],[-87.6440748389028,41.89413912047981],[-87.64411665253289,41.89427430586371],[-87.64414429936369,41.89477625526049],[-87.64419243978598,41.89593370451753],[-87.64423178153231,41.89663645327955],[-87.64443161889733,41.89724205847148],[-87.64478012676057,41.89754197210081],[-87.64488578604984,41.89769401962531],[-87.645408264212,41.89776332229607],[-87.64631503892186,41.89785749017038],[-87.6479003579759,41.897968380111216],[-87.64878990112462,41.89808777958376],[-87.64939841218177,41.89830691521851],[-87.6497351157485,41.8985561219498],[-87.65086286616115,41.89941219080987],[-87.65135543331002,41.89974193226297],[-87.65189956534464,41.900013205418325],[-87.6521156107535,41.90008018425684],[-87.65247720532386,41.90013537484469],[-87.65257643045224,41.90011708278881],[-87.65343196121358,41.90028353991105],[-87.65450732628024,41.90052766247813],[-87.65538096865167,41.900812955186815],[-87.65588779532173,41.9011685533161],[-87.65616058787437,41.90169222523227],[-87.656184717558,41.90192203249842],[-87.65647438814774,41.90262201067789],[-87.6573402724123,41.90339906427895],[-87.65749659929538,41.90360242656715],[-87.6581572686314,41.904526207539135],[-87.65828901180053,41.90504119620618],[-87.65816987519688,41.90566920006257],[-87.6579586909306,41.90704515087469],[-87.65773586116627,41.90844109304794],[-87.65748556599955,41.90909031933962],[-87.6592287748644,41.90907019963548],[-87.65894982240064,41.909850767659115],[-87.65693683468002,41.9105215520112],[-87.65686079758385,41.91078451039367],[-87.6557759862591,41.91079486956878],[-87.64950135391493,41.910900486271174],[-87.64715773969114,41.90921931078589],[-87.64448772363134,41.90729913036568],[-87.63977431573345,41.90391942041452],[-87.63964219563373,41.9037716607469],[-87.63474026458081,41.903850952202845],[-87.63419286368497,41.9038561826599],[-87.63144510787798,41.903900858474046]]]}}]}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment