Created
May 24, 2017 03:00
-
-
Save awoodruff/0883d211538ed05a82fd1b82bd65bf34 to your computer and use it in GitHub Desktop.
Leaflet heatmap example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>A Leaflet map!</title> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" | |
integrity="sha512-07I2e+7D8p6he1SIM+1twR5TIrhUQn9+I6yjqD53JQjFiMf8EtC93ty0/5vJTZGF8aAocvHYNEDJajGdNx1IsQ==" | |
crossorigin=""/> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" | |
integrity="sha512-A7vV8IFfih/D732iSSKi20u/ooOfj/AGehOKq0f4vLT1Zr2Y+RX7C+w8A1gaSasGtRUZpF/NZgzSAu4/Gc41Lg==" | |
crossorigin=""></script> | |
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script> | |
<script src="leaflet.heat.js"></script> | |
<style> | |
#map{ height: 100% } | |
</style> | |
</head> | |
<body> | |
<div id="map"></div> | |
<script> | |
// initialize the map | |
var map = L.map('map').setView([42.35, -71.08], 13); | |
// load a tile layer | |
L.tileLayer('http://tiles.mapc.org/basemap/{z}/{x}/{y}.png', | |
{ | |
attribution: 'Tiles by <a href="http://mapc.org">MAPC</a>, Data by <a href="http://mass.gov/mgis">MassGIS</a>', | |
maxZoom: 17, | |
minZoom: 9 | |
}).addTo(map); | |
map.setZoom(12); | |
$.getJSON("rodents.geojson",function(data){ | |
var locations = data.features.map(function(rat) { | |
// the heatmap plugin wants an array of each location | |
var location = rat.geometry.coordinates.reverse(); | |
location.push(0.5); | |
return location; // e.g. [50.5, 30.5, 0.2], // lat, lng, intensity | |
}); | |
var heat = L.heatLayer(locations, { radius: 35 }); | |
map.addLayer(heat); | |
}); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
(c) 2014, Vladimir Agafonkin | |
simpleheat, a tiny JavaScript library for drawing heatmaps with Canvas | |
https://github.com/mourner/simpleheat | |
*/ | |
!function(){"use strict";function t(i){return this instanceof t?(this._canvas=i="string"==typeof i?document.getElementById(i):i,this._ctx=i.getContext("2d"),this._width=i.width,this._height=i.height,this._max=1,void this.clear()):new t(i)}t.prototype={defaultRadius:25,defaultGradient:{.4:"blue",.6:"cyan",.7:"lime",.8:"yellow",1:"red"},data:function(t,i){return this._data=t,this},max:function(t){return this._max=t,this},add:function(t){return this._data.push(t),this},clear:function(){return this._data=[],this},radius:function(t,i){i=i||15;var a=this._circle=document.createElement("canvas"),s=a.getContext("2d"),e=this._r=t+i;return a.width=a.height=2*e,s.shadowOffsetX=s.shadowOffsetY=200,s.shadowBlur=i,s.shadowColor="black",s.beginPath(),s.arc(e-200,e-200,t,0,2*Math.PI,!0),s.closePath(),s.fill(),this},gradient:function(t){var i=document.createElement("canvas"),a=i.getContext("2d"),s=a.createLinearGradient(0,0,0,256);i.width=1,i.height=256;for(var e in t)s.addColorStop(e,t[e]);return a.fillStyle=s,a.fillRect(0,0,1,256),this._grad=a.getImageData(0,0,1,256).data,this},draw:function(t){this._circle||this.radius(this.defaultRadius),this._grad||this.gradient(this.defaultGradient);var i=this._ctx;i.clearRect(0,0,this._width,this._height);for(var a,s=0,e=this._data.length;e>s;s++)a=this._data[s],i.globalAlpha=Math.max(a[2]/this._max,t||.05),i.drawImage(this._circle,a[0]-this._r,a[1]-this._r);var n=i.getImageData(0,0,this._width,this._height);return this._colorize(n.data,this._grad),i.putImageData(n,0,0),this},_colorize:function(t,i){for(var a,s=3,e=t.length;e>s;s+=4)a=4*t[s],a&&(t[s-3]=i[a],t[s-2]=i[a+1],t[s-1]=i[a+2])}},window.simpleheat=t}(),/* | |
(c) 2014, Vladimir Agafonkin | |
Leaflet.heat, a tiny and fast heatmap plugin for Leaflet. | |
https://github.com/Leaflet/Leaflet.heat | |
*/ | |
L.HeatLayer=(L.Layer?L.Layer:L.Class).extend({initialize:function(t,i){this._latlngs=t,L.setOptions(this,i)},setLatLngs:function(t){return this._latlngs=t,this.redraw()},addLatLng:function(t){return this._latlngs.push(t),this.redraw()},setOptions:function(t){return L.setOptions(this,t),this._heat&&this._updateOptions(),this.redraw()},redraw:function(){return!this._heat||this._frame||this._map._animating||(this._frame=L.Util.requestAnimFrame(this._redraw,this)),this},onAdd:function(t){this._map=t,this._canvas||this._initCanvas(),t._panes.overlayPane.appendChild(this._canvas),t.on("moveend",this._reset,this),t.options.zoomAnimation&&L.Browser.any3d&&t.on("zoomanim",this._animateZoom,this),this._reset()},onRemove:function(t){t.getPanes().overlayPane.removeChild(this._canvas),t.off("moveend",this._reset,this),t.options.zoomAnimation&&t.off("zoomanim",this._animateZoom,this)},addTo:function(t){return t.addLayer(this),this},_initCanvas:function(){var t=this._canvas=L.DomUtil.create("canvas","leaflet-heatmap-layer leaflet-layer"),i=L.DomUtil.testProp(["transformOrigin","WebkitTransformOrigin","msTransformOrigin"]);t.style[i]="50% 50%";var a=this._map.getSize();t.width=a.x,t.height=a.y;var s=this._map.options.zoomAnimation&&L.Browser.any3d;L.DomUtil.addClass(t,"leaflet-zoom-"+(s?"animated":"hide")),this._heat=simpleheat(t),this._updateOptions()},_updateOptions:function(){this._heat.radius(this.options.radius||this._heat.defaultRadius,this.options.blur),this.options.gradient&&this._heat.gradient(this.options.gradient),this.options.max&&this._heat.max(this.options.max)},_reset:function(){var t=this._map.containerPointToLayerPoint([0,0]);L.DomUtil.setPosition(this._canvas,t);var i=this._map.getSize();this._heat._width!==i.x&&(this._canvas.width=this._heat._width=i.x),this._heat._height!==i.y&&(this._canvas.height=this._heat._height=i.y),this._redraw()},_redraw:function(){var t,i,a,s,e,n,h,o,r,d=[],_=this._heat._r,l=this._map.getSize(),m=new L.Bounds(L.point([-_,-_]),l.add([_,_])),c=void 0===this.options.max?1:this.options.max,u=void 0===this.options.maxZoom?this._map.getMaxZoom():this.options.maxZoom,f=1/Math.pow(2,Math.max(0,Math.min(u-this._map.getZoom(),12))),g=_/2,p=[],v=this._map._getMapPanePos(),w=v.x%g,y=v.y%g;for(t=0,i=this._latlngs.length;i>t;t++)if(a=this._map.latLngToContainerPoint(this._latlngs[t]),m.contains(a)){e=Math.floor((a.x-w)/g)+2,n=Math.floor((a.y-y)/g)+2;var x=void 0!==this._latlngs[t].alt?this._latlngs[t].alt:void 0!==this._latlngs[t][2]?+this._latlngs[t][2]:1;r=x*f,p[n]=p[n]||[],s=p[n][e],s?(s[0]=(s[0]*s[2]+a.x*r)/(s[2]+r),s[1]=(s[1]*s[2]+a.y*r)/(s[2]+r),s[2]+=r):p[n][e]=[a.x,a.y,r]}for(t=0,i=p.length;i>t;t++)if(p[t])for(h=0,o=p[t].length;o>h;h++)s=p[t][h],s&&d.push([Math.round(s[0]),Math.round(s[1]),Math.min(s[2],c)]);this._heat.data(d).draw(this.options.minOpacity),this._frame=null},_animateZoom:function(t){var i=this._map.getZoomScale(t.zoom),a=this._map._getCenterOffset(t.center)._multiplyBy(-i).subtract(this._map._getMapPanePos());L.DomUtil.setTransform?L.DomUtil.setTransform(this._canvas,a,i):this._canvas.style[L.DomUtil.TRANSFORM]=L.DomUtil.getTranslateString(a)+" scale("+i+")"}}),L.heatLayer=function(t,i){return new L.HeatLayer(t,i)}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ "type": "Feature", "id": 1, "properties": { "CASE_ENQUIRY_ID": 101000833162.0, "OPEN_DT": "05\/03\/2013 11:12:12 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "83-85 Cresthill Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2211, "land_usage": "R2", "LOCATION_STREET_NAME": "83-85 Cresthill Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.355988, "LONGITUDE": -71.157609, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.157609, 42.355988 ] } } | |
, | |
{ "type": "Feature", "id": 2, "properties": { "CASE_ENQUIRY_ID": 101000832197.0, "OPEN_DT": "05\/02\/2013 10:04:13 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "169 Endicott St Boston MA 02113", "fire_district": 3, "pwd_district": "1B", "city_council_district": 1, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 3, "ward": "Ward 3", "precinct": 304, "land_usage": "A", "LOCATION_STREET_NAME": "169 Endicott St", "LOCATION_ZIPCODE": 2113, "LATITUDE": 42.36571, "LONGITUDE": -71.05729, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05729, 42.36571 ] } } | |
, | |
{ "type": "Feature", "id": 3, "properties": { "CASE_ENQUIRY_ID": 101000828597.0, "OPEN_DT": "04\/26\/2013 01:14:08 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed VIOISS: Violation Filed ", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "108 Gladstone St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "R3", "LOCATION_STREET_NAME": "108 Gladstone St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38914, "LONGITUDE": -71.0047, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0047, 42.38914 ] } } | |
, | |
{ "type": "Feature", "id": 4, "properties": { "CASE_ENQUIRY_ID": 101000826935.0, "OPEN_DT": "04\/24\/2013 12:02:06 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "64 Newfield St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2017, "land_usage": "R1", "LOCATION_STREET_NAME": "64 Newfield St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.29048, "LONGITUDE": -71.16706, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16706, 42.29048 ] } } | |
, | |
{ "type": "Feature", "id": 5, "properties": { "CASE_ENQUIRY_ID": 101000821482.0, "OPEN_DT": "04\/12\/2013 08:08:29 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "33 Edison Grn Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 2, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 709, "land_usage": "R3", "LOCATION_STREET_NAME": "33 Edison Grn", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31951, "LONGITUDE": -71.05852, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05852, 42.31951 ] } } | |
, | |
{ "type": "Feature", "id": 6, "properties": { "CASE_ENQUIRY_ID": 101000818710.0, "OPEN_DT": "04\/08\/2013 12:16:57 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "365 Marlborough St Boston MA 02115", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 509, "land_usage": "CM", "LOCATION_STREET_NAME": "365 Marlborough St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.35084, "LONGITUDE": -71.08706, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08706, 42.35084 ] } } | |
, | |
{ "type": "Feature", "id": 7, "properties": { "CASE_ENQUIRY_ID": 101000797114.0, "OPEN_DT": "03\/06\/2013 11:49:37 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "62 N Beacon St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "R1", "LOCATION_STREET_NAME": "62 N Beacon St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35387, "LONGITUDE": -71.14112, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14112, 42.35387 ] } } | |
, | |
{ "type": "Feature", "id": 8, "properties": { "CASE_ENQUIRY_ID": 101000719207.0, "OPEN_DT": "12\/10\/2012 10:28:19 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "51 Hemenway St Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 407, "land_usage": "CD", "LOCATION_STREET_NAME": "51 Hemenway St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34518, "LONGITUDE": -71.08983, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08983, 42.34518 ] } } | |
, | |
{ "type": "Feature", "id": 9, "properties": { "CASE_ENQUIRY_ID": 101000706871.0, "OPEN_DT": "11\/15\/2012 01:56:24 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "134-131 Tremont St Boston MA 02111", "fire_district": 3, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Boston", "neighborhood_services_district": 4, "ward": "03", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "134-131 Tremont St", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.355965, "LONGITUDE": -71.062189, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.062189, 42.355965 ] } } | |
, | |
{ "type": "Feature", "id": 10, "properties": { "CASE_ENQUIRY_ID": 101000500743.0, "OPEN_DT": "10\/31\/2012 10:23:04 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "249 Washington St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1402, "land_usage": "R3", "LOCATION_STREET_NAME": "249 Washington St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30132, "LONGITUDE": -71.07695, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07695, 42.30132 ] } } | |
, | |
{ "type": "Feature", "id": 11, "properties": { "CASE_ENQUIRY_ID": 101000495255.0, "OPEN_DT": "10\/22\/2012 09:12:25 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "21 Ridgeway Ln Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 1, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 3, "ward": "Ward 3", "precinct": 306, "land_usage": "R1", "LOCATION_STREET_NAME": "21 Ridgeway Ln", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.36059, "LONGITUDE": -71.06401, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06401, 42.36059 ] } } | |
, | |
{ "type": "Feature", "id": 12, "properties": { "CASE_ENQUIRY_ID": 101000495233.0, "OPEN_DT": "10\/22\/2012 08:54:25 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "136 Chiswick Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2115, "land_usage": "R4", "LOCATION_STREET_NAME": "136 Chiswick Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.34056, "LONGITUDE": -71.15332, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15332, 42.34056 ] } } | |
, | |
{ "type": "Feature", "id": 13, "properties": { "CASE_ENQUIRY_ID": 101000485811.0, "OPEN_DT": "09\/28\/2012 02:01:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "341 Bunker Hill St Charlestown MA 02129", "fire_district": 3, "pwd_district": "1A", "city_council_district": 1, "police_district": "A15", "neighborhood": "Charlestown", "neighborhood_services_district": 2, "ward": "Ward 2", "precinct": 207, "land_usage": "R2", "LOCATION_STREET_NAME": "341 Bunker Hill St", "LOCATION_ZIPCODE": 2129, "LATITUDE": 42.381527, "LONGITUDE": -71.067475, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.067475, 42.381527 ] } } | |
, | |
{ "type": "Feature", "id": 14, "properties": { "CASE_ENQUIRY_ID": 101000481938.0, "OPEN_DT": "09\/20\/2012 09:11:27 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "88 Pembroke St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 403, "land_usage": "CD", "LOCATION_STREET_NAME": "88 Pembroke St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34201, "LONGITUDE": -71.07653, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07653, 42.34201 ] } } | |
, | |
{ "type": "Feature", "id": 15, "properties": { "CASE_ENQUIRY_ID": 101000479893.0, "OPEN_DT": "09\/17\/2012 09:04:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "22 Worthington St Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1002, "land_usage": "R2", "LOCATION_STREET_NAME": "22 Worthington St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.334346, "LONGITUDE": -71.102306, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.102306, 42.334346 ] } } | |
, | |
{ "type": "Feature", "id": 16, "properties": { "CASE_ENQUIRY_ID": 101000478329.0, "OPEN_DT": "09\/13\/2012 08:29:49 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "95 Normandy St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1401, "land_usage": "RL", "LOCATION_STREET_NAME": "95 Normandy St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.309622, "LONGITUDE": -71.080222, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.080222, 42.309622 ] } } | |
, | |
{ "type": "Feature", "id": 17, "properties": { "CASE_ENQUIRY_ID": 101000474248.0, "OPEN_DT": "09\/05\/2012 02:46:08 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "43-47 O St South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 6", "precinct": 607, "land_usage": "CM", "LOCATION_STREET_NAME": "43-47 O St", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.336769, "LONGITUDE": -71.029401, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.029401, 42.336769 ] } } | |
, | |
{ "type": "Feature", "id": 18, "properties": { "CASE_ENQUIRY_ID": 101000473919.0, "OPEN_DT": "09\/04\/2012 11:49:51 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "33 Cunningham St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 13", "precinct": 1304, "land_usage": "R3", "LOCATION_STREET_NAME": "33 Cunningham St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31451, "LONGITUDE": -71.07487, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07487, 42.31451 ] } } | |
, | |
{ "type": "Feature", "id": 19, "properties": { "CASE_ENQUIRY_ID": 101000473141.0, "OPEN_DT": "09\/01\/2012 07:33:09 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "7 Phillips St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "CM", "LOCATION_STREET_NAME": "7 Phillips St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.3604, "LONGITUDE": -71.06677, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06677, 42.3604 ] } } | |
, | |
{ "type": "Feature", "id": 20, "properties": { "CASE_ENQUIRY_ID": 101000473007.0, "OPEN_DT": "09\/01\/2012 11:58:58 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Hall St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1110, "land_usage": "CM", "LOCATION_STREET_NAME": "8 Hall St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.30497, "LONGITUDE": -71.11428, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.11428, 42.30497 ] } } | |
, | |
{ "type": "Feature", "id": 21, "properties": { "CASE_ENQUIRY_ID": 101000472663.0, "OPEN_DT": "08\/31\/2012 02:13:59 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "45 Hemenway St Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 407, "land_usage": "CM", "LOCATION_STREET_NAME": "45 Hemenway St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34537, "LONGITUDE": -71.08978, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08978, 42.34537 ] } } | |
, | |
{ "type": "Feature", "id": 22, "properties": { "CASE_ENQUIRY_ID": 101000472499.0, "OPEN_DT": "08\/31\/2012 11:08:41 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Goodwin Pl Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "CD", "LOCATION_STREET_NAME": "4 Goodwin Pl", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.35988, "LONGITUDE": -71.06918, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06918, 42.35988 ] } } | |
, | |
{ "type": "Feature", "id": 23, "properties": { "CASE_ENQUIRY_ID": 101000472151.0, "OPEN_DT": "08\/30\/2012 05:52:52 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "81 Charles St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 511, "land_usage": "RC", "LOCATION_STREET_NAME": "81 Charles St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.35843, "LONGITUDE": -71.07045, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07045, 42.35843 ] } } | |
, | |
{ "type": "Feature", "id": 24, "properties": { "CASE_ENQUIRY_ID": 101000471889.0, "OPEN_DT": "08\/30\/2012 11:28:19 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "47 Revere St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "A", "LOCATION_STREET_NAME": "47 Revere St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.35965, "LONGITUDE": -71.06814, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06814, 42.35965 ] } } | |
, | |
{ "type": "Feature", "id": 25, "properties": { "CASE_ENQUIRY_ID": 101000471816.0, "OPEN_DT": "08\/30\/2012 10:22:44 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "101 Etna St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2203, "land_usage": "R2", "LOCATION_STREET_NAME": "101 Etna St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.352373, "LONGITUDE": -71.148504, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.148504, 42.352373 ] } } | |
, | |
{ "type": "Feature", "id": 26, "properties": { "CASE_ENQUIRY_ID": 101000471716.0, "OPEN_DT": "08\/30\/2012 08:55:07 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1 City Hall Plz Boston MA 02108", "fire_district": 3, "pwd_district": "1B", "city_council_district": 1, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 3, "ward": "03", "precinct": 306, "land_usage": "E", "LOCATION_STREET_NAME": "1 City Hall Plz", "LOCATION_ZIPCODE": 2108, "LATITUDE": 42.36042, "LONGITUDE": -71.058274, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.058274, 42.36042 ] } } | |
, | |
{ "type": "Feature", "id": 27, "properties": { "CASE_ENQUIRY_ID": 101000471300.0, "OPEN_DT": "08\/29\/2012 01:17:14 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Greenwich Park Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 7, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 404, "land_usage": "CM", "LOCATION_STREET_NAME": "9 Greenwich Park", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.342561, "LONGITUDE": -71.080109, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.080109, 42.342561 ] } } | |
, | |
{ "type": "Feature", "id": 28, "properties": { "CASE_ENQUIRY_ID": 101000470939.0, "OPEN_DT": "08\/29\/2012 08:25:31 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "20-22 Spaulding St Dorchester MA 02122", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1607, "land_usage": "R2", "LOCATION_STREET_NAME": "20-22 Spaulding St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.292183, "LONGITUDE": -71.054972, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.054972, 42.292183 ] } } | |
, | |
{ "type": "Feature", "id": 29, "properties": { "CASE_ENQUIRY_ID": 101000470705.0, "OPEN_DT": "08\/28\/2012 06:08:11 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Downer Ct Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "RL", "LOCATION_STREET_NAME": "4 Downer Ct", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.309613, "LONGITUDE": -71.064377, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.064377, 42.309613 ] } } | |
, | |
{ "type": "Feature", "id": 30, "properties": { "CASE_ENQUIRY_ID": 101000470689.0, "OPEN_DT": "08\/28\/2012 06:07:42 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "81-83 Millet St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Dorchester", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1703, "land_usage": "R2", "LOCATION_STREET_NAME": "81-83 Millet St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.29371, "LONGITUDE": -71.07717, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07717, 42.29371 ] } } | |
, | |
{ "type": "Feature", "id": 31, "properties": { "CASE_ENQUIRY_ID": 101000470280.0, "OPEN_DT": "08\/27\/2012 11:29:34 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of A St & Binford St Boston MA ", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 6", "precinct": 601, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION A St & Binford St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.344837, "LONGITUDE": -71.053148, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.053148, 42.344837 ] } } | |
, | |
{ "type": "Feature", "id": 32, "properties": { "CASE_ENQUIRY_ID": 101000470244.0, "OPEN_DT": "08\/27\/2012 10:58:55 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "30 Glenville Ave Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2105, "land_usage": "CD", "LOCATION_STREET_NAME": "30 Glenville Ave", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.3503, "LONGITUDE": -71.13293, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13293, 42.3503 ] } } | |
, | |
{ "type": "Feature", "id": 33, "properties": { "CASE_ENQUIRY_ID": 101000470238.0, "OPEN_DT": "08\/27\/2012 10:52:01 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Greenwich Park Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 7, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 404, "land_usage": "CM", "LOCATION_STREET_NAME": "8 Greenwich Park", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34229, "LONGITUDE": -71.08036, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08036, 42.34229 ] } } | |
, | |
{ "type": "Feature", "id": 34, "properties": { "CASE_ENQUIRY_ID": 101000469952.0, "OPEN_DT": "08\/26\/2012 06:22:11 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "26 Chestnut St Boston MA 02108", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 503, "land_usage": "A", "LOCATION_STREET_NAME": "26 Chestnut St", "LOCATION_ZIPCODE": 2108, "LATITUDE": 42.357391, "LONGITUDE": -71.06746, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06746, 42.357391 ] } } | |
, | |
{ "type": "Feature", "id": 35, "properties": { "CASE_ENQUIRY_ID": 101000469783.0, "OPEN_DT": "08\/25\/2012 10:50:52 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "46 Fenway Boston MA 02215", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 407, "land_usage": "CM", "LOCATION_STREET_NAME": "46 Fenway", "LOCATION_ZIPCODE": 2215, "LATITUDE": 42.34505, "LONGITUDE": -71.09033, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.09033, 42.34505 ] } } | |
, | |
{ "type": "Feature", "id": 36, "properties": { "CASE_ENQUIRY_ID": 101000469360.0, "OPEN_DT": "08\/24\/2012 11:17:19 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "28 Haviland St Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 406, "land_usage": "RC", "LOCATION_STREET_NAME": "28 Haviland St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.346115, "LONGITUDE": -71.089022, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.089022, 42.346115 ] } } | |
, | |
{ "type": "Feature", "id": 37, "properties": { "CASE_ENQUIRY_ID": 101000469213.0, "OPEN_DT": "08\/24\/2012 09:14:42 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "18 Garden St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "CD", "LOCATION_STREET_NAME": "18 Garden St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.36074, "LONGITUDE": -71.06677, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06677, 42.36074 ] } } | |
, | |
{ "type": "Feature", "id": 38, "properties": { "CASE_ENQUIRY_ID": 101000468692.0, "OPEN_DT": "08\/23\/2012 10:25:19 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of W Cedar St & Pinckney St Boston MA ", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 503, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION W Cedar St & Pinckney St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.34373, "LONGITUDE": -71.141562, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.141562, 42.34373 ] } } | |
, | |
{ "type": "Feature", "id": 39, "properties": { "CASE_ENQUIRY_ID": 101000468181.0, "OPEN_DT": "08\/22\/2012 11:07:33 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "26 Allston St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "A", "LOCATION_STREET_NAME": "26 Allston St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35222, "LONGITUDE": -71.13492, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13492, 42.35222 ] } } | |
, | |
{ "type": "Feature", "id": 40, "properties": { "CASE_ENQUIRY_ID": 101000468168.0, "OPEN_DT": "08\/22\/2012 11:07:18 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": " ", "fire_district": null, "pwd_district": " ", "city_council_district": null, "police_district": " ", "neighborhood": " ", "neighborhood_services_district": null, "ward": " ", "precinct": null, "land_usage": " ", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 41, "properties": { "CASE_ENQUIRY_ID": 101000468162.0, "OPEN_DT": "08\/22\/2012 11:07:09 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "41 Bakersfield St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1306, "land_usage": "R1", "LOCATION_STREET_NAME": "41 Bakersfield St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31666, "LONGITUDE": -71.06125, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06125, 42.31666 ] } } | |
, | |
{ "type": "Feature", "id": 42, "properties": { "CASE_ENQUIRY_ID": 101000468152.0, "OPEN_DT": "08\/22\/2012 11:07:00 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "36 Rockvale Cir Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1107, "land_usage": "R3", "LOCATION_STREET_NAME": "36 Rockvale Cir", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.30714, "LONGITUDE": -71.10473, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10473, 42.30714 ] } } | |
, | |
{ "type": "Feature", "id": 43, "properties": { "CASE_ENQUIRY_ID": 101000467774.0, "OPEN_DT": "08\/21\/2012 03:38:36 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "75 Sydney St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1310, "land_usage": "E", "LOCATION_STREET_NAME": "75 Sydney St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.3141, "LONGITUDE": -71.05252, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05252, 42.3141 ] } } | |
, | |
{ "type": "Feature", "id": 44, "properties": { "CASE_ENQUIRY_ID": 101000467567.0, "OPEN_DT": "08\/21\/2012 11:34:15 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "40-42 Cedar Lane Way Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 511, "land_usage": "R2", "LOCATION_STREET_NAME": "40-42 Cedar Lane Way", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.358333, "LONGITUDE": -71.07017, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07017, 42.358333 ] } } | |
, | |
{ "type": "Feature", "id": 45, "properties": { "CASE_ENQUIRY_ID": 101000467084.0, "OPEN_DT": "08\/20\/2012 02:16:19 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5110 Washington St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2003, "land_usage": "A", "LOCATION_STREET_NAME": "5110 Washington St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.26355, "LONGITUDE": -71.15403, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15403, 42.26355 ] } } | |
, | |
{ "type": "Feature", "id": 46, "properties": { "CASE_ENQUIRY_ID": 101000466977.0, "OPEN_DT": "08\/20\/2012 11:58:28 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "43 Hemenway St Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 407, "land_usage": "R4", "LOCATION_STREET_NAME": "43 Hemenway St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34542, "LONGITUDE": -71.08977, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08977, 42.34542 ] } } | |
, | |
{ "type": "Feature", "id": 47, "properties": { "CASE_ENQUIRY_ID": 101000465542.0, "OPEN_DT": "08\/16\/2012 12:26:29 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "26 Fenway Boston MA 02215", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Boston", "neighborhood_services_district": 14, "ward": "04", "precinct": 407, "land_usage": "E", "LOCATION_STREET_NAME": "26 Fenway ", "LOCATION_ZIPCODE": 2215, "LATITUDE": 42.3458, "LONGITUDE": -71.09009, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.09009, 42.3458 ] } } | |
, | |
{ "type": "Feature", "id": 48, "properties": { "CASE_ENQUIRY_ID": 101000465516.0, "OPEN_DT": "08\/16\/2012 11:56:26 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "76 Hancock St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 13, "ward": "Ward 13", "precinct": 1305, "land_usage": "R3", "LOCATION_STREET_NAME": "76 Hancock St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31314, "LONGITUDE": -71.06469, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06469, 42.31314 ] } } | |
, | |
{ "type": "Feature", "id": 49, "properties": { "CASE_ENQUIRY_ID": 101000463964.0, "OPEN_DT": "08\/13\/2012 03:12:27 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "0 N Beacon St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston", "neighborhood_services_district": 15, "ward": "21", "precinct": 2106, "land_usage": "C", "LOCATION_STREET_NAME": "0 N Beacon St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35436, "LONGITUDE": -71.14315, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14315, 42.35436 ] } } | |
, | |
{ "type": "Feature", "id": 50, "properties": { "CASE_ENQUIRY_ID": 101000462578.0, "OPEN_DT": "08\/09\/2012 04:17:03 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5 Symphony Rd Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 407, "land_usage": "R4", "LOCATION_STREET_NAME": "5 Symphony Rd", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34288, "LONGITUDE": -71.08694, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.08694, 42.34288 ] } } | |
, | |
{ "type": "Feature", "id": 51, "properties": { "CASE_ENQUIRY_ID": 101000462255.0, "OPEN_DT": "08\/09\/2012 09:31:04 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "26 Hemenway St Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 406, "land_usage": "A", "LOCATION_STREET_NAME": "26 Hemenway St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34591, "LONGITUDE": -71.08913, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08913, 42.34591 ] } } | |
, | |
{ "type": "Feature", "id": 52, "properties": { "CASE_ENQUIRY_ID": 101000461525.0, "OPEN_DT": "08\/07\/2012 03:07:37 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "137 Beacon St Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Boston", "neighborhood_services_district": 14, "ward": "05", "precinct": 506, "land_usage": "E", "LOCATION_STREET_NAME": "137 Beacon St", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.35473, "LONGITUDE": -71.07411, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07411, 42.35473 ] } } | |
, | |
{ "type": "Feature", "id": 53, "properties": { "CASE_ENQUIRY_ID": 101000460940.0, "OPEN_DT": "08\/06\/2012 02:55:26 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "193 Norfolk St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1707, "land_usage": "R2", "LOCATION_STREET_NAME": "193 Norfolk St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.28631, "LONGITUDE": -71.07988, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07988, 42.28631 ] } } | |
, | |
{ "type": "Feature", "id": 54, "properties": { "CASE_ENQUIRY_ID": 101000458828.0, "OPEN_DT": "08\/01\/2012 02:22:31 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "25 Rill St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "25 Rill St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.3118, "LONGITUDE": -71.06533, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06533, 42.3118 ] } } | |
, | |
{ "type": "Feature", "id": 55, "properties": { "CASE_ENQUIRY_ID": 101000458518.0, "OPEN_DT": "08\/01\/2012 09:05:46 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "51 Park Vale Ave Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2105, "land_usage": "R4", "LOCATION_STREET_NAME": "51 Park Vale Ave", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35265, "LONGITUDE": -71.13296, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13296, 42.35265 ] } } | |
, | |
{ "type": "Feature", "id": 56, "properties": { "CASE_ENQUIRY_ID": 101000458512.0, "OPEN_DT": "08\/01\/2012 08:58:58 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "55 Hemenway St Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 407, "land_usage": "R3", "LOCATION_STREET_NAME": "55 Hemenway St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34505, "LONGITUDE": -71.08987, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08987, 42.34505 ] } } | |
, | |
{ "type": "Feature", "id": 57, "properties": { "CASE_ENQUIRY_ID": 101000450769.0, "OPEN_DT": "07\/17\/2012 09:37:29 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "638 Tremont St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 9", "precinct": 901, "land_usage": "EA", "LOCATION_STREET_NAME": "638 Tremont St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34205, "LONGITUDE": -71.0746, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0746, 42.34205 ] } } | |
, | |
{ "type": "Feature", "id": 58, "properties": { "CASE_ENQUIRY_ID": 101000446381.0, "OPEN_DT": "07\/07\/2012 04:42:25 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "82 Winthrop St Roxbury MA 02119", "fire_district": 7, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 8", "precinct": 807, "land_usage": "R3", "LOCATION_STREET_NAME": "82 Winthrop St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.3247, "LONGITUDE": -71.07814, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07814, 42.3247 ] } } | |
, | |
{ "type": "Feature", "id": 59, "properties": { "CASE_ENQUIRY_ID": 101000444093.0, "OPEN_DT": "07\/02\/2012 12:06:59 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "21 Wallingford Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2113, "land_usage": "R2", "LOCATION_STREET_NAME": "21 Wallingford Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.34174, "LONGITUDE": -71.15129, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15129, 42.34174 ] } } | |
, | |
{ "type": "Feature", "id": 60, "properties": { "CASE_ENQUIRY_ID": 101000444090.0, "OPEN_DT": "07\/02\/2012 12:04:30 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "73-75 Causeway St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 1, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 3, "ward": "Ward 3", "precinct": 306, "land_usage": "CL", "LOCATION_STREET_NAME": "73-75 Causeway St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.364522, "LONGITUDE": -71.062535, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.062535, 42.364522 ] } } | |
, | |
{ "type": "Feature", "id": 61, "properties": { "CASE_ENQUIRY_ID": 101000443948.0, "OPEN_DT": "07\/02\/2012 10:14:07 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "83 Wensley St Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1005, "land_usage": "R3", "LOCATION_STREET_NAME": "83 Wensley St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.32753, "LONGITUDE": -71.10367, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10367, 42.32753 ] } } | |
, | |
{ "type": "Feature", "id": 62, "properties": { "CASE_ENQUIRY_ID": 101000443187.0, "OPEN_DT": "06\/29\/2012 11:42:38 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": " ", "fire_district": null, "pwd_district": " ", "city_council_district": null, "police_district": " ", "neighborhood": " ", "neighborhood_services_district": null, "ward": " ", "precinct": null, "land_usage": " ", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 63, "properties": { "CASE_ENQUIRY_ID": 101000441697.0, "OPEN_DT": "06\/26\/2012 02:57:20 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "91 Gordon St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2109, "land_usage": "A", "LOCATION_STREET_NAME": "91 Gordon St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.349718, "LONGITUDE": -71.140242, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.140242, 42.349718 ] } } | |
, | |
{ "type": "Feature", "id": 64, "properties": { "CASE_ENQUIRY_ID": 101000438754.0, "OPEN_DT": "06\/19\/2012 02:42:25 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "109-111 Charter St Boston MA 02113", "fire_district": 3, "pwd_district": "1B", "city_council_district": 1, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 3, "ward": "Ward 3", "precinct": 302, "land_usage": "R4", "LOCATION_STREET_NAME": "109-111 Charter St", "LOCATION_ZIPCODE": 2113, "LATITUDE": 42.36811, "LONGITUDE": -71.05628, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05628, 42.36811 ] } } | |
, | |
{ "type": "Feature", "id": 65, "properties": { "CASE_ENQUIRY_ID": 101000438751.0, "OPEN_DT": "06\/19\/2012 02:38:59 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "19 Wallingford Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2113, "land_usage": "R1", "LOCATION_STREET_NAME": "19 Wallingford Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.34165, "LONGITUDE": -71.15131, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15131, 42.34165 ] } } | |
, | |
{ "type": "Feature", "id": 66, "properties": { "CASE_ENQUIRY_ID": 101000438744.0, "OPEN_DT": "06\/19\/2012 02:32:10 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "559-569 Washington St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2207, "land_usage": "C", "LOCATION_STREET_NAME": "559-569 Washington St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.34991, "LONGITUDE": -71.1643, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.1643, 42.34991 ] } } | |
, | |
{ "type": "Feature", "id": 67, "properties": { "CASE_ENQUIRY_ID": 101000437438.0, "OPEN_DT": "06\/15\/2012 03:42:16 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1486-1490 Tremont St Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1002, "land_usage": "I", "LOCATION_STREET_NAME": "1486-1490 Tremont St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.331767, "LONGITUDE": -71.098849, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.098849, 42.331767 ] } } | |
, | |
{ "type": "Feature", "id": 68, "properties": { "CASE_ENQUIRY_ID": 101000435628.0, "OPEN_DT": "06\/12\/2012 01:21:49 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "19 Wallingford Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2113, "land_usage": "R1", "LOCATION_STREET_NAME": "19 Wallingford Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.34165, "LONGITUDE": -71.15131, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15131, 42.34165 ] } } | |
, | |
{ "type": "Feature", "id": 69, "properties": { "CASE_ENQUIRY_ID": 101000431757.0, "OPEN_DT": "06\/04\/2012 11:19:09 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Beale St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1608, "land_usage": "RC", "LOCATION_STREET_NAME": "4 Beale St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.28318, "LONGITUDE": -71.06475, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06475, 42.28318 ] } } | |
, | |
{ "type": "Feature", "id": 70, "properties": { "CASE_ENQUIRY_ID": 101000427475.0, "OPEN_DT": "05\/25\/2012 10:11:09 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "215 Commonwealth Ave Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 508, "land_usage": "CM", "LOCATION_STREET_NAME": "215 Commonwealth Ave", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.351406, "LONGITUDE": -71.081636, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.081636, 42.351406 ] } } | |
, | |
{ "type": "Feature", "id": 71, "properties": { "CASE_ENQUIRY_ID": 101000425812.0, "OPEN_DT": "05\/22\/2012 12:06:25 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "61 Burrell St Roxbury MA 02119", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 8", "precinct": 806, "land_usage": "C", "LOCATION_STREET_NAME": "61 Burrell St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.323123, "LONGITUDE": -71.069585, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.069585, 42.323123 ] } } | |
, | |
{ "type": "Feature", "id": 72, "properties": { "CASE_ENQUIRY_ID": 101000425642.0, "OPEN_DT": "05\/22\/2012 07:39:01 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "34 Sparhawk St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2203, "land_usage": "E", "LOCATION_STREET_NAME": "34 Sparhawk St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.351339, "LONGITUDE": -71.151577, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.151577, 42.351339 ] } } | |
, | |
{ "type": "Feature", "id": 73, "properties": { "CASE_ENQUIRY_ID": 101000422066.0, "OPEN_DT": "05\/15\/2012 08:59:46 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Wilbur St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 13, "ward": "Ward 13", "precinct": 1305, "land_usage": "R2", "LOCATION_STREET_NAME": "9 Wilbur St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31552, "LONGITUDE": -71.06563, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06563, 42.31552 ] } } | |
, | |
{ "type": "Feature", "id": 74, "properties": { "CASE_ENQUIRY_ID": 101000419156.0, "OPEN_DT": "05\/09\/2012 09:44:57 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "240 Marlborough St Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 508, "land_usage": "CM", "LOCATION_STREET_NAME": "240 Marlborough St", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.35179, "LONGITUDE": -71.08179, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08179, 42.35179 ] } } | |
, | |
{ "type": "Feature", "id": 75, "properties": { "CASE_ENQUIRY_ID": 101000416699.0, "OPEN_DT": "05\/03\/2012 01:44:34 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1027 Commonwealth Ave Boston MA 02215", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 14, "ward": "Ward 21", "precinct": 2103, "land_usage": "RC", "LOCATION_STREET_NAME": "1027 Commonwealth Ave", "LOCATION_ZIPCODE": 2215, "LATITUDE": 42.352231, "LONGITUDE": -71.121594, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.121594, 42.352231 ] } } | |
, | |
{ "type": "Feature", "id": 76, "properties": { "CASE_ENQUIRY_ID": 101000399100.0, "OPEN_DT": "03\/23\/2012 07:05:50 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "37 Hendry St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "37 Hendry St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31009, "LONGITUDE": -71.06576, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06576, 42.31009 ] } } | |
, | |
{ "type": "Feature", "id": 77, "properties": { "CASE_ENQUIRY_ID": 101000390720.0, "OPEN_DT": "03\/05\/2012 08:21:47 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5 Ayr Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2114, "land_usage": "R2", "LOCATION_STREET_NAME": "5 Ayr Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.33686, "LONGITUDE": -71.149, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.149, 42.33686 ] } } | |
, | |
{ "type": "Feature", "id": 78, "properties": { "CASE_ENQUIRY_ID": 101000386317.0, "OPEN_DT": "02\/21\/2012 10:23:13 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "172 Leyden St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "R1", "LOCATION_STREET_NAME": "172 Leyden St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.3889, "LONGITUDE": -71.00513, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.00513, 42.3889 ] } } | |
, | |
{ "type": "Feature", "id": 79, "properties": { "CASE_ENQUIRY_ID": 101000384181.0, "OPEN_DT": "02\/14\/2012 10:40:14 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "25 Dennis St Roxbury MA 02119", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 8", "precinct": 807, "land_usage": "R1", "LOCATION_STREET_NAME": "25 Dennis St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.32275, "LONGITUDE": -71.07526, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.07526, 42.32275 ] } } | |
, | |
{ "type": "Feature", "id": 80, "properties": { "CASE_ENQUIRY_ID": 101000383309.0, "OPEN_DT": "02\/10\/2012 12:46:07 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1733 Commonwealth Ave Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2113, "land_usage": "R2", "LOCATION_STREET_NAME": "1733 Commonwealth Ave", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.3419, "LONGITUDE": -71.1491, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.1491, 42.3419 ] } } | |
, | |
{ "type": "Feature", "id": 81, "properties": { "CASE_ENQUIRY_ID": 101000379988.0, "OPEN_DT": "02\/01\/2012 02:26:41 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "252 Marlborough St Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 508, "land_usage": "CM", "LOCATION_STREET_NAME": "252 Marlborough St", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.35167, "LONGITUDE": -71.08222, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08222, 42.35167 ] } } | |
, | |
{ "type": "Feature", "id": 82, "properties": { "CASE_ENQUIRY_ID": 101000373127.0, "OPEN_DT": "01\/11\/2012 11:08:12 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5 Upham Ave Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 13, "ward": "Ward 13", "precinct": 1305, "land_usage": "R3", "LOCATION_STREET_NAME": "5 Upham Ave", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31526, "LONGITUDE": -71.0656, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0656, 42.31526 ] } } | |
, | |
{ "type": "Feature", "id": 83, "properties": { "CASE_ENQUIRY_ID": 101000370975.0, "OPEN_DT": "01\/05\/2012 12:39:06 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed NOVIO: No Violation Found\/No Cause ", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Cenacle Rd & Lake St Brighton MA ", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2208, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Cenacle Rd & Lake St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.34362, "LONGITUDE": -71.141672, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.141672, 42.34362 ] } } | |
, | |
{ "type": "Feature", "id": 84, "properties": { "CASE_ENQUIRY_ID": 101000370864.0, "OPEN_DT": "01\/05\/2012 10:08:12 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "610 Columbus Ave Roxbury MA 02118", "fire_district": 9, "pwd_district": "10B", "city_council_district": 7, "police_district": "D4", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 9", "precinct": 903, "land_usage": "A", "LOCATION_STREET_NAME": "610 Columbus Ave", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.33969, "LONGITUDE": -71.08251, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.08251, 42.33969 ] } } | |
, | |
{ "type": "Feature", "id": 85, "properties": { "CASE_ENQUIRY_ID": 101000369043.0, "OPEN_DT": "12\/30\/2011 09:23:38 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "50 Park Vale Ave Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2105, "land_usage": "A", "LOCATION_STREET_NAME": "50 Park Vale Ave", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35264, "LONGITUDE": -71.13344, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13344, 42.35264 ] } } | |
, | |
{ "type": "Feature", "id": 86, "properties": { "CASE_ENQUIRY_ID": 101000366696.0, "OPEN_DT": "12\/21\/2011 11:53:25 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Barnes Ave East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 112, "land_usage": "R2", "LOCATION_STREET_NAME": "8 Barnes Ave", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38593, "LONGITUDE": -71.00657, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.00657, 42.38593 ] } } | |
, | |
{ "type": "Feature", "id": 87, "properties": { "CASE_ENQUIRY_ID": 101000356347.0, "OPEN_DT": "11\/21\/2011 05:58:30 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed VIOISS: Violation Filed ", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "120 Commonwealth Ave Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 507, "land_usage": "CD", "LOCATION_STREET_NAME": "120 Commonwealth Ave", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.351802, "LONGITUDE": -71.076817, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.076817, 42.351802 ] } } | |
, | |
{ "type": "Feature", "id": 88, "properties": { "CASE_ENQUIRY_ID": 101000354709.0, "OPEN_DT": "11\/16\/2011 11:43:13 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "123 Newbury St Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 507, "land_usage": "RC", "LOCATION_STREET_NAME": "123 Newbury St", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.351433, "LONGITUDE": -71.076557, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.076557, 42.351433 ] } } | |
, | |
{ "type": "Feature", "id": 89, "properties": { "CASE_ENQUIRY_ID": 101000351418.0, "OPEN_DT": "11\/07\/2011 11:00:12 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "2 Mead St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2202, "land_usage": "R3", "LOCATION_STREET_NAME": "2 Mead St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.36153, "LONGITUDE": -71.13203, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13203, 42.36153 ] } } | |
, | |
{ "type": "Feature", "id": 90, "properties": { "CASE_ENQUIRY_ID": 101000343040.0, "OPEN_DT": "10\/17\/2011 08:59:52 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "44-46 Sagamore St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1309, "land_usage": "R2", "LOCATION_STREET_NAME": "44-46 Sagamore St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.314681, "LONGITUDE": -71.054915, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.054915, 42.314681 ] } } | |
, | |
{ "type": "Feature", "id": 91, "properties": { "CASE_ENQUIRY_ID": 101000314422.0, "OPEN_DT": "08\/15\/2011 12:33:07 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed NOVIO: No Violation Found\/No Cause ", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "98 Knoll St Roslindale MA 02131", "fire_district": 9, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2001, "land_usage": "R1", "LOCATION_STREET_NAME": "98 Knoll St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.29308, "LONGITUDE": -71.13582, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13582, 42.29308 ] } } | |
, | |
{ "type": "Feature", "id": 92, "properties": { "CASE_ENQUIRY_ID": 101000305253.0, "OPEN_DT": "07\/22\/2011 06:57:07 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": " ", "fire_district": null, "pwd_district": " ", "city_council_district": null, "police_district": " ", "neighborhood": " ", "neighborhood_services_district": null, "ward": " ", "precinct": null, "land_usage": " ", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 93, "properties": { "CASE_ENQUIRY_ID": 101000298927.0, "OPEN_DT": "07\/08\/2011 12:21:56 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "24 Armington St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "R4", "LOCATION_STREET_NAME": "24 Armington St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.352387, "LONGITUDE": -71.137011, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.137011, 42.352387 ] } } | |
, | |
{ "type": "Feature", "id": 94, "properties": { "CASE_ENQUIRY_ID": 101000858190.0, "OPEN_DT": "06\/12\/2013 09:09:24 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "516 Lagrange St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2013, "land_usage": "R1", "LOCATION_STREET_NAME": "516 Lagrange St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.28356, "LONGITUDE": -71.16167, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16167, 42.28356 ] } } | |
, | |
{ "type": "Feature", "id": 95, "properties": { "CASE_ENQUIRY_ID": 101000993203.0, "OPEN_DT": "12\/30\/2013 01:48:18 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "41 Grove St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "R4", "LOCATION_STREET_NAME": "41 Grove St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.35978, "LONGITUDE": -71.06878, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06878, 42.35978 ] } } | |
, | |
{ "type": "Feature", "id": 96, "properties": { "CASE_ENQUIRY_ID": 101000953611.0, "OPEN_DT": "10\/24\/2013 04:42:33 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "22 Josephine St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1508, "land_usage": "R3", "LOCATION_STREET_NAME": "22 Josephine St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30074, "LONGITUDE": -71.06464, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06464, 42.30074 ] } } | |
, | |
{ "type": "Feature", "id": 97, "properties": { "CASE_ENQUIRY_ID": 101001122596.0, "OPEN_DT": "07\/07\/2014 10:35:51 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "56 Granger St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1506, "land_usage": "R3", "LOCATION_STREET_NAME": "56 Granger St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30269, "LONGITUDE": -71.05737, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05737, 42.30269 ] } } | |
, | |
{ "type": "Feature", "id": 98, "properties": { "CASE_ENQUIRY_ID": 101000859491.0, "OPEN_DT": "06\/13\/2013 03:28:00 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "24 Dunwell St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2005, "land_usage": "R1", "LOCATION_STREET_NAME": "24 Dunwell St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.27766, "LONGITUDE": -71.16845, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16845, 42.27766 ] } } | |
, | |
{ "type": "Feature", "id": 99, "properties": { "CASE_ENQUIRY_ID": 101001025530.0, "OPEN_DT": "02\/13\/2014 01:06:48 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Oxford Pl Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "R4", "LOCATION_STREET_NAME": "8 Oxford Pl", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.351802, "LONGITUDE": -71.060808, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.060808, 42.351802 ] } } | |
, | |
{ "type": "Feature", "id": 100, "properties": { "CASE_ENQUIRY_ID": 101000903427.0, "OPEN_DT": "08\/16\/2013 11:54:44 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "191 Walworth St Roslindale MA 02131", "fire_district": 12, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "20", "precinct": 2009, "land_usage": "", "LOCATION_STREET_NAME": "191 Walworth St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.278958, "LONGITUDE": -71.137246, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.137246, 42.278958 ] } } | |
, | |
{ "type": "Feature", "id": 101, "properties": { "CASE_ENQUIRY_ID": 101001117642.0, "OPEN_DT": "06\/27\/2014 07:11:40 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "125 Walworth St Roslindale MA 02131", "fire_district": 12, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2009, "land_usage": "R1", "LOCATION_STREET_NAME": "125 Walworth St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.28278, "LONGITUDE": -71.13762, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13762, 42.28278 ] } } | |
, | |
{ "type": "Feature", "id": 102, "properties": { "CASE_ENQUIRY_ID": 101001123574.0, "OPEN_DT": "07\/08\/2014 09:53:23 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "22-26 Hawthorne St Roxbury MA 02119", "fire_district": 9, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "11", "precinct": 1102, "land_usage": "", "LOCATION_STREET_NAME": "22-26 Hawthorne St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 103, "properties": { "CASE_ENQUIRY_ID": 101001117271.0, "OPEN_DT": "06\/27\/2014 10:43:51 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Robinwood Ave Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "19", "precinct": 1904, "land_usage": "", "LOCATION_STREET_NAME": "8 Robinwood Ave", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 104, "properties": { "CASE_ENQUIRY_ID": 101001024880.0, "OPEN_DT": "02\/12\/2014 12:49:25 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "54 Beach St Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "54 Beach St", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.3515, "LONGITUDE": -71.06058, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06058, 42.3515 ] } } | |
, | |
{ "type": "Feature", "id": 105, "properties": { "CASE_ENQUIRY_ID": 101001023923.0, "OPEN_DT": "02\/11\/2014 10:58:07 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "27 Pasadena Rd Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1403, "land_usage": "CM", "LOCATION_STREET_NAME": "27 Pasadena Rd", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30551, "LONGITUDE": -71.08273, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08273, 42.30551 ] } } | |
, | |
{ "type": "Feature", "id": 106, "properties": { "CASE_ENQUIRY_ID": 101000971992.0, "OPEN_DT": "11\/26\/2013 08:02:36 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1039-1045 Commonwealth Ave Boston MA 02215", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 14, "ward": "Ward 21", "precinct": 2103, "land_usage": "RC", "LOCATION_STREET_NAME": "1039-1045 Commonwealth Ave", "LOCATION_ZIPCODE": 2215, "LATITUDE": 42.352334, "LONGITUDE": -71.122164, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.122164, 42.352334 ] } } | |
, | |
{ "type": "Feature", "id": 107, "properties": { "CASE_ENQUIRY_ID": 101001120465.0, "OPEN_DT": "07\/02\/2014 12:32:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5 Coleman St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "5 Coleman St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.30917, "LONGITUDE": -71.0652, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0652, 42.30917 ] } } | |
, | |
{ "type": "Feature", "id": 108, "properties": { "CASE_ENQUIRY_ID": 101000916065.0, "OPEN_DT": "09\/02\/2013 12:45:54 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "53 Hillside St Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1005, "land_usage": "R3", "LOCATION_STREET_NAME": "53 Hillside St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.33025, "LONGITUDE": -71.10121, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10121, 42.33025 ] } } | |
, | |
{ "type": "Feature", "id": 109, "properties": { "CASE_ENQUIRY_ID": 101000862095.0, "OPEN_DT": "06\/18\/2013 10:04:51 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "3 Trent St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "RL", "LOCATION_STREET_NAME": "3 Trent St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.309239, "LONGITUDE": -71.065412, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.065412, 42.309239 ] } } | |
, | |
{ "type": "Feature", "id": 110, "properties": { "CASE_ENQUIRY_ID": 101000914452.0, "OPEN_DT": "08\/30\/2013 01:29:09 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "15 Ledgewood Rd West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2020, "land_usage": "R1", "LOCATION_STREET_NAME": "15 Ledgewood Rd", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.29518, "LONGITUDE": -71.16365, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16365, 42.29518 ] } } | |
, | |
{ "type": "Feature", "id": 111, "properties": { "CASE_ENQUIRY_ID": 101000923584.0, "OPEN_DT": "09\/11\/2013 09:12:21 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Lake St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2208, "land_usage": "R3", "LOCATION_STREET_NAME": "4 Lake St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.34053, "LONGITUDE": -71.16634, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16634, 42.34053 ] } } | |
, | |
{ "type": "Feature", "id": 112, "properties": { "CASE_ENQUIRY_ID": 101001052789.0, "OPEN_DT": "03\/24\/2014 10:24:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "536-544 Centre St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1905, "land_usage": "C", "LOCATION_STREET_NAME": "536-544 Centre St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31686, "LONGITUDE": -71.11327, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.11327, 42.31686 ] } } | |
, | |
{ "type": "Feature", "id": 113, "properties": { "CASE_ENQUIRY_ID": 101001101843.0, "OPEN_DT": "06\/02\/2014 02:39:43 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "50 Gardner St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R2", "LOCATION_STREET_NAME": "50 Gardner St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35386, "LONGITUDE": -71.12886, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12886, 42.35386 ] } } | |
, | |
{ "type": "Feature", "id": 114, "properties": { "CASE_ENQUIRY_ID": 101001113589.0, "OPEN_DT": "06\/23\/2014 07:35:27 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Sussex St Mission Hill MA 02120", "fire_district": 7, "pwd_district": "10B", "city_council_district": 7, "police_district": "D4", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 9", "precinct": 903, "land_usage": "R1", "LOCATION_STREET_NAME": "8 Sussex St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.33604, "LONGITUDE": -71.08346, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08346, 42.33604 ] } } | |
, | |
{ "type": "Feature", "id": 115, "properties": { "CASE_ENQUIRY_ID": 101001107852.0, "OPEN_DT": "06\/12\/2014 10:57:13 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "134 Greenwood St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1402, "land_usage": "R3", "LOCATION_STREET_NAME": "134 Greenwood St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.29739, "LONGITUDE": -71.07935, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07935, 42.29739 ] } } | |
, | |
{ "type": "Feature", "id": 116, "properties": { "CASE_ENQUIRY_ID": 101001132846.0, "OPEN_DT": "07\/20\/2014 11:45:47 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "38A Union Ave Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1107, "land_usage": "CD", "LOCATION_STREET_NAME": "38A Union Ave", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.30858, "LONGITUDE": -71.10649, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.10649, 42.30858 ] } } | |
, | |
{ "type": "Feature", "id": 117, "properties": { "CASE_ENQUIRY_ID": 101001037568.0, "OPEN_DT": "02\/27\/2014 01:25:31 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "65 Empire St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2201, "land_usage": "A", "LOCATION_STREET_NAME": "65 Empire St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35803, "LONGITUDE": -71.12752, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12752, 42.35803 ] } } | |
, | |
{ "type": "Feature", "id": 118, "properties": { "CASE_ENQUIRY_ID": 101001114176.0, "OPEN_DT": "06\/23\/2014 02:54:51 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "321 Summit Ave Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2109, "land_usage": "A", "LOCATION_STREET_NAME": "321 Summit Ave", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.345501, "LONGITUDE": -71.140161, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.140161, 42.345501 ] } } | |
, | |
{ "type": "Feature", "id": 119, "properties": { "CASE_ENQUIRY_ID": 101001044054.0, "OPEN_DT": "03\/10\/2014 01:54:55 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "247 Cambridge St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2201, "land_usage": "R3", "LOCATION_STREET_NAME": "247 Cambridge St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.3578, "LONGITUDE": -71.12748, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12748, 42.3578 ] } } | |
, | |
{ "type": "Feature", "id": 120, "properties": { "CASE_ENQUIRY_ID": 101000969471.0, "OPEN_DT": "11\/21\/2013 08:36:33 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "66-68 Raymond St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2202, "land_usage": "R2", "LOCATION_STREET_NAME": "66-68 Raymond St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.361503, "LONGITUDE": -71.132577, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.132577, 42.361503 ] } } | |
, | |
{ "type": "Feature", "id": 121, "properties": { "CASE_ENQUIRY_ID": 101001051624.0, "OPEN_DT": "03\/21\/2014 10:32:23 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "17 Gordon St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "CD", "LOCATION_STREET_NAME": "17 Gordon St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35349, "LONGITUDE": -71.140954, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.140954, 42.35349 ] } } | |
, | |
{ "type": "Feature", "id": 122, "properties": { "CASE_ENQUIRY_ID": 101001063196.0, "OPEN_DT": "04\/08\/2014 09:51:40 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "780 Boylston St Boston MA 02199", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 402, "land_usage": "RC", "LOCATION_STREET_NAME": "780 Boylston St", "LOCATION_ZIPCODE": 2199, "LATITUDE": 42.348135, "LONGITUDE": -71.080855, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.080855, 42.348135 ] } } | |
, | |
{ "type": "Feature", "id": 123, "properties": { "CASE_ENQUIRY_ID": 101001024882.0, "OPEN_DT": "02\/12\/2014 12:51:03 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "56 Beach St Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "56 Beach St", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35149, "LONGITUDE": -71.06052, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06052, 42.35149 ] } } | |
, | |
{ "type": "Feature", "id": 124, "properties": { "CASE_ENQUIRY_ID": 101001106700.0, "OPEN_DT": "06\/10\/2014 02:48:41 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "164 Florence St Roslindale MA 02131", "fire_district": 12, "pwd_district": "02", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 19", "precinct": 1913, "land_usage": "R2", "LOCATION_STREET_NAME": "164 Florence St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.287766, "LONGITUDE": -71.122086, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.122086, 42.287766 ] } } | |
, | |
{ "type": "Feature", "id": 125, "properties": { "CASE_ENQUIRY_ID": 101000929460.0, "OPEN_DT": "09\/18\/2013 10:07:58 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Carol Cir West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2005, "land_usage": "A", "LOCATION_STREET_NAME": "8 Carol Cir", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.26828, "LONGITUDE": -71.15074, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15074, 42.26828 ] } } | |
, | |
{ "type": "Feature", "id": 126, "properties": { "CASE_ENQUIRY_ID": 101001118633.0, "OPEN_DT": "06\/30\/2014 01:06:36 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "528 Cambridge St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "R3", "LOCATION_STREET_NAME": "528 Cambridge St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35278, "LONGITUDE": -71.13902, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13902, 42.35278 ] } } | |
, | |
{ "type": "Feature", "id": 127, "properties": { "CASE_ENQUIRY_ID": 101001105935.0, "OPEN_DT": "06\/09\/2014 02:11:45 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "297 Bolton St South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 6", "precinct": 604, "land_usage": "R1", "LOCATION_STREET_NAME": "297 Bolton St", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.33682, "LONGITUDE": -71.04502, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.04502, 42.33682 ] } } | |
, | |
{ "type": "Feature", "id": 128, "properties": { "CASE_ENQUIRY_ID": 101001112253.0, "OPEN_DT": "06\/20\/2014 08:07:02 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "21 Union Ave Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1107, "land_usage": "R2", "LOCATION_STREET_NAME": "21 Union Ave", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.30928, "LONGITUDE": -71.10647, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10647, 42.30928 ] } } | |
, | |
{ "type": "Feature", "id": 129, "properties": { "CASE_ENQUIRY_ID": 101000916068.0, "OPEN_DT": "09\/02\/2013 12:47:37 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "126 Calumet St Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1003, "land_usage": "R3", "LOCATION_STREET_NAME": "126 Calumet St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.33096, "LONGITUDE": -71.1026, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.1026, 42.33096 ] } } | |
, | |
{ "type": "Feature", "id": 130, "properties": { "CASE_ENQUIRY_ID": 101001126026.0, "OPEN_DT": "07\/10\/2014 02:49:38 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "12 Kensington St Roxbury MA 02119", "fire_district": 9, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 12", "precinct": 1203, "land_usage": "R3", "LOCATION_STREET_NAME": "12 Kensington St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.32064, "LONGITUDE": -71.09077, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.09077, 42.32064 ] } } | |
, | |
{ "type": "Feature", "id": 131, "properties": { "CASE_ENQUIRY_ID": 101001003762.0, "OPEN_DT": "01\/13\/2014 10:24:12 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "6 Harbell Ter Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1508, "land_usage": "R1", "LOCATION_STREET_NAME": "6 Harbell Ter", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30133, "LONGITUDE": -71.05786, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05786, 42.30133 ] } } | |
, | |
{ "type": "Feature", "id": 132, "properties": { "CASE_ENQUIRY_ID": 101001025531.0, "OPEN_DT": "02\/13\/2014 01:08:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Oxford Pl Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "R4", "LOCATION_STREET_NAME": "9 Oxford Pl", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35175, "LONGITUDE": -71.06079, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06079, 42.35175 ] } } | |
, | |
{ "type": "Feature", "id": 133, "properties": { "CASE_ENQUIRY_ID": 101001032840.0, "OPEN_DT": "02\/21\/2014 10:29:48 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Edgemont St & South St Roslindale MA", "fire_district": 9, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2007, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Edgemont St & South St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.31262, "LONGITUDE": -71.12186, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12186, 42.31262 ] } } | |
, | |
{ "type": "Feature", "id": 134, "properties": { "CASE_ENQUIRY_ID": 101001110865.0, "OPEN_DT": "06\/18\/2014 10:26:15 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "60 Princeton St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 107, "land_usage": "R2", "LOCATION_STREET_NAME": "60 Princeton St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.3773, "LONGITUDE": -71.03696, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.03696, 42.3773 ] } } | |
, | |
{ "type": "Feature", "id": 135, "properties": { "CASE_ENQUIRY_ID": 101000958424.0, "OPEN_DT": "11\/01\/2013 12:03:37 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "70-72 Rowe St Roslindale MA 02131", "fire_district": 12, "pwd_district": "02", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "19", "precinct": 1910, "land_usage": "", "LOCATION_STREET_NAME": "70-72 Rowe St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.282257, "LONGITUDE": -71.120355, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.120355, 42.282257 ] } } | |
, | |
{ "type": "Feature", "id": 136, "properties": { "CASE_ENQUIRY_ID": 101001104802.0, "OPEN_DT": "06\/06\/2014 06:57:26 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "42 Lyon St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1509, "land_usage": "R4", "LOCATION_STREET_NAME": "42 Lyon St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30604, "LONGITUDE": -71.06093, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06093, 42.30604 ] } } | |
, | |
{ "type": "Feature", "id": 137, "properties": { "CASE_ENQUIRY_ID": 101000978663.0, "OPEN_DT": "12\/09\/2013 11:11:03 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "56 Sheridan St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1901, "land_usage": "CM", "LOCATION_STREET_NAME": "56 Sheridan St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.320972, "LONGITUDE": -71.10732, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10732, 42.320972 ] } } | |
, | |
{ "type": "Feature", "id": 138, "properties": { "CASE_ENQUIRY_ID": 101001128528.0, "OPEN_DT": "07\/14\/2014 03:21:46 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Green St & Union Ave Jamaica Plain MA", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1106, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Green St & Union Ave", "LOCATION_ZIPCODE": null, "LATITUDE": 42.2882, "LONGITUDE": -71.05487, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.05487, 42.2882 ] } } | |
, | |
{ "type": "Feature", "id": 139, "properties": { "CASE_ENQUIRY_ID": 101000914515.0, "OPEN_DT": "08\/30\/2013 02:18:07 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "21 Worcester St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 7, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 9", "precinct": 902, "land_usage": "R3", "LOCATION_STREET_NAME": "21 Worcester St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.33812, "LONGITUDE": -71.07616, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07616, 42.33812 ] } } | |
, | |
{ "type": "Feature", "id": 140, "properties": { "CASE_ENQUIRY_ID": 101001103012.0, "OPEN_DT": "06\/04\/2014 09:44:32 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "221-227 Border St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 106, "land_usage": "C", "LOCATION_STREET_NAME": "221-227 Border St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.37585, "LONGITUDE": -71.03959, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.03959, 42.37585 ] } } | |
, | |
{ "type": "Feature", "id": 141, "properties": { "CASE_ENQUIRY_ID": 101001128328.0, "OPEN_DT": "07\/14\/2014 01:51:34 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "97 Horace St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "R2", "LOCATION_STREET_NAME": "97 Horace St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38257, "LONGITUDE": -71.01583, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01583, 42.38257 ] } } | |
, | |
{ "type": "Feature", "id": 142, "properties": { "CASE_ENQUIRY_ID": 101001041587.0, "OPEN_DT": "03\/06\/2014 09:01:37 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 143, "properties": { "CASE_ENQUIRY_ID": 101001107915.0, "OPEN_DT": "06\/12\/2014 12:11:17 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "43-45 Jones Ave Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1413, "land_usage": "R1", "LOCATION_STREET_NAME": "43-45 Jones Ave", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.286415, "LONGITUDE": -71.083856, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.083856, 42.286415 ] } } | |
, | |
{ "type": "Feature", "id": 144, "properties": { "CASE_ENQUIRY_ID": 101000918119.0, "OPEN_DT": "09\/04\/2013 01:29:51 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "244 Kelton St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2108, "land_usage": "A", "LOCATION_STREET_NAME": "244 Kelton St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.346573, "LONGITUDE": -71.135826, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.135826, 42.346573 ] } } | |
, | |
{ "type": "Feature", "id": 145, "properties": { "CASE_ENQUIRY_ID": 101001131997.0, "OPEN_DT": "07\/18\/2014 11:31:59 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "838 Blue Hill Ave Dorchester MA 02124", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1409, "land_usage": "C", "LOCATION_STREET_NAME": "838 Blue Hill Ave", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.296053, "LONGITUDE": -71.087229, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.087229, 42.296053 ] } } | |
, | |
{ "type": "Feature", "id": 146, "properties": { "CASE_ENQUIRY_ID": 101001095803.0, "OPEN_DT": "05\/22\/2014 04:09:27 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "12 Taft St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1308, "land_usage": "CM", "LOCATION_STREET_NAME": "12 Taft St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31706, "LONGITUDE": -71.05747, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05747, 42.31706 ] } } | |
, | |
{ "type": "Feature", "id": 147, "properties": { "CASE_ENQUIRY_ID": 101001128435.0, "OPEN_DT": "07\/14\/2014 02:47:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "41 Revere St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "CD", "LOCATION_STREET_NAME": "41 Revere St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.359661, "LONGITUDE": -71.067938, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.067938, 42.359661 ] } } | |
, | |
{ "type": "Feature", "id": 148, "properties": { "CASE_ENQUIRY_ID": 101001002418.0, "OPEN_DT": "01\/10\/2014 01:42:35 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "29 Wendover St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Dorchester", "neighborhood_services_district": 13, "ward": "Ward 7", "precinct": 710, "land_usage": "", "LOCATION_STREET_NAME": "29 Wendover St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.318821, "LONGITUDE": -71.065782, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.065782, 42.318821 ] } } | |
, | |
{ "type": "Feature", "id": 149, "properties": { "CASE_ENQUIRY_ID": 101000884200.0, "OPEN_DT": "07\/22\/2013 09:22:26 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed VIOCOR: Violation Corrected", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "69-71 Millet St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Dorchester", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1703, "land_usage": "R3", "LOCATION_STREET_NAME": "69-71 Millet St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.29413, "LONGITUDE": -71.07732, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07732, 42.29413 ] } } | |
, | |
{ "type": "Feature", "id": 150, "properties": { "CASE_ENQUIRY_ID": 101001123877.0, "OPEN_DT": "07\/08\/2014 01:07:05 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "15-33 Sleeper St Boston MA 02210", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 6", "precinct": 601, "land_usage": "CM", "LOCATION_STREET_NAME": "15-33 Sleeper St", "LOCATION_ZIPCODE": 2210, "LATITUDE": 42.352, "LONGITUDE": -71.04893, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.04893, 42.352 ] } } | |
, | |
{ "type": "Feature", "id": 151, "properties": { "CASE_ENQUIRY_ID": 101001005071.0, "OPEN_DT": "01\/14\/2014 11:50:00 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Corinth St & Washington St Roslindale MA", "fire_district": 12, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2002, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Corinth St & Washington St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.35941, "LONGITUDE": -71.06788, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06788, 42.35941 ] } } | |
, | |
{ "type": "Feature", "id": 152, "properties": { "CASE_ENQUIRY_ID": 101001049340.0, "OPEN_DT": "03\/18\/2014 02:49:21 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "384-426 Washington St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2203, "land_usage": "RC", "LOCATION_STREET_NAME": "384-426 Washington St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.348961, "LONGITUDE": -71.154374, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.154374, 42.348961 ] } } | |
, | |
{ "type": "Feature", "id": 153, "properties": { "CASE_ENQUIRY_ID": 101001095295.0, "OPEN_DT": "05\/22\/2014 09:33:38 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "520 Saratoga St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 110, "land_usage": "R3", "LOCATION_STREET_NAME": "520 Saratoga St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38063, "LONGITUDE": -71.02597, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.02597, 42.38063 ] } } | |
, | |
{ "type": "Feature", "id": 154, "properties": { "CASE_ENQUIRY_ID": 101001129396.0, "OPEN_DT": "07\/15\/2014 01:57:28 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "125 Rosseter St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1404, "land_usage": "R4", "LOCATION_STREET_NAME": "125 Rosseter St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.3016, "LONGITUDE": -71.07316, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07316, 42.3016 ] } } | |
, | |
{ "type": "Feature", "id": 155, "properties": { "CASE_ENQUIRY_ID": 101000916879.0, "OPEN_DT": "09\/03\/2013 11:53:17 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "3 Ayr Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2114, "land_usage": "R2", "LOCATION_STREET_NAME": "3 Ayr Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.33698, "LONGITUDE": -71.14906, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14906, 42.33698 ] } } | |
, | |
{ "type": "Feature", "id": 156, "properties": { "CASE_ENQUIRY_ID": 101000915009.0, "OPEN_DT": "08\/31\/2013 01:35:54 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "679 Lagrange St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2017, "land_usage": "R1", "LOCATION_STREET_NAME": "679 Lagrange St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.28867, "LONGITUDE": -71.16611, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.16611, 42.28867 ] } } | |
, | |
{ "type": "Feature", "id": 157, "properties": { "CASE_ENQUIRY_ID": 101000916918.0, "OPEN_DT": "09\/03\/2013 12:17:46 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "675 Lagrange St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2017, "land_usage": "R1", "LOCATION_STREET_NAME": "675 Lagrange St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.28854, "LONGITUDE": -71.16599, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16599, 42.28854 ] } } | |
, | |
{ "type": "Feature", "id": 158, "properties": { "CASE_ENQUIRY_ID": 101001113597.0, "OPEN_DT": "06\/23\/2014 07:50:43 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "35 Westville St Dorchester MA 02124", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "15", "precinct": 1505, "land_usage": "E", "LOCATION_STREET_NAME": "35 Westville St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.299767, "LONGITUDE": -71.071179, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.071179, 42.299767 ] } } | |
, | |
{ "type": "Feature", "id": 159, "properties": { "CASE_ENQUIRY_ID": 101000893975.0, "OPEN_DT": "08\/04\/2013 07:57:40 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed NOVIO: No Violation Found\/No Cause", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "99 Parkton Rd Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 10", "precinct": 1009, "land_usage": "R2", "LOCATION_STREET_NAME": "99 Parkton Rd", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.321535, "LONGITUDE": -71.11479, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.11479, 42.321535 ] } } | |
, | |
{ "type": "Feature", "id": 160, "properties": { "CASE_ENQUIRY_ID": 101001100917.0, "OPEN_DT": "05\/31\/2014 03:48:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "41 Anderson St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "A", "LOCATION_STREET_NAME": "41 Anderson St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.359852, "LONGITUDE": -71.067904, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.067904, 42.359852 ] } } | |
, | |
{ "type": "Feature", "id": 161, "properties": { "CASE_ENQUIRY_ID": 101000947328.0, "OPEN_DT": "10\/16\/2013 10:10:40 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5 Clarkson St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "15", "precinct": 1504, "land_usage": "", "LOCATION_STREET_NAME": "5 Clarkson St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 162, "properties": { "CASE_ENQUIRY_ID": 101001122926.0, "OPEN_DT": "07\/07\/2014 02:28:42 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "18 Hudson St Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "18 Hudson St", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35052, "LONGITUDE": -71.059999, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.059999, 42.35052 ] } } | |
, | |
{ "type": "Feature", "id": 163, "properties": { "CASE_ENQUIRY_ID": 101001105708.0, "OPEN_DT": "06\/09\/2014 10:56:29 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "84 Bailey St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 17", "precinct": 1711, "land_usage": "R3", "LOCATION_STREET_NAME": "84 Bailey St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.28501, "LONGITUDE": -71.06522, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06522, 42.28501 ] } } | |
, | |
{ "type": "Feature", "id": 164, "properties": { "CASE_ENQUIRY_ID": 101001024787.0, "OPEN_DT": "02\/12\/2014 11:41:14 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "40-42 Harrison Ave Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "40-42 Harrison Ave", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.351664, "LONGITUDE": -71.060968, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.060968, 42.351664 ] } } | |
, | |
{ "type": "Feature", "id": 165, "properties": { "CASE_ENQUIRY_ID": 101001025528.0, "OPEN_DT": "02\/13\/2014 01:02:25 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "6 Oxford Pl Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "R4", "LOCATION_STREET_NAME": "6 Oxford Pl", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35189, "LONGITUDE": -71.06084, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06084, 42.35189 ] } } | |
, | |
{ "type": "Feature", "id": 166, "properties": { "CASE_ENQUIRY_ID": 101001119288.0, "OPEN_DT": "07\/01\/2014 10:10:31 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "435 Quincy St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1503, "land_usage": "A", "LOCATION_STREET_NAME": "435 Quincy St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.30957, "LONGITUDE": -71.06706, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06706, 42.30957 ] } } | |
, | |
{ "type": "Feature", "id": 167, "properties": { "CASE_ENQUIRY_ID": 101001060116.0, "OPEN_DT": "04\/03\/2014 09:25:05 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "27 Priscilla Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2113, "land_usage": "R2", "LOCATION_STREET_NAME": "27 Priscilla Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.344559, "LONGITUDE": -71.151548, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.151548, 42.344559 ] } } | |
, | |
{ "type": "Feature", "id": 168, "properties": { "CASE_ENQUIRY_ID": 101000920969.0, "OPEN_DT": "09\/07\/2013 02:47:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "671 Lagrange St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2017, "land_usage": "R1", "LOCATION_STREET_NAME": "671 Lagrange St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.28842, "LONGITUDE": -71.16588, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16588, 42.28842 ] } } | |
, | |
{ "type": "Feature", "id": 169, "properties": { "CASE_ENQUIRY_ID": 101000942814.0, "OPEN_DT": "10\/08\/2013 01:20:06 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "40 Zeller St Roslindale MA 02131", "fire_district": 9, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2001, "land_usage": "R1", "LOCATION_STREET_NAME": "40 Zeller St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.292, "LONGITUDE": -71.13683, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13683, 42.292 ] } } | |
, | |
{ "type": "Feature", "id": 170, "properties": { "CASE_ENQUIRY_ID": 101001089226.0, "OPEN_DT": "05\/14\/2014 11:54:46 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "43 Jones Ave Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1413, "land_usage": "RL", "LOCATION_STREET_NAME": "43 Jones Ave", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.286457, "LONGITUDE": -71.083668, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.083668, 42.286457 ] } } | |
, | |
{ "type": "Feature", "id": 171, "properties": { "CASE_ENQUIRY_ID": 101001082069.0, "OPEN_DT": "05\/05\/2014 01:31:24 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "35 Harwood St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1412, "land_usage": "CM", "LOCATION_STREET_NAME": "35 Harwood St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.28585, "LONGITUDE": -71.0879, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0879, 42.28585 ] } } | |
, | |
{ "type": "Feature", "id": 172, "properties": { "CASE_ENQUIRY_ID": 101001103144.0, "OPEN_DT": "06\/04\/2014 11:58:52 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "45 Sargent St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 13", "precinct": 1304, "land_usage": "R2", "LOCATION_STREET_NAME": "45 Sargent St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31488, "LONGITUDE": -71.07386, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07386, 42.31488 ] } } | |
, | |
{ "type": "Feature", "id": 173, "properties": { "CASE_ENQUIRY_ID": 101000951114.0, "OPEN_DT": "10\/22\/2013 09:21:05 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Courtney Rd & Russett Rd Boston MA", "fire_district": null, "pwd_district": "", "city_council_district": 6, "police_district": "", "neighborhood": "", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2019, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Courtney Rd & Russett Rd", "LOCATION_ZIPCODE": null, "LATITUDE": 42.330104, "LONGITUDE": -71.09494, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.09494, 42.330104 ] } } | |
, | |
{ "type": "Feature", "id": 174, "properties": { "CASE_ENQUIRY_ID": 101001128820.0, "OPEN_DT": "07\/15\/2014 07:35:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "24 Winston Rd Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1413, "land_usage": "R1", "LOCATION_STREET_NAME": "24 Winston Rd", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.28513, "LONGITUDE": -71.08719, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08719, 42.28513 ] } } | |
, | |
{ "type": "Feature", "id": 175, "properties": { "CASE_ENQUIRY_ID": 101001110815.0, "OPEN_DT": "06\/18\/2014 09:44:20 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "127 King St Dorchester MA 02122", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1605, "land_usage": "R3", "LOCATION_STREET_NAME": "127 King St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.29372, "LONGITUDE": -71.054, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.054, 42.29372 ] } } | |
, | |
{ "type": "Feature", "id": 176, "properties": { "CASE_ENQUIRY_ID": 101001124787.0, "OPEN_DT": "07\/09\/2014 11:44:43 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "11 Treadway Rd Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1309, "land_usage": "R3", "LOCATION_STREET_NAME": "11 Treadway Rd", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.3134, "LONGITUDE": -71.05796, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05796, 42.3134 ] } } | |
, | |
{ "type": "Feature", "id": 177, "properties": { "CASE_ENQUIRY_ID": 101000992229.0, "OPEN_DT": "12\/27\/2013 04:32:08 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "37 Parker St Charlestown MA 02129", "fire_district": 3, "pwd_district": "1A", "city_council_district": 1, "police_district": "A15", "neighborhood": "Charlestown", "neighborhood_services_district": 2, "ward": "Ward 2", "precinct": 207, "land_usage": "CM", "LOCATION_STREET_NAME": "37 Parker St", "LOCATION_ZIPCODE": 2129, "LATITUDE": 42.382767, "LONGITUDE": -71.079564, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.079564, 42.382767 ] } } | |
, | |
{ "type": "Feature", "id": 178, "properties": { "CASE_ENQUIRY_ID": 101001123105.0, "OPEN_DT": "07\/07\/2014 05:02:34 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Centre St Roxbury MA 02119", "fire_district": 7, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 9", "precinct": 905, "land_usage": "R3", "LOCATION_STREET_NAME": "4 Centre St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.329777, "LONGITUDE": -71.091783, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.091783, 42.329777 ] } } | |
, | |
{ "type": "Feature", "id": 179, "properties": { "CASE_ENQUIRY_ID": 101001133661.0, "OPEN_DT": "07\/21\/2014 01:26:31 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "11 Monument St Charlestown MA 02129", "fire_district": 3, "pwd_district": "1A", "city_council_district": 1, "police_district": "A15", "neighborhood": "Charlestown", "neighborhood_services_district": 2, "ward": "Ward 2", "precinct": 204, "land_usage": "R2", "LOCATION_STREET_NAME": "11 Monument St", "LOCATION_ZIPCODE": 2129, "LATITUDE": 42.37744, "LONGITUDE": -71.06001, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06001, 42.37744 ] } } | |
, | |
{ "type": "Feature", "id": 180, "properties": { "CASE_ENQUIRY_ID": 101001116613.0, "OPEN_DT": "06\/26\/2014 10:43:29 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "39 Saunders St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "R1", "LOCATION_STREET_NAME": "39 Saunders St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35332, "LONGITUDE": -71.14195, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14195, 42.35332 ] } } | |
, | |
{ "type": "Feature", "id": 181, "properties": { "CASE_ENQUIRY_ID": 101001107384.0, "OPEN_DT": "06\/11\/2014 01:51:33 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "29 Speedwell St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1507, "land_usage": "R1", "LOCATION_STREET_NAME": "29 Speedwell St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30413, "LONGITUDE": -71.0669, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0669, 42.30413 ] } } | |
, | |
{ "type": "Feature", "id": 182, "properties": { "CASE_ENQUIRY_ID": 101001050923.0, "OPEN_DT": "03\/20\/2014 01:12:47 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "10 Robey St Roxbury MA 02119", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 8", "precinct": 806, "land_usage": "CD", "LOCATION_STREET_NAME": "10 Robey St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.322723, "LONGITUDE": -71.068079, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.068079, 42.322723 ] } } | |
, | |
{ "type": "Feature", "id": 183, "properties": { "CASE_ENQUIRY_ID": 101000952418.0, "OPEN_DT": "10\/23\/2013 11:10:36 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "37 Newburg St Roslindale MA 02131", "fire_district": 12, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2002, "land_usage": "R3", "LOCATION_STREET_NAME": "37 Newburg St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.28535, "LONGITUDE": -71.13937, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13937, 42.28535 ] } } | |
, | |
{ "type": "Feature", "id": 184, "properties": { "CASE_ENQUIRY_ID": 101001089027.0, "OPEN_DT": "05\/14\/2014 10:00:02 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "105 Allston St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "E", "LOCATION_STREET_NAME": "105 Allston St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.349897, "LONGITUDE": -71.137178, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.137178, 42.349897 ] } } | |
, | |
{ "type": "Feature", "id": 185, "properties": { "CASE_ENQUIRY_ID": 101000902340.0, "OPEN_DT": "08\/15\/2013 11:17:02 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "14 Furbush Rd West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2017, "land_usage": "R1", "LOCATION_STREET_NAME": "14 Furbush Rd", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.292763, "LONGITUDE": -71.168501, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.168501, 42.292763 ] } } | |
, | |
{ "type": "Feature", "id": 186, "properties": { "CASE_ENQUIRY_ID": 101001130648.0, "OPEN_DT": "07\/16\/2014 08:10:11 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "77 Sawyer Ave Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1309, "land_usage": "CM", "LOCATION_STREET_NAME": "77 Sawyer Ave", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31264, "LONGITUDE": -71.06176, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.06176, 42.31264 ] } } | |
, | |
{ "type": "Feature", "id": 187, "properties": { "CASE_ENQUIRY_ID": 101001116478.0, "OPEN_DT": "06\/26\/2014 08:56:13 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4873 Washington St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2010, "land_usage": "CM", "LOCATION_STREET_NAME": "4873 Washington St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.27037, "LONGITUDE": -71.14738, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14738, 42.27037 ] } } | |
, | |
{ "type": "Feature", "id": 188, "properties": { "CASE_ENQUIRY_ID": 101000934740.0, "OPEN_DT": "09\/26\/2013 09:07:40 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "49 Bellevue St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1501, "land_usage": "R3", "LOCATION_STREET_NAME": "49 Bellevue St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.30974, "LONGITUDE": -71.06851, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06851, 42.30974 ] } } | |
, | |
{ "type": "Feature", "id": 189, "properties": { "CASE_ENQUIRY_ID": 101001108180.0, "OPEN_DT": "06\/12\/2014 08:29:09 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Forbes St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "19", "precinct": 1901, "land_usage": "R3", "LOCATION_STREET_NAME": "9 Forbes St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.321968, "LONGITUDE": -71.108137, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.108137, 42.321968 ] } } | |
, | |
{ "type": "Feature", "id": 190, "properties": { "CASE_ENQUIRY_ID": 101001109610.0, "OPEN_DT": "06\/16\/2014 01:52:23 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Greenough Ave & Greenough Park Jamaica Plain MA", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1906, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Greenough Ave & Greenough Park", "LOCATION_ZIPCODE": null, "LATITUDE": 42.28862, "LONGITUDE": -71.05341, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.05341, 42.28862 ] } } | |
, | |
{ "type": "Feature", "id": 191, "properties": { "CASE_ENQUIRY_ID": 101001007320.0, "OPEN_DT": "01\/17\/2014 07:00:02 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "120-0 Byron St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "01", "precinct": 111, "land_usage": "", "LOCATION_STREET_NAME": "120-0 Byron St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38387, "LONGITUDE": -71.016271, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.016271, 42.38387 ] } } | |
, | |
{ "type": "Feature", "id": 192, "properties": { "CASE_ENQUIRY_ID": 101001120948.0, "OPEN_DT": "07\/03\/2014 08:21:56 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "47 Savin Hill Ave Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1506, "land_usage": "R3", "LOCATION_STREET_NAME": "47 Savin Hill Ave", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31274, "LONGITUDE": -71.05656, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05656, 42.31274 ] } } | |
, | |
{ "type": "Feature", "id": 193, "properties": { "CASE_ENQUIRY_ID": 101000907761.0, "OPEN_DT": "08\/21\/2013 07:57:24 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "439 Shawmut Ave Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 9", "precinct": 901, "land_usage": "CM", "LOCATION_STREET_NAME": "439 Shawmut Ave", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.33966, "LONGITUDE": -71.07483, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07483, 42.33966 ] } } | |
, | |
{ "type": "Feature", "id": 194, "properties": { "CASE_ENQUIRY_ID": 101001090318.0, "OPEN_DT": "05\/15\/2014 01:20:01 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "25 Breed St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "CM", "LOCATION_STREET_NAME": "25 Breed St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38802, "LONGITUDE": -71.00631, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.00631, 42.38802 ] } } | |
, | |
{ "type": "Feature", "id": 195, "properties": { "CASE_ENQUIRY_ID": 101001115513.0, "OPEN_DT": "06\/25\/2014 08:21:05 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 196, "properties": { "CASE_ENQUIRY_ID": 101000989133.0, "OPEN_DT": "12\/20\/2013 01:15:14 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "36 Gordon St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "R2", "LOCATION_STREET_NAME": "36 Gordon St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35211, "LONGITUDE": -71.13994, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13994, 42.35211 ] } } | |
, | |
{ "type": "Feature", "id": 197, "properties": { "CASE_ENQUIRY_ID": 101001080559.0, "OPEN_DT": "05\/02\/2014 03:29:05 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Park St & Waldeck St Dorchester MA", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1703, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Park St & Waldeck St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.27246, "LONGITUDE": -71.16457, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16457, 42.27246 ] } } | |
, | |
{ "type": "Feature", "id": 198, "properties": { "CASE_ENQUIRY_ID": 101000914034.0, "OPEN_DT": "08\/30\/2013 08:21:30 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "66 Greenwich St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1506, "land_usage": "R3", "LOCATION_STREET_NAME": "66 Greenwich St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30444, "LONGITUDE": -71.05639, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05639, 42.30444 ] } } | |
, | |
{ "type": "Feature", "id": 199, "properties": { "CASE_ENQUIRY_ID": 101001127747.0, "OPEN_DT": "07\/14\/2014 07:36:10 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "3 Trent St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "RL", "LOCATION_STREET_NAME": "3 Trent St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.309239, "LONGITUDE": -71.065412, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.065412, 42.309239 ] } } | |
, | |
{ "type": "Feature", "id": 200, "properties": { "CASE_ENQUIRY_ID": 101000877823.0, "OPEN_DT": "07\/11\/2013 08:14:08 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1650 VFW Pkwy West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2016, "land_usage": "C", "LOCATION_STREET_NAME": "1650 VFW Pkwy", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.264402, "LONGITUDE": -71.16782, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16782, 42.264402 ] } } | |
, | |
{ "type": "Feature", "id": 201, "properties": { "CASE_ENQUIRY_ID": 101001119937.0, "OPEN_DT": "07\/02\/2014 07:14:23 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "19 Branch St Boston MA 02108", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 503, "land_usage": "R2", "LOCATION_STREET_NAME": "19 Branch St", "LOCATION_ZIPCODE": 2108, "LATITUDE": 42.35683, "LONGITUDE": -71.06868, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.06868, 42.35683 ] } } | |
, | |
{ "type": "Feature", "id": 202, "properties": { "CASE_ENQUIRY_ID": 101001123006.0, "OPEN_DT": "07\/07\/2014 03:18:09 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "231-233 Amory St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1106, "land_usage": "R2", "LOCATION_STREET_NAME": "231-233 Amory St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31616, "LONGITUDE": -71.10375, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10375, 42.31616 ] } } | |
, | |
{ "type": "Feature", "id": 203, "properties": { "CASE_ENQUIRY_ID": 101000882280.0, "OPEN_DT": "07\/18\/2013 12:44:14 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed VIOCOR: Violation Corrected", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "919 Beacon St Boston MA 02215", "fire_district": null, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 21", "precinct": 2101, "land_usage": "CM", "LOCATION_STREET_NAME": "919 Beacon St", "LOCATION_ZIPCODE": 2215, "LATITUDE": 42.34596, "LONGITUDE": -71.10626, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.10626, 42.34596 ] } } | |
, | |
{ "type": "Feature", "id": 204, "properties": { "CASE_ENQUIRY_ID": 101001123657.0, "OPEN_DT": "07\/08\/2014 10:36:47 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "235-237 Amory St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1106, "land_usage": "R2", "LOCATION_STREET_NAME": "235-237 Amory St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31605, "LONGITUDE": -71.10385, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10385, 42.31605 ] } } | |
, | |
{ "type": "Feature", "id": 205, "properties": { "CASE_ENQUIRY_ID": 101000950835.0, "OPEN_DT": "10\/21\/2013 08:15:38 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1522 VFW Pkwy West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2016, "land_usage": "CD", "LOCATION_STREET_NAME": "1522 VFW Pkwy", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.268512, "LONGITUDE": -71.170859, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.170859, 42.268512 ] } } | |
, | |
{ "type": "Feature", "id": 206, "properties": { "CASE_ENQUIRY_ID": 101001093354.0, "OPEN_DT": "05\/20\/2014 09:15:04 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "51-53 Woodcliff St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 13", "precinct": 1301, "land_usage": "RL", "LOCATION_STREET_NAME": "51-53 Woodcliff St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.315615, "LONGITUDE": -71.075929, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.075929, 42.315615 ] } } | |
, | |
{ "type": "Feature", "id": 207, "properties": { "CASE_ENQUIRY_ID": 101001061690.0, "OPEN_DT": "04\/05\/2014 05:17:22 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1-4 Saint George St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "08", "precinct": 802, "land_usage": "", "LOCATION_STREET_NAME": "1-4 Saint George St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.338562, "LONGITUDE": -71.071563, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.071563, 42.338562 ] } } | |
, | |
{ "type": "Feature", "id": 208, "properties": { "CASE_ENQUIRY_ID": 101000927168.0, "OPEN_DT": "09\/14\/2013 01:29:19 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "44 Boylston St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1901, "land_usage": "R3", "LOCATION_STREET_NAME": "44 Boylston St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.3181, "LONGITUDE": -71.1082, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.1082, 42.3181 ] } } | |
, | |
{ "type": "Feature", "id": 209, "properties": { "CASE_ENQUIRY_ID": 101001101289.0, "OPEN_DT": "06\/02\/2014 07:43:07 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "43 Jones Ave Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1413, "land_usage": "RL", "LOCATION_STREET_NAME": "43 Jones Ave", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.286457, "LONGITUDE": -71.083668, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.083668, 42.286457 ] } } | |
, | |
{ "type": "Feature", "id": 210, "properties": { "CASE_ENQUIRY_ID": 101001119388.0, "OPEN_DT": "07\/01\/2014 11:15:18 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Blakemore St & Hyde Park Ave Roslindale MA", "fire_district": 12, "pwd_district": "02", "city_council_district": 5, "police_district": "E18", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 18", "precinct": 1807, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Blakemore St & Hyde Park Ave", "LOCATION_ZIPCODE": null, "LATITUDE": 42.28283, "LONGITUDE": -71.13091, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13091, 42.28283 ] } } | |
, | |
{ "type": "Feature", "id": 211, "properties": { "CASE_ENQUIRY_ID": 101001117088.0, "OPEN_DT": "06\/27\/2014 07:23:39 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "79-81 Richfield St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1502, "land_usage": "R3", "LOCATION_STREET_NAME": "79-81 Richfield St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30565, "LONGITUDE": -71.07017, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07017, 42.30565 ] } } | |
, | |
{ "type": "Feature", "id": 212, "properties": { "CASE_ENQUIRY_ID": 101000864117.0, "OPEN_DT": "06\/20\/2013 01:54:49 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 213, "properties": { "CASE_ENQUIRY_ID": 101000923977.0, "OPEN_DT": "09\/11\/2013 10:45:00 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "85 Hamilton St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1502, "land_usage": "R3", "LOCATION_STREET_NAME": "85 Hamilton St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.30766, "LONGITUDE": -71.06926, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06926, 42.30766 ] } } | |
, | |
{ "type": "Feature", "id": 214, "properties": { "CASE_ENQUIRY_ID": 101001024863.0, "OPEN_DT": "02\/12\/2014 12:38:29 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "36-38 Harrison Ave Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "36-38 Harrison Ave", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35177, "LONGITUDE": -71.061, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.061, 42.35177 ] } } | |
, | |
{ "type": "Feature", "id": 215, "properties": { "CASE_ENQUIRY_ID": 101001105294.0, "OPEN_DT": "06\/08\/2014 05:32:08 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 216, "properties": { "CASE_ENQUIRY_ID": 101000879520.0, "OPEN_DT": "07\/15\/2013 11:34:50 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1650 VFW Pkwy West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2016, "land_usage": "C", "LOCATION_STREET_NAME": "1650 VFW Pkwy", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.264402, "LONGITUDE": -71.16782, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16782, 42.264402 ] } } | |
, | |
{ "type": "Feature", "id": 217, "properties": { "CASE_ENQUIRY_ID": 101001051627.0, "OPEN_DT": "03\/21\/2014 10:36:17 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Concord Sq Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 7, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 404, "land_usage": "CM", "LOCATION_STREET_NAME": "4 Concord Sq", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34076, "LONGITUDE": -71.07859, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07859, 42.34076 ] } } | |
, | |
{ "type": "Feature", "id": 218, "properties": { "CASE_ENQUIRY_ID": 101001097858.0, "OPEN_DT": "05\/27\/2014 10:52:52 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "455 Massachusetts Ave Roxbury MA 02118", "fire_district": 9, "pwd_district": "10B", "city_council_district": 7, "police_district": "D4", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 9", "precinct": 903, "land_usage": "CM", "LOCATION_STREET_NAME": "455 Massachusetts Ave", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34013, "LONGITUDE": -71.08156, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08156, 42.34013 ] } } | |
, | |
{ "type": "Feature", "id": 219, "properties": { "CASE_ENQUIRY_ID": 101001124062.0, "OPEN_DT": "07\/08\/2014 02:36:09 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "761-765 Morton St Mattapan MA 02126", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1405, "land_usage": "C", "LOCATION_STREET_NAME": "761-765 Morton St", "LOCATION_ZIPCODE": 2126, "LATITUDE": 42.283478, "LONGITUDE": -71.089409, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.089409, 42.283478 ] } } | |
, | |
{ "type": "Feature", "id": 220, "properties": { "CASE_ENQUIRY_ID": 101001025529.0, "OPEN_DT": "02\/13\/2014 01:05:12 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "7 Oxford Pl Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "R4", "LOCATION_STREET_NAME": "7 Oxford Pl", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.351847, "LONGITUDE": -71.060822, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.060822, 42.351847 ] } } | |
, | |
{ "type": "Feature", "id": 221, "properties": { "CASE_ENQUIRY_ID": 101001105964.0, "OPEN_DT": "06\/09\/2014 02:35:07 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "47 Strathmore Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2114, "land_usage": "R3", "LOCATION_STREET_NAME": "47 Strathmore Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.33775, "LONGITUDE": -71.14717, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14717, 42.33775 ] } } | |
, | |
{ "type": "Feature", "id": 222, "properties": { "CASE_ENQUIRY_ID": 101001024857.0, "OPEN_DT": "02\/12\/2014 12:33:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "28 Harrison Ave Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "28 Harrison Ave", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.351964, "LONGITUDE": -71.06103, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06103, 42.351964 ] } } | |
, | |
{ "type": "Feature", "id": 223, "properties": { "CASE_ENQUIRY_ID": 101000919994.0, "OPEN_DT": "09\/06\/2013 08:41:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "27 Thornley St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1309, "land_usage": "R2", "LOCATION_STREET_NAME": "27 Thornley St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31445, "LONGITUDE": -71.05918, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05918, 42.31445 ] } } | |
, | |
{ "type": "Feature", "id": 224, "properties": { "CASE_ENQUIRY_ID": 101001051893.0, "OPEN_DT": "03\/21\/2014 02:32:53 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "41 Orkney Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2114, "land_usage": "R3", "LOCATION_STREET_NAME": "41 Orkney Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.33705, "LONGITUDE": -71.14966, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14966, 42.33705 ] } } | |
, | |
{ "type": "Feature", "id": 225, "properties": { "CASE_ENQUIRY_ID": 101001099571.0, "OPEN_DT": "05\/29\/2014 11:06:02 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "66 Phillips St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "R3", "LOCATION_STREET_NAME": "66 Phillips St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.36018, "LONGITUDE": -71.06904, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06904, 42.36018 ] } } | |
, | |
{ "type": "Feature", "id": 226, "properties": { "CASE_ENQUIRY_ID": 101000952618.0, "OPEN_DT": "10\/23\/2013 01:13:39 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "79 Brayton Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2204, "land_usage": "R2", "LOCATION_STREET_NAME": "79 Brayton Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.349017, "LONGITUDE": -71.170317, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.170317, 42.349017 ] } } | |
, | |
{ "type": "Feature", "id": 227, "properties": { "CASE_ENQUIRY_ID": 101001124034.0, "OPEN_DT": "07\/08\/2014 02:18:26 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "61 Beach St Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "61 Beach St", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35115, "LONGITUDE": -71.06025, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06025, 42.35115 ] } } | |
, | |
{ "type": "Feature", "id": 228, "properties": { "CASE_ENQUIRY_ID": 101001106442.0, "OPEN_DT": "06\/10\/2014 10:41:29 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "26 School St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 7, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1105, "land_usage": "R4", "LOCATION_STREET_NAME": "26 School St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31297, "LONGITUDE": -71.09732, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.09732, 42.31297 ] } } | |
, | |
{ "type": "Feature", "id": 229, "properties": { "CASE_ENQUIRY_ID": 101001077579.0, "OPEN_DT": "04\/29\/2014 09:00:25 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Lorne St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1409, "land_usage": "A", "LOCATION_STREET_NAME": "4 Lorne St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.29314, "LONGITUDE": -71.08993, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08993, 42.29314 ] } } | |
, | |
{ "type": "Feature", "id": 230, "properties": { "CASE_ENQUIRY_ID": 101000920447.0, "OPEN_DT": "09\/06\/2013 02:27:41 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed NOVIO: No Violation Found\/No Cause", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "180 Leyden St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "R2", "LOCATION_STREET_NAME": "180 Leyden St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38886, "LONGITUDE": -71.00463, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.00463, 42.38886 ] } } | |
, | |
{ "type": "Feature", "id": 231, "properties": { "CASE_ENQUIRY_ID": 101001120049.0, "OPEN_DT": "07\/02\/2014 08:23:03 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "817 South St Roslindale MA 02131", "fire_district": 9, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2004, "land_usage": "R1", "LOCATION_STREET_NAME": "817 South St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.28822, "LONGITUDE": -71.13101, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.13101, 42.28822 ] } } | |
, | |
{ "type": "Feature", "id": 232, "properties": { "CASE_ENQUIRY_ID": 101001117132.0, "OPEN_DT": "06\/27\/2014 08:34:03 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "24 Heath St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "10A", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 10", "precinct": 1007, "land_usage": "E", "LOCATION_STREET_NAME": "24 Heath St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.32486, "LONGITUDE": -71.09944, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.09944, 42.32486 ] } } | |
, | |
{ "type": "Feature", "id": 233, "properties": { "CASE_ENQUIRY_ID": 101001034566.0, "OPEN_DT": "02\/24\/2014 07:24:21 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "487-489 Ashmont St Dorchester MA 02122", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1609, "land_usage": "R2", "LOCATION_STREET_NAME": "487-489 Ashmont St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.28868, "LONGITUDE": -71.05322, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05322, 42.28868 ] } } | |
, | |
{ "type": "Feature", "id": 234, "properties": { "CASE_ENQUIRY_ID": 101001099032.0, "OPEN_DT": "05\/28\/2014 02:21:18 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "145 Lexington St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 109, "land_usage": "R4", "LOCATION_STREET_NAME": "145 Lexington St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.37871, "LONGITUDE": -71.03439, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.03439, 42.37871 ] } } | |
, | |
{ "type": "Feature", "id": 235, "properties": { "CASE_ENQUIRY_ID": 101001100677.0, "OPEN_DT": "05\/30\/2014 05:56:28 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "46 Gardner St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R3", "LOCATION_STREET_NAME": "46 Gardner St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35382, "LONGITUDE": -71.12912, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.12912, 42.35382 ] } } | |
, | |
{ "type": "Feature", "id": 236, "properties": { "CASE_ENQUIRY_ID": 101001116968.0, "OPEN_DT": "06\/26\/2014 05:12:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "576-578 Blue Hill Ave Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1403, "land_usage": "R4", "LOCATION_STREET_NAME": "576-578 Blue Hill Ave", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30446, "LONGITUDE": -71.08445, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08445, 42.30446 ] } } | |
, | |
{ "type": "Feature", "id": 237, "properties": { "CASE_ENQUIRY_ID": 101001134043.0, "OPEN_DT": "07\/21\/2014 09:42:17 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of E Fourth St & Pacific St South Boston MA", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 6", "precinct": 604, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION E Fourth St & Pacific St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.299671, "LONGITUDE": -71.074977, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.074977, 42.299671 ] } } | |
, | |
{ "type": "Feature", "id": 238, "properties": { "CASE_ENQUIRY_ID": 101001133350.0, "OPEN_DT": "07\/21\/2014 10:10:35 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "192 Boston St Dorchester MA 02125", "fire_district": 6, "pwd_district": "03", "city_council_district": 2, "police_district": "C6", "neighborhood": "Dorchester", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 709, "land_usage": "R3", "LOCATION_STREET_NAME": "192 Boston St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.32316, "LONGITUDE": -71.06028, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06028, 42.32316 ] } } | |
, | |
{ "type": "Feature", "id": 239, "properties": { "CASE_ENQUIRY_ID": 101000875524.0, "OPEN_DT": "07\/09\/2013 09:36:28 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "256 Commonwealth Ave Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 508, "land_usage": "CM", "LOCATION_STREET_NAME": "256 Commonwealth Ave", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.35011, "LONGITUDE": -71.08314, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08314, 42.35011 ] } } | |
, | |
{ "type": "Feature", "id": 240, "properties": { "CASE_ENQUIRY_ID": 101001120062.0, "OPEN_DT": "07\/02\/2014 08:34:23 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "6 Dwight St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 307, "land_usage": "R4", "LOCATION_STREET_NAME": "6 Dwight St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34391, "LONGITUDE": -71.06815, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06815, 42.34391 ] } } | |
, | |
{ "type": "Feature", "id": 241, "properties": { "CASE_ENQUIRY_ID": 101001079085.0, "OPEN_DT": "05\/01\/2014 07:33:43 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Radnor Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2209, "land_usage": "R2", "LOCATION_STREET_NAME": "9 Radnor Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.34049, "LONGITUDE": -71.15874, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15874, 42.34049 ] } } | |
, | |
{ "type": "Feature", "id": 242, "properties": { "CASE_ENQUIRY_ID": 101000865233.0, "OPEN_DT": "06\/22\/2013 11:59:23 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "60 Manthorne Rd West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2018, "land_usage": "R1", "LOCATION_STREET_NAME": "60 Manthorne Rd", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.28916, "LONGITUDE": -71.15157, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15157, 42.28916 ] } } | |
, | |
{ "type": "Feature", "id": 243, "properties": { "CASE_ENQUIRY_ID": 101001024873.0, "OPEN_DT": "02\/12\/2014 12:43:12 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Oxford Pl Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "R4", "LOCATION_STREET_NAME": "4 Oxford Pl", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35199, "LONGITUDE": -71.06087, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06087, 42.35199 ] } } | |
, | |
{ "type": "Feature", "id": 244, "properties": { "CASE_ENQUIRY_ID": 101001122589.0, "OPEN_DT": "07\/07\/2014 10:34:00 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "234 Monsignor Dennis F O'Callaghan Way South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "07", "precinct": 707, "land_usage": "E", "LOCATION_STREET_NAME": "234 Monsignor Dennis F O'Callaghan Way", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.32754, "LONGITUDE": -71.05559, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05559, 42.32754 ] } } | |
, | |
{ "type": "Feature", "id": 245, "properties": { "CASE_ENQUIRY_ID": 101001075590.0, "OPEN_DT": "04\/25\/2014 01:22:17 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "435 Walnut Ave Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 7, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1105, "land_usage": "A", "LOCATION_STREET_NAME": "435 Walnut Ave", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31238, "LONGITUDE": -71.09713, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.09713, 42.31238 ] } } | |
, | |
{ "type": "Feature", "id": 246, "properties": { "CASE_ENQUIRY_ID": 101001096022.0, "OPEN_DT": "05\/23\/2014 08:11:31 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "3 Forbes St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1901, "land_usage": "R4", "LOCATION_STREET_NAME": "3 Forbes St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.32203, "LONGITUDE": -71.10842, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.10842, 42.32203 ] } } | |
, | |
{ "type": "Feature", "id": 247, "properties": { "CASE_ENQUIRY_ID": 101001095641.0, "OPEN_DT": "05\/22\/2014 01:56:50 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "755 Bennington St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 112, "land_usage": "R2", "LOCATION_STREET_NAME": "755 Bennington St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38498, "LONGITUDE": -71.01103, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01103, 42.38498 ] } } | |
, | |
{ "type": "Feature", "id": 248, "properties": { "CASE_ENQUIRY_ID": 101001083455.0, "OPEN_DT": "05\/07\/2014 08:03:52 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Antrim St & Ashley St East Boston MA", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Antrim St & Ashley St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.271326, "LONGITUDE": -71.069437, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.069437, 42.271326 ] } } | |
, | |
{ "type": "Feature", "id": 249, "properties": { "CASE_ENQUIRY_ID": 101001125864.0, "OPEN_DT": "07\/10\/2014 12:27:58 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1-4 Saint George St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "08", "precinct": 802, "land_usage": "", "LOCATION_STREET_NAME": "1-4 Saint George St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.338562, "LONGITUDE": -71.071563, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.071563, 42.338562 ] } } | |
, | |
{ "type": "Feature", "id": 250, "properties": { "CASE_ENQUIRY_ID": 101001122391.0, "OPEN_DT": "07\/07\/2014 08:30:09 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "109-153 Lincoln St Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "C", "LOCATION_STREET_NAME": "109-153 Lincoln St", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35154, "LONGITUDE": -71.05857, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05857, 42.35154 ] } } | |
, | |
{ "type": "Feature", "id": 251, "properties": { "CASE_ENQUIRY_ID": 101001065774.0, "OPEN_DT": "04\/11\/2014 07:05:11 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "120 Ardale St Roslindale MA 02131", "fire_district": 9, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2001, "land_usage": "R1", "LOCATION_STREET_NAME": "120 Ardale St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.29313, "LONGITUDE": -71.13723, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13723, 42.29313 ] } } | |
, | |
{ "type": "Feature", "id": 252, "properties": { "CASE_ENQUIRY_ID": 101001124042.0, "OPEN_DT": "07\/08\/2014 02:22:22 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 253, "properties": { "CASE_ENQUIRY_ID": 101001105946.0, "OPEN_DT": "06\/09\/2014 02:22:05 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "45 Englewood Ave Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2114, "land_usage": "R4", "LOCATION_STREET_NAME": "45 Englewood Ave", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.33825, "LONGITUDE": -71.14703, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14703, 42.33825 ] } } | |
, | |
{ "type": "Feature", "id": 254, "properties": { "CASE_ENQUIRY_ID": 101000900410.0, "OPEN_DT": "08\/13\/2013 10:38:11 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "20 Rustic Rd West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2014, "land_usage": "R1", "LOCATION_STREET_NAME": "20 Rustic Rd", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.27773, "LONGITUDE": -71.15079, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.15079, 42.27773 ] } } | |
, | |
{ "type": "Feature", "id": 255, "properties": { "CASE_ENQUIRY_ID": 101001101768.0, "OPEN_DT": "06\/02\/2014 01:24:29 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "15 Lindall Pl Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 504, "land_usage": "R1", "LOCATION_STREET_NAME": "15 Lindall Pl", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.36047, "LONGITUDE": -71.0694, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0694, 42.36047 ] } } | |
, | |
{ "type": "Feature", "id": 256, "properties": { "CASE_ENQUIRY_ID": 101001025532.0, "OPEN_DT": "02\/13\/2014 01:09:22 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "10 Oxford Pl Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "R4", "LOCATION_STREET_NAME": "10 Oxford Pl", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35171, "LONGITUDE": -71.06078, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06078, 42.35171 ] } } | |
, | |
{ "type": "Feature", "id": 257, "properties": { "CASE_ENQUIRY_ID": 101001011357.0, "OPEN_DT": "01\/24\/2014 07:11:29 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "667 Tremont St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 403, "land_usage": "RC", "LOCATION_STREET_NAME": "667 Tremont St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34192, "LONGITUDE": -71.07594, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07594, 42.34192 ] } } | |
, | |
{ "type": "Feature", "id": 258, "properties": { "CASE_ENQUIRY_ID": 101000945074.0, "OPEN_DT": "10\/11\/2013 09:43:14 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "19 Dakota St Dorchester MA 02124", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1701, "land_usage": "R3", "LOCATION_STREET_NAME": "19 Dakota St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.29864, "LONGITUDE": -71.07187, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07187, 42.29864 ] } } | |
, | |
{ "type": "Feature", "id": 259, "properties": { "CASE_ENQUIRY_ID": 101001099132.0, "OPEN_DT": "05\/28\/2014 03:27:12 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Charles St Boston MA 02108", "fire_district": 3, "pwd_district": "1C", "city_council_district": 8, "police_district": "A1", "neighborhood": "Boston", "neighborhood_services_district": 14, "ward": "5", "precinct": 503, "land_usage": "", "LOCATION_STREET_NAME": "4 Charles St", "LOCATION_ZIPCODE": 2108, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 260, "properties": { "CASE_ENQUIRY_ID": 101001090248.0, "OPEN_DT": "05\/15\/2014 12:43:36 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5 Coleman St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "5 Coleman St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.30917, "LONGITUDE": -71.0652, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0652, 42.30917 ] } } | |
, | |
{ "type": "Feature", "id": 261, "properties": { "CASE_ENQUIRY_ID": 101001110749.0, "OPEN_DT": "06\/18\/2014 08:32:44 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "6 Columbia Rd Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1403, "land_usage": "RC", "LOCATION_STREET_NAME": "6 Columbia Rd", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.303743, "LONGITUDE": -71.08471, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08471, 42.303743 ] } } | |
, | |
{ "type": "Feature", "id": 262, "properties": { "CASE_ENQUIRY_ID": 101001129600.0, "OPEN_DT": "07\/15\/2014 05:27:50 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "94 Horace St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "E", "LOCATION_STREET_NAME": "94 Horace St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38287, "LONGITUDE": -71.01606, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01606, 42.38287 ] } } | |
, | |
{ "type": "Feature", "id": 263, "properties": { "CASE_ENQUIRY_ID": 101000902154.0, "OPEN_DT": "08\/15\/2013 09:11:46 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Autumn St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2005, "land_usage": "R1", "LOCATION_STREET_NAME": "8 Autumn St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.275956, "LONGITUDE": -71.161077, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.161077, 42.275956 ] } } | |
, | |
{ "type": "Feature", "id": 264, "properties": { "CASE_ENQUIRY_ID": 101001133226.0, "OPEN_DT": "07\/21\/2014 09:01:05 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "568-570 Blue Hill Ave Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1403, "land_usage": "A", "LOCATION_STREET_NAME": "568-570 Blue Hill Ave", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30475, "LONGITUDE": -71.08436, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08436, 42.30475 ] } } | |
, | |
{ "type": "Feature", "id": 265, "properties": { "CASE_ENQUIRY_ID": 101001024879.0, "OPEN_DT": "02\/12\/2014 12:47:59 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "52 Beach St Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "52 Beach St", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35152, "LONGITUDE": -71.06065, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06065, 42.35152 ] } } | |
, | |
{ "type": "Feature", "id": 266, "properties": { "CASE_ENQUIRY_ID": 101001102181.0, "OPEN_DT": "06\/03\/2014 08:19:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Houghton St Dorchester MA 02122", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1605, "land_usage": "CM", "LOCATION_STREET_NAME": "4 Houghton St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.295904, "LONGITUDE": -71.052934, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.052934, 42.295904 ] } } | |
, | |
{ "type": "Feature", "id": 267, "properties": { "CASE_ENQUIRY_ID": 101001101664.0, "OPEN_DT": "06\/02\/2014 11:56:26 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "59 Westland Ave Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 407, "land_usage": "RC", "LOCATION_STREET_NAME": "59 Westland Ave", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34394, "LONGITUDE": -71.08831, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08831, 42.34394 ] } } | |
, | |
{ "type": "Feature", "id": 268, "properties": { "CASE_ENQUIRY_ID": 101001066864.0, "OPEN_DT": "04\/13\/2014 06:08:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "690 Dorchester Ave South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 707, "land_usage": "CM", "LOCATION_STREET_NAME": "690 Dorchester Ave", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.32665, "LONGITUDE": -71.05667, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05667, 42.32665 ] } } | |
, | |
{ "type": "Feature", "id": 269, "properties": { "CASE_ENQUIRY_ID": 101000991212.0, "OPEN_DT": "12\/26\/2013 08:35:56 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "665-665A Tremont St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 403, "land_usage": "RC", "LOCATION_STREET_NAME": "665-665A Tremont St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34195, "LONGITUDE": -71.07587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07587, 42.34195 ] } } | |
, | |
{ "type": "Feature", "id": 270, "properties": { "CASE_ENQUIRY_ID": 101000948061.0, "OPEN_DT": "10\/17\/2013 10:02:58 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "44 Zeller St Roslindale MA 02131", "fire_district": 9, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2001, "land_usage": "R1", "LOCATION_STREET_NAME": "44 Zeller St", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.29207, "LONGITUDE": -71.13698, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13698, 42.29207 ] } } | |
, | |
{ "type": "Feature", "id": 271, "properties": { "CASE_ENQUIRY_ID": 101001116677.0, "OPEN_DT": "06\/26\/2014 11:35:00 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "25 Abbot St Dorchester MA 02124", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1409, "land_usage": "R2", "LOCATION_STREET_NAME": "25 Abbot St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.29647, "LONGITUDE": -71.08595, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08595, 42.29647 ] } } | |
, | |
{ "type": "Feature", "id": 272, "properties": { "CASE_ENQUIRY_ID": 101001099134.0, "OPEN_DT": "05\/28\/2014 03:28:07 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Bailey St & Dorchester Ave Dorchester MA", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1608, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Bailey St & Dorchester Ave", "LOCATION_ZIPCODE": null, "LATITUDE": 42.28717, "LONGITUDE": -71.05484, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05484, 42.28717 ] } } | |
, | |
{ "type": "Feature", "id": 273, "properties": { "CASE_ENQUIRY_ID": 101000956076.0, "OPEN_DT": "10\/29\/2013 10:13:09 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "10 Hendry St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "10 Hendry St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.30897, "LONGITUDE": -71.06486, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06486, 42.30897 ] } } | |
, | |
{ "type": "Feature", "id": 274, "properties": { "CASE_ENQUIRY_ID": 101001117085.0, "OPEN_DT": "06\/27\/2014 07:16:34 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Coleman St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "8 Coleman St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.30887, "LONGITUDE": -71.06513, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06513, 42.30887 ] } } | |
, | |
{ "type": "Feature", "id": 275, "properties": { "CASE_ENQUIRY_ID": 101001119484.0, "OPEN_DT": "07\/01\/2014 12:23:37 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "143 Intervale St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1401, "land_usage": "R3", "LOCATION_STREET_NAME": "143 Intervale St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30953, "LONGITUDE": -71.07524, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07524, 42.30953 ] } } | |
, | |
{ "type": "Feature", "id": 276, "properties": { "CASE_ENQUIRY_ID": 101000986568.0, "OPEN_DT": "12\/18\/2013 08:51:33 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "116-118 Whitfield St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Dorchester", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1703, "land_usage": "A", "LOCATION_STREET_NAME": "116-118 Whitfield St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.29344, "LONGITUDE": -71.07528, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07528, 42.29344 ] } } | |
, | |
{ "type": "Feature", "id": 277, "properties": { "CASE_ENQUIRY_ID": 101001109412.0, "OPEN_DT": "06\/16\/2014 11:03:03 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "366 Centre St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1901, "land_usage": "RC", "LOCATION_STREET_NAME": "366 Centre St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.32217, "LONGITUDE": -71.10859, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10859, 42.32217 ] } } | |
, | |
{ "type": "Feature", "id": 278, "properties": { "CASE_ENQUIRY_ID": 101001130991.0, "OPEN_DT": "07\/17\/2014 10:28:02 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "178 W Seventh St South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 6", "precinct": 603, "land_usage": "R3", "LOCATION_STREET_NAME": "178 W Seventh St", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.33471, "LONGITUDE": -71.05118, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05118, 42.33471 ] } } | |
, | |
{ "type": "Feature", "id": 279, "properties": { "CASE_ENQUIRY_ID": 101001133992.0, "OPEN_DT": "07\/21\/2014 07:04:41 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1-3 Imrie Rd Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "R3", "LOCATION_STREET_NAME": "1-3 Imrie Rd", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.3526, "LONGITUDE": -71.13862, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.13862, 42.3526 ] } } | |
, | |
{ "type": "Feature", "id": 280, "properties": { "CASE_ENQUIRY_ID": 101000872356.0, "OPEN_DT": "07\/03\/2013 09:03:16 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5 Symphony Rd Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 8, "police_district": "D4", "neighborhood": "Fenway \/ Kenmore \/ Audubon Circle \/ Longwood", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 407, "land_usage": "R4", "LOCATION_STREET_NAME": "5 Symphony Rd", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34288, "LONGITUDE": -71.08694, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08694, 42.34288 ] } } | |
, | |
{ "type": "Feature", "id": 281, "properties": { "CASE_ENQUIRY_ID": 101001099172.0, "OPEN_DT": "05\/28\/2014 03:56:07 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "318 Princeton St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 109, "land_usage": "R3", "LOCATION_STREET_NAME": "318 Princeton St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38051, "LONGITUDE": -71.02837, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.02837, 42.38051 ] } } | |
, | |
{ "type": "Feature", "id": 282, "properties": { "CASE_ENQUIRY_ID": 101001087173.0, "OPEN_DT": "05\/12\/2014 12:08:09 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "248 Neponset Valley Pkwy Hyde Park MA 02136", "fire_district": 12, "pwd_district": "08", "city_council_district": 5, "police_district": "E18", "neighborhood": "Hyde Park", "neighborhood_services_district": 10, "ward": "Ward 18", "precinct": 1820, "land_usage": "R1", "LOCATION_STREET_NAME": "248 Neponset Valley Pkwy", "LOCATION_ZIPCODE": 2136, "LATITUDE": 42.23639, "LONGITUDE": -71.12826, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12826, 42.23639 ] } } | |
, | |
{ "type": "Feature", "id": 283, "properties": { "CASE_ENQUIRY_ID": 101001075397.0, "OPEN_DT": "04\/25\/2014 10:40:37 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "844 Dorchester Ave Dorchester MA 02125", "fire_district": 6, "pwd_district": "03", "city_council_district": 2, "police_district": "C6", "neighborhood": "Dorchester", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 708, "land_usage": "R3", "LOCATION_STREET_NAME": "844 Dorchester Ave", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.32202, "LONGITUDE": -71.05659, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05659, 42.32202 ] } } | |
, | |
{ "type": "Feature", "id": 284, "properties": { "CASE_ENQUIRY_ID": 101001131647.0, "OPEN_DT": "07\/18\/2014 07:34:12 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "54 Granger St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1506, "land_usage": "R3", "LOCATION_STREET_NAME": "54 Granger St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30265, "LONGITUDE": -71.05749, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05749, 42.30265 ] } } | |
, | |
{ "type": "Feature", "id": 285, "properties": { "CASE_ENQUIRY_ID": 101001129354.0, "OPEN_DT": "07\/15\/2014 01:19:44 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "470-472 Warren St Dorchester MA 02121", "fire_district": 9, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 12", "precinct": 1206, "land_usage": "R3", "LOCATION_STREET_NAME": "470-472 Warren St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.315032, "LONGITUDE": -71.083189, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.083189, 42.315032 ] } } | |
, | |
{ "type": "Feature", "id": 286, "properties": { "CASE_ENQUIRY_ID": 101001025533.0, "OPEN_DT": "02\/13\/2014 01:10:33 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "11 Oxford Pl Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "R3", "LOCATION_STREET_NAME": "11 Oxford Pl", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35166, "LONGITUDE": -71.06076, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06076, 42.35166 ] } } | |
, | |
{ "type": "Feature", "id": 287, "properties": { "CASE_ENQUIRY_ID": 101001112608.0, "OPEN_DT": "06\/20\/2014 12:47:57 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "120 Huntington Ave Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 6, "ward": "04", "precinct": 402, "land_usage": "", "LOCATION_STREET_NAME": "120 Huntington Ave", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 288, "properties": { "CASE_ENQUIRY_ID": 101001103599.0, "OPEN_DT": "06\/05\/2014 07:27:23 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "348 Bowdoin St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "CM", "LOCATION_STREET_NAME": "348 Bowdoin St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.30877, "LONGITUDE": -71.06467, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06467, 42.30877 ] } } | |
, | |
{ "type": "Feature", "id": 289, "properties": { "CASE_ENQUIRY_ID": 101001090189.0, "OPEN_DT": "05\/15\/2014 11:37:16 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "43 Boulevard Ter Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2109, "land_usage": "R3", "LOCATION_STREET_NAME": "43 Boulevard Ter", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.34749, "LONGITUDE": -71.14006, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14006, 42.34749 ] } } | |
, | |
{ "type": "Feature", "id": 290, "properties": { "CASE_ENQUIRY_ID": 101001082076.0, "OPEN_DT": "05\/05\/2014 01:35:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "53 Copeland St Roxbury MA 02119", "fire_district": 7, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 12", "precinct": 1204, "land_usage": "R3", "LOCATION_STREET_NAME": "53 Copeland St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.32271, "LONGITUDE": -71.07967, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07967, 42.32271 ] } } | |
, | |
{ "type": "Feature", "id": 291, "properties": { "CASE_ENQUIRY_ID": 101000950834.0, "OPEN_DT": "10\/21\/2013 08:12:10 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "501 Weld St West Roxbury MA 02132", "fire_district": 9, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2019, "land_usage": "R1", "LOCATION_STREET_NAME": "501 Weld St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.29351, "LONGITUDE": -71.15333, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.15333, 42.29351 ] } } | |
, | |
{ "type": "Feature", "id": 292, "properties": { "CASE_ENQUIRY_ID": 101001116571.0, "OPEN_DT": "06\/26\/2014 10:10:18 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "46 Lyon St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1509, "land_usage": "CM", "LOCATION_STREET_NAME": "46 Lyon St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30601, "LONGITUDE": -71.06108, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06108, 42.30601 ] } } | |
, | |
{ "type": "Feature", "id": 293, "properties": { "CASE_ENQUIRY_ID": 101000901844.0, "OPEN_DT": "08\/14\/2013 04:19:12 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Dudley St & North Ave Roxbury MA", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 8", "precinct": 805, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Dudley St & North Ave", "LOCATION_ZIPCODE": null, "LATITUDE": 42.29036, "LONGITUDE": -71.12776, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12776, 42.29036 ] } } | |
, | |
{ "type": "Feature", "id": 294, "properties": { "CASE_ENQUIRY_ID": 101000953664.0, "OPEN_DT": "10\/24\/2013 06:43:16 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1 Courtney Rd West Roxbury MA 02132", "fire_district": 9, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2019, "land_usage": "R1", "LOCATION_STREET_NAME": "1 Courtney Rd", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.29451, "LONGITUDE": -71.15198, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.15198, 42.29451 ] } } | |
, | |
{ "type": "Feature", "id": 295, "properties": { "CASE_ENQUIRY_ID": 101000999375.0, "OPEN_DT": "01\/06\/2014 05:10:35 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "690 Massachusetts Ave Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 8", "precinct": 802, "land_usage": "CM", "LOCATION_STREET_NAME": "690 Massachusetts Ave", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.33545, "LONGITUDE": -71.07529, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07529, 42.33545 ] } } | |
, | |
{ "type": "Feature", "id": 296, "properties": { "CASE_ENQUIRY_ID": 101001123979.0, "OPEN_DT": "07\/08\/2014 01:51:16 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "72 Kneeland St Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "C", "LOCATION_STREET_NAME": "72 Kneeland St", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35054, "LONGITUDE": -71.06053, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06053, 42.35054 ] } } | |
, | |
{ "type": "Feature", "id": 297, "properties": { "CASE_ENQUIRY_ID": 101001044808.0, "OPEN_DT": "03\/11\/2014 11:19:36 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "13 Kenilworth St Roxbury MA 02119", "fire_district": 7, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 9", "precinct": 905, "land_usage": "R2", "LOCATION_STREET_NAME": "13 Kenilworth St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.32889, "LONGITUDE": -71.08746, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08746, 42.32889 ] } } | |
, | |
{ "type": "Feature", "id": 298, "properties": { "CASE_ENQUIRY_ID": 101001118741.0, "OPEN_DT": "06\/30\/2014 03:08:55 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Coolidge Rd & Haskell St Allston MA", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2201, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Coolidge Rd & Haskell St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.293782, "LONGITUDE": -71.16903, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16903, 42.293782 ] } } | |
, | |
{ "type": "Feature", "id": 299, "properties": { "CASE_ENQUIRY_ID": 101000857929.0, "OPEN_DT": "06\/11\/2013 04:47:54 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "516 Lagrange St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2013, "land_usage": "R1", "LOCATION_STREET_NAME": "516 Lagrange St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.28356, "LONGITUDE": -71.16167, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16167, 42.28356 ] } } | |
, | |
{ "type": "Feature", "id": 300, "properties": { "CASE_ENQUIRY_ID": 101001024861.0, "OPEN_DT": "02\/12\/2014 12:35:08 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 301, "properties": { "CASE_ENQUIRY_ID": 101001024862.0, "OPEN_DT": "02\/12\/2014 12:36:42 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "34 Harrison Ave Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "34 Harrison Ave", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35184, "LONGITUDE": -71.061, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.061, 42.35184 ] } } | |
, | |
{ "type": "Feature", "id": 302, "properties": { "CASE_ENQUIRY_ID": 101000890976.0, "OPEN_DT": "07\/31\/2013 09:38:08 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "202 Baker St West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 12, "ward": "Ward 20", "precinct": 2005, "land_usage": "R4", "LOCATION_STREET_NAME": "202 Baker St", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.27651, "LONGITUDE": -71.16723, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.16723, 42.27651 ] } } | |
, | |
{ "type": "Feature", "id": 303, "properties": { "CASE_ENQUIRY_ID": 101001129552.0, "OPEN_DT": "07\/15\/2014 03:51:08 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "538 Blue Hill Ave Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1403, "land_usage": "C", "LOCATION_STREET_NAME": "538 Blue Hill Ave", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30543, "LONGITUDE": -71.08422, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08422, 42.30543 ] } } | |
, | |
{ "type": "Feature", "id": 304, "properties": { "CASE_ENQUIRY_ID": 101001102077.0, "OPEN_DT": "06\/02\/2014 08:16:57 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Forbes St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "19", "precinct": 1901, "land_usage": "R3", "LOCATION_STREET_NAME": "9 Forbes St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.321968, "LONGITUDE": -71.108137, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.108137, 42.321968 ] } } | |
, | |
{ "type": "Feature", "id": 305, "properties": { "CASE_ENQUIRY_ID": 101001099519.0, "OPEN_DT": "05\/29\/2014 10:19:47 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "104 Pleasant St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "104 Pleasant St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31215, "LONGITUDE": -71.05878, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05878, 42.31215 ] } } | |
, | |
{ "type": "Feature", "id": 306, "properties": { "CASE_ENQUIRY_ID": 101001131727.0, "OPEN_DT": "07\/18\/2014 08:29:37 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "30-108 Westminster Ave Roxbury MA 02119", "fire_district": 9, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "11", "precinct": 1103, "land_usage": "", "LOCATION_STREET_NAME": "30-108 Westminster Ave", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.316189, "LONGITUDE": -71.094062, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.094062, 42.316189 ] } } | |
, | |
{ "type": "Feature", "id": 307, "properties": { "CASE_ENQUIRY_ID": 101001078492.0, "OPEN_DT": "04\/30\/2014 09:45:37 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "85 Brunswick St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1401, "land_usage": "R3", "LOCATION_STREET_NAME": "85 Brunswick St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.31092, "LONGITUDE": -71.08062, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08062, 42.31092 ] } } | |
, | |
{ "type": "Feature", "id": 308, "properties": { "CASE_ENQUIRY_ID": 101001133604.0, "OPEN_DT": "07\/21\/2014 12:49:50 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "404 Marlborough St Boston MA 02115", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 509, "land_usage": "R4", "LOCATION_STREET_NAME": "404 Marlborough St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.35002, "LONGITUDE": -71.08834, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08834, 42.35002 ] } } | |
, | |
{ "type": "Feature", "id": 309, "properties": { "CASE_ENQUIRY_ID": 101001024868.0, "OPEN_DT": "02\/12\/2014 12:40:45 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "36-38 Harrison Ave Boston MA 02111", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 308, "land_usage": "RC", "LOCATION_STREET_NAME": "36-38 Harrison Ave", "LOCATION_ZIPCODE": 2111, "LATITUDE": 42.35177, "LONGITUDE": -71.061, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.061, 42.35177 ] } } | |
, | |
{ "type": "Feature", "id": 310, "properties": { "CASE_ENQUIRY_ID": 101001114596.0, "OPEN_DT": "06\/24\/2014 08:57:11 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "44 Wildwood St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 14", "precinct": 1405, "land_usage": "R2", "LOCATION_STREET_NAME": "44 Wildwood St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.28321, "LONGITUDE": -71.08805, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08805, 42.28321 ] } } | |
, | |
{ "type": "Feature", "id": 311, "properties": { "CASE_ENQUIRY_ID": 101001113728.0, "OPEN_DT": "06\/23\/2014 09:15:37 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "379 River St Mattapan MA 02126", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 18", "precinct": 1804, "land_usage": "R2", "LOCATION_STREET_NAME": "379 River St", "LOCATION_ZIPCODE": 2126, "LATITUDE": 42.27029, "LONGITUDE": -71.08865, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08865, 42.27029 ] } } | |
, | |
{ "type": "Feature", "id": 312, "properties": { "CASE_ENQUIRY_ID": 101001080421.0, "OPEN_DT": "05\/02\/2014 01:30:52 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 313, "properties": { "CASE_ENQUIRY_ID": 101001113256.0, "OPEN_DT": "06\/21\/2014 01:46:27 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "17 Pleasant St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1306, "land_usage": "R3", "LOCATION_STREET_NAME": "17 Pleasant St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31753, "LONGITUDE": -71.05943, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05943, 42.31753 ] } } | |
, | |
{ "type": "Feature", "id": 314, "properties": { "CASE_ENQUIRY_ID": 101000885397.0, "OPEN_DT": "07\/23\/2013 12:07:32 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "171 Trenton St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 109, "land_usage": "R3", "LOCATION_STREET_NAME": "171 Trenton St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38021, "LONGITUDE": -71.03242, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.03242, 42.38021 ] } } | |
, | |
{ "type": "Feature", "id": 315, "properties": { "CASE_ENQUIRY_ID": 101001134974.0, "OPEN_DT": "07\/22\/2014 08:35:29 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "119 W Newton St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 403, "land_usage": "R4", "LOCATION_STREET_NAME": "119 W Newton St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34184, "LONGITUDE": -71.07682, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.07682, 42.34184 ] } } | |
, | |
{ "type": "Feature", "id": 316, "properties": { "CASE_ENQUIRY_ID": 101001134478.0, "OPEN_DT": "07\/22\/2014 11:29:04 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "175-175A Chestnut Ave Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1904, "land_usage": "R2", "LOCATION_STREET_NAME": "175-175A Chestnut Ave", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31684, "LONGITUDE": -71.10713, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.10713, 42.31684 ] } } | |
, | |
{ "type": "Feature", "id": 317, "properties": { "CASE_ENQUIRY_ID": 101001135284.0, "OPEN_DT": "07\/23\/2014 10:18:30 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "41 De Soto Rd West Roxbury MA 02132", "fire_district": 12, "pwd_district": "06", "city_council_district": 6, "police_district": "E5", "neighborhood": "West Roxbury", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2003, "land_usage": "R1", "LOCATION_STREET_NAME": "41 De Soto Rd", "LOCATION_ZIPCODE": 2132, "LATITUDE": 42.26152, "LONGITUDE": -71.15403, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.15403, 42.26152 ] } } | |
, | |
{ "type": "Feature", "id": 318, "properties": { "CASE_ENQUIRY_ID": 101001135067.0, "OPEN_DT": "07\/23\/2014 07:45:56 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "204 N Beacon St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2206, "land_usage": "C", "LOCATION_STREET_NAME": "204 N Beacon St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.355805, "LONGITUDE": -71.148674, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.148674, 42.355805 ] } } | |
, | |
{ "type": "Feature", "id": 319, "properties": { "CASE_ENQUIRY_ID": 101001135457.0, "OPEN_DT": "07\/23\/2014 12:11:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "5 Blackinton St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "R4", "LOCATION_STREET_NAME": "5 Blackinton St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38796, "LONGITUDE": -71.00358, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.00358, 42.38796 ] } } | |
, | |
{ "type": "Feature", "id": 320, "properties": { "CASE_ENQUIRY_ID": 101001135081.0, "OPEN_DT": "07\/23\/2014 07:53:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 321, "properties": { "CASE_ENQUIRY_ID": 101001135602.0, "OPEN_DT": "07\/23\/2014 02:30:33 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Ford St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "R2", "LOCATION_STREET_NAME": "4 Ford St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38743, "LONGITUDE": -71.00788, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.00788, 42.38743 ] } } | |
, | |
{ "type": "Feature", "id": 322, "properties": { "CASE_ENQUIRY_ID": 101001135240.0, "OPEN_DT": "07\/23\/2014 09:47:17 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "582 Dorchester Ave South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston", "neighborhood_services_district": 5, "ward": "07", "precinct": 706, "land_usage": "", "LOCATION_STREET_NAME": "582 Dorchester Ave", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.329935, "LONGITUDE": -71.056761, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.056761, 42.329935 ] } } | |
, | |
{ "type": "Feature", "id": 323, "properties": { "CASE_ENQUIRY_ID": 101001136467.0, "OPEN_DT": "07\/24\/2014 04:17:49 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "2 Wigglesworth St Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1003, "land_usage": "R3", "LOCATION_STREET_NAME": "2 Wigglesworth St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.334103, "LONGITUDE": -71.103279, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.103279, 42.334103 ] } } | |
, | |
{ "type": "Feature", "id": 324, "properties": { "CASE_ENQUIRY_ID": 101001135949.0, "OPEN_DT": "07\/24\/2014 08:02:49 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "32 Dorset St Dorchester MA 02125", "fire_district": 6, "pwd_district": "03", "city_council_district": 2, "police_district": "C6", "neighborhood": "Dorchester", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 708, "land_usage": "R3", "LOCATION_STREET_NAME": "32 Dorset St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.32366, "LONGITUDE": -71.05847, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05847, 42.32366 ] } } | |
, | |
{ "type": "Feature", "id": 325, "properties": { "CASE_ENQUIRY_ID": 101001136865.0, "OPEN_DT": "07\/25\/2014 09:50:22 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "15 Germania St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1106, "land_usage": "CM", "LOCATION_STREET_NAME": "15 Germania St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31413, "LONGITUDE": -71.10212, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10212, 42.31413 ] } } | |
, | |
{ "type": "Feature", "id": 326, "properties": { "CASE_ENQUIRY_ID": 101001136874.0, "OPEN_DT": "07\/25\/2014 09:57:04 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Germania St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1106, "land_usage": "R2", "LOCATION_STREET_NAME": "9 Germania St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31406, "LONGITUDE": -71.10194, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10194, 42.31406 ] } } | |
, | |
{ "type": "Feature", "id": 327, "properties": { "CASE_ENQUIRY_ID": 101001136619.0, "OPEN_DT": "07\/25\/2014 07:21:26 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "23 Dorchester St South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 6", "precinct": 604, "land_usage": "CM", "LOCATION_STREET_NAME": "23 Dorchester St", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.33694, "LONGITUDE": -71.04393, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.04393, 42.33694 ] } } | |
, | |
{ "type": "Feature", "id": 328, "properties": { "CASE_ENQUIRY_ID": 101001136654.0, "OPEN_DT": "07\/25\/2014 08:19:01 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "97 Horace St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "R2", "LOCATION_STREET_NAME": "97 Horace St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38257, "LONGITUDE": -71.01583, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01583, 42.38257 ] } } | |
, | |
{ "type": "Feature", "id": 329, "properties": { "CASE_ENQUIRY_ID": 101001137193.0, "OPEN_DT": "07\/25\/2014 02:44:02 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "17 Union Ave Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1107, "land_usage": "R1", "LOCATION_STREET_NAME": "17 Union Ave", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.30945, "LONGITUDE": -71.10629, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.10629, 42.30945 ] } } | |
, | |
{ "type": "Feature", "id": 330, "properties": { "CASE_ENQUIRY_ID": 101001136934.0, "OPEN_DT": "07\/25\/2014 10:36:18 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "209 Boylston St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1106, "land_usage": "R3", "LOCATION_STREET_NAME": "209 Boylston St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31381, "LONGITUDE": -71.10122, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10122, 42.31381 ] } } | |
, | |
{ "type": "Feature", "id": 331, "properties": { "CASE_ENQUIRY_ID": 101001137620.0, "OPEN_DT": "07\/26\/2014 05:04:41 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "34 Chiswick Rd Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2115, "land_usage": "A", "LOCATION_STREET_NAME": "34 Chiswick Rd", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.33889, "LONGITUDE": -71.15059, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.15059, 42.33889 ] } } | |
, | |
{ "type": "Feature", "id": 332, "properties": { "CASE_ENQUIRY_ID": 101001137895.0, "OPEN_DT": "07\/27\/2014 10:52:53 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "143 Putnam St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 106, "land_usage": "R3", "LOCATION_STREET_NAME": "143 Putnam St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.37795, "LONGITUDE": -71.03194, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.03194, 42.37795 ] } } | |
, | |
{ "type": "Feature", "id": 333, "properties": { "CASE_ENQUIRY_ID": 101001138484.0, "OPEN_DT": "07\/28\/2014 01:18:39 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "3 Hooper St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1703, "land_usage": "R1", "LOCATION_STREET_NAME": "3 Hooper St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.29467, "LONGITUDE": -71.0693, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0693, 42.29467 ] } } | |
, | |
{ "type": "Feature", "id": 334, "properties": { "CASE_ENQUIRY_ID": 101001138411.0, "OPEN_DT": "07\/28\/2014 12:15:26 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "10 Mallon Rd Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1404, "land_usage": "R2", "LOCATION_STREET_NAME": "10 Mallon Rd", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30256, "LONGITUDE": -71.07411, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07411, 42.30256 ] } } | |
, | |
{ "type": "Feature", "id": 335, "properties": { "CASE_ENQUIRY_ID": 101001138150.0, "OPEN_DT": "07\/28\/2014 09:36:03 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "234 Monsignor Dennis F O'Callaghan Way South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "07", "precinct": 707, "land_usage": "E", "LOCATION_STREET_NAME": "234 Monsignor Dennis F O'Callaghan Way", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.32754, "LONGITUDE": -71.05559, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05559, 42.32754 ] } } | |
, | |
{ "type": "Feature", "id": 336, "properties": { "CASE_ENQUIRY_ID": 101001138231.0, "OPEN_DT": "07\/28\/2014 10:28:35 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "12 Hereford St Boston MA 02115", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 509, "land_usage": "CM", "LOCATION_STREET_NAME": "12 Hereford St", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.35132, "LONGITUDE": -71.08674, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08674, 42.35132 ] } } | |
, | |
{ "type": "Feature", "id": 337, "properties": { "CASE_ENQUIRY_ID": 101001139004.0, "OPEN_DT": "07\/29\/2014 08:41:51 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "311 Belgrade Ave Roslindale MA 02131", "fire_district": 9, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2008, "land_usage": "R3", "LOCATION_STREET_NAME": "311 Belgrade Ave", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.28626, "LONGITUDE": -71.14427, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14427, 42.28626 ] } } | |
, | |
{ "type": "Feature", "id": 338, "properties": { "CASE_ENQUIRY_ID": 101001139403.0, "OPEN_DT": "07\/29\/2014 02:59:00 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "6 Mallon Rd Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1404, "land_usage": "R2", "LOCATION_STREET_NAME": "6 Mallon Rd", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30265, "LONGITUDE": -71.07397, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07397, 42.30265 ] } } | |
, | |
{ "type": "Feature", "id": 339, "properties": { "CASE_ENQUIRY_ID": 101001138989.0, "OPEN_DT": "07\/29\/2014 08:35:59 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "305 Belgrade Ave Roslindale MA 02131", "fire_district": 9, "pwd_district": "06", "city_council_district": 5, "police_district": "E5", "neighborhood": "Roslindale", "neighborhood_services_district": 10, "ward": "Ward 20", "precinct": 2008, "land_usage": "R4", "LOCATION_STREET_NAME": "305 Belgrade Ave", "LOCATION_ZIPCODE": 2131, "LATITUDE": 42.28628, "LONGITUDE": -71.14408, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14408, 42.28628 ] } } | |
, | |
{ "type": "Feature", "id": 340, "properties": { "CASE_ENQUIRY_ID": 101001139011.0, "OPEN_DT": "07\/29\/2014 08:44:46 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "11 Topliff St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1502, "land_usage": "R3", "LOCATION_STREET_NAME": "11 Topliff St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30426, "LONGITUDE": -71.06879, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06879, 42.30426 ] } } | |
, | |
{ "type": "Feature", "id": 341, "properties": { "CASE_ENQUIRY_ID": 101001139775.0, "OPEN_DT": "07\/30\/2014 08:41:14 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "19 Santuit St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 16", "precinct": 1603, "land_usage": "R3", "LOCATION_STREET_NAME": "19 Santuit St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.2903, "LONGITUDE": -71.06399, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06399, 42.2903 ] } } | |
, | |
{ "type": "Feature", "id": 342, "properties": { "CASE_ENQUIRY_ID": 101001139769.0, "OPEN_DT": "07\/30\/2014 08:38:21 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "78 Spring Park Ave Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1904, "land_usage": "A", "LOCATION_STREET_NAME": "78 Spring Park Ave", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.3166, "LONGITUDE": -71.10778, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10778, 42.3166 ] } } | |
, | |
{ "type": "Feature", "id": 343, "properties": { "CASE_ENQUIRY_ID": 101001139816.0, "OPEN_DT": "07\/30\/2014 09:02:12 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "130 Boston St Dorchester MA 02125", "fire_district": 6, "pwd_district": "03", "city_council_district": 2, "police_district": "C6", "neighborhood": "Dorchester", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 708, "land_usage": "R3", "LOCATION_STREET_NAME": "130 Boston St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.32501, "LONGITUDE": -71.05904, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05904, 42.32501 ] } } | |
, | |
{ "type": "Feature", "id": 344, "properties": { "CASE_ENQUIRY_ID": 101001140097.0, "OPEN_DT": "07\/30\/2014 11:53:17 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "20 Woodward Park St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 13", "precinct": 1302, "land_usage": "EA", "LOCATION_STREET_NAME": "20 Woodward Park St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.318631, "LONGITUDE": -71.073038, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.073038, 42.318631 ] } } | |
, | |
{ "type": "Feature", "id": 345, "properties": { "CASE_ENQUIRY_ID": 101001140370.0, "OPEN_DT": "07\/30\/2014 03:33:40 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "12 Navillus Ter Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "12 Navillus Ter", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.31002, "LONGITUDE": -71.06166, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06166, 42.31002 ] } } | |
, | |
{ "type": "Feature", "id": 346, "properties": { "CASE_ENQUIRY_ID": 101001140354.0, "OPEN_DT": "07\/30\/2014 03:23:35 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "682 Blue Hill Ave Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1407, "land_usage": "R4", "LOCATION_STREET_NAME": "682 Blue Hill Ave", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30095, "LONGITUDE": -71.08551, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08551, 42.30095 ] } } | |
, | |
{ "type": "Feature", "id": 347, "properties": { "CASE_ENQUIRY_ID": 101001139821.0, "OPEN_DT": "07\/30\/2014 09:03:23 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "48 Harlem St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1402, "land_usage": "R3", "LOCATION_STREET_NAME": "48 Harlem St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30054, "LONGITUDE": -71.08011, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08011, 42.30054 ] } } | |
, | |
{ "type": "Feature", "id": 348, "properties": { "CASE_ENQUIRY_ID": 101001139820.0, "OPEN_DT": "07\/30\/2014 09:03:22 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "140-142 Boston St Dorchester MA 02125", "fire_district": 6, "pwd_district": "03", "city_council_district": 2, "police_district": "C6", "neighborhood": "Dorchester", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 708, "land_usage": "R3", "LOCATION_STREET_NAME": "140-142 Boston St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.32464, "LONGITUDE": -71.05924, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05924, 42.32464 ] } } | |
, | |
{ "type": "Feature", "id": 349, "properties": { "CASE_ENQUIRY_ID": 101001141021.0, "OPEN_DT": "07\/31\/2014 01:00:35 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "96 Normandy St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1401, "land_usage": "R3", "LOCATION_STREET_NAME": "96 Normandy St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30941, "LONGITUDE": -71.07983, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.07983, 42.30941 ] } } | |
, | |
{ "type": "Feature", "id": 350, "properties": { "CASE_ENQUIRY_ID": 101001140759.0, "OPEN_DT": "07\/31\/2014 09:24:15 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "169 Byron St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "R2", "LOCATION_STREET_NAME": "169 Byron St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38216, "LONGITUDE": -71.01561, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01561, 42.38216 ] } } | |
, | |
{ "type": "Feature", "id": 351, "properties": { "CASE_ENQUIRY_ID": 101001141122.0, "OPEN_DT": "07\/31\/2014 02:46:57 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "183-185A Massachusetts Ave Boston MA 02115", "fire_district": 4, "pwd_district": "10A", "city_council_district": 7, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 4", "precinct": 405, "land_usage": "CM", "LOCATION_STREET_NAME": "183-185A Massachusetts Ave", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.34554, "LONGITUDE": -71.08721, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08721, 42.34554 ] } } | |
, | |
{ "type": "Feature", "id": 352, "properties": { "CASE_ENQUIRY_ID": 101001140880.0, "OPEN_DT": "07\/31\/2014 11:05:54 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "100 Cowper St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "R2", "LOCATION_STREET_NAME": "100 Cowper St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38098, "LONGITUDE": -71.01684, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01684, 42.38098 ] } } | |
, | |
{ "type": "Feature", "id": 353, "properties": { "CASE_ENQUIRY_ID": 101001140766.0, "OPEN_DT": "07\/31\/2014 09:33:25 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 354, "properties": { "CASE_ENQUIRY_ID": 101001111244.0, "OPEN_DT": "06\/18\/2014 03:30:40 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed NOVIO: No Violation Found\/No Cause", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "17 Milton Ave Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Dorchester", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1707, "land_usage": "R2", "LOCATION_STREET_NAME": "17 Milton Ave", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.28676, "LONGITUDE": -71.07888, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07888, 42.28676 ] } } | |
, | |
{ "type": "Feature", "id": 355, "properties": { "CASE_ENQUIRY_ID": 101001141756.0, "OPEN_DT": "08\/01\/2014 11:23:12 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 356, "properties": { "CASE_ENQUIRY_ID": 101001142898.0, "OPEN_DT": "08\/04\/2014 11:46:08 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed CLOSED: Closed\/No Permit", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "19 Tip Top St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2204, "land_usage": "R1", "LOCATION_STREET_NAME": "19 Tip Top St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.35071, "LONGITUDE": -71.17045, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.17045, 42.35071 ] } } | |
, | |
{ "type": "Feature", "id": 357, "properties": { "CASE_ENQUIRY_ID": 101001142738.0, "OPEN_DT": "08\/04\/2014 09:53:22 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "34 School St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2205, "land_usage": "R1", "LOCATION_STREET_NAME": "34 School St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.36016, "LONGITUDE": -71.14248, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14248, 42.36016 ] } } | |
, | |
{ "type": "Feature", "id": 358, "properties": { "CASE_ENQUIRY_ID": 101001143086.0, "OPEN_DT": "08\/04\/2014 02:10:46 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "390-394 Riverway Boston MA 02115", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "10", "precinct": 1004, "land_usage": "CM", "LOCATION_STREET_NAME": "390-394 Riverway", "LOCATION_ZIPCODE": 2115, "LATITUDE": 42.332315, "LONGITUDE": -71.11219, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.11219, 42.332315 ] } } | |
, | |
{ "type": "Feature", "id": 359, "properties": { "CASE_ENQUIRY_ID": 101001143111.0, "OPEN_DT": "08\/04\/2014 02:31:24 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "525 Washington St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Brighton", "neighborhood_services_district": 15, "ward": "22", "precinct": 2207, "land_usage": "", "LOCATION_STREET_NAME": "525 Washington St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 360, "properties": { "CASE_ENQUIRY_ID": 101001143259.0, "OPEN_DT": "08\/04\/2014 04:32:47 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "37 Meadowview Rd Hyde Park MA 02136", "fire_district": 12, "pwd_district": "08", "city_council_district": 5, "police_district": "E18", "neighborhood": "Hyde Park", "neighborhood_services_district": 10, "ward": "Ward 18", "precinct": 1820, "land_usage": "R1", "LOCATION_STREET_NAME": "37 Meadowview Rd", "LOCATION_ZIPCODE": 2136, "LATITUDE": 42.23304, "LONGITUDE": -71.12968, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.12968, 42.23304 ] } } | |
, | |
{ "type": "Feature", "id": 361, "properties": { "CASE_ENQUIRY_ID": 101001143116.0, "OPEN_DT": "08\/04\/2014 02:32:34 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "31 Pratt St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R2", "LOCATION_STREET_NAME": "31 Pratt St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35489, "LONGITUDE": -71.12858, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12858, 42.35489 ] } } | |
, | |
{ "type": "Feature", "id": 362, "properties": { "CASE_ENQUIRY_ID": 101001144221.0, "OPEN_DT": "08\/05\/2014 08:57:59 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "250-250A Shawmut Ave Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 307, "land_usage": "R3", "LOCATION_STREET_NAME": "250-250A Shawmut Ave", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34341, "LONGITUDE": -71.06812, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.06812, 42.34341 ] } } | |
, | |
{ "type": "Feature", "id": 363, "properties": { "CASE_ENQUIRY_ID": 101001143739.0, "OPEN_DT": "08\/05\/2014 11:04:11 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "291 Centre St Dorchester MA 02122", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1604, "land_usage": "R3", "LOCATION_STREET_NAME": "291 Centre St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.29376, "LONGITUDE": -71.06094, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06094, 42.29376 ] } } | |
, | |
{ "type": "Feature", "id": 364, "properties": { "CASE_ENQUIRY_ID": 101001143605.0, "OPEN_DT": "08\/05\/2014 09:22:14 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "80 Ashley St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "R1", "LOCATION_STREET_NAME": "80 Ashley St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38825, "LONGITUDE": -71.00869, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.00869, 42.38825 ] } } | |
, | |
{ "type": "Feature", "id": 365, "properties": { "CASE_ENQUIRY_ID": 101001143751.0, "OPEN_DT": "08\/05\/2014 11:16:56 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "385 Dorchester Ave South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "07", "precinct": 705, "land_usage": "RC", "LOCATION_STREET_NAME": "385 Dorchester Ave", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.334607, "LONGITUDE": -71.05799, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05799, 42.334607 ] } } | |
, | |
{ "type": "Feature", "id": 366, "properties": { "CASE_ENQUIRY_ID": 101001144477.0, "OPEN_DT": "08\/06\/2014 09:59:21 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "177-179 Green St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1107, "land_usage": "I", "LOCATION_STREET_NAME": "177-179 Green St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.30996, "LONGITUDE": -71.10612, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10612, 42.30996 ] } } | |
, | |
{ "type": "Feature", "id": 367, "properties": { "CASE_ENQUIRY_ID": 101001144681.0, "OPEN_DT": "08\/06\/2014 12:23:18 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "3559 Washington St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1108, "land_usage": "R3", "LOCATION_STREET_NAME": "3559 Washington St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.30459, "LONGITUDE": -71.10966, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10966, 42.30459 ] } } | |
, | |
{ "type": "Feature", "id": 368, "properties": { "CASE_ENQUIRY_ID": 101001144472.0, "OPEN_DT": "08\/06\/2014 09:57:29 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "181-187 Green St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 11", "precinct": 1107, "land_usage": "RC", "LOCATION_STREET_NAME": "181-187 Green St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.309875, "LONGITUDE": -71.105942, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.105942, 42.309875 ] } } | |
, | |
{ "type": "Feature", "id": 369, "properties": { "CASE_ENQUIRY_ID": 101001144981.0, "OPEN_DT": "08\/06\/2014 05:27:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "29 Parker St Charlestown MA 02129", "fire_district": 3, "pwd_district": "1A", "city_council_district": 1, "police_district": "A15", "neighborhood": "Charlestown", "neighborhood_services_district": 2, "ward": "Ward 2", "precinct": 207, "land_usage": "R1", "LOCATION_STREET_NAME": "29 Parker St", "LOCATION_ZIPCODE": 2129, "LATITUDE": 42.38294, "LONGITUDE": -71.07944, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.07944, 42.38294 ] } } | |
, | |
{ "type": "Feature", "id": 370, "properties": { "CASE_ENQUIRY_ID": 101001145225.0, "OPEN_DT": "08\/07\/2014 08:51:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "31 Duncan St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1506, "land_usage": "R2", "LOCATION_STREET_NAME": "31 Duncan St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30222, "LONGITUDE": -71.05832, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05832, 42.30222 ] } } | |
, | |
{ "type": "Feature", "id": 371, "properties": { "CASE_ENQUIRY_ID": 101001145607.0, "OPEN_DT": "08\/07\/2014 01:38:25 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "21 Dacia St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 13", "precinct": 1301, "land_usage": "R3", "LOCATION_STREET_NAME": "21 Dacia St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.314823, "LONGITUDE": -71.07722, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07722, 42.314823 ] } } | |
, | |
{ "type": "Feature", "id": 372, "properties": { "CASE_ENQUIRY_ID": 101001145563.0, "OPEN_DT": "08\/07\/2014 12:50:00 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "0 Milk St Boston MA 02109", "fire_district": 3, "pwd_district": "1C", "city_council_district": 1, "police_district": "A1", "neighborhood": "Downtown \/ Financial District", "neighborhood_services_district": 3, "ward": "Ward 3", "precinct": 306, "land_usage": "E", "LOCATION_STREET_NAME": "0 Milk St", "LOCATION_ZIPCODE": 2109, "LATITUDE": 42.35877, "LONGITUDE": -71.052388, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.052388, 42.35877 ] } } | |
, | |
{ "type": "Feature", "id": 373, "properties": { "CASE_ENQUIRY_ID": 101001145143.0, "OPEN_DT": "08\/07\/2014 08:07:58 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "198 London St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 106, "land_usage": "R3", "LOCATION_STREET_NAME": "198 London St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.37533, "LONGITUDE": -71.03689, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.03689, 42.37533 ] } } | |
, | |
{ "type": "Feature", "id": 374, "properties": { "CASE_ENQUIRY_ID": 101001146438.0, "OPEN_DT": "08\/08\/2014 01:21:02 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "62 W Rutland Sq Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 7, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 404, "land_usage": "A", "LOCATION_STREET_NAME": "62 W Rutland Sq", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34291, "LONGITUDE": -71.07989, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07989, 42.34291 ] } } | |
, | |
{ "type": "Feature", "id": 375, "properties": { "CASE_ENQUIRY_ID": 101001146411.0, "OPEN_DT": "08\/08\/2014 12:34:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "958 Bennington St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "CM", "LOCATION_STREET_NAME": "958 Bennington St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.386243, "LONGITUDE": -71.008806, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.008806, 42.386243 ] } } | |
, | |
{ "type": "Feature", "id": 376, "properties": { "CASE_ENQUIRY_ID": 101001147104.0, "OPEN_DT": "08\/10\/2014 06:12:59 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "462 Sumner St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 101, "land_usage": "CD", "LOCATION_STREET_NAME": "462 Sumner St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.36556, "LONGITUDE": -71.03171, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.03171, 42.36556 ] } } | |
, | |
{ "type": "Feature", "id": 377, "properties": { "CASE_ENQUIRY_ID": 101001147815.0, "OPEN_DT": "08\/11\/2014 02:33:14 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Duncan Pl Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1506, "land_usage": "R2", "LOCATION_STREET_NAME": "8 Duncan Pl", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30252, "LONGITUDE": -71.05881, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05881, 42.30252 ] } } | |
, | |
{ "type": "Feature", "id": 378, "properties": { "CASE_ENQUIRY_ID": 101001147976.0, "OPEN_DT": "08\/11\/2014 04:25:31 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "471-473 E Fourth St South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 704, "land_usage": "R2", "LOCATION_STREET_NAME": "471-473 E Fourth St", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.3346, "LONGITUDE": -71.04644, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.04644, 42.3346 ] } } | |
, | |
{ "type": "Feature", "id": 379, "properties": { "CASE_ENQUIRY_ID": 101001147892.0, "OPEN_DT": "08\/11\/2014 03:29:00 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "134 Norwell St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B3", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1402, "land_usage": "R2", "LOCATION_STREET_NAME": "134 Norwell St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.29783, "LONGITUDE": -71.07843, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07843, 42.29783 ] } } | |
, | |
{ "type": "Feature", "id": 380, "properties": { "CASE_ENQUIRY_ID": 101001147679.0, "OPEN_DT": "08\/11\/2014 12:36:21 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 381, "properties": { "CASE_ENQUIRY_ID": 101001147405.0, "OPEN_DT": "08\/11\/2014 09:58:10 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "16 Fernald Ter Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R2", "LOCATION_STREET_NAME": "16 Fernald Ter", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31034, "LONGITUDE": -71.06674, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06674, 42.31034 ] } } | |
, | |
{ "type": "Feature", "id": 382, "properties": { "CASE_ENQUIRY_ID": 101001148191.0, "OPEN_DT": "08\/12\/2014 07:32:25 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 383, "properties": { "CASE_ENQUIRY_ID": 101001148685.0, "OPEN_DT": "08\/12\/2014 01:04:15 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "81 E Brookline St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 8", "precinct": 802, "land_usage": "CM", "LOCATION_STREET_NAME": "81 E Brookline St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.33749, "LONGITUDE": -71.07021, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07021, 42.33749 ] } } | |
, | |
{ "type": "Feature", "id": 384, "properties": { "CASE_ENQUIRY_ID": 101001148665.0, "OPEN_DT": "08\/12\/2014 12:47:39 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "113-117 Paul Gore St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1901, "land_usage": "R4", "LOCATION_STREET_NAME": "113-117 Paul Gore St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.3184, "LONGITUDE": -71.10611, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.10611, 42.3184 ] } } | |
, | |
{ "type": "Feature", "id": 385, "properties": { "CASE_ENQUIRY_ID": 101001148181.0, "OPEN_DT": "08\/12\/2014 07:22:22 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "38 Pratt St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R3", "LOCATION_STREET_NAME": "38 Pratt St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.3553, "LONGITUDE": -71.128, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.128, 42.3553 ] } } | |
, | |
{ "type": "Feature", "id": 386, "properties": { "CASE_ENQUIRY_ID": 101001148185.0, "OPEN_DT": "08\/12\/2014 07:24:46 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 387, "properties": { "CASE_ENQUIRY_ID": 101001148753.0, "OPEN_DT": "08\/12\/2014 01:55:30 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "66 Homer St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "R1", "LOCATION_STREET_NAME": "66 Homer St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38172, "LONGITUDE": -71.0169, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0169, 42.38172 ] } } | |
, | |
{ "type": "Feature", "id": 388, "properties": { "CASE_ENQUIRY_ID": 101001148374.0, "OPEN_DT": "08\/12\/2014 09:31:20 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "Case Closed ADCLSD: Administratively Closed", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "1-4 Saint George St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "08", "precinct": 802, "land_usage": "", "LOCATION_STREET_NAME": "1-4 Saint George St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.338562, "LONGITUDE": -71.071563, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.071563, 42.338562 ] } } | |
, | |
{ "type": "Feature", "id": 389, "properties": { "CASE_ENQUIRY_ID": 101001148184.0, "OPEN_DT": "08\/12\/2014 07:24:37 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "43 Pratt St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R2", "LOCATION_STREET_NAME": "43 Pratt St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35502, "LONGITUDE": -71.12772, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12772, 42.35502 ] } } | |
, | |
{ "type": "Feature", "id": 390, "properties": { "CASE_ENQUIRY_ID": 101001148410.0, "OPEN_DT": "08\/12\/2014 09:47:20 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "23 Bilodeau Rd Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1403, "land_usage": "R2", "LOCATION_STREET_NAME": "23 Bilodeau Rd", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30774, "LONGITUDE": -71.08153, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08153, 42.30774 ] } } | |
, | |
{ "type": "Feature", "id": 391, "properties": { "CASE_ENQUIRY_ID": 101001148182.0, "OPEN_DT": "08\/12\/2014 07:23:29 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "40 Pratt St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R1", "LOCATION_STREET_NAME": "40 Pratt St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35533, "LONGITUDE": -71.12786, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12786, 42.35533 ] } } | |
, | |
{ "type": "Feature", "id": 392, "properties": { "CASE_ENQUIRY_ID": 101001148189.0, "OPEN_DT": "08\/12\/2014 07:28:03 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 393, "properties": { "CASE_ENQUIRY_ID": 101001149015.0, "OPEN_DT": "08\/12\/2014 07:11:23 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "93 Normandy St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1401, "land_usage": "R3", "LOCATION_STREET_NAME": "93 Normandy St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30967, "LONGITUDE": -71.08009, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08009, 42.30967 ] } } | |
, | |
{ "type": "Feature", "id": 394, "properties": { "CASE_ENQUIRY_ID": 101001148536.0, "OPEN_DT": "08\/12\/2014 11:03:27 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "251 Beacon St Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 8, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 507, "land_usage": "CD", "LOCATION_STREET_NAME": "251 Beacon St", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.35352, "LONGITUDE": -71.07863, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.07863, 42.35352 ] } } | |
, | |
{ "type": "Feature", "id": 395, "properties": { "CASE_ENQUIRY_ID": 101001148715.0, "OPEN_DT": "08\/12\/2014 01:27:26 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "742 Bennington St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 113, "land_usage": "R3", "LOCATION_STREET_NAME": "742 Bennington St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38542, "LONGITUDE": -71.01123, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01123, 42.38542 ] } } | |
, | |
{ "type": "Feature", "id": 396, "properties": { "CASE_ENQUIRY_ID": 101001148491.0, "OPEN_DT": "08\/12\/2014 10:35:33 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "72-76 Richmond St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1611, "land_usage": "E", "LOCATION_STREET_NAME": "72-76 Richmond St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.274552, "LONGITUDE": -71.066733, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.066733, 42.274552 ] } } | |
, | |
{ "type": "Feature", "id": 397, "properties": { "CASE_ENQUIRY_ID": 101001148401.0, "OPEN_DT": "08\/12\/2014 09:41:37 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "130 Rosseter St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1404, "land_usage": "R1", "LOCATION_STREET_NAME": "130 Rosseter St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30156, "LONGITUDE": -71.07274, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07274, 42.30156 ] } } | |
, | |
{ "type": "Feature", "id": 398, "properties": { "CASE_ENQUIRY_ID": 101001148905.0, "OPEN_DT": "08\/12\/2014 03:56:00 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "577 E Eighth St South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 702, "land_usage": "R3", "LOCATION_STREET_NAME": "577 E Eighth St", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.33125, "LONGITUDE": -71.03857, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.03857, 42.33125 ] } } | |
, | |
{ "type": "Feature", "id": 399, "properties": { "CASE_ENQUIRY_ID": 101001149098.0, "OPEN_DT": "08\/13\/2014 07:14:30 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "16 Mead St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2202, "land_usage": "R3", "LOCATION_STREET_NAME": "16 Mead St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.3619, "LONGITUDE": -71.1319, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.1319, 42.3619 ] } } | |
, | |
{ "type": "Feature", "id": 400, "properties": { "CASE_ENQUIRY_ID": 101001149404.0, "OPEN_DT": "08\/13\/2014 10:39:23 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "87 Adams St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1509, "land_usage": "R3", "LOCATION_STREET_NAME": "87 Adams St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30583, "LONGITUDE": -71.06195, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06195, 42.30583 ] } } | |
, | |
{ "type": "Feature", "id": 401, "properties": { "CASE_ENQUIRY_ID": 101001149654.0, "OPEN_DT": "08\/13\/2014 02:44:09 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "38 East St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1504, "land_usage": "R3", "LOCATION_STREET_NAME": "38 East St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30743, "LONGITUDE": -71.06043, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06043, 42.30743 ] } } | |
, | |
{ "type": "Feature", "id": 402, "properties": { "CASE_ENQUIRY_ID": 101001149796.0, "OPEN_DT": "08\/13\/2014 06:00:37 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "182 Wordsworth St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 112, "land_usage": "R1", "LOCATION_STREET_NAME": "182 Wordsworth St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38183, "LONGITUDE": -71.01329, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01329, 42.38183 ] } } | |
, | |
{ "type": "Feature", "id": 403, "properties": { "CASE_ENQUIRY_ID": 101001149737.0, "OPEN_DT": "08\/13\/2014 03:55:05 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "32 Parker St Charlestown MA 02129", "fire_district": 3, "pwd_district": "1A", "city_council_district": 1, "police_district": "A15", "neighborhood": "Charlestown", "neighborhood_services_district": 2, "ward": "Ward 2", "precinct": 207, "land_usage": "R4", "LOCATION_STREET_NAME": "32 Parker St", "LOCATION_ZIPCODE": 2129, "LATITUDE": 42.38279, "LONGITUDE": -71.07916, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.07916, 42.38279 ] } } | |
, | |
{ "type": "Feature", "id": 404, "properties": { "CASE_ENQUIRY_ID": 101001149615.0, "OPEN_DT": "08\/13\/2014 02:02:00 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "84 E Brookline St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 8", "precinct": 801, "land_usage": "CM", "LOCATION_STREET_NAME": "84 E Brookline St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.3376, "LONGITUDE": -71.06983, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06983, 42.3376 ] } } | |
, | |
{ "type": "Feature", "id": 405, "properties": { "CASE_ENQUIRY_ID": 101001150420.0, "OPEN_DT": "08\/14\/2014 01:55:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "4 Sumner St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 2, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 709, "land_usage": "R3", "LOCATION_STREET_NAME": "4 Sumner St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31965, "LONGITUDE": -71.0608, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0608, 42.31965 ] } } | |
, | |
{ "type": "Feature", "id": 406, "properties": { "CASE_ENQUIRY_ID": 101001150616.0, "OPEN_DT": "08\/14\/2014 04:43:49 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "59 Worcester St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 7, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 9", "precinct": 902, "land_usage": "RC", "LOCATION_STREET_NAME": "59 Worcester St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.3391, "LONGITUDE": -71.07732, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.07732, 42.3391 ] } } | |
, | |
{ "type": "Feature", "id": 407, "properties": { "CASE_ENQUIRY_ID": 101001150557.0, "OPEN_DT": "08\/14\/2014 03:44:35 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "11 Clive St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1901, "land_usage": "R1", "LOCATION_STREET_NAME": "11 Clive St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31743, "LONGITUDE": -71.10824, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.10824, 42.31743 ] } } | |
, | |
{ "type": "Feature", "id": 408, "properties": { "CASE_ENQUIRY_ID": 101001150177.0, "OPEN_DT": "08\/14\/2014 10:46:52 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "16 Harris Ave Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "Ward 19", "precinct": 1906, "land_usage": "R2", "LOCATION_STREET_NAME": "16 Harris Ave", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.31101, "LONGITUDE": -71.11231, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.11231, 42.31101 ] } } | |
, | |
{ "type": "Feature", "id": 409, "properties": { "CASE_ENQUIRY_ID": 101001150352.0, "OPEN_DT": "08\/14\/2014 12:54:20 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "46 Neponset Ave Dorchester MA 02122", "fire_district": 7, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1602, "land_usage": "R3", "LOCATION_STREET_NAME": "46 Neponset Ave", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.29636, "LONGITUDE": -71.05473, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05473, 42.29636 ] } } | |
, | |
{ "type": "Feature", "id": 410, "properties": { "CASE_ENQUIRY_ID": 101001150470.0, "OPEN_DT": "08\/14\/2014 02:34:23 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "171 Trenton St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 109, "land_usage": "R3", "LOCATION_STREET_NAME": "171 Trenton St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38021, "LONGITUDE": -71.03242, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.03242, 42.38021 ] } } | |
, | |
{ "type": "Feature", "id": 411, "properties": { "CASE_ENQUIRY_ID": 101001150848.0, "OPEN_DT": "08\/15\/2014 08:44:22 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "371-373 Dorchester St South Boston MA 02127", "fire_district": 6, "pwd_district": "05", "city_council_district": 2, "police_district": "C6", "neighborhood": "South Boston \/ South Boston Waterfront", "neighborhood_services_district": 5, "ward": "Ward 7", "precinct": 706, "land_usage": "CM", "LOCATION_STREET_NAME": "371-373 Dorchester St", "LOCATION_ZIPCODE": 2127, "LATITUDE": 42.33041, "LONGITUDE": -71.05577, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05577, 42.33041 ] } } | |
, | |
{ "type": "Feature", "id": 412, "properties": { "CASE_ENQUIRY_ID": 101001150964.0, "OPEN_DT": "08\/15\/2014 10:18:21 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 413, "properties": { "CASE_ENQUIRY_ID": 101001151103.0, "OPEN_DT": "08\/15\/2014 12:26:33 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "221 Columbus Ave Boston MA 02116", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "Back Bay", "neighborhood_services_district": 6, "ward": "Ward 4", "precinct": 402, "land_usage": "CM", "LOCATION_STREET_NAME": "221 Columbus Ave", "LOCATION_ZIPCODE": 2116, "LATITUDE": 42.348248, "LONGITUDE": -71.07269, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07269, 42.348248 ] } } | |
, | |
{ "type": "Feature", "id": 414, "properties": { "CASE_ENQUIRY_ID": 101001150820.0, "OPEN_DT": "08\/15\/2014 08:24:24 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "10 Pratt St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R2", "LOCATION_STREET_NAME": "10 Pratt St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.355, "LONGITUDE": -71.12986, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.12986, 42.355 ] } } | |
, | |
{ "type": "Feature", "id": 415, "properties": { "CASE_ENQUIRY_ID": 101001150888.0, "OPEN_DT": "08\/15\/2014 09:18:30 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "14 Wigglesworth St Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1003, "land_usage": "R2", "LOCATION_STREET_NAME": "14 Wigglesworth St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.3344, "LONGITUDE": -71.1031, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.1031, 42.3344 ] } } | |
, | |
{ "type": "Feature", "id": 416, "properties": { "CASE_ENQUIRY_ID": 101001150818.0, "OPEN_DT": "08\/15\/2014 08:23:16 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "7 Greylock Rd Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2107, "land_usage": "R2", "LOCATION_STREET_NAME": "7 Greylock Rd", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35042, "LONGITUDE": -71.13552, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13552, 42.35042 ] } } | |
, | |
{ "type": "Feature", "id": 417, "properties": { "CASE_ENQUIRY_ID": 101001150921.0, "OPEN_DT": "08\/15\/2014 09:43:33 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "37 Coolidge Rd Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2201, "land_usage": "R1", "LOCATION_STREET_NAME": "37 Coolidge Rd", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35954, "LONGITUDE": -71.13019, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13019, 42.35954 ] } } | |
, | |
{ "type": "Feature", "id": 418, "properties": { "CASE_ENQUIRY_ID": 101001150893.0, "OPEN_DT": "08\/15\/2014 09:21:41 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Wigglesworth St Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1003, "land_usage": "R4", "LOCATION_STREET_NAME": "8 Wigglesworth St", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.33425, "LONGITUDE": -71.1032, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.1032, 42.33425 ] } } | |
, | |
{ "type": "Feature", "id": 419, "properties": { "CASE_ENQUIRY_ID": 101001150902.0, "OPEN_DT": "08\/15\/2014 09:26:36 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "27 Delle Ave Mission Hill MA 02120", "fire_district": 9, "pwd_district": "10A", "city_council_district": 8, "police_district": "B2", "neighborhood": "Mission Hill", "neighborhood_services_district": 14, "ward": "Ward 10", "precinct": 1002, "land_usage": "R4", "LOCATION_STREET_NAME": "27 Delle Ave", "LOCATION_ZIPCODE": 2120, "LATITUDE": 42.33114, "LONGITUDE": -71.09852, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.09852, 42.33114 ] } } | |
, | |
{ "type": "Feature", "id": 420, "properties": { "CASE_ENQUIRY_ID": 101001152372.0, "OPEN_DT": "08\/18\/2014 01:40:08 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "379 River St Mattapan MA 02126", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "B3", "neighborhood": "Greater Mattapan", "neighborhood_services_district": 9, "ward": "Ward 18", "precinct": 1804, "land_usage": "R2", "LOCATION_STREET_NAME": "379 River St", "LOCATION_ZIPCODE": 2126, "LATITUDE": 42.27029, "LONGITUDE": -71.08865, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08865, 42.27029 ] } } | |
, | |
{ "type": "Feature", "id": 421, "properties": { "CASE_ENQUIRY_ID": 101001152229.0, "OPEN_DT": "08\/18\/2014 11:48:46 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 422, "properties": { "CASE_ENQUIRY_ID": 101001152743.0, "OPEN_DT": "08\/18\/2014 10:37:03 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "125 Rosseter St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1404, "land_usage": "R4", "LOCATION_STREET_NAME": "125 Rosseter St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.3016, "LONGITUDE": -71.07316, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.07316, 42.3016 ] } } | |
, | |
{ "type": "Feature", "id": 423, "properties": { "CASE_ENQUIRY_ID": 101001152711.0, "OPEN_DT": "08\/18\/2014 08:14:17 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "INTERSECTION of Intervale St & Normandy St Dorchester MA", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1401, "land_usage": "", "LOCATION_STREET_NAME": "INTERSECTION Intervale St & Normandy St", "LOCATION_ZIPCODE": null, "LATITUDE": 42.380631, "LONGITUDE": -71.069532, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.069532, 42.380631 ] } } | |
, | |
{ "type": "Feature", "id": 424, "properties": { "CASE_ENQUIRY_ID": 101001152208.0, "OPEN_DT": "08\/18\/2014 11:35:05 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "79 Holworthy St Dorchester MA 02121", "fire_district": 9, "pwd_district": "10B", "city_council_district": 7, "police_district": "B2", "neighborhood": "Dorchester", "neighborhood_services_district": 13, "ward": "12", "precinct": 1208, "land_usage": "", "LOCATION_STREET_NAME": "79 Holworthy St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 425, "properties": { "CASE_ENQUIRY_ID": 101001152591.0, "OPEN_DT": "08\/18\/2014 04:39:29 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "40 Cedar Lane Way Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 511, "land_usage": "R2", "LOCATION_STREET_NAME": "40 Cedar Lane Way", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.358332, "LONGITUDE": -71.07017, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07017, 42.358332 ] } } | |
, | |
{ "type": "Feature", "id": 426, "properties": { "CASE_ENQUIRY_ID": 101001151623.0, "OPEN_DT": "08\/16\/2014 09:46:16 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "58 S Russell St Boston MA 02114", "fire_district": 3, "pwd_district": "1B", "city_council_district": 1, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 3, "ward": "Ward 3", "precinct": 306, "land_usage": "A", "LOCATION_STREET_NAME": "58 S Russell St", "LOCATION_ZIPCODE": 2114, "LATITUDE": 42.359584, "LONGITUDE": -71.06582, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06582, 42.359584 ] } } | |
, | |
{ "type": "Feature", "id": 427, "properties": { "CASE_ENQUIRY_ID": 101001152334.0, "OPEN_DT": "08\/18\/2014 12:58:48 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "11 Saint George St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 8", "precinct": 802, "land_usage": "CM", "LOCATION_STREET_NAME": "11 Saint George St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.33824, "LONGITUDE": -71.07214, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07214, 42.33824 ] } } | |
, | |
{ "type": "Feature", "id": 428, "properties": { "CASE_ENQUIRY_ID": 101001152617.0, "OPEN_DT": "08\/18\/2014 05:15:25 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 429, "properties": { "CASE_ENQUIRY_ID": 101001152630.0, "OPEN_DT": "08\/18\/2014 05:25:25 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 430, "properties": { "CASE_ENQUIRY_ID": 101001152384.0, "OPEN_DT": "08\/18\/2014 01:50:56 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "11 Topliff St Dorchester MA 02122", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 15", "precinct": 1502, "land_usage": "R3", "LOCATION_STREET_NAME": "11 Topliff St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.30426, "LONGITUDE": -71.06879, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06879, 42.30426 ] } } | |
, | |
{ "type": "Feature", "id": 431, "properties": { "CASE_ENQUIRY_ID": 101001152062.0, "OPEN_DT": "08\/18\/2014 09:55:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "14 Alpha Rd Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 9, "ward": "Ward 17", "precinct": 1703, "land_usage": "R1", "LOCATION_STREET_NAME": "14 Alpha Rd", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.29595, "LONGITUDE": -71.06781, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06781, 42.29595 ] } } | |
, | |
{ "type": "Feature", "id": 432, "properties": { "CASE_ENQUIRY_ID": 101001152263.0, "OPEN_DT": "08\/18\/2014 12:15:00 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 433, "properties": { "CASE_ENQUIRY_ID": 101001152621.0, "OPEN_DT": "08\/18\/2014 05:18:36 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 434, "properties": { "CASE_ENQUIRY_ID": 101001152206.0, "OPEN_DT": "08\/18\/2014 11:32:39 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 435, "properties": { "CASE_ENQUIRY_ID": 101001152613.0, "OPEN_DT": "08\/18\/2014 05:13:31 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "", "fire_district": null, "pwd_district": "", "city_council_district": null, "police_district": "", "neighborhood": "", "neighborhood_services_district": null, "ward": "", "precinct": null, "land_usage": "", "LOCATION_STREET_NAME": "", "LOCATION_ZIPCODE": null, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 436, "properties": { "CASE_ENQUIRY_ID": 101001152354.0, "OPEN_DT": "08\/18\/2014 01:21:35 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "70 Bailey St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 17", "precinct": 1711, "land_usage": "R1", "LOCATION_STREET_NAME": "70 Bailey St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.28467, "LONGITUDE": -71.0665, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0665, 42.28467 ] } } | |
, | |
{ "type": "Feature", "id": 437, "properties": { "CASE_ENQUIRY_ID": 101001153326.0, "OPEN_DT": "08\/19\/2014 01:30:06 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "15A Linden St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R4", "LOCATION_STREET_NAME": "15A Linden St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.355324, "LONGITUDE": -71.131044, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.131044, 42.355324 ] } } | |
, | |
{ "type": "Feature", "id": 438, "properties": { "CASE_ENQUIRY_ID": 101001153306.0, "OPEN_DT": "08\/19\/2014 01:20:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "21 Imrie Rd Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "R2", "LOCATION_STREET_NAME": "21 Imrie Rd", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.3521, "LONGITUDE": -71.13841, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13841, 42.3521 ] } } | |
, | |
{ "type": "Feature", "id": 439, "properties": { "CASE_ENQUIRY_ID": 101001153316.0, "OPEN_DT": "08\/19\/2014 01:26:31 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "15 Linden St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "R4", "LOCATION_STREET_NAME": "15 Linden St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35538, "LONGITUDE": -71.13108, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13108, 42.35538 ] } } | |
, | |
{ "type": "Feature", "id": 440, "properties": { "CASE_ENQUIRY_ID": 101001153298.0, "OPEN_DT": "08\/19\/2014 01:15:04 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "27 Gordon St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2106, "land_usage": "R1", "LOCATION_STREET_NAME": "27 Gordon St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35291, "LONGITUDE": -71.14065, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.14065, 42.35291 ] } } | |
, | |
{ "type": "Feature", "id": 441, "properties": { "CASE_ENQUIRY_ID": 101001154189.0, "OPEN_DT": "08\/20\/2014 01:26:32 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "82 Rosseter St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 8, "ward": "Ward 14", "precinct": 1404, "land_usage": "R3", "LOCATION_STREET_NAME": "82 Rosseter St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.30349, "LONGITUDE": -71.07402, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.07402, 42.30349 ] } } | |
, | |
{ "type": "Feature", "id": 442, "properties": { "CASE_ENQUIRY_ID": 101001153938.0, "OPEN_DT": "08\/20\/2014 09:45:01 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "8 Stanwood St Dorchester MA 02121", "fire_district": 7, "pwd_district": "03", "city_council_district": 4, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 14", "precinct": 1401, "land_usage": "R2", "LOCATION_STREET_NAME": "8 Stanwood St", "LOCATION_ZIPCODE": 2121, "LATITUDE": 42.31014, "LONGITUDE": -71.08138, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.08138, 42.31014 ] } } | |
, | |
{ "type": "Feature", "id": 443, "properties": { "CASE_ENQUIRY_ID": 101001154365.0, "OPEN_DT": "08\/20\/2014 04:48:53 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "83 Byron St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "R1", "LOCATION_STREET_NAME": "83 Byron St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38422, "LONGITUDE": -71.01832, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01832, 42.38422 ] } } | |
, | |
{ "type": "Feature", "id": 444, "properties": { "CASE_ENQUIRY_ID": 101001154396.0, "OPEN_DT": "08\/20\/2014 05:35:22 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "10-12 Manley St Dorchester MA 02122", "fire_district": 7, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1602, "land_usage": "R3", "LOCATION_STREET_NAME": "10-12 Manley St", "LOCATION_ZIPCODE": 2122, "LATITUDE": 42.29636, "LONGITUDE": -71.05433, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.05433, 42.29636 ] } } | |
, | |
{ "type": "Feature", "id": 445, "properties": { "CASE_ENQUIRY_ID": 101001153778.0, "OPEN_DT": "08\/20\/2014 08:25:41 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "54 Marshfield St Roxbury MA 02119", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 8", "precinct": 806, "land_usage": "R3", "LOCATION_STREET_NAME": "54 Marshfield St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.32332, "LONGITUDE": -71.06835, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06835, 42.32332 ] } } | |
, | |
{ "type": "Feature", "id": 446, "properties": { "CASE_ENQUIRY_ID": 101001153710.0, "OPEN_DT": "08\/20\/2014 07:56:10 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "79 Byron St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "R3", "LOCATION_STREET_NAME": "79 Byron St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38427, "LONGITUDE": -71.01849, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01849, 42.38427 ] } } | |
, | |
{ "type": "Feature", "id": 447, "properties": { "CASE_ENQUIRY_ID": 101001154280.0, "OPEN_DT": "08\/20\/2014 03:00:46 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Chestnut St Boston MA 02108", "fire_district": 3, "pwd_district": "1B", "city_council_district": 8, "police_district": "A1", "neighborhood": "Beacon Hill", "neighborhood_services_district": 14, "ward": "Ward 5", "precinct": 503, "land_usage": "R1", "LOCATION_STREET_NAME": "9 Chestnut St", "LOCATION_ZIPCODE": 2108, "LATITUDE": 42.35787, "LONGITUDE": -71.06664, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06664, 42.35787 ] } } | |
, | |
{ "type": "Feature", "id": 448, "properties": { "CASE_ENQUIRY_ID": 101001154247.0, "OPEN_DT": "08\/20\/2014 02:15:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "43-55 Linden St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 21", "precinct": 2104, "land_usage": "A", "LOCATION_STREET_NAME": "43-55 Linden St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35404, "LONGITUDE": -71.13043, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.13043, 42.35404 ] } } | |
, | |
{ "type": "Feature", "id": 449, "properties": { "CASE_ENQUIRY_ID": 101001154450.0, "OPEN_DT": "08\/20\/2014 07:52:12 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "3371-3373 Washington St Jamaica Plain MA 02130", "fire_district": 9, "pwd_district": "02", "city_council_district": 6, "police_district": "E13", "neighborhood": "Jamaica Plain", "neighborhood_services_district": 11, "ward": "11", "precinct": 1107, "land_usage": "", "LOCATION_STREET_NAME": "3371-3373 Washington St", "LOCATION_ZIPCODE": 2130, "LATITUDE": 42.3594, "LONGITUDE": -71.0587, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.0587, 42.3594 ] } } | |
, | |
{ "type": "Feature", "id": 450, "properties": { "CASE_ENQUIRY_ID": 101001153788.0, "OPEN_DT": "08\/20\/2014 08:30:31 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "89 Burrell St Roxbury MA 02119", "fire_district": 7, "pwd_district": "03", "city_council_district": 7, "police_district": "B2", "neighborhood": "Roxbury", "neighborhood_services_district": 13, "ward": "Ward 8", "precinct": 806, "land_usage": "R3", "LOCATION_STREET_NAME": "89 Burrell St", "LOCATION_ZIPCODE": 2119, "LATITUDE": 42.32357, "LONGITUDE": -71.06842, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06842, 42.32357 ] } } | |
, | |
{ "type": "Feature", "id": 451, "properties": { "CASE_ENQUIRY_ID": 101001153785.0, "OPEN_DT": "08\/20\/2014 08:29:06 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "93 E Brookline St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 8", "precinct": 802, "land_usage": "R4", "LOCATION_STREET_NAME": "93 E Brookline St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.33723, "LONGITUDE": -71.06989, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06989, 42.33723 ] } } | |
, | |
{ "type": "Feature", "id": 452, "properties": { "CASE_ENQUIRY_ID": 101001154443.0, "OPEN_DT": "08\/20\/2014 07:42:07 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9-11 Tip Top St Brighton MA 02135", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2204, "land_usage": "R2", "LOCATION_STREET_NAME": "9-11 Tip Top St", "LOCATION_ZIPCODE": 2135, "LATITUDE": 42.351001, "LONGITUDE": -71.17024, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.17024, 42.351001 ] } } | |
, | |
{ "type": "Feature", "id": 453, "properties": { "CASE_ENQUIRY_ID": 101001154265.0, "OPEN_DT": "08\/20\/2014 02:40:03 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "0 Caspian Way Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1310, "land_usage": "E", "LOCATION_STREET_NAME": "0 Caspian Way", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.310771, "LONGITUDE": -71.048937, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.048937, 42.310771 ] } } | |
, | |
{ "type": "Feature", "id": 454, "properties": { "CASE_ENQUIRY_ID": 101001154389.0, "OPEN_DT": "08\/20\/2014 05:17:03 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "9 Seattle St Allston MA 02134", "fire_district": 11, "pwd_district": "04", "city_council_district": 9, "police_district": "D14", "neighborhood": "Allston \/ Brighton", "neighborhood_services_district": 15, "ward": "Ward 22", "precinct": 2201, "land_usage": "R1", "LOCATION_STREET_NAME": "9 Seattle St", "LOCATION_ZIPCODE": 2134, "LATITUDE": 42.35926, "LONGITUDE": -71.124, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.124, 42.35926 ] } } | |
, | |
{ "type": "Feature", "id": 455, "properties": { "CASE_ENQUIRY_ID": 101001154763.0, "OPEN_DT": "08\/21\/2014 10:51:38 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "12 Hinckley St Dorchester MA 02125", "fire_district": 7, "pwd_district": "03", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 13", "precinct": 1306, "land_usage": "R2", "LOCATION_STREET_NAME": "12 Hinckley St", "LOCATION_ZIPCODE": 2125, "LATITUDE": 42.31721, "LONGITUDE": -71.05985, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.05985, 42.31721 ] } } | |
, | |
{ "type": "Feature", "id": 456, "properties": { "CASE_ENQUIRY_ID": 101001154998.0, "OPEN_DT": "08\/21\/2014 02:22:13 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "74 E Brookline St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 8", "precinct": 801, "land_usage": "R4", "LOCATION_STREET_NAME": "74 E Brookline St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.33783, "LONGITUDE": -71.0701, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.0701, 42.33783 ] } } | |
, | |
{ "type": "Feature", "id": 457, "properties": { "CASE_ENQUIRY_ID": 101001154781.0, "OPEN_DT": "08\/21\/2014 11:06:36 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "14 Van Winkle St Dorchester MA 02124", "fire_district": 8, "pwd_district": "07", "city_council_district": 3, "police_district": "C11", "neighborhood": "Dorchester", "neighborhood_services_district": 7, "ward": "Ward 16", "precinct": 1608, "land_usage": "R2", "LOCATION_STREET_NAME": "14 Van Winkle St", "LOCATION_ZIPCODE": 2124, "LATITUDE": 42.2824, "LONGITUDE": -71.06455, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.06455, 42.2824 ] } } | |
, | |
{ "type": "Feature", "id": 458, "properties": { "CASE_ENQUIRY_ID": 101001155224.0, "OPEN_DT": "08\/21\/2014 09:39:52 PM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "250-250A Shawmut Ave Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 4, "ward": "Ward 3", "precinct": 307, "land_usage": "R3", "LOCATION_STREET_NAME": "250-250A Shawmut Ave", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34341, "LONGITUDE": -71.06812, "Source": "Self Service" }, "geometry": { "type": "Point", "coordinates": [ -71.06812, 42.34341 ] } } | |
, | |
{ "type": "Feature", "id": 459, "properties": { "CASE_ENQUIRY_ID": 101001154651.0, "OPEN_DT": "08\/21\/2014 09:19:56 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "85-91 W Newton St Roxbury MA 02118", "fire_district": 4, "pwd_district": "1C", "city_council_district": 2, "police_district": "D4", "neighborhood": "South End", "neighborhood_services_district": 6, "ward": "Ward 9", "precinct": 901, "land_usage": "RC", "LOCATION_STREET_NAME": "85-91 W Newton St", "LOCATION_ZIPCODE": 2118, "LATITUDE": 42.34097, "LONGITUDE": -71.075794, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.075794, 42.34097 ] } } | |
, | |
{ "type": "Feature", "id": 460, "properties": { "CASE_ENQUIRY_ID": 101001154721.0, "OPEN_DT": "08\/21\/2014 10:13:26 AM", "CLOSED_DT": null, "CASE_STATUS": "Open", "CLOSURE_REASON": "", "CASE_TITLE": "Rodent Activity", "SUBJECT": "Inspectional Services", "REASON": "Environmental Services", "TYPE": "Rodent Activity", "QUEUE": "ISD_Environmental Services (INTERNAL)", "Department": "ISD", "Location": "94 Horace St East Boston MA 02128", "fire_district": 1, "pwd_district": "09", "city_council_district": 1, "police_district": "A7", "neighborhood": "East Boston", "neighborhood_services_district": 1, "ward": "Ward 1", "precinct": 111, "land_usage": "E", "LOCATION_STREET_NAME": "94 Horace St", "LOCATION_ZIPCODE": 2128, "LATITUDE": 42.38287, "LONGITUDE": -71.01606, "Source": "Constituent Call" }, "geometry": { "type": "Point", "coordinates": [ -71.01606, 42.38287 ] } } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment