Skip to content

Instantly share code, notes, and snippets.

@danswick
Last active August 29, 2015 14:12
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/ea0c209ae1e0f8d88bba to your computer and use it in GitHub Desktop.
Save danswick/ea0c209ae1e0f8d88bba to your computer and use it in GitHub Desktop.
Ratmap, Turf Style

In honor of Turf, here is a quick and dirty version of Maptime Chi's ratmap, taking advantage of Turf's Hexbin and Count tools. GIS IN YOUR BROWSER.

<html>
<head>
<title>A Leaflet map!</title>
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.0.1/mapbox.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:40px; width:100%; }
#steps { position:absolute; bottom:0px; width:100%; height: 40px; background:#000; }
#steps a {
color:#fff;
display:inline-block;
text-align:center;
box-sizing:border-box;
max-width:10000px !important;
}
path {
transition: fill .4s ease;
-webkit-transition: fill .4s ease;
}
</style>
<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/turf/v1.3.0/turf.min.js'></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.0.1/mapbox.js'></script>
<script src='ratdata.js'></script>
<style>
#map{ height: 100% }
</style>
</head>
<body>
<div id="map"></div>
<script>
// bbox is in SW, NE format
var bbox = [-87.853692, 41.638513, -87.521355, 42.035499];
var map = L.mapbox.map('map').setView([41.8947, -87.6105], 11);
var grid = turf.hex(bbox, 0.005);
var grid = turf.count(grid, pts, 'pt_count');
var layerGroup = L.layerGroup().addTo(map);
var hex = L.geoJson(grid, {
style: function(feature){
var fillColor,
ptcount = feature.properties.pt_count;
if (ptcount > 20) fillColor = "#006837", fillOpacity = 0.7;
else if (ptcount > 10) fillColor = "#31a354", fillOpacity = 0.7;
else if (ptcount > 6) fillColor = "#78c679", fillOpacity = 0.7;
else if (ptcount > 1) fillColor = "#c2e699", fillOpacity = 0.7;
else if (ptcount > 0) fillColor = "#ffffcc", fillOpacity = 0.7;
else fillColor = "#000000", fillOpacity = 0; // no data
return { color: false, weight: 0.5, fillColor: fillColor, fillOpacity: fillOpacity };
},
onEachFeature: function( feature, layer ){
layer.bindPopup( "<strong>" + feature.properties.pt_count + "</strong>")
}
}).addTo(layerGroup);
L.geoJson(pts, {
pointToLayer: function(feature, latlng) {
return L.circleMarker(latlng, {
radius: 1,
fillColor: '#fff',
fillOpacity: 0.4,
stroke: false
});
}
}).addTo(layerGroup);
L.tileLayer('http://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png',
{
attribution: 'Map tiles by <a href="http://cartodb.com/attributions">CartoDB</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);
</script>
</body>
</html>
<!-- mapbox example from here https://www.mapbox.com/bites/00081/site.js -->
var pts ={
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "7405 W BELMONT AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.8117642988, 41.9379812703 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "118 N LARAMIE AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.755161283899994, 41.883002332499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "1455 W VICTORIA ST", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666660465600003, 41.987186203100002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "5723 N CLARK ST", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.669363870500007, 41.9860654728 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "611 N MONTICELLO AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.717432744299998, 41.891979808199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "552 N CENTRAL PARK AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716198169400002, 41.891133349100002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6118 W 64TH ST", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7743093598, 41.775994599299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6133 W 64TH ST", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.774679337600006, 41.775987342800001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "247 W 23RD PL", "Community": 34, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.633275190700004, 41.850047150599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "3603 S EMERALD AVE", "Community": 60, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644844585100003, 41.828884072 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "8000 S TRUMBULL AVE", "Community": 70, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708438616500004, 41.747879773500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "942 W 32ND PL", "Community": 60, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.649681421500006, 41.835619599300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2326 N RUTHERFORD AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.793760263699994, 41.9219533132 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6153 S NARRAGANSETT AVE", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.781362058200003, 41.78035974 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "5027 N TROY ST", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707372386599999, 41.972599570600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "704 W 42ND ST", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643486247400006, 41.817594964 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "4310 S EMERALD AVE", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644509013700002, 41.815924217099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "1831 S DRAKE AVE", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713898856300005, 41.856232936 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2657 W SUPERIOR ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.693163622100002, 41.8947586313 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2626 W WALTON ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.692486901799995, 41.898415830300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2746 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698504449599994, 42.006680862800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "3107 N HARDING AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.725926486800006, 41.937414382599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "1415 N CLEAVER ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.663969135800002, 41.907318725 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "3536 N HERMITAGE AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.67246515, 41.945776799 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6024 N ST LOUIS AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7164350961, 41.990710358900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6035 N LAWNDALE AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721371601, 41.990839920600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6209 N RIDGEWAY AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.722686637300001, 41.993881352400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6080 N WHIPPLE ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705539867900001, 41.992517334 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2719 W GREENLEAF AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697825775699997, 42.0094032449 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2715 N FRANCISCO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700048355299998, 41.930530914400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2633 N MOZART ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698766943699994, 41.929254287299997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "1140 W LILL AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.657098922900005, 41.928039987 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "4325 S SAWYER AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705397188899994, 41.814953563400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2644 N MOZART ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698772095400003, 41.929439002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6414 N MAGNOLIA AVE", "Community": 1, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661846775800001, 41.998492725699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "4409 S CHRISTIANA AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707836452799995, 41.813431046700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2143 W BELMONT AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.681831509299997, 41.939530159299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "3142 N LEAVITT ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.683181900799994, 41.938737787299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6042 N PAULINA ST", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6718010859, 41.991653056 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "5730 S KENNETH AVE", "Community": 62, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.734061781899996, 41.788914615400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "6333 N ARTESIAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691068725700006, 41.996498668500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "700 N LONG AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7605702221, 41.892959 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "1436 W BLACKHAWK ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.664012068299996, 41.907042082300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "2703 N RACINE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.658645851800003, 41.930793501300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "3921 N WESTERN AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.688432304499997, 41.952818238900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "726 W OAKDALE AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.64820967, 41.935592056300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "730 W OAKDALE AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.648258924199993, 41.935591526899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "7404 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.696107437699993, 42.015893793300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "223 S WABASH AVE", "Community": 32, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.626115925299999, 41.879225562599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "4800 W BARRY AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7468153218, 41.937002574099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/16\/2014", "Street_Add": "543 W 45TH PL", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.639375125300006, 41.811722422400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2043 W MONTROSE AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680636722399996, 41.961435885699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "10823 S TRUMBULL AVE", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707154900099994, 41.696524537899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2124 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.684402608, 42.007277484200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3915 W 68TH ST", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720449183599996, 41.769586706600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "11043 S HOMAN AVE", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705793097599994, 41.692524150200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "11039 S HOMAN AVE", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705796776200003, 41.692597718499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6421 N TROY ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708177506599995, 41.997796282899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "5724 N KENMORE AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656686221699999, 41.985949178200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6963 N BELL AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.686001379499999, 42.007956251700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "7526 S PHILLIPS AVE", "Community": 43, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.56515514, 41.758526115899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "7000 S CHAPPEL AVE", "Community": 43, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.575125861700002, 41.767996734 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1356 N ROCKWELL ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.692028302599994, 41.906046244099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1627 E 55TH ST", "Community": 41, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.585658914899994, 41.795208264800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6539 S SANGAMON ST", "Community": 68, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.648316196699994, 41.775341200100002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1000 W 103RD ST", "Community": 73, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.647694259299996, 41.706873265200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "7038 S CHAPPEL AVE", "Community": 43, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.575098432, 41.766872970900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2002 S DESPLAINES ST", "Community": 31, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642765966100001, 41.855338203700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "5482 W HIGGINS AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.764453213799996, 41.9694826904 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "4859 S UNION AVE", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643027710400006, 41.805805111 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1249 W BARRY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.660085787100002, 41.937998794499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3618 N BELL AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.684628235700004, 41.947115130599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1251 W BARRY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.660134259399996, 41.937998109 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3753 N OSCEOLA AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.813215069600005, 41.947790622799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1505 W FULLERTON AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665979137799994, 41.925180607400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1815 N HUDSON AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.639955207599996, 41.914977972 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6446 N MOZART ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700886271800002, 41.998386409 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6244 N ARTESIAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691019478200005, 41.994885034100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2550 N WAYNE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662168659, 41.927051682200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2426 N BURLING ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.647556627499995, 41.92597084 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2800 N NAGLE AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.786910021799997, 41.930970329799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6956 W SCHUBERT AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.799777259899997, 41.929014209499996 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2906 W MCLEAN AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700117813399999, 41.918514168 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2853 W MCLEAN AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699008763400002, 41.918524258700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2514 N NEWLAND AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.798974439399998, 41.925643112899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2051 W MONTROSE AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680745938200005, 41.961434311200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "4322 N MONTICELLO AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.719214446699993, 41.959639248400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "4141 N KEDVALE AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.730920650800002, 41.956194600499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3151 W EASTWOOD AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707200326700004, 41.965593689099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3748 N ELSTON AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713057314799997, 41.949517327 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3607 N ST LOUIS AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715169713700007, 41.9466574243 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3600 N ST LOUIS AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715166183899996, 41.946528152699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2242 N LAWNDALE AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.719361646, 41.921987766599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2216 N LAWNDALE AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7193446916, 41.921418248499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3142 N HONORE ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6742783, 41.9388608625 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2649 N MAGNOLIA AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.659825418699995, 41.929803491199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3804 N ST LOUIS AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715265037899997, 41.950303502600001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3828 N BERNARD ST", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.714036520799993, 41.950713818799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3800 N KIMBALL AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712808193, 41.950216018500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3801 N KIMBALL AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712808749800004, 41.950234407799996 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3706 N DRAKE AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716443509200005, 41.948452142900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3704 N ST LOUIS AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715218217100002, 41.948431616699999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3706 N BERNARD ST", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713994409700007, 41.948486236299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3706 N KIMBALL AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712771663699996, 41.948579509399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3701 N KIMBALL AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712767666900007, 41.948423067500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3911 N BERNARD ST", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.714069408100002, 41.952222202100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2102 W CONCORD PL", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680057802600004, 41.911246908700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2134 W EVERGREEN AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680620362499994, 41.905959270700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3100 W ROSEMONT AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.706861189199998, 41.995662237300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "3705 N KIMBALL AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712770864299998, 41.948548221099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "4180 S WALLACE ST", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.640914303399995, 41.818075346699999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2142 W CONCORD PL", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.681009894799999, 41.911228172100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1223 N HOYNE AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.679720873199997, 41.903885043400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2230 W PALMER ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.683851906699999, 41.921905892200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1416 N NOBLE ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662730225700003, 41.9071584796 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2020 W ARMITAGE AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.678121301199994, 41.917747487200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2512 N BOSWORTH AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.66700605699999, 41.927056270100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "4623 N HAMLIN AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.723055191, 41.965325823400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1621 W JULIAN ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668143858700006, 41.908351720699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6253 N LAWNDALE AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721462281699999, 41.994675790099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6019 N LAWNDALE AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721365075899996, 41.990561075499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2905 N ELSTON AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.690555015800001, 41.934086177200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2900 N NAGLE AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.786971835800003, 41.932815223399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "2503 N SAYRE AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.800801958600005, 41.925424531499999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "6639 N ROCKWELL ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.694877204299999, 42.001999380100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1404 N LUNA AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.764546052399993, 41.9058458887 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1106 N MOZART ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.69808725, 41.901205961700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "7406 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.696106851500005, 42.015952515499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "7400 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.696108975399994, 42.015776625199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/17\/2014", "Street_Add": "1508 N STATE PKWY", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.628835731600006, 41.909622364699999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "11000 S KEDZIE AVE", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700891339500004, 41.693393524900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "11000 S TROY ST", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699671534900006, 41.693315292400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "10900 S TROY ST", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699757994300001, 41.695229134500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3705 W 69TH ST", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715258036099996, 41.767842228600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "12226 S MORGAN ST", "Community": 53, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.646581361499997, 41.671808903799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "9044 S PHILLIPS AVE", "Community": 48, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.5646288688, 41.730921869299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "5514 S CORNELL AVE", "Community": 41, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.585404780499999, 41.794955508900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "6147 W 63RD PL", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.775061628900005, 41.776895307300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1311 W 109TH ST", "Community": 75, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.654920050499996, 41.695845440900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "7834 S MARSHFIELD AVE", "Community": 71, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.664680248, 41.751534309900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "6315 N ARTESIAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691059169900001, 41.996168488800002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "6532 N FAIRFIELD AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698489183, 41.999991667499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "4425 S WALLACE ST", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.640798320499997, 41.813701290499999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3459 N NARRAGANSETT AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.786268058100006, 41.943298974400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "4866 N MILWAUKEE AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.762044547499997, 41.9693659438 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1144 W ALTGELD ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.657170498599996, 41.927132169499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2323 N NATCHEZ AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.787860288, 41.922595913199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "6329 W EDDY ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.78452199, 41.944769086900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1621 N MOHAWK ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642237936300006, 41.911436384300004 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "548 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642623722099998, 41.926872519900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2917 W WILSON AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.701735789599994, 41.964750915 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "4518 N ST LOUIS AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715651913200006, 41.9632540279 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "4256 N RICHMOND ST", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.702053698200004, 41.958605076 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3328 N LEAVITT ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.683264299, 41.941849837600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "4147 N KEDVALE AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7309243885, 41.956305211900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "4637 N PAULINA ST", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.670943515, 41.9658938639 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "4415 N HARDING AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.726612463600006, 41.961245708299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1108 W GEORGE ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.65654413, 41.9344113593 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "6311 N RICHMOND ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.703225277399994, 41.995915045300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2951 W LYNDALE ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.701163880199999, 41.922394140599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "7902 S ABERDEEN ST", "Community": 71, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.651315203400003, 41.750495559299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "7900 S ABERDEEN ST", "Community": 71, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.651316279900001, 41.750532339400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2234 N LEAVITT ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6826684113, 41.922076149900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3414 W 13TH PL", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.710820814100003, 41.8641290582 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1711 W HURON ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.669941073800004, 41.894212707 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3352 W WAVELAND AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.711934452600005, 41.948400464300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2886 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.714998425100006, 41.9337009248 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2340 W MEDILL AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.686167535300001, 41.924156567499999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2950 N ALLEN AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715301678499998, 41.933885871599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3530 W PETERSON AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.717642493200003, 41.990277883200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1225 N CLEAVER ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6638432604, 41.903843424199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2537 W MEDILL AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.690155727800004, 41.924049548 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "4752 N ROCKWELL ST", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6937735753, 41.9677044357 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3256 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.725693150699996, 41.940219119399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3115 N HAUSSEN CT", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.722425840400007, 41.937383618 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3108 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721304543700001, 41.937545463100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "900 N PULASKI RD", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.726140405400002, 41.897200781599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2730 N WAYNE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662307958499994, 41.931233027899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "217 W ILLINOIS ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6343078636, 41.890782118 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "742 N LA SALLE DR", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.632694648699996, 41.8958106981 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "6340 N MAPLEWOOD AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.693508634300002, 41.996589295100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "180 N WABASH AVE", "Community": 32, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.626268618200001, 41.885337168200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "7409 N WASHTENAW AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697285238700005, 42.016015687200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "3012 W CHASE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.704700495400004, 42.013773029799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2045 W MONTROSE AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680663934500004, 41.9614354916 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "7053 W 64TH PL", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.797174651099994, 41.774698816799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1932 W LARCHMONT AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6776203788, 41.953239677500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1440 N DEARBORN ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.630124701900002, 41.908483827700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "1422 N STATE PKWY", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.628794995899995, 41.908173257199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/18\/2014", "Street_Add": "2111 N KOSTNER AVE", "Community": 20, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.736388117600001, 41.919220191400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "1800 N MOBILE AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.782572972799997, 41.912818004 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "11042 S SPAULDING AVE", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.703384707500007, 41.692581525100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "3543 N JANSSEN AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665202411799996, 41.946016144799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "1043 W WINONA ST", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656541072300001, 41.975258577 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "11132 S PEORIA ST", "Community": 75, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644795249, 41.691738663300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "6605 S RACINE AVE", "Community": 68, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.654352254800003, 41.774061805899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "244 W 117TH ST", "Community": 53, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6289895516, 41.681601179099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2025 N RACINE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.658234122699994, 41.918491990699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2042 N MAGNOLIA AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.659608824399996, 41.918904331 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "3349 S LITUANICA AVE", "Community": 60, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.648600278499998, 41.833592444200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2636 N MILDRED AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.651332583599995, 41.929707389599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "6325 N ROCKWELL ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6947189009, 41.996296391400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "7044 N WASHTENAW AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697365599799994, 42.0095746776 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2718 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697818852400005, 42.006694083100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "5435 S KARLOV AVE", "Community": 62, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.725645971700004, 41.794378916399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2445 N RUTHERFORD AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.794044309100002, 41.924436829299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "4533 N TROY ST", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707100964199995, 41.963584301899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "1517 W GEORGE ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666464381500006, 41.934253968299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2712 N WAYNE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662296719300002, 41.930902832500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2928 N SEMINARY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656376979399994, 41.9352284617 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "1111 W DRUMMOND PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656458060199995, 41.929865974199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "4733 N KELSO AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.734038371699995, 41.966398050099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "1244 W 71ST PL", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6555284457, 41.764123226199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "3745 W MONTROSE AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721969866799995, 41.961020449499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "1521 W GEORGE ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666561788300001, 41.934252613 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "3627 W LEXINGTON ST", "Community": 27, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716254978099997, 41.871744299900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2936 N ALBANY AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705045062300002, 41.9345363909 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2540 N MAPLEWOOD AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691415326, 41.927907150300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2315 W CHICAGO AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.684767297799993, 41.895778817199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2328 W MEDILL AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.685872416500004, 41.9241612155 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2637 W HURON ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.692911314400007, 41.893858333899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "672 N LAKE SHORE DR", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.615485376099997, 41.894466348500004 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "3217 N SEMINARY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656546170499993, 41.940188355 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2306 N SOUTHPORT AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.663262667799998, 41.923528305700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "2300 N MELVINA AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.780514996500003, 41.921821981599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "6305 N WASHTENAW AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697143777199997, 41.995896075099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/19\/2014", "Street_Add": "1542 W WELLINGTON AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.667140466299998, 41.936068149699999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "1337 W HENDERSON ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662376251, 41.942526396300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "3810 W 70TH PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.717766038899995, 41.765072216599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "10925 S CENTRAL PARK AVE", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.710699624100002, 41.694610415200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "800 N MOZART ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697945542400007, 41.8956488229 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "4631 S LAKE PARK AVE", "Community": 39, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.5938774177, 41.810897731600001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "6014 W 63RD PL", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.771804604500005, 41.776959220400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "6336 N ROCKWELL ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.694725724099996, 41.996497029799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "1318 W FLETCHER ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661716006899994, 41.938886179 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "5215 N LEAMINGTON AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.756531359500002, 41.975511502800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "4325 N FRANCISCO AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700867085300004, 41.959861805700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "4122 N KEDVALE AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.730909240700001, 41.955844653500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "611 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644256866399999, 41.926722676099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "3727 W AGATITE AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721183566600004, 41.961941124500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "6905 S ADA ST", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6578487325, 41.768548091299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "2033 N KEDZIE AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707002479099998, 41.918363789899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "1626 W PIERCE AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668311259, 41.909858120599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "225 W CHICAGO AVE", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.634579397300001, 41.896591788899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "2926 N TALMAN AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6940195042, 41.934405443599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "358 W ONTARIO ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.637560462, 41.893140423 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "108 W KINZIE ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.631360535499994, 41.889207165599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "200 S WABASH AVE", "Community": 32, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.626126243200005, 41.879522004400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "116 W HUBBARD ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.63168293, 41.890013961500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/20\/2014", "Street_Add": "6 N MICHIGAN AVE", "Community": 32, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.624367483399993, 41.882167429 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "1619 W PEARSON ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668031536, 41.897321655100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "12440 S LOWE AVE", "Community": 53, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.637970492600004, 41.668021526499999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "6330 W BARRY AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.784171241799996, 41.936511173500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "4617 S UNION AVE", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643151857600003, 41.810231198899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "4638 S EMERALD AVE", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644358052300007, 41.810008780499999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "4615 S UNION AVE", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.64315332699999, 41.810290256899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "1954 W WILSON AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.678003195299993, 41.965111312700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "2116 W BELMONT AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.681171304700001, 41.939538485699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "1905 W HENDERSON ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.676127246899995, 41.942332769499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "1234 W DIVERSEY PKWY", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.659987552600001, 41.932535531799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "2924 N DAMEN AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.678198155299995, 41.934812276099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/21\/2014", "Street_Add": "904 W BARRY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.651904344200005, 41.938126729499999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2837 N CHRISTIANA AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.711086666599996, 41.932675970799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "7351 S MAY ST", "Community": 68, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.652781833600002, 41.760497513700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1243 W 73RD PL", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655400274399994, 41.760487644599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "506 W DIVERSEY PKWY", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.641657518, 41.932864089699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2919 N DAWSON AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.711852250199996, 41.934484030699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2916 N DAWSON AVE", "Community": 21, "": "(41.93619656971515, -87.65883892484999)" }, "geometry": { "type": "Point", "coordinates": [ -87.711898622099994, 41.934439550900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2941 N WISNER AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713574273099994, 41.934189674 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4819 N AVERS AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.724417542400005, 41.968754643300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4823 N SPRINGFIELD AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.725618571200002, 41.968811874899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3924 W LAWRENCE AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.726604034900006, 41.968256010099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3850 W LAWRENCE AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.724736707399998, 41.968277051299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3827 W LAWRENCE AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7242998129, 41.968282143800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3855 W LAWRENCE AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.724824232299994, 41.968276143200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3105 N SAWYER AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708793060299996, 41.937599705799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3109 N SPAULDING AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.710008381700007, 41.937658239299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "5320 W KINZIE ST", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.758307222499994, 41.887768960400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3640 W 70TH ST", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713770820199997, 41.766043105400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3755 W 68TH PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716515613300004, 41.768735910499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "5400 N LOVEJOY AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.769654294700004, 41.979386210900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1009 W BARRY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.654397309900006, 41.938084510300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "5634 N WINTHROP AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.658028864499997, 41.984284823899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4448 W CORTEZ ST", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.737263334399998, 41.899759097299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6709 N CAMPBELL AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6924673101, 42.003314715899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "428 N RIDGEWAY AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.719781085400001, 41.888693007599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6647 N ARTESIAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691218658099999, 42.002210661399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6409 S KNOX AVE", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.738568704599999, 41.7764868967 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6521 N SACRAMENTO AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.704587204700005, 41.999684456200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2317 N CAMBRIDGE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.64247335, 41.923985318699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "816 W 34TH ST", "Community": 60, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.646770017700007, 41.832796400900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1435 N MOHAWK ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642136098400002, 41.908181916899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6300 W HENDERSON ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.783618514300002, 41.941103782799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3407 N NAGLE AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.787425374899996, 41.942104558700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "882 S MICHIGAN AVE", "Community": 32, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.624146073399999, 41.870815564399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3710 N NORDICA AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.803386448300003, 41.947335545400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3419 S HALSTED ST", "Community": 60, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.646137539899996, 41.832113604600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6513 N WHIPPLE ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705803894, 41.999515843300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "868 S MICHIGAN AVE", "Community": 32, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.624149942499997, 41.870996983 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1817 N HUDSON AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.639955553199997, 41.915013923499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4423 N FRANCISCO AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7009233948, 41.961658321500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "538 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642355523099994, 41.926901092599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4542 N ALBANY AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705881071799993, 41.963746480899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1848 N RICHMOND ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700377993700002, 41.914761134400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1852 N FRANCISCO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699224018899997, 41.914840713899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1857 N FRANCISCO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699226837099999, 41.914927172799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2930 W ARMITAGE AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700540640300005, 41.917456530499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2906 W ARMITAGE AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6995510024, 41.9174659826 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3620 W NORTH AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.717408482400003, 41.909985090900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3134 W EASTWOOD AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.706780457899995, 41.965597340400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "5204 S KILBOURN AVE", "Community": 57, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.735562859, 41.798508651600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2611 N NEWCASTLE AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.796583990800002, 41.927430583300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3341 N HOYNE AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680848132799994, 41.942119480800002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1625 W ADDISON ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.669840430299999, 41.946977971300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "7900 S MORGAN ST", "Community": 71, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.648888776700005, 41.7505693118 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4040 W EASTWOOD AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.729313767899995, 41.965644410499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1835 W WELLINGTON AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.674573246400001, 41.9359727529 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1925 N MOZART ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698191147100005, 41.9161232461 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1931 N FRANCISCO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699269865399998, 41.9162221383 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1930 N RICHMOND ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700423003, 41.916192433600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2424 N KEDZIE BLVD", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707218768, 41.924716351400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3536 W DIVERSEY AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716077902099997, 41.9319229822 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3502 W DIVERSEY AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.714838437599994, 41.931938001699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2843 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713717281499996, 41.9329187827 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2820 N DAWSON AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713325121599993, 41.933073086500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2821 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713023700299999, 41.932497627099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2820 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712995933200006, 41.932480737299997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2853 N TROY ST", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.706228016899999, 41.933014503400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1117 W WRIGHTWOOD AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656575414700001, 41.928958659099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2853 N SAWYER AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708669710099997, 41.933015191 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2853 N SPAULDING AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.709888655300006, 41.932998963599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2325 N SACRAMENTO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.702290090600002, 41.923904641100002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3820 W LAWRENCE AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.723999727700004, 41.968285216600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6322 N MONTICELLO AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7202573183, 41.995898293800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6257 N LAWNDALE AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721464170600001, 41.994747423699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1716 W PIERCE AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.670504182, 41.909829581399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1311 N GREENVIEW AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665105643399997, 41.905376208900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6251 N LAWNDALE AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721461519800002, 41.994640111499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2959 N ELSTON AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691974648799999, 41.935033495200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3729 W LELAND AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721358951, 41.966492407300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "5944 N MAPLEWOOD AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.693284023299995, 41.989439616600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3025 N OAKLEY AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.68555993699999, 41.936574532400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3917 S CALUMET AVE", "Community": 38, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.618543306199996, 41.823510724099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1111 W GEORGE ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656617646900003, 41.934410146 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "5514 S HONORE ST", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.670635660599999, 41.793384250400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4130 N ASHLAND AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.669115145700005, 41.956680155500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1526 W NELSON ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.66678239, 41.936981406100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3107 N CHRISTIANA AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.711221943200002, 41.9376067444 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3108 N KIMBALL AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712435328699996, 41.937609527299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3106 N CHRISTIANA AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.711221386899993, 41.937588355099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2938 N DAWSON AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.711557695099998, 41.934766463 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6025 N WHIPPLE ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705490813699996, 41.991067306300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3004 N ALBANY AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705075562100006, 41.935750619099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3007 N ALBANY AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705075539099994, 41.935790410199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2935 N ALBANY AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705044507699995, 41.934518001599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2922 N SAWYER AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708702174600006, 41.934283198400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2933 N TROY ST", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.706266279600001, 41.934473541 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "6523 N KEDZIE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.709363805799995, 41.999630869299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3119 N KIMBALL AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712442192799998, 41.937811264700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3116 N ST LOUIS AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.714889425199999, 41.937722790899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3114 N BERNARD ST", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713660502099998, 41.937701687900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3111 N BERNARD ST", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713658831, 41.93764652 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3746 W GIDDINGS ST", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.722133958699999, 41.967394857400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4659 N SPRINGFIELD AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.725514602100006, 41.9657095078 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "4651 N AVERS AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.724288614, 41.965574288399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2905 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715559088899994, 41.934042492 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3536 W WOLFRAM ST", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715322627600003, 41.932969130799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2875 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.714742234200003, 41.933544768399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2878 N MILWAUKEE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7148120178, 41.933587405300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3006 N SPAULDING AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.709956742700001, 41.935791313599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3307 W WELLINGTON AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.710337795, 41.935676921800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3014 N SPAULDING AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7099608284, 41.935937877199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3008 N SAWYER AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708742140599995, 41.935843505900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3012 N KEDZIE AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707534689300005, 41.9359186167 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2438 N CLARK ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.641118630099996, 41.9266441603 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3000 N SAWYER AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708738055, 41.9356972167 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3035 N ALLEN AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713253502800001, 41.935829994800002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2946 N GRESHAM AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715464443100004, 41.9351342227 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "3000 N ALLEN AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713716434, 41.935390399799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "2965 N ALLEN AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.71426096099999, 41.934873581399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "5521 S KOLMAR AVE", "Community": 62, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.736628035899997, 41.792699497 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/22\/2014", "Street_Add": "1900 W HARRISON ST", "Community": 28, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.674017171900005, 41.874080987399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3238 N SEMINARY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656557865600007, 41.9405770049 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "640 W WRIGHTWOOD AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644351999500003, 41.9294384572 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6966 N HAMILTON AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.683898793500006, 42.007287806900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3223 N KENMORE AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655335076499995, 41.940317753800002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3225 N KENMORE AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6553361542, 41.9403548071 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6015 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.695758246400004, 41.990729838 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6041 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.695772775500004, 41.991190669 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6039 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.695771660199995, 41.991154988200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6035 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.695769424100007, 41.991084175600001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "700 N RIDGEWAY AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.719918130400004, 41.8935870472 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "700 N HAMLIN AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721135055900007, 41.893580331099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1244 W BRYN MAWR AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661574486099994, 41.983600463899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6215 N WASHTENAW AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697089845400001, 41.994279301399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6925 S ARTESIAN AVE", "Community": 66, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.684550930399993, 41.767855998599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "7700 S WOOD ST", "Community": 71, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668385969900001, 41.753934063099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "9956 S ABERDEEN ST", "Community": 73, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.650297932499996, 41.712936898599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2537 W AUGUSTA BLVD", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.690318080300003, 41.899345379099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1706 S RACINE AVE", "Community": 31, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656450959400004, 41.858805456200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "11429 S WATKINS AVE", "Community": 75, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665639191099999, 41.685845164600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "11554 S WATKINS AVE", "Community": 75, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666849406899999, 41.683827453 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "11527 S HARVARD AVE", "Community": 53, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.631264861, 41.684723472800002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "12124 S ADA ST", "Community": 53, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655154585, 41.673143051099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6326 W BARRY AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.784072365200004, 41.936512347099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "548 W DICKENS AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.64283398, 41.920086102500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3138 N NATCHEZ AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.788337278, 41.9371552948 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2041 N NAGLE AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.786471767600005, 41.917205646299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6230 W EDDY ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.782073870800005, 41.9447961933 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6241 N ARTESIAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691017825800003, 41.9948298666 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6346 W SCHOOL ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.784766402100004, 41.940172545099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2043 N RACINE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.658244978, 41.918821636099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "5339 N LARAMIE AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.757701154, 41.977734159299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "7301 W BELMONT AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.809213915100003, 41.937991699100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1435 S WABASH AVE", "Community": 33, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.625729746700003, 41.863062599099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1455 S WABASH AVE", "Community": 33, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6257177281, 41.862487878899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6414 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.695993215800002, 41.997883121199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2016 N HALSTED ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.648519347199993, 41.918472854900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2608 N NORMANDY AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.792908722600004, 41.927270251499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2949 W LUNT AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.703326486099996, 42.008384872 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3099 N KENNEDY SR", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7043077668, 41.9369232982 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2112 W BELMONT AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6810735225, 41.939539851200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2525 W FITCH AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.693262944, 42.0113084969 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1816 W WILSON AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.674862472100003, 41.965158208799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2227 W MELROSE ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.683885966199995, 41.940416716400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "820 W WOLFRAM ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.649532616200005, 41.933614624100002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3141 N CLIFTON AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.657715553, 41.938790264300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1232 W DIVERSEY PKWY", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.659952635600007, 41.932535875900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2919 N GREENVIEW AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666069433399997, 41.934818267799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "4630 N KASSON AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.733705852699998, 41.964928568 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "7145 W 63RD PL", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.79918809599999, 41.776471202700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2119 W CRYSTAL ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680195068299994, 41.904069958699999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6417 N TROY ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708174550400003, 41.997722448099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6423 N TROY ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708179353899993, 41.997833065199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1418 W BLACKHAWK ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6634311989, 41.907048574199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2018 W GEORGE ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.678912390400001, 41.934099556900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1333 N GREENVIEW AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6651178754, 41.905788463900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "438 N CITYFRONT PLAZA DR", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6219339644, 41.889649571200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3739 W ROSEMONT AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.722881429200001, 41.995492778399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "8020 S JEFFERY BLVD", "Community": 46, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.575943134100001, 41.749420927899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2044 N RACINE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.658245889300005, 41.9188397534 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "4048 W MONROE ST", "Community": 26, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.726825600699996, 41.8797465667 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "5443 N CAMPBELL AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691767606300004, 41.980317558499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2919 W BELDEN AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700489006400005, 41.923271584299997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1717 N MEADE AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.77772182, 41.911365478800001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1404 N LUNA AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.764546052399993, 41.9058458887 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "2323 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.688528598700003, 42.007191680200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "6500 S WESTERN AVE", "Community": 66, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.683547967300001, 41.775599358800001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3448 W OHIO ST", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712809998099999, 41.891829713299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "4820 W GRACE ST", "Community": 15, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.747912072399998, 41.9497609107 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "3621 N ARTESIAN AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.689480715299993, 41.947111082600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "4746 W BYRON ST", "Community": 15, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.745893267100001, 41.951583945800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "1329 W WOLFRAM ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662038087499994, 41.9334103208 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/23\/2014", "Street_Add": "7215 S MARSHFIELD AVE", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.664979415700003, 41.762800778200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3807 W 69TH ST", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.717758801499997, 41.767804783199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3608 W OHIO ST", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716521685199993, 41.891787668100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4400 W AUGUSTA BLVD", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.736042381700003, 41.898849762899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "901 N KOSTNER AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.735998245700003, 41.897057294299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "801 N KOSTNER AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.735944395900006, 41.895216684799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "800 N KOLIN AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.734714727300002, 41.895208551300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4400 W IOWA ST", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7359974174, 41.897027926600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "1450 E 69TH ST", "Community": 43, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.589321698700005, 41.769663715100002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "1160 W 18TH ST", "Community": 31, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655417687400004, 41.857970286099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4633 S LAKE PARK AVE", "Community": 39, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.5938349109, 41.810862056799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "936 N WASHTENAW AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.69430724199999, 41.898477885799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "6650 S KARLOV AVE", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.72504628599999, 41.773150866 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "316 W 111TH ST", "Community": 49, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.630964026699999, 41.692491717599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "214 W 111TH ST", "Community": 49, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.628247216899993, 41.692522821899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3931 W 66TH ST", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720936974, 41.7732171149 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "1714 N TROY ST", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705717933900004, 41.912202949399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "8136 S EXCHANGE AVE", "Community": 46, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.552809590899997, 41.747270955899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "1327 W BARRY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661964909899993, 41.937969860199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "6542 N RICHMOND ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.703378864300007, 42.000092532700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3701 N NEVA AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.805846961399993, 41.947121812200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3727 N NEVA AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.805866185300005, 41.947599120500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "6431 N MOZART ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700877604, 41.998110021199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3301 N NEENAH AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.789771969, 41.940105761399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "805 W 35TH ST", "Community": 60, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.646187248399997, 41.830749249500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "5440 W HIGGINS AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.762989991200001, 41.9690853424 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2126 W BELMONT AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.681415756, 41.939535483199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4637 N WOLCOTT AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.676124752800007, 41.965820521799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "1733 N LAWNDALE AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.71906886, 41.912409646599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "5400 S NEENAH AVE", "Community": 56, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.785527332100003, 41.794179116899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "1536 W DIVERSEY PKWY", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.667295896300004, 41.932418101 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "6046 N TROY ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708178548099994, 41.991513379099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2727 N TROY ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.70616209799999, 41.930706808399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4621 N KIONA AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7343870917, 41.96505726 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "1842 W NELSON ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.674738257200005, 41.936881874199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2529 N AVERS AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.723184648599997, 41.927269981599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2720 N WAYNE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662301795199994, 41.931049677899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3051 W LOGAN BLVD", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.704022296199994, 41.928409724200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "7324 S SANGAMON ST", "Community": 68, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.647946734800001, 41.761065027599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4680 N KASSON AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.735130559200002, 41.965912566699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "7122 S ABERDEEN ST", "Community": 68, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.651678547800003, 41.764687743800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2709 N RICHMOND ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.701266591899994, 41.9304117207 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2901 N DAWSON AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712131223900002, 41.934216332200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3461 W DEVON AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716032053500001, 41.9972940448 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "6016 N ST LOUIS AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716430919399997, 41.990571480200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2642 N MOZART ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698770957299999, 41.929405516199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "1447 W BLACKHAWK ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.664211577399996, 41.907039128599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "14 W ELM ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.629085060799994, 41.903171443700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2500 W ARGYLE ST", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.690661626899995, 41.971887810699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2542 W CHARLESTON ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.690135975900006, 41.919967185499999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2739 W WELLINGTON AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.696661041300004, 41.9357486237 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4936 N WINCHESTER AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.677765685200001, 41.971261098200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4030 S ALBANY AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.701967020599994, 41.819933971399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3745 W DEVON AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.722981468, 41.9972616202 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4031 S SACRAMENTO AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699501850600001, 41.8199632615 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4030 S SACRAMENTO AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699502457099996, 41.819976162899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3915 S SACRAMENTO AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699551056399997, 41.822219480900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4034 S RICHMOND ST", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698319656699994, 41.819955571500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4035 S RICHMOND ST", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698319441600006, 41.819940202399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4033 S KEDZIE AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.704433047099997, 41.819859631900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3921 S KEDZIE AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.704483044599996, 41.8219969007 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "3931 S ALBANY AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.702035947799999, 41.821723418099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "4031 S ALBANY AVE", "Community": 58, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.701966413600005, 41.819921069899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "6246 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.695890821800006, 41.994857889599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "750 W 29TH ST", "Community": 60, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.645479976900006, 41.841688617599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2125 W WELLINGTON AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.681688900599994, 41.935888681100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "2452 N BURLING ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.647573361599996, 41.926469221700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "7422 N PAULINA ST", "Community": 1, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.672501847800007, 42.016611602899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/24\/2014", "Street_Add": "8037 S MARYLAND AVE", "Community": 44, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.603898477300007, 41.748788152400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "4252 W CULLERTON ST", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.730993876300005, 41.854323001399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "514 W DEMING PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642512821599993, 41.928464482599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "3028 N SHEFFIELD AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.654012253900007, 41.937146405 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2233 W TOUHY AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.686666367100003, 42.012243737399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "621 N CENTRAL PARK AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716218569500001, 41.892180936099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "5556 N SHERIDAN RD", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655182031300001, 41.983495780699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2419 W FITCH AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691063423800003, 42.011356806800002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "3748 W HURON ST", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720180386, 41.893585703600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "6712 S CARPENTER ST", "Community": 68, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.650662146900004, 41.772164927299997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "6700 S ELIZABETH ST", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655522800699998, 41.772315689700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2445 N HALSTED ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.648790660900005, 41.926281126299997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1241 S WABASH AVE", "Community": 33, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.625816197800006, 41.866739946899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "6125 W MELROSE ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.779293091, 41.939325986 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "7036 W ADDISON ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.802182711, 41.945358556199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1909 N ORCHARD ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.646037877300003, 41.916265575399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "6231 W EDDY ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.782098500100005, 41.944796037099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "5130 N LOTUS AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.763934261599999, 41.9738825242 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "6349 W MELROSE ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.784803977799996, 41.939254933299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2044 N CLIFTON AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.657036478899997, 41.918858965600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "4550 S LOWE AVE", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.641993381899994, 41.812587588 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "4708 S KILDARE AVE", "Community": 57, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.730918901199999, 41.807630991800004 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "3138 W WILSON AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707278034200002, 41.964708215 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2544 W ESTES AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.693798680100002, 42.010390648600001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1858 W BERENICE AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.675738011500002, 41.951463540600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1750 N KEDZIE AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.70684622, 41.913445390200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "4036 N RICHMOND ST", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7019257173, 41.954615146400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1531 W LAWRENCE AVE", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668104946, 41.968893038300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2041 W MELROSE ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.679384213, 41.940472718899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1953 W MELROSE ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.677255057400004, 41.940499540099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "4532 N AVERS AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.724227991500001, 41.9634335163 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "7914 S ABERDEEN ST", "Community": 71, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.651308744100007, 41.750274878799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1738 W ROSCOE ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.672692123, 41.943288407899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "4527 N PULASKI RD", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7278959251, 41.9634288058 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1514 W DIVERSEY PKWY", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666529622900001, 41.932431425899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "4178 S WALLACE ST", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.640922177899995, 41.818366012699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2923 N SEELEY AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.679413831299996, 41.934517065500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1639 W LE MOYNE ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668609909, 41.909099643099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1623 W LE MOYNE ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668215297700002, 41.909104493100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "1615 W LE MOYNE ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668018359399994, 41.909106919700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2413 W MOFFAT ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.687660947500007, 41.914852544299997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "6117 N KEELER AVE", "Community": 12, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.733725991100002, 41.992224178 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "2033 W BIRCHWOOD AVE", "Community": 1, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.681701396400001, 42.0179343617 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/25\/2014", "Street_Add": "7217 N CAMPBELL AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.692526485100004, 42.013281165199999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "3621 N BELL AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.684629881899994, 41.9471702986 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "3625 W CERMAK RD", "Community": 30, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715923119899998, 41.851653227699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "1464 W CATALPA AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.667183205100002, 41.981689128900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "4907 W BERTEAU AVE", "Community": 15, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.750395012499993, 41.9570343603 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "6962 N GLENWOOD AVE", "Community": 1, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665751378300001, 42.008326529800001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "4727 W DEMING PL", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.744642899599995, 41.9272431391 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "3653 W 63RD PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.714347462500001, 41.777860192699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "3431 W 115TH ST", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.706181955, 41.684175814699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2201 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.685998294200004, 42.007244392399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2632 W NORTH SHORE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.69612417499999, 42.003082446500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "410 N RIDGEWAY AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.719771915300001, 41.888384779900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "6225 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.695878448200006, 41.994475829300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "3232 W HADDON AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707410341799999, 41.9018639142 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "244 W 108TH ST", "Community": 49, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.629111932, 41.697979793400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "6753 S LAFLIN ST", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661563677299995, 41.771253016499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "10853 S EMERALD AVE", "Community": 49, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.641307308099996, 41.696857091399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "1718 S ASHLAND AVE", "Community": 31, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666171587299999, 41.858535592 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "4600 S UNION AVE", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643163247100006, 41.810732968400004 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "4613 S EMERALD AVE", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644370348300001, 41.810470167200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2046 N CLIFTON AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.657037560299997, 41.9188957446 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2061 N LARRABEE ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643704676499993, 41.9193738074 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2410 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643943363399998, 41.925823449600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "1615 W WINNEMAC AVE", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.669800563199999, 41.973432425699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "5437 S NEENAH AVE", "Community": 56, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.785505895599997, 41.793466596199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "3642 N CHRISTIANA AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.711530739, 41.9478798962 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "7802 W ADDISON ST", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.821766422500005, 41.945166241099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "5665 N RIDGE AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662226641900006, 41.984946934 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "1150 W SCHUBERT AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656202252400007, 41.930765129100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2849 N SPAULDING AVE", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.709887148199996, 41.932923698400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "1342 W WOLFRAM ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662327002500007, 41.9334056979 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2826 N LINCOLN AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.659363766200002, 41.9330238159 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "1544 W DIVERSEY PKWY", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.667435202299998, 41.932416164800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2127 N SEMINARY AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655870673699994, 41.920380508100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "4550 N KASSON AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.732502828899996, 41.964084094199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2638 N SACRAMENTO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.702443650299998, 41.929269503299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "1535 S SPAULDING AVE", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.707928986499994, 41.860242375299997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "1413 N CLEAVER ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.663965111799996, 41.907281928899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2144 W HURON ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680538538799993, 41.894036022800002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2624 W RICE ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.692340320200003, 41.896599359200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2310 W BELMONT AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.686010935799999, 41.939480691900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2521 W LYNDALE ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.690126730599999, 41.922454064500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "5026 W NELSON ST", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.75232717599999, 41.9360222006 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "5516 S NATOMA AVE", "Community": 56, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.787901595600005, 41.791933059199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "2800 N ORCHARD ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.646668851599998, 41.932765768 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/26\/2014", "Street_Add": "4000 W LAWRENCE AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.728027559699996, 41.968242304199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "535 N DRAKE AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.714952268399998, 41.890778630500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "3914 W 65TH PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720538241100002, 41.774136132099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "6443 S LOCKWOOD AVE", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.754265026900001, 41.775239462199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "7611 S CRANDON AVE", "Community": 43, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.568774499300005, 41.756944113300001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "3645 S UNION AVE", "Community": 60, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643601349600004, 41.828126924400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "2925 W COYLE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.702766666499997, 42.007494944 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "4519 N SEELEY AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680648746, 41.963600529700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "1509 N CENTRAL PARK AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716752287899993, 41.908455364 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "4670 N KASSON AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.734843866800006, 41.9657149592 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "2247 N WAYNE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662012853600004, 41.922486352200004 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "1270 S HOMAN AVE", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7104884564, 41.864456237600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "2345 W SUPERIOR ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.685483454899995, 41.894851371100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/27\/2014", "Street_Add": "3400 W 12TH PL", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.710509355499994, 41.865195927800002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2358 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643895452600006, 41.924972265900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "11006 S CENTRAL PARK AVE", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.710640597600005, 41.693129438200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "3917 W 70TH ST", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720411423499996, 41.765946325100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "5701 N BROADWAY", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.660127188199993, 41.985520712700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "1140 N KEELER AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.731200269699997, 41.901788681 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "5245 N WINTHROP AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.657838595800001, 41.977182283300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "5455 N SHERIDAN RD", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655128514599994, 41.981478316500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "8836 S PAXTON AVE", "Community": 48, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.570805788499996, 41.734637538 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "612 W FULLERTON PKWY", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644219213300005, 41.9255273574 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "610 W FULLERTON PKWY", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644170698699995, 41.925528163899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "608 W FULLERTON PKWY", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644122184, 41.925528970400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2415 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643950980900001, 41.925969213599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2417 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643954396500007, 41.926027411600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2421 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6439606629, 41.926144062699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2418 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643955917699998, 41.926056783900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "3022 N NORMANDY AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.793152874399993, 41.934965132400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2838 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700714934900006, 42.006636754100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2834 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700618884299999, 42.006638694499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "1629 W WILSON AVE", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.669809980599993, 41.965227566499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "613 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644305014500006, 41.926721867399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "617 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644401307699994, 41.926720524300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "619 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644449455699998, 41.926719715399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "623 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644545751899997, 41.926718097799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "561 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642972424099995, 41.926835431900003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "559 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642918710900005, 41.926841146199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "557 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642865365099993, 41.926846862700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2425 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643966756300003, 41.926260728700001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2431 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643976265500001, 41.926435592700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2428 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643971696099996, 41.926348024600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2430 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643974744299996, 41.926406220399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "603 W ARLINGTON PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644064277, 41.926725636500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2424 N GENEVA TER", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.643965232200003, 41.926231630799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "4104 N KEDVALE AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.730898392699999, 41.955513095599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2847 W COYLE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700916371199995, 42.007535112399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "1336 W WOLFRAM ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662193574100002, 41.933407662299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "6522 N TROY ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708247521700002, 41.999632330799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2135 W SHAKESPEARE AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6810547595, 41.920741236 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "1815 S CHRISTIANA AVE", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.709039841299997, 41.8563072193 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "1742 W HURON ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.670706644700005, 41.894199289500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "2648 W HURON ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.693136487800004, 41.893855747499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "1310 N BOSWORTH AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666228193899997, 41.905370033200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "3523 W SCHOOL ST", "Community": 21, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715524294600002, 41.941066515 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "6038 N ST LOUIS AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716442679799997, 41.990953535400003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/28\/2014", "Street_Add": "6040 N ST LOUIS AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716443817300004, 41.990988118399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2639 N FRANCISCO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700012923599999, 41.9293062291 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3508 W 105TH ST", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708881875200007, 41.702432047499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3924 W 63RD PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720700650699996, 41.7777629725 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3925 W 63RD PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720718253100003, 41.777762517500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "5630 N MASON AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.776813963099997, 41.983457618 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "11830 S ARTESIAN AVE", "Community": 75, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.681967698799994, 41.6785474291 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "6527 N ARTESIAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691163702500006, 42.000020089099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "5646 N WAYNE AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.663576978699993, 41.984475468699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1465 W EDGEWATER AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.666727274600007, 41.986324810699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "7309 S UNIVERSITY AVE", "Community": 69, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.596971513100002, 41.762156493799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "5523 N KENMORE AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656575842899997, 41.982280348300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1012 W CATALPA AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.655629252300002, 41.9818711136 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "5247 N WINTHROP AVE", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.657839678200006, 41.977219061900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "6225 N WASHTENAW AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697095760899998, 41.994460999700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "6146 N WASHTENAW AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697049980399996, 41.993043949399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3328 N ASHLAND AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668735514299996, 41.9423352803 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "11952 S PRINCETON AVE", "Community": 53, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.629840254599998, 41.676989236200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "11711 S THROOP ST", "Community": 53, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.654189966800004, 41.681081151500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3911 W 66TH PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7204190036, 41.772316180700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "911 N MOZART ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698010354100006, 41.898195787 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "9046 S EUCLID AVE", "Community": 48, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.576778882799999, 41.730720883799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "8137 S JEFFERY BLVD", "Community": 46, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.575906828499996, 41.747290284400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1623 W 71ST ST", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.664711495800006, 41.764898186300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1616 E 55TH ST", "Community": 41, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.587023569, 41.795190641799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3929 N ODELL AVE", "Community": 17, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.810869520300002, 41.95106995 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2852 W ARTHUR AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.701280734700006, 41.999357570599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1340 W WOLFRAM ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662282527299993, 41.933406261199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1935 N NEWCASTLE AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.796175937599997, 41.915115213900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1720 W FLETCHER ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.671543271399997, 41.938745123899999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "236 E 32ND ST", "Community": 35, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.620553023400007, 41.836555151600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2343 W WASHINGTON BLVD", "Community": 28, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.685086138499997, 41.883014498400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "6511 N FRANCISCO AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.702141385399997, 41.999545501699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2831 N NORMANDY AVE", "Community": 18, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.793044452800004, 41.931484084300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3327 N HAMILTON AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.682051885600004, 41.9418472885 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "4727 N PAULINA ST", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.670984789299993, 41.967533772800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "4142 N KEYSTONE AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.729292096600005, 41.9562328202 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3258 N DAMEN AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.678389901299994, 41.940839167199996 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2020 N HAMLIN AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721684947900002, 41.917852537 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2850 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699801527700004, 42.006655865399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2850 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699801527700004, 42.006655865399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "4303 N AVERS AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.724106790899995, 41.959227341099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2018 W BARRY AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.678739367199995, 41.937745654700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2938 N CLARK ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.647254854899998, 41.9357242118 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1117 W OAKDALE AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.65679694, 41.935309421600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1115 W GEORGE ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656715789100005, 41.934408803499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1100 W GEORGE ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.65634784, 41.934414592800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "6123 N RICHMOND ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.703111980700001, 41.992572250599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1048 W LILL AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.65487727199999, 41.9280806943 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2850 W GLENLAKE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700997102, 41.992175863500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "625 W SURF ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644807899400007, 41.934865469 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3700 N BERNARD ST", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.713992539499998, 41.9483756343 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "7129 W 63RD PL", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.798907129200003, 41.776487734 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1221 S CENTRAL PARK AVE", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715404237, 41.865700281 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3135 W GRANVILLE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.708085932399996, 41.9938596844 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3018 W GRANVILLE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.7051031779, 41.993891005499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2853 W LOGAN BLVD", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699154059899996, 41.928452094100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2929 W LOGAN BLVD", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.701201120099995, 41.928433854399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2856 W LOGAN BLVD", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6992077182, 41.9284515672 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2702 N RICHMOND ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.701264190399996, 41.930282728900004 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2706 N FRANCISCO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700045955199997, 41.930364875599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2344 N GREENVIEW AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665752538199996, 41.924184772099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3908 N CHRISTIANA AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.711632563199998, 41.952200819700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2137 W POTOMAC AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680665631099998, 41.904945720599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3217 N SEMINARY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.656546170499993, 41.940188355 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2752 W LOGAN BLVD", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6966997066, 41.928472416600002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2824 W LOGAN BLVD", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698530379700003, 41.928457703600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2637 N CALIFORNIA AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697539947099997, 41.929297184399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2639 N MOZART ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698769620299998, 41.929355015100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2630 N MOZART ST", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698765604100004, 41.9292040606 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2632 N FAIRFIELD AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.696344650399993, 41.929227392500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2125 W WELLINGTON AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.681688900599994, 41.935888681100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1337 N GREENVIEW AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665120032900006, 41.905863394 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "6040 N ST LOUIS AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.716443817300004, 41.990988118399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "20 E CEDAR ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.627581401399993, 41.902385510899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3747 W DEVON AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.723020098899994, 41.997261276800003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "4838 N CHRISTIANA AVE", "Community": 14, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.712165329200005, 41.969113641299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "6314 N HAMLIN AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.723969805300001, 41.995738995 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1500 N WIELAND ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.63564929099999, 41.909377092699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1400 N WIELAND ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6355971176, 41.907651204700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1500 N NORTH PARK AVE", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.636609184400001, 41.909366559 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1400 N NORTH PARK AVE", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.636556777799996, 41.907632630599998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "3755 W DEVON AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.723174246900001, 41.997260724100002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "6331 N WASHTENAW AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.697160782699996, 41.996367896 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "2147 W POTOMAC AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680912162699997, 41.904941907500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "1445 W WOLFRAM ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.664694880400006, 41.933368814600001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "4607 N KENNETH AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.739942071499996, 41.9645909129 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/29\/2014", "Street_Add": "7209 S GREEN ST", "Community": 68, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.645573850700004, 41.763198540600001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "6241 N ARTESIAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691017825800003, 41.9948298666 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3939 W 63RD PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.72096209599999, 41.777758603400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "607 W DRUMMOND PL", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.644191175700001, 41.9306453839 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "5236 W RACE AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.756311026399999, 41.89004656 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3934 W 63RD PL", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.72087519199999, 41.777760061099997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "4300 W AUGUSTA BLVD", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.733578855399998, 41.898894710900002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "6546 N MAPLEWOOD AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.693614294200003, 42.000327556599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3355 N LAKEWOOD AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661479617799998, 41.942854575200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3817 W HURON ST", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.721805918599998, 41.893573524 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "7232 S DOBSON AVE", "Community": 69, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.599423188299994, 41.763531738 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3518 N JANSSEN AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6651899469, 41.945555318700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3839 W 66TH ST", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.718684072299993, 41.773253413900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "6418 S KOLIN AVE", "Community": 65, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.731247670800002, 41.776405391799997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1249 W MELROSE ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.660193225900002, 41.940715769400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1964 W LAWRENCE AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.678302217099997, 41.968767848399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "611 W 48TH PL", "Community": 61, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.640990907800003, 41.806215419300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "331 W MENOMONEE ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.637484331, 41.914763478600001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1722 N DRAKE AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.715006378, 41.912480415200001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1827 N MONTICELLO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.71789787599999, 41.914134173299999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3837 N FRANCISCO AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700600701699997, 41.950997961699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3340 N HAMILTON AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.682059009499994, 41.9420863502 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1124 W BARRY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.657415103800005, 41.938040147899997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3120 W SCHUBERT AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705768218599999, 41.930211244799999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "2326 N MONTICELLO AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.718176288899997, 41.923240119500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1901 W WELLINGTON AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6758349925, 41.935957912399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3410 S WESTERN AVE", "Community": 59, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.685070120700004, 41.8318029088 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "3741 W WRIGHTWOOD AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720951573299999, 41.928204982399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "2311 W BIRCHWOOD AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.688130864100003, 42.017422532300003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "2637 N FAIRFIELD AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6963471742, 41.929306165699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1531 N WOOD ST", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.672551506800005, 41.909712238 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1638 N MARSHFIELD AVE", "Community": 24, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.668931477800001, 41.911313340500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "680 N LAKE SHORE DR", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.615604172499999, 41.894648759399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "150 W SUPERIOR ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.632942558799996, 41.895610509100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1433 W HUTCHINSON ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6655150295, 41.958914136300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1329 W WOLFRAM ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662038087499994, 41.9334103208 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "5210 W BELLE PLAINE AVE", "Community": 15, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.757455401, 41.955119582099996 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "4747 N PAULINA ST", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.670994570700003, 41.967902924599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "5853 N BROADWAY", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.660211567199994, 41.988221961500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "1405 N LARAMIE AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.755862107699997, 41.905965983400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "09\/30\/2014", "Street_Add": "107 W 83RD ST", "Community": 44, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.627112989300002, 41.743612647699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/01\/2014", "Street_Add": "6455 N GLENWOOD AVE", "Community": 1, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665540727199996, 41.999152685200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/01\/2014", "Street_Add": "7404 N TALMAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.696107437699993, 42.015893793300002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/01\/2014", "Street_Add": "1932 W WOLFRAM ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.676504528500004, 41.933216740699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/01\/2014", "Street_Add": "3355 N LAKEWOOD AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661479617799998, 41.942854575200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/01\/2014", "Street_Add": "1644 W ADDISON ST", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.670294468199998, 41.946972087200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/01\/2014", "Street_Add": "700 W BARRY AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.646932921800001, 41.937866977100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/01\/2014", "Street_Add": "6010 S LOOMIS BLVD", "Community": 67, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.659491220899994, 41.784814472 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/02\/2014", "Street_Add": "5731 N CLARK ST", "Community": 77, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.669427784299998, 41.986286201399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/02\/2014", "Street_Add": "2045 W MONTROSE AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680663934500004, 41.9614354916 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/02\/2014", "Street_Add": "122 S MICHIGAN AVE", "Community": 32, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.624339215600003, 41.880544385699999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/02\/2014", "Street_Add": "752 W BUENA AVE", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.648673094900005, 41.958500487400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "16 E RANDOLPH ST", "Community": 32, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.627330797400006, 41.884492717 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "5001 N WESTERN AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6890307038, 41.972280582499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "1932 W WOLFRAM ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.676504528500004, 41.933216740699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "4820 W GRACE ST", "Community": 15, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.747912072399998, 41.9497609107 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "2665 N DAYTON ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.650136633700001, 41.930255974399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "4907 W BERTEAU AVE", "Community": 15, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.750395012499993, 41.9570343603 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "1009 W DICKENS AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.653780980099995, 41.9199176503 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "2444 W GRACE ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.689411901100002, 41.950376462199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/03\/2014", "Street_Add": "2850 W MORSE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.699801527700004, 42.006655865399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/04\/2014", "Street_Add": "21 E CEDAR ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.627542457299995, 41.902386094800001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/05\/2014", "Street_Add": "5749 N MERRIMAC AVE", "Community": 10, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.784046211499998, 41.9856045095 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "4228 N LAWNDALE AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.720388062300003, 41.957911681200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "822 W LILL AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6496665815, 41.928166223799998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "6608 N FAIRFIELD AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.6985230903, 42.001364087100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "2511 N FAIRFIELD AVE", "Community": 22, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.696266568599995, 41.926975284400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "6440 N WHIPPLE ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.705758826899995, 41.9981896874 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "657 N CHRISTIANA AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.710139971299995, 41.892911180399999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "2818 W JARVIS AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.700078026699998, 42.0156908728 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "3538 N CLAREMONT AVE", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.687011304199999, 41.945630512 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/06\/2014", "Street_Add": "162 W HURON ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.633226666200002, 41.894804634700002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/07\/2014", "Street_Add": "1404 N LUNA AVE", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.764546052399993, 41.9058458887 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/07\/2014", "Street_Add": "15 E DIVISION ST", "Community": 8, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.628135703500007, 41.903950643400002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/07\/2014", "Street_Add": "6035 N CENTRAL PARK AVE", "Community": 13, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.718879042, 41.990870758200003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/07\/2014", "Street_Add": "3355 N LAKEWOOD AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661479617799998, 41.942854575200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/07\/2014", "Street_Add": "1319 S STATE ST", "Community": 33, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.627376126300007, 41.865418452599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/07\/2014", "Street_Add": "2053 W BYRON ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.680296140300001, 41.9523132084 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/07\/2014", "Street_Add": "3909 N LEAVITT ST", "Community": 5, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.683562313899998, 41.952433398099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/07\/2014", "Street_Add": "6214 N ROCKWELL ST", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.694653791799993, 41.994289848400001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/08\/2014", "Street_Add": "6423 N FAIRFIELD AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698440550699999, 41.998004760599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/08\/2014", "Street_Add": "2737 W LUNT AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698268554099997, 42.008492176600001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/08\/2014", "Street_Add": "4252 W CULLERTON ST", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.730993876300005, 41.854323001399997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/09\/2014", "Street_Add": "3223 S SHIELDS AVE", "Community": 34, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.635264285700003, 41.835943496 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/09\/2014", "Street_Add": "3123 S SHIELDS AVE", "Community": 34, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.635307884300005, 41.837765194100001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/09\/2014", "Street_Add": "1421 W ARGYLE ST", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665460448, 41.972584666099998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/09\/2014", "Street_Add": "3047 N NARRAGANSETT AVE", "Community": 19, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.785848798, 41.935801018900001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/09\/2014", "Street_Add": "1811 N FREMONT ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.650795764600005, 41.914035360600003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/09\/2014", "Street_Add": "3732 N LAKEWOOD AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.661661643900004, 41.949602142 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/09\/2014", "Street_Add": "333 W MENOMONEE ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.637520352500005, 41.914762050299998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/10\/2014", "Street_Add": "5548 W LELAND AVE", "Community": 15, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.766142225600007, 41.965516503 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/10\/2014", "Street_Add": "11244 S SACRAMENTO AVE", "Community": 74, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.696074915500006, 41.689027875199997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "115 S PAULINA ST", "Community": 28, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.669261440400007, 41.879934138499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "1343 W NEWPORT AVE", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.662573001599995, 41.944353017700003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "2926 N SHERIDAN RD", "Community": 6, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.639377260800003, 41.935101120500001 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "2322 W FOSTER AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.687658905899994, 41.975912356499997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "6111 N DAMEN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.679870335499999, 41.992209217599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "4648 N KENTON AVE", "Community": 16, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.742751893100007, 41.965316292499999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "3242 S PRINCETON AVE", "Community": 34, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.634038581200002, 41.835597836399998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "4842 N CLAREMONT AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.687715719400003, 41.969402035100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/14\/2014", "Street_Add": "7142 S LAFAYETTE AVE", "Community": 69, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.626521084499998, 41.764391938599999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "2425 W TAYLOR ST", "Community": 28, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.686726654200001, 41.869332625699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "4823 N WINCHESTER AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.677709083600007, 41.9691985957 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "4851 N CENTRAL AVE", "Community": 11, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.767514347900004, 41.968966824200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "4916 W HUBBARD ST", "Community": 25, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.748426640199995, 41.888662686899998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "532 W EUGENIE ST", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.642287150200005, 41.912828552500002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "1231 S CHRISTIANA AVE", "Community": 29, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.709306861300007, 41.865790597599997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "5443 N CAMPBELL AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.691767606300004, 41.980317558499998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "6453 N GLENWOOD AVE", "Community": 1, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.665539275100002, 41.999115630200002 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "2730 W COYLE AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.698106336500004, 42.007591593500003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "2506 W TOUHY AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.692978749299996, 42.012220897699997 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/15\/2014", "Street_Add": "1640 N MONTICELLO AVE", "Community": 23, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.717787561700007, 41.9107176387 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/16\/2014", "Street_Add": "6201 N ARTESIAN AVE", "Community": 2, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.690994664399994, 41.994096763100003 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/16\/2014", "Street_Add": "2451 W CARMEN AVE", "Community": 4, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.690603571599993, 41.974070947199998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/16\/2014", "Street_Add": "2044 N RACINE AVE", "Community": 7, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.658245889300005, 41.9188397534 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/16\/2014", "Street_Add": "4455 N HERMITAGE AVE", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.672444152, 41.962560788099999 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/16\/2014", "Street_Add": "710 W JUNIOR TER", "Community": 3, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.647719514100004, 41.960992155699998 ] } },
{ "type": "Feature", "properties": { "Creation_D": "10\/16\/2014", "Street_Add": "6215 W 64TH ST", "Community": 64, "": null }, "geometry": { "type": "Point", "coordinates": [ -87.776677376400002, 41.775947285100003 ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment