Skip to content

Instantly share code, notes, and snippets.

@boeric
Last active May 24, 2020 03:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save boeric/c1fe5650da3d6e790706 to your computer and use it in GitHub Desktop.
Save boeric/c1fe5650da3d6e790706 to your computer and use it in GitHub Desktop.
Mass Shootings in the US

Mass Shootings

The visualization is using data from www.shootingtracker.com and covers the period January 2013 through early December 2015. The event data (comprised of over 1000 shooting events) has been grouped into weeks.

Notes:

  1. The map can be dragged and zoomed with the mouse
  2. The circles on the map corresponds to the shooting events in the selected weeks. The larger the circle the higher the dead/injured count
  3. Click a circle to display the metadata of the corresponding event, including links to media reports
  4. The color coding means red for events where deaths occured and orange for events with injuries but no deaths
  5. The bar chart at the bottom is interactive. There is a rectangular area called brush on the bar chart which is used to select the weeks of interest. When starting up, the visualization has preselected the weeks in the range of October 2014 to October 2015
  6. The brush can be dragged sideways, or resized by dragging the brush "handles" at the right and left edge of the brush
  7. By clicking outside the brush, all weeks (153 in total) will be selected (at which point in time, the brush will be hidden)
  8. To re-engage the brush (and the weekly filter), simply drag across the bar chart with the mouse
  9. When starting up, the visualization has selected the shooting event count per week as the data source for the bar chart. To change the data source to either dead or injured, use the "radio" buttons on the left of the bar chart
  10. To animate the data week by week, use the Start Animation button on top of the bar chart.
  11. The animation can be stopped or resumed, single-stepped forwards or backwards, and the animation speed can be adjusted
  12. The animation cycles through each week and when reaching the end, will restart at the first week

Technically, the visualization is using D3.js, Crossfilter.js and Mapbox's API, and is partially based on a great crossfilter example here and a variety of Mapbox examples here. The map source is Mapbox and Open Streetmaps.

Open Issues:

  1. The Mapbox popup windows are currently not rendered on top of visualization stack, which means that they could be rendered below the title of the visualization. The fix is to change the z-index of the popup window
  2. When multiple events have occured in the same place in the selected period, only the top most circle/event is visible and clickable. The fix is to display metadata for all events at the particular location in the popup window (and not just the topmost event)
  3. The events have been geo located using the Google geocoder. Due to issues in the raw data (where not all events have clean City/State identifiers), some events have been incorrectly located
  4. When the animation is running, clicking in the bar chart will terminate the animator (as designed). However, click-dragging (which will reengage the brush) will currently not terminate the animator. The fix is to kill the animator upon click-dragging in the svg, in addition to simple clicks

See the visualization in action here. See the project at Github Gist here, and Github here.

<!doctype html>
<html>
<head>
<meta charset=utf-8 />
<title>Mass Shootings</title>
<!-- Author: Bo Ericsson, https://www.linkedin.com/in/boeric00/ -->
<!-- Based on crossfilter example (http://square.github.io/crossfilter/) and API (https://github.com/square/crossfilter/wiki/API-Reference), and MapBox examples and API (https://mapbox.com) -->
<!--<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />-->
<script src='https://api.mapbox.com/mapbox.js/v2.2.4/mapbox.js'></script>
<link href='https://api.mapbox.com/mapbox.js/v2.2.4/mapbox.css' rel='stylesheet' />
<link href='http://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script src="http://square.github.io/crossfilter/crossfilter.v1.min.js"></script>
<link rel="stylesheet" href="styles.css">
<script src="index.js" defer></script>
</head>
<body>
<div>
<div id="mapDiv"></div>
<div class="titleDiv">
<h1>Mass Shootings in the US</h1>
<h4>January 2013 - December 2015&nbsp;&nbsp;<span class="source"><a href="http://shootingtracker.com/wiki/Main_Page" target="_blank" title="Opens in a new window">(Source)</a></span></h4>
</div>
<div class="infoDiv"></div>
<div class="chart">
<div class="title">Mass Shootings by Week</div>
<div class="select">
<label><input type="radio" name="view" value="count" checked>Events</label>
<label><input type="radio" name="view" value="dead">Dead</label>
<label><input type="radio" name="view" value="injured">Injured</label>
</div>
<div class="animControls"></div>
</div>
</div>
/* By Bo Ericsson, https://www.linkedin.com/in/boeric00/ */
/* eslint-disable no-console, no-restricted-globals, func-names, quotes, no-multi-spaces,
prefer-template, no-script-url, prefer-arrow-callback, no-param-reassign, no-use-before-define,
no-nested-ternary, max-len, no-shadow, no-multi-assign, no-plusplus, object-curly-newline
*/
/* global d3, crossfilter, L */
console.log("d3.version", d3.version);
console.log("crossfilter.version", crossfilter.version);
// variables
let chart;
// formats
const fmt = d3.format("02d");
const fmt1dec = d3.format(".1f");
const fmtM = d3.format(",d");
// ensure at least 700px height if running in an iframe (bl.ocks)
// http://bl.ocks.org/mbostock/1093025
d3.select(self.frameElement).transition().duration(500).style("height", "600px");
// build the map
const mapId = "boeric.omod7h1p"; // dark map
L.mapbox.accessToken = 'pk.eyJ1IjoiYm9lcmljIiwiYSI6IkZEU3BSTjQifQ.XDXwKy2vBdzFEjndnE4N7Q';
const map = L.mapbox.map("mapDiv", mapId).setView([33, -100], 4);
// create layer to hold shooting events
const shootingsLayer = L.geoJson(null, { pointToLayer: scaledPoint }).addTo(map);
// helper functions to set map marker attributes
function pointColor(feature) {
return feature.properties.Dead > 0 ? "red" : "orange";
}
function pointRadius(feature) {
return Math.max(feature.properties.Dead * 2, 6);
}
function scaledPoint(feature, latlng) {
// generate html for popup
let html = "<div class='marker-title'>Mass Shooting Event</div>";
html += "<div class='marker-description'>";
html += "Location: " + feature.properties.Location + '<br>';
html += "Date: " + feature.properties.displayDate + "<br>";
html += "Dead: " + feature.properties.Dead + "<br>";
html += "Injured: " + feature.properties.Injured + "<br>";
html += "References: <br>";
// generate an anchor element for each reference
feature.properties.References.forEach(function (d) {
// http://stackoverflow.com/questions/8498592/extract-root-domain-name-from-string
const matches = d.match(/^https?:\/\/([^/?#]+)(?:[/?#]|$)/i);
const domain = matches && matches[1];
html += "&nbsp;&nbsp;<a href='" + d + "' target='_blank' title='Opens in a new window'>" + domain + "</a><br>";
});
// return the marker
return L.circleMarker(latlng, {
radius: pointRadius(feature),
fillColor: pointColor(feature),
fillOpacity: 0.6,
weight: 0.5,
color: "darkred",
}).bindPopup(html);
}
// get reference to chart div
const chartDiv = d3.select(".chart");
// add a reset anchor element
chartDiv.select(".title")
.append("a")
.attr("href", "javascript:reset()")
.attr("class", "reset")
.text("Reset filter")
.style("margin-left", "10px")
.style("display", "none");
// get the data
d3.json("shootings.GeoJSON", function (error, data) {
// let featureCount = data.features.length;
// process the data
data.features.forEach(function (d) {
const c = d.properties.Date.split("/");
const year = +c[2] + 2000;
const month = +c[0] - 1;
const day = +c[1];
const date = new Date(year, month, day);
const week = d3.time.week(date);
const weekOfYear = d3.time.weekOfYear(week);
d.properties.date = date;
d.properties.displayDate = date.toString().substring(0, 16);
d.properties.week = week;
d.properties.weekNumber = fmt(weekOfYear);
d.properties.year = week.getYear() + 1900;
d.properties.weekBin = (week.getYear() + 1900) + "-" + fmt(weekOfYear);
});
// get extent (earliest/latest) dates
const dateExtent = d3.extent(data.features, function (d) { return d.properties.date; });
// add one week to extent
dateExtent[1].setDate(dateExtent[1].getDate() + 7);
// sort the features in date order
data.features.sort(function (a, b) {
if (a.properties.date > b.properties.date) return 1;
if (a.properties.date < b.properties.date) return -1;
return 0;
});
// init crossfilter
const cf = crossfilter(data.features);
// add week dimension
const week = cf.dimension(function(d) { return d.properties.week; });
// create groups from the week dimension
const countGroup = week.group(d3.time.week);
const deadGroup = week.group().reduceSum(function(d) { return d.properties.Dead; });
const injuredGroup = week.group().reduceSum(function(d) { return d.properties.Injured; });
// console.log("deadGroup.top()", deadGroup.top(Infinity))
// console.log("deadGroup.all())", deadGroup.all())
// console.log("injuredGroup.top()", injuredGroup.top(Infinity))
// add tracking dimension and group
const weekTracker = cf.dimension(function (d) { return d.properties.week; });
const countTracker = weekTracker.group(d3.time.week);
// add event handlers to toggle data series view (based on the groups defined above)
d3.selectAll("input[type=radio][name=view]")
.on("change", function () {
const elem = d3.select(this);
const value = elem.property("value");
const group = value === "count" ? countGroup : value === "dead" ? deadGroup : injuredGroup;
// rebuild the svg bar chart with the new data series
chart
.removeContents()
.brushDirty(true)
.group(group);
// refresh viz
renderAll();
});
// create the bar chart
chart = barChart()
.dimension(week)
.group(countGroup)
.round(d3.time.week.round) // ensures whole week
.x(d3.time.scale()
.domain(dateExtent)
.rangeRound([0, 5 * countGroup.all().length + 1]))
.filter([new Date(2014, 9, 5), new Date(2015, 9, 4)])
// .filter([new Date(2013, 1, 1), new Date(2013, 5, 1)])
// .filter(null)
.on("brush", function () { renderAll(); })
.on("brushend", function () { renderAll(); })
.enableBrush(true);
// init animator
const anim = animator()
.speed(1000)
.chart(chart)
.container(d3.select(".animControls"));
// start the animator
anim(countGroup.all());
// window.anim = anim; // uncomment this to get access to the animator object from the browser console
// called at init, by the brush event handlers and by filter reset "a" elem
function renderAll() {
// run the chart function (these three are equivalent functionally)
// d3.select(".chart").call(chart);
chartDiv.call(chart);
// chart(chartDiv)
// get the filtered data
const selected = week.top(Infinity);
// console.log("selected", selected)
// create geojson structure (needed for mapbox api)
const geoJson = {
type: "FeatureCollection",
features: selected,
};
// clear the shootings layer and add the new filtered data
shootingsLayer
.clearLayers()
.addData(geoJson);
// update info window
const totalEvents = selected.length;
const groups = countTracker.all();
const weeks = groups.reduce(function (p, v, i) { return groups[i].value > 0 ? p + 1 : p + 0; }, 0);
const deadInjuredCount = selected
.reduce(function (p, c, i) {
return { dead: selected[i].properties.Dead + p.dead, injured: selected[i].properties.Injured + p.injured };
}, { dead: 0, injured: 0 });
const avgDead = deadInjuredCount.dead / weeks;
const avgInjured = deadInjuredCount.injured / weeks;
// create html for info window
let html = "";
html += "<table>";
html += " <tr><td>Number of Weeks</td><td class='data'>" + weeks + "</td></tr>";
html += " <tr><td>Total Shootings</td><td class='data'>" + fmtM(totalEvents) + "</td></tr>";
html += " <tr class='dead'><td>Total Dead</td><td class='data'>" + fmtM(deadInjuredCount.dead) + "</td></tr>";
html += " <tr class='injured'><td>Total Injured</td><td class='data'>" + fmtM(deadInjuredCount.injured) + "</td></tr>";
if (weeks !== 1) {
html += " <tr class='dead'><td>Dead per Week</td><td class='data'>" + fmt1dec(avgDead) + "</td></tr>";
html += " <tr class='injured'><td>Injured per Week</td><td class='data'>" + fmt1dec(avgInjured) + "</td></tr>";
}
html += "</table>";
// set the html
d3.select(".infoDiv").html(html);
}
// initial render
renderAll();
// resets the week filter (driven by the bar chart brush)
window.reset = function () {
if (anim) anim.exit();
chart.filter(null);
renderAll();
};
// setup the bar chart (used to filter weeks)
function barChart() {
// TODO: remove this instance counter (in this viz, there is only one instance)
if (!barChart.id) barChart.id = 0;
let margin = { top: 10, right: 10, bottom: 20, left: 50 };
let x;
let y = d3.scale.linear().range([59, 0]);
const id = barChart.id++;
const axis = d3.svg.axis().orient("bottom");
const brush = d3.svg.brush();
let brushDirty;
let dimension;
let group;
let round;
let gBrush;
let enableBrush;
let theDiv;
// main bar chart function; will be called repeatedly by renderAll
function chart(div) {
// determine dimensions of svg
const width = x.range()[1];
const height = y.range()[0];
// update y scale domain
y.domain([0, group.top(1)[0].value]); // set y domain to max value in this group
// TODO: inefficient code; div is an array of one
div.each(function() {
const div = theDiv = d3.select(this);
let g = div.select("g");
// if g is empty, reubild the svg
if (g.empty()) {
// create svg and group
g = div.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")")
.on("click", function () {
// exit the animator
if (anim) anim.exit();
// TODO: need to handle the case of mouse drag as well...
});
// reset the clip path to full width
g.append("clipPath")
.attr("id", "clip-" + id)
.append("rect")
.attr("width", width)
.attr("height", height);
// generate two paths, one background, one foreground
g.selectAll(".bar")
.data(["background", "foreground"])
.enter().append("path")
.attr("class", function(d) { return d + " bar"; })
// assign all the data in the group to the path
.datum(group.all());
// assign the clip path to the foreground bars
g.selectAll(".foreground.bar")
.attr("clip-path", "url(#clip-" + id + ")");
// Initialize the brush component with pretty resize handles.
if (enableBrush) {
gBrush = g.append("g").attr("class", "brush").call(brush);
gBrush.selectAll("rect").attr("height", height);
gBrush.selectAll(".resize").append("path").attr("d", resizePath);
}
// add the x-axis last (so it's drawn on top of brush)
g.append("g")
.attr("class", "axis")
.attr("transform", "translate(0," + height + ")")
.call(axis);
}
// Only redraw the brush if set externally.
// at init, the date chart has an externally set brush
if (brushDirty) {
brushDirty = false;
g.selectAll(".brush").call(brush);
div.select(".title a").style("display", brush.empty() ? "none" : null);
if (brush.empty()) {
g.selectAll("#clip-" + id + " rect")
.attr("x", 0)
.attr("width", width);
} else {
const extent = brush.extent();
g.selectAll("#clip-" + id + " rect")
.attr("x", x(extent[0]))
.attr("width", x(extent[1]) - x(extent[0]));
}
}
// set the d attribute on the path
g.selectAll(".bar").attr("d", barPath);
});
// generate the bar chart path item
function barPath(groups) {
const path = [];
let i = -1;
const n = groups.length;
let d;
while (++i < n) {
d = groups[i];
path.push("M", x(d.key), ",", height, "V", y(d.value), "h4V", height);
}
return path.join("");
}
// generate pretty brush left and right "handles"
function resizePath(d) {
const e = +(d === "e");
const x = e ? 1 : -1;
const y = height / 3;
return "M" + (0.5 * x) + "," + y
+ "A6,6 0 0 " + e + " " + (6.5 * x) + "," + (y + 6)
+ "V" + (2 * y - 6)
+ "A6,6 0 0 " + e + " " + (0.5 * x) + "," + (2 * y)
+ "Z"
+ "M" + (2.5 * x) + "," + (y + 8)
+ "V" + (2 * y - 8)
+ "M" + (4.5 * x) + "," + (y + 8)
+ "V" + (2 * y - 8);
}
}
// brush handlers
brush.on("brushstart.chart", function() {
// get the containing div
const div = d3.select(this.parentNode.parentNode.parentNode);
// remove the display property from the reset anchor elem
div.select(".title a").style("display", null);
});
brush.on("brush.chart", function() {
const g = d3.select(this.parentNode);
let extent = brush.extent();
// handle rounding of extent (only integers)
if (round) {
g.select(".brush")
.call(brush.extent(extent = extent.map(round))) // set a rounded brush extent
.selectAll(".resize")
.style("display", null); // remove the resize handles (why?)
}
// update clip rectangle
g.select("#clip-" + id + " rect")
.attr("x", x(extent[0]))
.attr("width", x(extent[1]) - x(extent[0]));
// update the filter
dimension.filterRange(extent);
});
brush.on("brushend.chart", function () {
if (brush.empty()) {
emptyBrush.call(this);
}
});
// function to sync UI and crossfilter to an empty brush
function emptyBrush() {
// console.log("emptyBrush", this);
if (!brush.empty()) {
console.error("brush not empty");
return;
}
// get reference to containing div
const div = d3.select(this.parentNode.parentNode.parentNode);
// hide the reset anchor element
div.select(".title a").style("display", "none");
// remove the clip rectangle
div.select("#clip-" + id + " rect")
.attr("x", null) // remove the x attribute which will render the clipRect invalid
.attr("width", "100%");
// reset the filter
dimension.filterAll();
}
// chart configuration functions
chart.margin = function (_) {
if (!arguments.length) return margin;
margin = _;
return chart;
};
chart.x = function (_) {
if (!arguments.length) return x;
x = _;
axis.scale(x);
brush.x(x);
return chart;
};
chart.y = function (_) {
if (!arguments.length) return y;
y = _;
return chart;
};
chart.dimension = function (_) {
// console.log("chart.dimension..." + _)
if (!arguments.length) return dimension;
dimension = _;
return chart;
};
chart.filter = function (_) {
if (_) {
brush.extent(_);
dimension.filterRange(_);
} else {
brush.clear();
dimension.filterAll();
}
brushDirty = true;
return chart;
};
chart.group = function (_) {
if (!arguments.length) return group;
group = _;
return chart;
};
chart.round = function (_) {
if (!arguments.length) return round;
round = _;
return chart;
};
chart.removeContents = function () {
theDiv.selectAll("svg").remove();
// theDiv.selectAll("a").remove();
// console.log("theDiv", theDiv)
return chart;
};
chart.brushDirty = function (_) {
if (!arguments.length) return brushDirty;
brushDirty = _;
return chart;
};
chart.enableBrush = function (_) {
if (!arguments.length) return enableBrush;
enableBrush = _;
return chart;
};
chart.clearBrush = function () {
// console.log("---", d3.select(".brush"))
d3.select(".brush").call(brush.clear());
emptyBrush.call(d3.select(".brush").node());
return chart;
};
chart.brushExtent = function (_) {
if (!arguments.length) return brush.extent();
// console.log("setting brush extent...", _, "current", brush.extent())
brush.extent(_);
d3.select(".brush").call(brush);
brush.event(d3.select(".brush"));
return chart;
};
// copy "on" event handlers from "brush" to "chart"
return d3.rebind(chart, brush, "on");
}
});
// animator object/function
function animator() {
let speed = 1000;
let currPos = 0;
let animating = false;
let data;
let ready = false;
let inTimeout = false;
let chart;
let container;
function main(_) {
data = _;
if (data.length > 0) ready = true;
// data good?
if (!ready) {
console.error("bad data");
return;
}
// container good?
if (!container) {
console.error("No animation control container provided");
return;
}
// event handlers
function startStop() {
this.blur();
const elem = d3.select(this);
const value = elem.attr("value");
// console.log("startStop...", this, value)
if (value === "start") {
// start the animation...
main.resume();
// change this button text
elem.text("Exit Animation").attr("value", "stop");
// show buttons
d3.selectAll(".anim2").style("display", "inline-block");
d3.selectAll(".anim4").style("display", "inline-block");
} else {
// stop the animation
main.stop();
// change this button text
elem.text("Start Animation").attr("value", "start");
// hide buttons
d3.selectAll(".anim").style("display", "none");
// ensure the halt/resume button says halt
d3.select(".anim2").text("Halt").attr("value", "halt");
}
}
function haltResume() {
this.blur();
const elem = d3.select(this);
const value = elem.attr("value");
// console.log("haltResume...", this, value)
if (value === "halt") {
// halt the animation
main.stop();
// change this button text
elem.text("Resume").attr("value", "resume");
// hide buttons
d3.selectAll(".anim4").style("display", "none");
// show buttons
d3.selectAll(".anim3").style("display", "inline-block");
} else {
// resume the animation
main.resume();
// change this button text
elem.text("Halt").attr("value", "halt");
// hide buttons
d3.selectAll(".anim3").style("display", "none");
// show buttons
d3.selectAll(".anim4").style("display", "inline-block");
}
}
function fasterSlower() {
this.blur();
const elem = d3.select(this);
const value = elem.attr("value");
// console.log("fasterSlower...", this, value)
if (value === "faster") main.faster();
else main.slower();
}
function forwardBackward() {
this.blur();
const elem = d3.select(this);
const value = elem.attr("value");
// console.log("forwardBackward...", this, value, this.value)
if (value === "forward") main.forward();
else main.backward();
}
function reset() {
this.blur();
main.reset();
}
// animation controls
const controls = [
{ text: "Start Animation", handler: startStop, id: "startStop", display: "inline-block", value: "start", class: "anim1", width: "110px" },
{ text: "Halt", handler: haltResume, display: "none", value: "halt", class: "anim anim2", width: "60px" },
{ text: "Backward", handler: forwardBackward, display: "none", value: "backward", class: "anim anim3" },
{ text: "Forward", handler: forwardBackward, display: "none", value: "forward", class: "anim anim3" },
{ text: "Faster", handler: fasterSlower, display: "none", value: "faster", class: "anim anim4" },
{ text: "Slower", handler: fasterSlower, display: "none", value: "slower", class: "anim anim4" },
{ text: "Reset", handler: reset, display: "none", class: "anim anim3 anim4" }
];
container.selectAll("button")
.data(controls)
.enter().append("button")
.attr("id", function (d) { return d.id ? "anim_" + d.id : null; })
.style("display", "inline-block")
.style("cursor", "default")
.style("width", function (d) { return d.width ? d.width : "70px"; })
.style("text-align", "center")
.attr("class", function (d) { return d.class; })
.style("display", function (d) { /* return "inline-block"; */ return d.display; })
.attr("value", function (d) { return d.value ? d.value : null; })
// .attr("class", "reset")
.text(function (d) { return d.text; })
.on("click", function (d) { /* console.log("adfads", d.handler); */ d.handler.call(this); });
// set index
currPos = data.length - 1;
setInterval(function () {
if (animating && !inTimeout) go(0);
}, 100);
function go(useSpeed) {
inTimeout = true;
setTimeout(function () {
if (animating) {
currPos++;
if (currPos === data.length) currPos = 0;
oneCycle();
}
if (animating) go(speed);
else inTimeout = false;
}, useSpeed);
}
}
function oneCycle() {
// console.log("oneCycle")
const dateExtent = [];
dateExtent[0] = new Date(data[currPos].key);
dateExtent[1] = new Date(data[currPos].key);
dateExtent[1].setDate(dateExtent[1].getDate() + 7);
chart.brushExtent(dateExtent);
}
// action functions
main.reset = function () {
speed = 1000;
currPos = 0;
oneCycle();
// animating = false;
};
main.resume = function () {
animating = true;
};
main.stop = function () {
animating = false;
};
main.exit = function () {
animating = false;
// change this button text
d3.select("#anim_startStop").text("Start Animation").attr("value", "start");
// hide buttons
d3.selectAll(".anim").style("display", "none");
// ensure the halt/resume button says halt
d3.select(".anim2").text("Halt").attr("value", "halt");
};
main.slower = function () {
speed = Math.min(4000, speed * 2);
};
main.faster = function () {
speed = Math.max(250, speed / 2);
};
main.forward = function () {
if (ready && !animating) {
currPos++;
if (currPos === data.length) currPos = 0;
oneCycle();
} else console.log("not ready");
};
main.backward = function () {
if (ready && !animating) {
currPos--;
if (currPos < 0) currPos = data.length - 1;
oneCycle();
} else console.log("not ready");
};
// configuration functions
main.speed = function (_) {
if (!arguments.length) return speed;
speed = _;
return main;
};
main.chart = function (_) {
if (!arguments.length) return chart;
chart = _;
return main;
};
main.container = function (_) {
if (!arguments.length) return container;
container = _;
return main;
};
return main;
} // end animator

Mass Shootings

The visualization is using data from www.shootingtracker.com and covers the period January 2013 through early December 2015. The event data (comprised of over 1000 shooting events) has been grouped into weeks.

Please see README.md for more information

MIT License
Copyright (c) 2020 Bo Ericsson
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"metadata": {
"generated": "2016-01-14T18:12:15.281Z",
"by": "Bo Ericsson (bo@boe.net)",
"source": "http://www.shootingtracker.com/wiki/Main_Page",
"title": "List of Known Mass Shootings 2013 - 2015"
},
"features": [
{
"type": "Feature",
"properties": {
"Date": "1/1/13",
"Shooter": "Carlito Montoya",
"Dead": 4,
"Injured": 0,
"Location": "Sacramento, CA",
"City": "Sacramento",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://sanfrancisco.cbslocal.com/2013/01/12/3-young-men-teenage-boy-murdered-on-oakland-streets-in-6-hours-no-arrests/",
"http://hinterlandgazette.com/2013/01/oakland-gun-violence-ken-harbin-larry-lovette-eddiebo-rodriguez-4-killed-6hour-span.html",
"http://www.huffingtonpost.com/2013/01/12/oakland-shootings_n_2464783.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4943996,
38.5815719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/1/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Hawthorne, CA",
"City": "Hawthorne",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://losangeles.cbslocal.com/2013/01/01/man-killed-3-wounded-at-nye-party-in-hawthorne/",
"http://latimesblogs.latimes.com/lanow/2013/01/hawthorne-new-year-party-three-killed.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.3525748,
33.9164032
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/1/13",
"Shooter": "Julian Sims",
"Dead": 0,
"Injured": 4,
"Location": "McKeesport, PA",
"City": "McKeesport",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://pittsburgh.cbslocal.com/2013/01/01/4-people-shot-in-mckeesport/",
"http://www.wtae.com/news/local/allegheny/U-S-Marshals-task-force-arrests-New-Year-s-party-shooting-suspect/-/10927008/17977588/-/1ydqtj/-/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.8641232,
40.3470671
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/1/13",
"Shooter": "Desmen Noble, Damian Bell",
"Dead": 1,
"Injured": 4,
"Location": "Lorain, OH",
"City": "Lorain",
"County": "Lorain County",
"State": "OH",
"References": [
"http://www.wkyc.com/news/article/276177/3/Lorain-Arrest-made-in-gas-station-shooting",
"http://www.19actionnews.com/story/20494559/31-year-old-man-charged-with-new-years-day-murder-at-lorain-gas-station",
"http://chronicle.northcoastnow.com/2013/02/14/2-men-indicted-in-new-years-day-lorain-murder/",
"http://morningjournal.com/articles/2013/02/22/news/cops_and_courts/doc5126fa31928a4356439484.txt"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.1823746,
41.452819
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/5/13",
"Shooter": "Sonny Archuleta",
"Dead": 4,
"Injured": 0,
"Location": "Aurora, CO",
"City": "Aurora",
"County": "Arapahoe County",
"State": "CO",
"References": [
"http://www.dailydemocrat.com/ci_22322664/aurora-shooter-was-frenetic-talented-neighbor-says",
"http://denver.cbslocal.com/2013/01/06/officer-told-neighbor-standoff-gunman-was-on-meth-binge/",
"http://www.boston.com/news/nation/2013/01/05/dead-after-police-standoff-colo-townhome/h9xsyyl5acLocYiwxX7NQL/story.html",
"http://kwgn.com/2013/02/20/woman-shares-story-of-mental-illness-that-led-to-husbands-shooting-spree/",
"http://media1.policymic.com/site/articles/22081/photo.jpg"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.8319195,
39.7294319
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/7/13",
"Shooter": "Cedric and James Poore",
"Dead": 5,
"Injured": 0,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://usnews.nbcnews.com/_news/2013/01/07/16397584-police-four-women-found-dead-in-tulsa-okla-apartment?lite",
"http://www.newson6.com/story/20523249/police-4-women-found-dead-at-tulsa-apartment",
"http://www.tulsaworld.com/news/article.aspx?subjectid=298&articleid=20130221_297_0_hrimgs614899",
"http://www.cbsnews.com/8301-504083_162-57577466-504083/tulsa-apartment-murders-update-hearing-scheduled-for-brothers-charged-in-quadruple-killing/",
"http://www.tulsaworld.com/article.aspx/Defendant_in_quadruple_homicide_gets_trial_date_in/20130528_11_0_Atrial938006?subj=298",
"http://www.kjrh.com/dpp/news/local_news/tulsa-police-identify-mondays-5-homicide-victims"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/7/13",
"Shooter": "Sandra Palmer",
"Dead": 2,
"Injured": 2,
"Location": "Greensboro, NC",
"City": "Greensboro",
"County": "Guilford County",
"State": "NC",
"References": [
"http://www.huffingtonpost.com/2013/01/09/sandra-palmer-north-carolina-woman-shoots-children-video_n_2439714.html",
"http://soulsofblackwomen.blogspot.com/2013/01/black-women-nc-mom-sandra-palmer-shot.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.7919754,
36.0726354
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/7/13",
"Shooter": "Herbert Bland Jr.",
"Dead": 3,
"Injured": 1,
"Location": "Dinwiddie, VA",
"City": "Dinwiddie",
"County": "Dinwiddie County",
"State": "VA",
"References": [
"http://progress-index.com/news/mental-condition-of-triple-homicide-suspect-at-issue-1.1462996",
"http://www.wric.com/story/20526108/police-man-killed-ex-girlfriend-and-her-mother-in-chesterfield",
"http://www.timesdispatch.com/news/local/chesterfield/dinwiddie-murder-suspect-ordered-held-without-bond/article_bd03c110-6a47-11e2-9c96-0019bb30f31a.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.5857056,
37.0774889
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/10/13",
"Shooter": "Donald Johnson",
"Dead": 3,
"Injured": 2,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2012/01/suspect_killed_two_wounded_in.html",
"http://www.nola.com/crime/index.ssf/2012/01/triple-homicide_suspect_once_c.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/12/13",
"Shooter": "Tresvon Spencer",
"Dead": 1,
"Injured": 4,
"Location": "Tuscaloosa, AL",
"City": "Tuscaloosa",
"County": "Tuscaloosa County",
"State": "AL",
"References": [
"http://www.myfoxal.com/story/20585672/teen-arrested-after-deadly-shooting-rampage-in-tuscaloosa",
"http://blog.al.com/tuscaloosa/2013/01/17-year-old_girl_killed_in_sho.html",
"http://www.tuscaloosanews.com/article/20130114/NEWS/130119908"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.56917349999999,
33.2098407
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/19/13",
"Shooter": "Nehemiah Griego",
"Dead": 5,
"Injured": 0,
"Location": "Albuquerque, NM",
"City": "Albuquerque",
"County": "Bernalillo County",
"State": "NM",
"References": [
"http://www.cbsnews.com/8301-504083_162-57565870-504083/nehemiah-gringo-case-memorial-service-planned-for-family-allegedly-slain-by-new-mexico-teen/",
"http://www.theatlanticwire.com/national/2013/01/teenager-reportedly-used-ar-15-kill-five-new-mexico/61199/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-106.6055534,
35.0853336
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/21/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Brentwood, CA",
"City": "Brentwood",
"County": "Contra Costa County",
"State": "CA",
"References": [
"http://sanfrancisco.cbslocal.com/2013/01/22/4-teens-hurt-in-drive-by-shooting-in-brentwood/",
"http://www.ktvu.com/news/news/crime-law/drive-shooting-wounded-brentwood-teens-appears-hav/nT4c8/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.6957863,
37.931868
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/21/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2013/01/nopd_4_people_shot_in_central.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/25/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://stlouis.cbslocal.com/2013/01/25/one-dead-four-wounded-in-drive-by-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/26/13",
"Shooter": "Julian Johnson",
"Dead": 1,
"Injured": 3,
"Location": "Springfield, OH",
"City": "Springfield",
"County": "Clark County",
"State": "OH",
"References": [
"http://www.daytondailynews.com/news/news/1-dead-3-injured-in-tavern-shooting/nT77k/",
"http://www.wdtn.com/news/local/clark/mondays-most-wanted-julian-johnson"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.8088171,
39.9242266
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/26/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Washington DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://washington.cbslocal.com/2013/01/27/5-injured-in-dc-nightclub-shooting/",
"http://www.wjla.com/articles/2013/01/dc-soundstage-shooting-five-shot-at-nightclub-84496.html",
"http://www.nbcwashington.com/news/local/Five-Injured-in-DC-Nightclub-Shooting-188481201.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/27/13",
"Shooter": "Wilbert Thibodeaux",
"Dead": 1,
"Injured": 3,
"Location": "Charenton, LA",
"City": "Charenton",
"County": "St Mary Parish",
"State": "LA",
"References": [
"http://www.foxnews.com/us/2013/01/26/trooper-officer-killed-2-sheriff-deputies-wounded-in-la-shooting-suspect-in/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-91.5251126,
29.8815936
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/30/13",
"Shooter": "Douglas Harmon",
"Dead": 3,
"Injured": 1,
"Location": "Phoenix, AZ",
"City": "Phoenix",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.businessinsider.com/mark-hummels-dies-after-phoenix-shooting-2013-2"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0740373,
33.4483771
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/1/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Oakland, CA",
"City": "Oakland",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.mercurynews.com/ci_22506049/oakland-one-killed-three-wounded-shooting-at-oakland?source=email"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2711137,
37.8043637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/2/13",
"Shooter": "Sundra Payne",
"Dead": 0,
"Injured": 5,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://wreg.com/2013/02/04/two-killed-7-injured-during-violent-memphis-weekend/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/3/13",
"Shooter": "Christopher Dorner",
"Dead": 5,
"Injured": 4,
"Location": "Began in Riverside, CA",
"City": "Calgary",
"County": "Division No. 6",
"State": "AB",
"References": [
"https://en.wikipedia.org/wiki/Christopher_Dorner",
"http://www.newsday.com/news/nation/christopher-dorner-how-life-on-the-run-ended-for-calif-police-killer-1.4662786"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-114.0878861,
51.0658946
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/3/13",
"Shooter": "Kong Meng Vue, Ryan Cha, Ken Cha",
"Dead": 1,
"Injured": 3,
"Location": "Olivehurst, CA",
"City": "Olivehurst",
"County": "Yuba County",
"State": "CA",
"References": [
"http://sacramento.cbslocal.com/2013/02/04/1-dead-3-hurt-in-olivehurst-shooting/",
"http://www.appeal-democrat.com/articles/cha-127475-ryan-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.5521858,
39.0954484
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/3/13",
"Shooter": "Jackie Spears; Kelcie Stewart",
"Dead": 2,
"Injured": 2,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://wreg.com/2013/02/04/two-killed-7-injured-during-violent-memphis-weekend/",
"http://www.commercialappeal.com/news/2013/feb/03/two-dead-after-early-morning-shooting-frasyer/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/6/13",
"Shooter": "Mayra Perez",
"Dead": 3,
"Injured": 1,
"Location": "Denver, CO",
"City": "Denver",
"County": "Denver County",
"State": "CO",
"References": [
"http://www.usatoday.com/story/news/nation/2013/02/06/2-children-denver-shooting/1895851/",
"http://www.latimes.com/news/nation/nationnow/la-na-nn-denver-shooting-murder-suicide-20130207,0,1746242.story",
"http://www.denverpost.com/breakingnews/ci_22616195/family-2-year-old-denver-girl-shot-by"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.990251,
39.7392358
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/7/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2013/02/07/four-wounded-in-south-shore-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/9/13",
"Shooter": "Malcolm Hall, Brandon Brown, Deron Bridgewater",
"Dead": 0,
"Injured": 4,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.cbsnews.com/8301-504083_162-57569930-504083/mardi-gras-shooting-third-man-arrested-in-new-orleans-bourbon-street-attack/",
"http://www.nola.com/crime/index.ssf/2013/04/suspect_sought_in_bourbon_stre.html",
"http://www.wwltv.com/news/crime/NOPD-releases-video-of-suspect-in-February-quadruple-shooting-202041871.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/11/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Vallejo, CA",
"City": "Vallejo",
"County": "Solano County",
"State": "CA",
"References": [
"http://www.sfgate.com/crime/article/1-dead-4-hurt-in-Vallejo-shooting-4271870.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2566367,
38.1040864
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/11/13",
"Shooter": "Nhan Lap Tran",
"Dead": 1,
"Injured": 4,
"Location": "Oakdale, MN",
"City": "Oakdale",
"County": "Washington County",
"State": "MN",
"References": [
"http://www.kaaltv.com/article/stories/S3021415.shtml?cat=10728",
"http://minnesota.cbslocal.com/2013/05/03/judge-man-incompetent-to-stand-trial-in-fatal-oakdale-shooting/",
"http://oakdale.patch.com/articles/oakdale-suspect-charged-in-shooting-incident-that-killed-9-year-old-boy"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-92.9649361,
44.9630216
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/11/13",
"Shooter": "Thomas Matusiewicz",
"Dead": 3,
"Injured": 2,
"Location": "Wilmington, DE",
"City": "Wilmington",
"County": "New Castle County",
"State": "DE",
"References": [
"http://www.latimes.com/news/nation/nationnow/la-na-nn-delaware-courthouse-shooting-matusiewicz-20130212,0,5059491.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.5397878,
39.7390721
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/12/13",
"Shooter": "Two suspects, David Fresques in custody and Davis Fotu at large",
"Dead": 3,
"Injured": 1,
"Location": "Suburban Salt Lake City (Midvale), UT",
"City": "Sandy",
"County": "Salt Lake County",
"State": "UT",
"References": [
"http://www.kutv.com/news/top-stories/stories/vid_3882.shtml",
"http://www.ksl.com/?nid=148&sid=24062944",
"http://www.abc4.com/content/news/slc/story/utah-police-identify-second-man-in-triple-murder/rT6TLCOvxE63Gs_S67zASw.cspx",
"http://www.cbsnews.com/8301-504083_162-57568965-504083/utah-house-shooting-update-house-where-three-were-shot-dead-is-linked-to-narcotics-police-say/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-111.8491003,
40.5941149
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/13/13",
"Shooter": "Joseph Matteson",
"Dead": 2,
"Injured": 2,
"Location": "Red Springs, NC",
"City": "Red Springs",
"County": "Robeson County",
"State": "NC",
"References": [
"http://www2.wbtw.com/news/2013/feb/14/8/nc-deputies-2-women-dead-2-men-inured-domestic-dis-ar-5590737/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.18309099999999,
34.81516330000001
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/16/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Winston-Salem, NC",
"City": "Winston-Salem",
"County": "Forsyth County",
"State": "NC",
"References": [
"http://www.digtriad.com/news/article/269507/1/Police-Shooting-At-Nitty-Gritty-Soul-Cafe-In-Winston-Salem"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.244216,
36.09985959999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/19/13",
"Shooter": "Ali Sayed",
"Dead": 4,
"Injured": 3,
"Location": "Tustin, CA",
"City": "Tustin",
"County": "Orange County",
"State": "CA",
"References": [
"http://www.nbclosangeles.com/news/local/Tustin-Orange-County-Freeway-Shootings-191813631.html",
"http://www.washingtonpost.com/national/california-authorities-say-at-least-3-dead-after-shooting-spree-spread-in-orange-county/2013/02/19/0e5da3b8-7aac-11e2-9c27-fdd594ea6286_story.html",
"https://www.nytimes.com/2013/02/20/us/shooting-spree-in-california.html?_r=1&amp",
"http://www.cbsnews.com/8301-504083_162-57570298-504083/los-angeles-freeway-shooting-update-new-details-emerge-about-rampage/",
"http://rt.com/usa/three-dead-california-shooting-590/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.826166,
33.7458511
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/21/13",
"Shooter": "Mark Hopkins",
"Dead": 1,
"Injured": 3,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.tulsaworld.com/specialprojects/news/crimewatch/article.aspx?subjectid=450&articleid=20130222_450_0_Police618362",
"http://www.newson6.com/story/21303635/man-in-custody-after-fatal-shooting-at-tulsa-apartments-near-spartan-college",
"http://www.tulsaworld.com/news/article.aspx?subjectid=11&articleid=20130302_11_A16_CUTLIN976045"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/21/13",
"Shooter": "Carlos Zuniga",
"Dead": 2,
"Injured": 2,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.miamiherald.com/2013/02/20/3245009/police-multiple-people-shot-in.html",
"http://www.inquisitr.com/538440/miami-dad-accused-of-killing-his-family-and-then-himself/",
"http://gantdaily.com/2013/02/22/florida-dad-shoots-his-family-killing-young-son-before-committing-suicide/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/22/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Grand Rapids, MI",
"City": "Grand Rapids",
"County": "Kent County",
"State": "MI",
"References": [
"http://www.mlive.com/news/grand-rapids/index.ssf/2013/02/four_shot_outside_grandville_s.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.6680863,
42.9633599
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/23/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Oakland, CA",
"City": "Oakland",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.ktvu.com/news/news/crime-law/four-hospitalized-after-teens-shoot-bus-oakland/nWXxG/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2711137,
37.8043637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/23/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Lancaster, CA",
"City": "Lancaster",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://latimesblogs.latimes.com/lanow/2013/02/suspects-sought-in-shooting-outside-lancaster-club.html",
"http://www.theavtimes.com/2013/02/23/four-wounded-in-lancaster-nightclub-shooting/#"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.1541632,
34.6867846
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/24/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 8,
"Location": "Macon, GA",
"City": "Macon",
"County": "Bibb County",
"State": "GA",
"References": [
"http://www.41nbc.com/news/local-news/20390-one-critcally-injured-seven-others-wounded-in-macon-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.6324022,
32.8406946
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/2/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Shreveport, LA",
"City": "Shreveport",
"County": "Caddo Parish",
"State": "LA",
"References": [
"http://www.whlt.com/story/21443711/1-dead-3-hurt-in-shreveport-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.7501789,
32.5251516
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/3/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Moultrie, GA",
"City": "Moultrie",
"County": "Colquitt County",
"State": "GA",
"References": [
"http://www.wctv.tv/news/georgianews/headlines/Quadruple-Shooting-in-Moultrie-194924631.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.7888387,
31.1799407
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/3/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://abclocal.go.com/ktrk/story?section=news/local&id=9013761&pt=print",
"http://www.chron.com/news/texas/article/6-injured-in-shooting-at-Houston-birthday-party-4324433.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/4/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Saginaw, MI",
"City": "Saginaw",
"County": "Saginaw County",
"State": "MI",
"References": [
"http://www.freep.com/article/20130304/NEWS06/130304005/Shooting-at-Saginaw-area-bar-leaves-4-wounded?odyssey=tab%7Ctopnews%7Ctext%7CMichigan%20news"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.9508068,
43.4194699
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/4/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Los Banos, CA",
"City": "Los Banos",
"County": "Merced County",
"State": "CA",
"References": [
"http://www.losbanosenterprise.com/2013/03/08/203519/gunfire-leaves-1-dead-3-hurt.html",
"http://www.losbanosenterprise.com/2013/03/23/204756/two-teens-arrested-in-los-banos.html",
"http://www.mercedsunstar.com/2013/03/23/2898920/two-teens-arrested-in-los-banos.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.8499151,
37.0582786
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/5/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.theindychannel.com/news/local-news/police-investigate-east-side-shooting",
"http://www.wbiw.com/state/archives/2013/03/one_dead_three_hurt_after_shoo.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/5/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Fuquay-Varina, NC",
"City": "Fuquay Varina",
"County": "Wake County",
"State": "NC",
"References": [
"http://www.wral.com/four-shot-at-fuquay-varina-apartment-complex/12189440/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.80001279999999,
35.5843235
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/7/13",
"Shooter": "Joshua Hurst",
"Dead": 2,
"Injured": 2,
"Location": "Jackson, MS",
"City": "Jackson",
"County": "Hinds County",
"State": "MS",
"References": [
"http://www.wapt.com/news/central-mississippi/jackson/Police-seek-man-wanted-in-quadruple-shooting/-/9156912/19231618/-/1p2i2q/-/index.html",
"http://www.buffalonews.com/apps/pbcs.dll/article?AID=/20130309/CITYANDREGION/130309181/1002"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.1848103,
32.2987573
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/8/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Buffalo, NY",
"City": "Buffalo",
"County": "Erie County",
"State": "NY",
"References": [
"http://www.buffalonews.com/apps/pbcs.dll/article?AID=/20130309/CITYANDREGION/130309181/1002"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8783689,
42.88644679999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/11/13",
"Shooter": "Andrew Davon Allen and Craig Willson",
"Dead": 0,
"Injured": 13,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.washingtonpost.com/local/police-seek-two-men-in-connection-with-shooting-that-injured-13/2013/03/14/4fa6145a-8cda-11e2-9838-d62f083ba93f_story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/11/13",
"Shooter": "Taleb Hussein Yousef Salameh",
"Dead": 1,
"Injured": 3,
"Location": "North Liberty, IA",
"City": "North Liberty",
"County": "Johnson County",
"State": "IA",
"References": [
"http://qctimes.com/news/state-and-regional/iowa/grad-student-killed-in-shooting-that-wounded-officers/article_5cc0b1b4-8a72-11e2-9061-001a4bcf887a.html?comment_form=true",
"http://www.officer.com/news/10893311/three-iowa-officers-shot-suspect-killed-in-shootout"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-91.60809739999999,
41.739482
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/13/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "San Diego, CA",
"City": "San Diego",
"County": "San Diego County",
"State": "CA",
"References": [
"http://www.usatoday.com/story/news/2013/03/14/upstate-new-york-herkimer-mohawk-suspect-surrounded/1986913/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.1610838,
32.715738
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/13/13",
"Shooter": "Kurt Myers",
"Dead": 5,
"Injured": 2,
"Location": "Herkimer, NY",
"City": "Herkimer",
"County": "Herkimer County",
"State": "NY",
"References": [
"http://www.usatoday.com/story/news/2013/03/14/upstate-new-york-herkimer-mohawk-suspect-surrounded/1986913/",
"http://www.uticaod.com/news/x930817116/Police-release-autopsy-results-for-Herkimer-Co-killer"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.9859889,
43.0256259
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/14/13",
"Shooter": "Angelica Vazquez",
"Dead": 4,
"Injured": 0,
"Location": "Mesquite, TX",
"City": "Mesquite",
"County": "Dallas County",
"State": "TX",
"References": [
"http://www.huffingtonpost.com/2013/03/15/angelica-vazquez-murder-suicide-paulina-alejandro_n_2883425.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.5991593,
32.76679550000001
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/14/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Modesto, CA",
"City": "Modesto",
"County": "Stanislaus County",
"State": "CA",
"References": [
"http://sacramento.cbslocal.com/2013/03/14/modesto-police-4-injured-in-drive-by-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.9968782,
37.63909719999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/16/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Galt, CA",
"City": "Galt",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://www.kcra.com/news/7-injured-in-Galt-drive-by-shooting/-/11797728/19349066/-/9pvp0e/-/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2999485,
38.2546373
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/17/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "Stockton, CA",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://www.news10.net/news/article/236431/2/1-dead-and-4-more-injured-in-Stockton-shooting",
"http://www.mercurynews.com/breaking-news/ci_22816323/police-2-dead-stockton-fatal-shooting",
"http://www.recordnet.com/apps/pbcs.dll/article?AID=/20130318/A_NEWS/130319881"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/17/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Belle Glade, FL",
"City": "Belle Glade",
"County": "Palm Beach County",
"State": "FL",
"References": [
"http://www.palmbeachpost.com/news/news/crime-law/one-dead-three-others-wounded-in-shooting-at-belle/nWthJ/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.6675577,
26.6845104
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/20/13",
"Shooter": "Brandon Menefee",
"Dead": 3,
"Injured": 1,
"Location": "Jefferson County, AL",
"County": "Jefferson County",
"State": "AL",
"References": [
"http://blog.al.com/spotnews/2013/03/birmingham_boy_remains_critica.html",
"http://blog.al.com/spotnews/2013/03/mother_and_child_found_killed.html",
"http://www.alabamas13.com/story/21752694/apparent-murder-suicide-in-jefferson-county"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.9824288,
33.4914122
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/21/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.reuters.com/article/2013/03/21/us-usa-chicago-shooting-idUSBRE92K0QY20130321",
"http://www.suntimes.com/news/19001308-761/7-shot-during-rap-video-release-party-at-gresham-nightclub.html",
"http://abclocal.go.com/wls/story?section=news/local&id=9035531"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/21/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Kansas City, MO",
"City": "KCMO",
"County": "Jackson County",
"State": "MO",
"References": [
"http://www.nbcnews.com/id/51286298/ns/local_news-kansas_city_mo/",
"http://www.kansascity.com/2013/03/22/4136463/four-shot-one-dead-near-plaza.html",
"http://www.tonyskansascity.com/2013/03/shock-kansas-city-triple-shooting.html",
"http://www.kansascity.com/2013/03/22/4136965/lethal-invasion-happened-at-home.html",
"http://www.kmbz.com/4-shot-1-dead-in-Brookside-home-invasion/15863144"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.5785667,
39.0997265
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/22/13",
"Shooter": "Joseph Brown",
"Dead": 1,
"Injured": 3,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://abcnews.go.com/US/wireStory/police-people-shot-fatally-coney-island-18793764#.UUzb2hekqc1",
"http://www.nytimes.com/2013/03/23/nyregion/man-killed-in-coney-island-shooting-three-are-wounded.html?_r=0",
"http://www.usatoday.com/story/news/nation/2013/03/22/coney-island-shooting/2011859/",
"http://newyork.cbslocal.com/2013/03/22/one-dead-two-injured-in-coney-island-shooting/",
"http://www.nbcnewyork.com/news/local/Joseph-Brown-Man-Arrested-Coney-Island-Shootings-Killed-1-Hurt-3-199680871.html",
"http://gothamist.com/2013/03/24/brooklyn_man_arrested_for_shooting_2.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/26/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "St. Petersberg, FL",
"City": "St. Petersburg",
"County": "Pinellas County",
"State": "FL",
"References": [
"http://www.myfoxtampabay.com/story/21803539/2013/03/27/multiple-people-injured-in-st-pete-shooting",
"http://www.tampabay.com/news/publicsafety/crime/six-sent-to-hospital-after-string-of-shootings-in-st-petersburg/2111457",
"http://www.abcactionnews.com/dpp/news/region_pinellas/4-people-shot-in-st-petersburg-police-have-possible-motive-for-the-shootout"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.6267345,
27.7518284
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/31/13",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Auburn, WA",
"City": "Auburn",
"County": "King County",
"State": "WA",
"References": [
"http://q13fox.com/2013/03/31/three-people-fatally-shot-outside-auburn-tavern/",
"http://www.king5.com/news/local/Three-people-killed-in-deadly-overnight-shooting-in-Auburn-200787941.html",
"http://seattletimes.com/html/localnews/2020684182_tavernshootingxml.html?prmid=4939",
"http://www.auburn-reporter.com/news/200794011.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2284532,
47.30732279999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/31/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Merced County, CA",
"County": "Merced County",
"State": "CA",
"References": [
"http://abclocal.go.com/kfsn/story?section=news/local&id=9046338",
"http://abclocal.go.com/kfsn/story?section=news/local&id=9046328",
"http://www.mercedsunstar.com/2013/03/31/2914614/three-people-dead-in-gang-shooting.html",
"http://www.modbee.com/2013/03/31/2647735/three-people-dead-in-atwater-gang.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.7120023,
37.2009788
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/2/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 1,
"Location": "San Juan, Puerto Rico",
"City": "San Juan",
"State": "San Juan",
"References": [
"http://www.nst.com.my/latest/drive-by-shooting-shuts-down-puerto-rico-highway-1.247670",
"http://www.windsorstar.com/news/Driveby+shooting+shuts+down+Puerto+Ricos+main+highways/8188759/story.html",
"http://www.laht.com/article.asp?ArticleId=734203&CategoryId=14092",
"http://www.globalpost.com/dispatch/news/agencia-efe/130403/shootout-puerto-rico-leaves-4-dead"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-66.1057217,
18.4663338
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/6/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.nbcphiladelphia.com/news/local/High-Powered-Weapon-Philadelphia-Four-Shootings-Missing-M16-204898451.html",
"http://abclocal.go.com/wpvi/story?section=news/local&id=9081242",
"http://articles.philly.com/2013-04-28/news/38863908_1_gun-eighth-street-two-shootings"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/6/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Greenwood, SC",
"City": "Greenwood",
"County": "Greenwood County",
"State": "SC",
"References": [
"http://www.wyff4.com/news/local-news/abbeville-greenwood-news/Police-5-shot-at-birthday-party-15-year-old-dies/-/9654572/19651374/-/qa9mi0/-/index.html",
"http://www.goupstate.com/article/20130408/WIRE/130409734/1001/sports02?Title=Police-Teen-killed-in-shooting-at-birthday-party-in-Greenwood",
"http://www.foxcarolina.com/story/21900867/police-teen-dies-after-5-shot-in-greenwood",
"http://gwdtoday.com/main.asp?SectionID=2&SubSectionID=27&ArticleID=24847"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.1617883,
34.1954001
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/7/13",
"Shooter": "Matthew Wilson",
"Dead": 1,
"Injured": 3,
"Location": "Manhatten, Kansas",
"City": "Manhattan",
"County": "Riley County",
"State": "KS",
"References": [
"http://cjonline.com/news/2013-04-07/one-dead-three-injured-manhattan-shooting",
"http://www.wibw.com/home/localnews/headlines/One-Person-Dead-Three-Others-Wounded-In-Shooting-201829531.html",
"http://www.ksallink.com/?cmd=displaystory&story_id=26644&format=html",
"http://www.hdnews.net/apksstory/1-dead--3-hospitalized-after-Manhattan-shooting",
"http://www.sfgate.com/news/crime/article/1-dead-3-hospitalized-after-Manhattan-shooting-4416106.php",
"http://www.kstatecollegian.com/2013/04/07/one-killed-three-injured-in-university-garden-apartments-shooting/",
"http://themercury.com/articles/names-released-in-shooting-man-arrested"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.57166939999999,
39.18360819999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/7/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Long Beach, CA",
"City": "Long Beach",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.dailybulletin.com/breakingnews/ci_22974008/1-dead-3-wounded-north-long-beach-shooting",
"http://www.latimes.com/local/lanow/la-me-ln-long-beach-shooting-one-killed-20130407,0,3215815.story",
"http://www.nydailynews.com/news/national/dead-north-long-beach-shooting-article-1.1309982",
"http://abclocal.go.com/kabc/story?section=news/local/los_angeles&id=9056029",
"http://www.sacbee.com/2013/04/07/5322703/1-dead-3-people-wounded-in-long.html",
"http://www.gazettes.com/news/crime/one-dead-two-critical-after-north-long-beach-shooting/article_29dc85e2-9ff9-11e2-b1d5-0019bb2963f4.html",
"http://www.lbpost.com/news/2000002078-four-shot-one-killed-outside-residence-near-del-amo-and-long-beach-blvd",
"http://losangeles.cbslocal.com/2013/04/07/man-killed-3-injured-after-gunfire-erupts-in-north-long-beach/",
"http://www.lbreport.com/news/apr13/245home.htm"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.1937395,
33.7700504
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/9/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.nbcphiladelphia.com/news/local/Philadelphia-Shootings-202276451.html",
"http://www.philly.com/philly/news/2_dead_6_others_hurt_in_Philadelphia_shootings.html",
"http://www.philly.com/philly/blogs/dncrime/Four-shot-one-killed-in-North-Philly.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/10/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Vallejo, CA",
"City": "Vallejo",
"County": "Solano County",
"State": "CA",
"References": [
"http://abclocal.go.com/kgo/story?section=news/local/north_bay&id=9061192",
"http://sanfrancisco.cbslocal.com/2013/04/11/rolling-attack-shooting-in-vallejo-injures-4-suspects-sought/",
"http://www.sfgate.com/crime/article/4-shot-in-car-in-Vallejo-4427008.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2566367,
38.1040864
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/13/13",
"Shooter": "Trenton Ore, Joven Covington",
"Dead": 0,
"Injured": 5,
"Location": "Norfolk, VA",
"City": "Norfolk",
"State": "VA",
"References": [
"http://hamptonroads.com/2013/04/norfolk-police-5-shot-attempted-robbery-2-arrested",
"http://wtkr.com/2013/04/14/five-people-shot-during-attempted-home-invasion-in-norfolk/",
"http://www.wavy.com/dpp/news/local_news/norfolk/5-injured-in-home-invasion-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.28587259999999,
36.8507689
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/13/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Merced, CA",
"City": "Merced",
"County": "Merced County",
"State": "CA",
"References": [
"http://www.cbs47.tv/news/local/story/Merced-Shooting-Injures-Four/wuIX0WcjHk6wJmcsmmtxsQ.cspx",
"http://www.kmph.com/story/21972353/gunshots-ring-out-in-merced-two-shot-two-more-hurt"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.4829677,
37.3021632
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/14/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "Phoenix, AZ",
"City": "Phoenix",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://ktar.com/22/1626816/2-dead-4-hurt-in-Phoenix-driveby-shooting",
"http://www.azfamily.com/news/18-year-old-fatally-shot-at-his-birthday-party-5-others-injured-202925351.html",
"http://www.abc15.com/dpp/news/region_phoenix_metro/central_phoenix/four-hospitalized-after-gunfire-erupts-at-phoenix-party",
"http://www.azcentral.com/community/phoenix/articles/20130414phoenix-party-four-shot-abrk.html",
"http://www.myfoxphoenix.com/story/21973588/2013/04/14/four-shot-early-sunday-morning"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0740373,
33.4483771
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/14/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Lexington, KY",
"City": "Lexington",
"County": "Fayette County",
"State": "KY",
"References": [
"http://www.wtvq.com/content/localnews/story/1-Dead-4-Injured-In-Bowling-Alley-Shooting/n7OK9_XOX0GT9CqegR2ZxA.cspx",
"http://www.sfgate.com/news/crime/article/Ky-police-piecing-together-bowling-alley-shooting-4434924.php",
"http://www.wkyt.com/news/headlines/One-dead-four-injured-in-shooting-at-Eastland-Bowling-Center-overnight-202983501.html",
"http://www.courierpress.com/news/2013/apr/15/lexington-police-piecing-together-bowling-alley-sh/",
"http://www.kentucky.com/2013/04/15/2601140/one-killed-four-hurt-in-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5037164,
38.0405837
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/18/13",
"Shooter": "Kenneth Phillip",
"Dead": 2,
"Injured": 2,
"Location": "Northhampton, PA",
"City": "Northampton",
"County": "Northampton County",
"State": "PA",
"References": [
"http://philadelphia.cbslocal.com/2013/04/18/police-investigate-shooting-in-feasterville-pa/",
"http://guncrisis.org/2013/04/19/man-kills-ex-wife-with-shotgun-dies-in-shootout-with-police-officials-say/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.4968501,
40.6862075
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/18/13",
"Shooter": "Tamerlan Tsarnaev",
"Dead": 2,
"Injured": 2,
"Location": "Boston, MA",
"City": "Boston",
"County": "Suffolk County",
"State": "MA",
"References": [
"http://www.nytimes.com/2013/04/25/us/boston-marathon-bombings-developments.html?_r=0",
"http://www.theatlanticwire.com/national/2013/04/theres-shooter-loose-and-officer-down-mit/64379/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.0588801,
42.3600825
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/18/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Akron, OH",
"City": "Akron",
"County": "Summit County",
"State": "OH",
"References": [
"http://www.huffingtonpost.com/2013/04/19/ohio-basement-murders-cop_n_3114243.html",
"http://www.newsnet5.com/dpp/news/local_news/oh_summit/akron-police-four-people-shot-in-the-head-killed-bodies-found-in-basement",
"http://www.dailymail.co.uk/news/article-2311437/Bodies-adults-basement-Ohio-townhouse-shot-execution-style-face.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.51900529999999,
41.0814447
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/20/13",
"Shooter": "Christine Squire",
"Dead": 2,
"Injured": 2,
"Location": "Richmond, VA",
"City": "Richmond",
"State": "VA",
"References": [
"http://hamptonroads.com/2013/04/two-dead-two-officers-injured-richmond-shooting",
"http://www.washingtonpost.com/local/2-dead-in-richmond-apparent-murder-suicide-2-police-officers-wounded/2013/04/21/e842077a-aa92-11e2-9493-2ff3bf26c4b4_story.html",
"http://www.timesdispatch.com/news/local/city-of-richmond/update-richmond-standoff-ends-in-murder-suicide/article_0401ccd6-a9f6-11e2-9bfb-001a4bcf6878.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.4360481,
37.5407246
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/20/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Modesto, CA",
"City": "Modesto",
"County": "Stanislaus County",
"State": "CA",
"References": [
"http://www.modbee.com/2013/04/20/2680055/weekend-shootings-leave-one-dead.html",
"http://www.pattersonirrigator.com/view/full_story/22321657/article-Patterson-man-killed-by-gunfire-at-Modesto-party?instance=lead_story_left_column",
"http://www.modbee.com/2013/04/21/2681141/2-line-deck-hed-2-line-deck-hed.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.9968782,
37.63909719999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/21/13",
"Shooter": "Dennis Clark III",
"Dead": 5,
"Injured": 2,
"Location": "Federal Way, WA",
"City": "Federal Way",
"County": "King County",
"State": "WA",
"References": [
"http://news.yahoo.com/police-5-dead-shooting-south-seattle-081054003.html",
"http://blogs.seattletimes.com/today/2013/04/5-dead-in-federal-way-shooting/",
"http://www.king5.com/news/local/Police-5-dead-in-shooting-in-Federal-Way-204044421.html",
"http://www.komonews.com/news/local/Police-surround-apartment-building-after-shooting-204039221.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.3126222,
47.3223221
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/22/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Englewood, Illinois",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.dnainfo.com/chicago/20130422/englewood/four-wounded-afternoon-shooting-englewood",
"http://chicago.cbslocal.com/2013/04/23/seven-wounded-in-shootings-on-south-west-sides/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6416419,
41.775305
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/22/13",
"Shooter": "Davante Robertson Charlie A. Gumms, Frankie Hookman, Jr and Lashawn Davis",
"Dead": 0,
"Injured": 5,
"Location": "Havey, Louisiana",
"City": "Harvey",
"County": "Jefferson Parish",
"State": "LA",
"References": [
"http://www.wdsu.com/news/local-news/new-orleans/Sheriff-Cold-blooded-killers-shot-at-children-women-in-Harvey-incident/-/9853400/19841056/-/241acbz/-/index.html",
"http://www.wwltv.com/news/Harvey-Shooting-Injures-Five-Including-3-Children-4-Arrested-204133681.html",
"http://www.nola.com/crime/index.ssf/2013/04/3_arrested_in_quintuple_shooti.html",
"http://theadvocate.com/news/5779363-123/four-arrested-in-shooting-of"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0772944,
29.9035387
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/24/13",
"Shooter": "Rick Odell Smith",
"Dead": 6,
"Injured": 1,
"Location": "Manchester, IL",
"City": "Manchester",
"County": "Scott County",
"State": "IL",
"References": [
"http://www.usatoday.com/story/news/nation/2013/04/24/manchester-illinois-5-dead-shooting/2108991/",
"http://www.foxnews.com/us/2013/04/24/5-reportedly-dead-1-in-custody-in-winchester-ill-shooting/",
"http://www.ksdk.com/news/article/377071/3/5-dead-in-Manchester-Illinois-shooting",
"http://altondailynews.com/news/details.cfm?clientid=17&id=74668"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.3323434,
39.5422692
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/25/13",
"Shooter": "Sean M. Woodings",
"Dead": 0,
"Injured": 4,
"Location": "Oberlin, Ohio",
"City": "Oberlin",
"County": "Lorain County",
"State": "OH",
"References": [
"http://www.newsnet5.com/dpp/news/local_news/oh_lorain/four-shot-at-an-apartment-in-oberlin-suspect-in-custody",
"http://chronicle.northcoastnow.com/2013/04/26/four-people-shot-in-oberlin/",
"http://www.cantonrep.com/newsnow/x63472513/4-shot-in-Oberlin-suspect-in-custody",
"http://www.cleveland.com/metro/index.ssf/2013/04/four_people_injured_in_shootin.html",
"http://www.wkyc.com/news/article/296789/45/Oberlin-Four-shot-at-apartment-complex-overnight",
"http://morningjournal.com/articles/2013/04/27/news/doc517b47c33bb07471281729.txt",
"http://medinagazette.northcoastnow.com/2013/04/27/panicked-scene-after-four-shot-in-oberlin/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.21737859999999,
41.2939386
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/27/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Williston, FL",
"City": "Williston",
"County": "Levy County",
"State": "FL",
"References": [
"http://www.wogx.com/story/22106167/crab-festival-shooting-five-shot-one-dead-at-annual-street-party-near-gainesville-florida",
"http://www.actionnewsjax.com/content/topstories/story/1-killed-in-mass-shooting-at-Crab-Festival/CRp3p_GnyEqxH3H7b9akmg.cspx",
"http://www.gainesville.com/article/20130428/ARTICLES/130429609/1002/news?Title=1-dead-4-wounded-in-shooting-at-Williston-gathering"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.4467705,
29.38747
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/28/13",
"Shooter": "Neville Lynch, Mark Rose",
"Dead": 0,
"Injured": 4,
"Location": "Lauderdale Lakes, FL",
"City": "Lauderdale Lakes",
"County": "Broward County",
"State": "FL",
"References": [
"http://articles.sun-sentinel.com/2013-04-28/news/fl-four-shot-lauderdale-lakes-20130428_1_critical-condition-armed-services-committee-wednesday-david-rose",
"http://www.nbcmiami.com/news/Man-in-Critical-Condition-Following-Shootout-at-Lauderdale-Lakes-Apartment-Complex-205204851.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.2083806,
26.1664736
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/28/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Charlotte, NC",
"City": "Charlotte",
"County": "Mecklenburg County",
"State": "NC",
"References": [
"http://www.wcnc.com/news/crime/Five-shot-at-home-in-East-Charlotte-no-arrests-made-204988731.html",
"http://www.charlotteobserver.com/2013/04/27/4007805/cmpd-5-shot-at-house-party-in.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8431267,
35.2270869
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/28/13",
"Shooter": "Kyle T. Flack",
"Dead": 4,
"Injured": 0,
"Location": "Ottawa, KA",
"City": "Ottawa",
"County": "Lasalle County",
"State": "IL",
"References": [
"http://www.kansascity.com/2013/05/26/4258412/in-disbelief-friends-describe.html",
"http://ottawaherald.com/news/051013flackcourt"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.86152009999999,
41.3443327
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/28/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chester, PA",
"City": "Chester",
"County": "Delaware County",
"State": "PA",
"References": [
"http://www.delawareonline.com/viewart/20130429/NEWS/130429002/Teen-killed-3-injured-drive-by-Pa-shooting",
"http://www.nbcphiladelphia.com/news/local/4-Men-Struck-in-Drive-By-Shooting-205031621.html",
"http://delcotimes.com/articles/2013/04/28/news/doc517cee7e6e0c4962767105.txt"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.3557457,
39.849557
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/28/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Jackson, Tennessee",
"City": "Jackson",
"County": "Madison County",
"State": "TN",
"References": [
"http://www.wbbjtv.com/news/local/PoliceDowntown-Jackson-Shooting-Leaves-2-Dead-and-2-Injured-205159391.html",
"http://www.examiner.com/article/two-dead-two-wounded-at-shooting-at-private-party",
"http://www.knoxnews.com/news/2013/apr/29/2-dead-2-wounded-in-jackson-shooting-at-party/",
"http://www.jacksonsun.com/article/20130429/NEWS01/304290004/-Not-blaming-Lane-party-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.81394689999999,
35.6145169
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/2/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.nypost.com/p/news/local/police_people_shot_in_newark_L922bXvppdyU1YrB4bKndJ",
"http://newarknj.patch.com/articles/five-shot-in-newark-thursday-night",
"http://www.nytimes.com/2013/05/03/nyregion/five-are-shot-at-a-home-in-newark.html?_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/4/13",
"Shooter": "Krystal Olymica David",
"Dead": 0,
"Injured": 4,
"Location": "Smithfield, NC",
"City": "Smithfield",
"County": "Johnston County",
"State": "NC",
"References": [
"http://abclocal.go.com/wtvd/story?section=news/local&id=9090288",
"http://www.newsobserver.com/2013/05/04/2871065/4-shot-smithfield-woman-charged.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.3394455,
35.5084935
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/4/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 6,
"Location": "Aguas Buenas, PR",
"County": "Aguas Buenas",
"State": "Aguas Buenas",
"References": [
"http://www.foxnews.com/world/2013/05/04/4-killed-6-injured-in-drive-by-shooting-in-puerto-rico/",
"http://abcnews.go.com/International/wireStory/killed-injured-shooting-puerto-rico-19108587",
"http://www.huffingtonpost.com/huff-wires/20130504/cb-puerto-rico-drive-by-shooting/?utm_hp_ref=homepage&ir=homepage",
"http://www.laht.com/article.asp?ArticleId=771412&CategoryId=14092",
"http://www.inquisitr.com/647676/puerto-rico-shooting-aguas-buenas-2013/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-66.1050908,
18.257252
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/5/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Oakland, CA",
"City": "Oakland",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.contracostatimes.com/breaking-news/ci_23180671/east-oakland-shootings-leave-17-year-old-boy",
"http://www.sfgate.com/crime/article/Boy-17-slain-in-East-Oakland-4491593.php",
"http://www.mercurynews.com/top-stories/ci_23180668/east-oakland-shootings-leave-17-year-old-boy"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2711137,
37.8043637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/5/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "E. Palo Alto, CA",
"City": "East Palo Alto",
"County": "San Mateo County",
"State": "CA",
"References": [
"http://www.sfgate.com/crime/article/Gunfire-near-E-Palo-Alto-restaurant-hurts-6-4490230.php",
"http://sanfrancisco.cbslocal.com/2013/05/05/6-people-shot-east-palo-alto/",
"http://www.upi.com/Top_News/US/2013/05/05/6-wounded-in-gunfire-near-McDonalds-in-East-Palo-Alto-Calif/UPI-13401367799231/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.1410751,
37.4688273
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/6/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Johnstown, PA",
"City": "Johnstown",
"County": "Cambria County",
"State": "PA",
"References": [
"http://tribune-democrat.com/local/x508495582/Police-question-4-men-wounded-in-shooting",
"http://wearecentralpa.com/fulltext-news?nxd_id=459102",
"http://www.abc23.com/News/NewsDetails.asp?NewsID=11194",
"http://www.fox8tv.com/News/NewsDetails.asp?NewsID=11188"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.9219698,
40.32674069999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/6/13",
"Shooter": "Two boys, 10, 11",
"Dead": 0,
"Injured": 4,
"Location": "Ocean Township, NJ",
"City": "Ocean Township",
"County": "Monmouth County",
"State": "NJ",
"References": [
"http://www.nbc40.net/story/22173848/police-2-boys-shot-4-youths-at-apartment-complex",
"http://www.app.com/article/20130506/NJNEWS14/305060048/11-12-year-old-boys-Ocean-Twp-charged-shooting-pellets-four-others",
"http://www.nj.com/monmouth/index.ssf/2013/05/monmouth_children_12_and_11_charged_with_robbery_assault_with_pellet_gun.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.029843,
40.2479729
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/8/13",
"Shooter": "Ralph Robert Warren III",
"Dead": 4,
"Injured": 0,
"Location": "Hendersonville, NC",
"City": "Hendersonville",
"County": "Henderson County",
"State": "NC",
"References": [
"http://www.citizen-times.com/article/20130509/NEWS/305090054/Man-kills-3-self-shooting-Henderson-County",
"http://www.wral.com/3-dead-in-hendersonville-shooting/12427184/",
"http://www.heraldonline.com/2013/05/08/4846069/3-dead-in-hendersonville-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.4609528,
35.3187279
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/10/13",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Harbor Gateway (Los Angeles), CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://ktla.com/2013/05/10/police-3-dead-in-shooting-in-harbor-gateway/",
"http://www.scpr.org/news/2013/05/10/37218/3-killed-1-wounded-in-la-harbor-gateway-shooting/",
"http://www.latimes.com/local/lanow/la-me-ln-harbor-gateway-shooting-20130510,0,4064502.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2848199,
33.9269896
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/11/13",
"Shooter": "Samuel E. Sallee",
"Dead": 4,
"Injured": 0,
"Location": "Waynesville, IN",
"City": "Waynesville",
"County": "Bartholomew County",
"State": "IN",
"References": [
"http://www.theindychannel.com/news/local-news/police-4-found-dead-in-waynesville",
"http://fox59.com/2013/05/12/four-dead-in-waynesville-shooting/",
"http://www.wdrb.com/story/22227360/police-over-night-quadruple-homcide-in-waynesville",
"http://tristatehomepage.com/fulltext-news?nxd_id=614052",
"http://www.therepublic.com/view/local_story/Waynesville-shooting-suspect-w_1375886673"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.893517,
39.114391
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/11/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "East Germantown, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.philly.com/philly/blogs/dncrime/Four-shot-outside-corner-store-in-East-Germantown.html",
"http://www.philly.com/philly/news/pennsylvania/20130513_Four_injured_in_shooting_in_East_Germantown.html",
"http://philadelphia.cbslocal.com/2013/05/11/4-shot-in-east-germantown/",
"http://www.ydr.com/state/ci_23227960/man-3-teens-shot-outside-philly-store"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1691305,
40.0428157
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/12/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Apache Junction, AZ",
"City": "Apache Junction",
"County": "Pinal County",
"State": "AZ",
"References": [
"http://ktar.com/22/1633793/Four-shot-at-party-in-Apache-Junction",
"http://www.azfamily.com/news/PCSO-Four-injured-during-shooting-at-motorcycle-club-207119951.html",
"http://www.myfoxphoenix.com/story/22229134/4-shot-during-dispute-between-motorcycle-clubs"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-111.5495777,
33.4150485
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/12/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.dispatch.com/content/stories/national_world/2013/05/04/Shooting_of_girl_4_others_at_vigil_not_yet_solved.html",
"http://gothamist.com/2013/05/03/10-yr-old_girl_four_others_shot_at.php",
"http://www.reuters.com/article/2013/05/03/us-shooting-newark-idUSBRE9420UC20130503"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/12/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Hollister, CA",
"City": "Hollister",
"County": "San Benito County",
"State": "CA",
"References": [
"http://www.kionrightnow.com/story/22233267/four-people-shot-injured-in-hollister"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4016021,
36.8524545
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/12/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Jersey City, NJ",
"City": "Jersey City",
"County": "Hudson County",
"State": "NJ",
"References": [
"http://newyork.cbslocal.com/2013/05/11/4-shot-wounded-in-jersey-city-public-housing-development/",
"http://www.nj.com/hudson/index.ssf/2013/05/4_shot_outside_jersey_city_hou.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.0776417,
40.72815749999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/12/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 19,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.upi.com/Top_News/US/2013/05/12/About-19-wounded-in-New-Orleans-Mothers-Day-parade-shooting/UPI-65901368404258/",
"http://www.chicagotribune.com/news/chi-new-orleans-shooting-20130512,0,3110139.story",
"http://usnews.nbcnews.com/_news/2013/05/12/18213691-at-least-19-injured-in-new-orleans-mothers-day-shooting?lite"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/13/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Winton Hills, OH",
"City": "Cincinnati",
"County": "Hamilton County",
"State": "OH",
"References": [
"http://www.local12.com/content/breaking_news/story/Five-People-Injured-In-Winton-Hills-Shooting/XXwNatFp80uyV0lLZmRf9w.cspx",
"http://www.fox19.com/story/22236348/report-of-multiple-people-shot-in-winton-hills"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5169757,
39.1866941
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/15/13",
"Shooter": "Jeremiah Bean",
"Dead": 5,
"Injured": 0,
"Location": "Fernley, NV",
"City": "Fernley",
"County": "Lyon County",
"State": "NV",
"References": [
"http://www.mynews4.com/news/local/story/Open-Murder-charges-to-be-filed-against-Jeremiah/vyd11s_PRku07VQCodeCiw.cspx",
"http://usnews.nbcnews.com/_news/2013/05/15/18281021-suspect-charged-with-open-murder-in-killing-of-five-in-nevada?lite",
"http://www.huffingtonpost.com/2013/09/23/jeremiah-diaz-bean_n_3976201.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.2518349,
39.6079683
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/15/13",
"Shooter": "Undisclosed",
"Dead": 1,
"Injured": 4,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.wxyz.com/dpp/news/1-dead-4-injured-in-detroit-shooting",
"http://detroit.cbslocal.com/2013/05/16/4-shot-1-killed-during-argument-in-detroit/",
"http://www.freep.com/article/20130516/NEWS01/305160105/Detroit-shooting-Carlin",
"http://www.freep.com/article/20130521/NEWS01/305210124/quintuple-shooting-detroit-arrest"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/16/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.myfoxphilly.com/story/22268202/bystander-struck-inside-home-among-4-shot-in-sw-philly",
"http://www.nbcphiladelphia.com/news/local/4-People-Shot-in-Southwest-Philly-207645221.html",
"http://www.abc27.com/story/22265783/4-shot-including-woman-in-home-in-sw-philly",
"http://articles.philly.com/2013-05-16/news/39312815_1_graze-wound-stray-bullet-stable-condition"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/18/13",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 3,
"Location": "Las Piedras, PR",
"State": "Las Piedras",
"References": [
"http://abcnews.go.com/International/wireStory/killed-injured-puerto-rico-shooting-19208444"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-65.8441742,
18.2025991
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/19/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.freep.com/article/20130519/NEWS05/305190159/Four-shot-outside-party-in-Detroit",
"http://www.myfoxdetroit.com/story/22295262/detroit-police-4-wounded-in-drive-by-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/19/13",
"Shooter": "Codarrell Lee Yates",
"Dead": 0,
"Injured": 4,
"Location": "Lunenburg, VA",
"City": "Lunenburg",
"County": "Lunenburg County",
"State": "VA",
"References": [
"http://www.timesdispatch.com/news/state-regional/article_5c4e2967-bd4d-5737-8b7d-6e6afa47ee24.html",
"http://www.nbc12.com/story/22291717/man-wanted-in-lunenburg-quadruple-shooting",
"http://www.wric.com/story/22291529/armed-dangerous-suspect-sought-in-lunenburg-quadruple-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.26602749999999,
36.9612967
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/19/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "South Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.commercialappeal.com/news/2013/may/19/four-shot-two-killed-in-south-memphis/",
"http://wreg.com/2013/05/19/4-shot-2-killed-in-south-memphis-apartment-complex/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.04665589999999,
35.0938569
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/20/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2013/05/21/four-teens-wounded-in-austin-shooting/",
"http://www.chicagotribune.com/news/local/breaking/chi-man-shot-in-the-head-on-the-south-side-20130520,0,6600336.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/21/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Madison County, AL",
"County": "Madison County",
"State": "AL",
"References": [
"http://blog.al.com/breaking/2013/05/4_teens_injured_in_shooting_at.html",
"http://www.waaytv.com/news/local/four-teenagers-shot-overnight-at-buckhorn-graduation-party/article_cd2dddb4-c2ad-11e2-8ec9-0019bb30f31a.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.49965460000001,
34.72397309999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/21/13",
"Shooter": "Albert Peterson",
"Dead": 4,
"Injured": 0,
"Location": "Herndon, VA",
"City": "Herndon",
"County": "Fairfax County",
"State": "VA",
"References": [
"http://www.nbcwashington.com/news/local/Four-Found-Dead-in-Herndon-Home-171198321.html",
"http://articles.washingtonpost.com/2012-09-26/local/35495284_1_county-police-herndon-candlelight-vigil",
"http://abcnews.go.com/US/police-father-killed-wife-children-virginia-murder-suicide/story?id=17331623"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.3860976,
38.9695545
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/23/13",
"Shooter": "Jason Brian Holt",
"Dead": 2,
"Injured": 2,
"Location": "Knoxville, TN",
"City": "Knoxville",
"County": "Knox County",
"State": "TN",
"References": [
"http://www.dailymail.co.uk/news/article-2330162/Former-police-officer-hunt-pain-pills-shoots-dead-pharmacy-owner-customer-robbery.html?ito=feeds-newsxml",
"http://www.johnsoncitypress.com/article/107996/2-dead-2-hurt-1-in-custody-in-bean-county-shooting",
"http://www.wbir.com/news/article/275330/2/Former-officer-arrested-in-pharmacy-shooting-that-killed-2-injured-2",
"http://www.wkyt.com/wymt/home/headlines/Former-police-officer-accused-in-quadruple-shooting-208759751.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.9207392,
35.9606384
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/23/13",
"Shooter": "Evellis T. McGee and Karon D. Thomas",
"Dead": 1,
"Injured": 3,
"Location": "Saginaw, MI",
"City": "Saginaw",
"County": "Saginaw County",
"State": "MI",
"References": [
"http://www.mlive.com/news/saginaw/index.ssf/2013/05/update_1_dead_after_saginaw_hi.html",
"http://www.freep.com/article/20130524/NEWS06/305240030/1-dead-3-hurt-in-Michigan-pre-prom-party-shooting",
"http://www.myfoxdetroit.com/story/22413702/police-1-dead-3-hurt-in-pre-prom-party-shooting",
"http://www.mlive.com/news/saginaw/index.ssf/2013/06/two_arraigned_two_at_large_in.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.9508068,
43.4194699
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/13",
"Shooter": "Julio Jesus Romero",
"Dead": 2,
"Injured": 2,
"Location": "Bakersfield, CA",
"City": "Bakersfield",
"County": "Kern County",
"State": "CA",
"References": [
"http://www.bakersfieldnow.com/news/local/4-shot-on-Columbus-St-209000741.html",
"http://www.kget.com/mostpopular/story/Two-dead-2-wounded-at-northeast-Bakersfield-house/5o6N2azlUESm3K3N5VqHeg.cspx",
"http://www.turnto23.com/news/local-news/two-dead-two-others-injured-after-gun-shots-were-fired-in-east-bakersfield",
"http://crimevoice.com/suspect-identified-in-quadruple-shooting-28637/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.0187125,
35.3732921
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/25/13",
"Shooter": "Ryan Taybron, Eric Nixon",
"Dead": 1,
"Injured": 4,
"Location": "Hampton, VA",
"City": "Hampton",
"State": "VA",
"References": [
"http://www.wavy.com/dpp/news/local_news/hampton/family-talks-about-carnival-shooting",
"http://www.dailypress.com/news/breaking/dp-nws-hampton-shooting-vigil-20130528,0,4761289.story",
"http://www.washingtonpost.com/local/1-teen-fatally-shot-4-injured-in-hampton-shooting-prompts-cancellation-of-city-carnival/2013/05/26/70dd7066-c626-11e2-9cd9-3b9a22a4000a_story.html",
"http://articles.dailypress.com/2013-07-30/news/dp-nws-hampton-shooting-hearing-20130730_1_hampton-coliseum-spring-carnival-ralphael-davis-jr-one-teen"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.34522179999999,
37.0298687
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/25/13",
"Shooter": "Antonio King Green",
"Dead": 1,
"Injured": 3,
"Location": "Flint, MI",
"City": "Flint",
"County": "Genesee County",
"State": "MI",
"References": [
"http://www.wnem.com/story/22423822/three-women-shot-in-flint",
"http://www.mlive.com/news/flint/index.ssf/2013/05/four_people_injured_during_sho.html",
"http://www.mlive.com/news/flint/index.ssf/2013/05/one_woman_dead_in_flint_after.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.6874562,
43.0125274
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/26/13",
"Shooter": "Esteban J. Smith",
"Dead": 3,
"Injured": 5,
"Location": "Began in Eden, TX",
"City": "Eden",
"County": "Concho County",
"State": "TX",
"References": [
"http://www.foxnews.com/us/2013/05/27/authorities-2-dead-5-injured-after-texas-gunman-seemed-to-randomly-shoot-at/",
"http://www.kcbd.com/story/22430976/several-injured-and-2-dead-in-concho-county-shooting",
"http://usnews.nbcnews.com/_news/2013/05/26/18517847-marine-killed-wife-went-on-shooting-spree-say-police?lite"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-99.8456277,
31.216276
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/28/13",
"Shooter": "Unknown",
"Dead": 5,
"Injured": 0,
"Location": "Sells, AZ",
"City": "Sells",
"County": "Pima County",
"State": "AZ",
"References": [
"http://www.fronterasdesk.org/news/2013/may/30/homicide-possible-five-bodies-arizona-desert/",
"http://www.azfamily.com/news/3-of-5-remains-found-in-Arizona-desert-were-shot-211091111.html",
"http://azstarnet.com/news/local/crime/desert-deaths-called-homicide/article_54b6b8df-4a47-59b4-a647-25b668c3c14c.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-111.881234,
31.9120215
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/28/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.wmctv.com/story/22444072/gunfire-rocks-neighborhood-four-people-shot",
"http://wreg.com/2013/05/29/police-investigating-overnight-shootings/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/29/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/chi-chicago-shootings-violence-2-shot-on-far-south-side-20130529,0,6107595.story",
"http://homicides.suntimes.com/2013/05/29/3-dead-5-hurt-in-south-side-shootings/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/31/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.11alive.com/news/article/294952/1/4-people-shot-on-their-porch-during-neighborhood-dispute",
"http://www.firstcoastnews.com/topstories/article/315810/483/4-people-shot-in-Atlanta-Ga-during-altercation",
"http://www.wsbtv.com/news/news/local/teen-60-year-old-among-victims-recovering-after-sh/nX8bR/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/1/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Vallejo, CA",
"City": "Vallejo",
"County": "Solano County",
"State": "CA",
"References": [
"http://www.sfgate.com/crime/article/2-killed-2-hurt-in-Vallejo-shooting-4569496.php",
"http://www.dailyrepublic.com/news/2-dead-2-hurt-during-vallejo-party-shooting-2/",
"http://sanfrancisco.cbslocal.com/2013/06/02/vallejo-police-investigate-shooting-that-killed-2-saturday-night/",
"http://www.ktvu.com/news/news/crime-law/vallejo-police-investigating-shooting-killed-2-inj/nX84g/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2566367,
38.1040864
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/1/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Milwaukee, WI",
"City": "Milwaukee",
"County": "Milwaukee County",
"State": "WI",
"References": [
"http://fox6now.com/2013/06/01/4-shot-outside-milwaukee-nightclub/",
"http://www.jsonline.com/news/regional-news-briefs-b9924216z1-209817861.html",
"http://www.sfgate.com/news/crime/article/Milwaukee-police-investigate-quadruple-shooting-4568481.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9064736,
43.0389025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/2/13",
"Shooter": "Xavier Edmondson and Lewis Antonio",
"Dead": 0,
"Injured": 7,
"Location": "LaGrange, GA",
"City": "LaGrange",
"County": "Troup County",
"State": "GA",
"References": [
"http://www.myfoxatlanta.com/story/22484234/report-multiple-people-shot-at-lagrange-park",
"http://www.lagrangenews.com/view/full_story/22781372/article-Seven-shot-at-Union-Street-park?instance=popular",
"http://www.wrbl.com/story/22485728/7-shot-at-lagranges-union-street-park"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.0322444,
33.0362218
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/2/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://fox59.com/2013/06/02/four-wounded-in-birthday-shooting/",
"http://www.indystar.com/article/20130602/NEWS02/306020016/4-shot-when-violence-breaks-out-at-large-Northside-teen-party",
"http://www.timesunion.com/news/crime/article/Shootings-at-Indianapolis-party-leave-4-injured-4569757.php",
"http://www.theindychannel.com/news/local-news/impd-4-people-shot-at-party-during-fight"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/2/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Virginia Beach, VA",
"City": "Virginia Beach",
"State": "VA",
"References": [
"http://articles.dailypress.com/2013-06-02/news/dp-nws-virginia-beach-shooting_1_virginia-beach-shooting-sentara-leigh",
"http://wtkr.com/2013/06/02/four-people-shot-at-virginia-beach-house-party/",
"http://www.wvec.com/news/Four-Injured-in-Early-Morning-shooting-209839871.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.97798499999999,
36.8529263
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/2/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Roanoke, VA",
"City": "Roanoke",
"State": "VA",
"References": [
"http://articles.wdbj7.com/2013-06-02/roanoke-police-department_39696718",
"http://www.roanoke.com/news/1977917-12/2-northwest-roanoke-shootings-sunday-spur-police-investigations.html",
"http://www.wsls.com/story/22480410/5-people-injuried"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9414266,
37.2709704
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/3/13",
"Shooter": "Manuel Mata III",
"Dead": 2,
"Injured": 2,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.fox5vegas.com/story/22477061/2-dead-2-injured-in-early-morning-shooting",
"http://www.fox5vegas.com/story/22488562/victims-of",
"http://www.reviewjournal.com/news/crime-courts/police-man-charged-fatal-shooting-girlfriend-and-her-daughter-had-turbulent-0",
"http://www.lasvegassun.com/news/2013/jun/03/rocky-relationship-ends-four-people-shot-mother-an/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/4/13",
"Shooter": "Johnny Simpson",
"Dead": 2,
"Injured": 2,
"Location": "Shoreview, MN",
"City": "Shoreview",
"County": "Ramsey County",
"State": "MN",
"References": [
"http://minnesota.publicradio.org/display/web/2013/06/04/news/shoreview-shooting",
"http://minnesota.cbslocal.com/2013/06/04/police-investigate-shooting-incident-in-north-shoreview/",
"http://www.mndaily.com/blogs/newsstand/2013/06/04/2-killed-2-injured-shoreview-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.14716670000001,
45.0791325
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/5/13",
"Shooter": "Undisclosed",
"Dead": 0,
"Injured": 10,
"Location": "Elburn, IL",
"City": "Elburn",
"County": "Kane County",
"State": "IL",
"References": [
"http://beaconnews.suntimes.com/news/20556917-418/ten-injured-after-accidental-shooting-at-kane-county-club.html",
"http://www.chicagotribune.com/news/local/suburbs/batavia_geneva_st_charles/ct-met-gun-club-accident-0606-20130606,0,731254.story",
"http://www.kcchronicle.com/2013/06/05/ten-hurt-in-accidental-shooting-at-sportsmens-club-near-elburn/atte45f/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.47230139999999,
41.8922499
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/7/13",
"Shooter": "John Zawahri",
"Dead": 5,
"Injured": 5,
"Location": "Santa Monica, CA",
"City": "Santa Monica",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.usatoday.com/story/news/nation/2013/06/09/santa-monica-shooting-john-zawahri/2405015/",
"http://usnews.nbcnews.com/_news/2013/06/09/18865467-santa-monica-shooting-spree-suspect-identified-as-death-toll-climbs?lite",
"http://articles.latimes.com/2013/jun/08/local/la-me-santa-monica-rampage-20130609"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.4911912,
34.0194543
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/9/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "York City, PA",
"City": "York",
"County": "York County",
"State": "PA",
"References": [
"http://www.whptv.com/news/local/story/Gunfire-erupts-injuring-4-people-in-York-City/C86j-ddS8kS5BbiGcPdEHg.cspx",
"http://fox43.com/2013/06/11/4-injured-in-late-night-york-city-shooting/",
"http://www.yorkdispatch.com/ci_23429544/four-shot-york-city?source=most_viewed"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.727745,
39.9625984
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/10/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.suntimes.com/news/20664257-418/four-shot-in-englewood.html",
"http://www.chicagotribune.com/news/local/breaking/chi-paramedics-on-scene-of-multiple-shooting-on-south-side-20130610,0,4474847.story",
"http://abclocal.go.com/wls/story?section=news/local&id=9134275"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/10/13",
"Shooter": "Davonta Coleman",
"Dead": 0,
"Injured": 6,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.kmov.com/news/local/Multiple-victims-shot-throughout-5-different-incident-in-St-Louis-210974011.html",
"http://www.stltoday.com/news/local/crime-and-courts/nine-are-wounded-in-shootings-in-st-louis/article_785d41d9-c24f-52f2-b720-3e26244cf3ea.html",
"http://www.stltoday.com/news/local/crime-and-courts/st-louis-man-charged-in-shooting-of-people-during-violent/article_28af7ca6-dc4b-57af-b498-d3c5c0e16ff5.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/11/13",
"Shooter": "David Andrus",
"Dead": 4,
"Injured": 0,
"Location": "Darien, IL",
"City": "Darien",
"County": "Dupage County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2013/06/11/four-people-found-shot-to-death-in-unincorporated-downers-grove/",
"http://www.nbcchicago.com/news/local/four-dead-darien-illinois--211093221.html",
"http://www.chicagotribune.com/news/local/suburbs/downers_grove_darien_westmont_woodridge/chi-source-triple-murder-suicide-reported-near-darien-20130611,0,2900901.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9737943,
41.7483483
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/12/13",
"Shooter": "Ahmed Dirir",
"Dead": 4,
"Injured": 0,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.cnn.com/2013/06/13/us/missouri-shooting/",
"http://usnews.nbcnews.com/_news/2013/06/13/18939654-four-dead-in-murder-suicide-at-st-louis-business-center-police-say?lite",
"http://abcnews.go.com/US/wireStory/reports-shooting-south-downtown-st-louis-19395041",
"http://fox2now.com/2013/06/14/st-louis-reacts-to-cherokee-street-shootings/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/14/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "High Point, NC",
"City": "High Point",
"County": "Guilford County",
"State": "NC",
"References": [
"http://nocera.blogs.nytimes.com/2013/06/17/weekend-gun-report-june-14-16-2013/",
"http://www.news-record.com/news/article_4122321e-d54c-11e2-8abc-0019bb30f31a.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.0053176,
35.9556923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/15/13",
"Shooter": "Earnest Woodley",
"Dead": 0,
"Injured": 4,
"Location": "Nashville, TN",
"City": "Nashville",
"County": "Davidson County",
"State": "TN",
"References": [
"http://www.huffingtonpost.com/2013/06/15/earnest-woodley-nashville-shooting_n_3446396.html",
"http://usnews.nbcnews.com/_news/2013/06/14/18961989-mom-three-teen-daughters-shot-in-nashville-gunman-still-at-large",
"http://www.knoxnews.com/news/2013/jun/14/woman-3-teenage-daughters-shot-in-nashville/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.7816016,
36.1626638
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/15/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.chron.com/news/houston-texas/houston/article/1-dead-3-injured-in-SW-Houston-night-club-4602574.php",
"http://abclocal.go.com/ktrk/story?section=news/local&id=9140359",
"http://www.khou.com/news/local/Residents-on-edge-after-deadly-shooting-at-after-hours-club-in-southeast-Houston-211808441.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/16/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2013/06/16/police-1-dead-3-hurt-in-shooting-at-chatham-club/",
"http://wgntv.com/2013/06/16/shooting-in-chatham-club-kills-one-injures-three/",
"http://www.i4u.com/2013/06/university-chicago/police-chatham-3-1-dead-club-hurt-shooting#FH0k3bFSb5XYlOX7.99"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/18/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Berkeley, MO",
"City": "Berkeley",
"County": "St Louis County",
"State": "MO",
"References": [
"http://stlouis.cbslocal.com/2013/06/18/police-4-shot-in-berkeley-in-broad-daylight/",
"http://www.ksdk.com/news/article/384739/3/Multiple-people-shot-in-Berkeley-Mo",
"http://fox2now.com/2013/06/18/police-investigating-multiple-shootings-in-berkeley/",
"http://www.stltoday.com/four-people-shot-in-berkeley/article_dbcdb912-fbbd-50a1-bba7-6527924e1c76.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.3312256,
38.7544952
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/19/13",
"Shooter": "Gary W. Stewart Jr.",
"Dead": 3,
"Injured": 1,
"Location": "Louisville, KY",
"City": "Louisville",
"County": "Jefferson County",
"State": "KY",
"References": [
"http://www.wkyt.com/news/headlines/A-shooting-in-Louisville-leaves-three-dead-and-one-critically-injured--212223321.html",
"http://www.courier-journal.com/article/20130620/NEWS01/306200023/Louisville-man-who-fatally-shot-mother-daughter-had-violent-history",
"http://www.courier-journal.com/article/20130619/NEWS01/306190089/Three-dead-shooting-apartment-complex-Gardiner-Lane-Louisville",
"http://www.wdrb.com/story/22636322/four-people-shot-on-gardiner-lane"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.7584557,
38.2526647
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/21/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abclocal.go.com/wls/story?section=news/local&id=9149117",
"http://www.chicagotribune.com/news/local/breaking/chi-1st-summer-weekend-leaves-4-dead-dozens-wounded-20130623,0,1958415.story",
"http://articles.chicagotribune.com/2013-06-22/news/chi-5-ambulances-sent-to-northwest-side-for-multiple-shooting-victims-20130621_1_kelvyn-park-1-shot-30-year-old-man",
"http://www.nbcchicago.com/news/local/chicago-shooting-2900-north-kilpatrick-212570671.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/21/13",
"Shooter": "Darren Lamont Roberts and Kyle Edward Thornton",
"Dead": 0,
"Injured": 6,
"Location": "Norfolk, VA",
"City": "Norfolk",
"State": "VA",
"References": [
"http://hamptonroads.com/2013/06/police-charge-two-norfolk-shooting-injured-six",
"http://www.wavy.com/dpp/news/local_news/norfolk/shooting-suspects-family-talks",
"http://wtkr.com/2013/06/21/dispatch-shooting-reported-on-tidewater-drive-in-norfolk/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.28587259999999,
36.8507689
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/22/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Providence, RI",
"City": "Providence",
"County": "Providence County",
"State": "RI",
"References": [
"http://news.providencejournal.com/breaking-news/2013/06/four-shot-in-olneyville-latest-in-a-series-of-city-shootings-ready.html",
"http://www.turnto10.com/story/22663981/four-people-shot-overnight-in-providence",
"http://www.abc6.com/story/22665832/providence-weekend-violence"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.4128343,
41.8239891
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/22/13",
"Shooter": "Lakim Anthony Faust",
"Dead": 0,
"Injured": 5,
"Location": "Greenville, NC",
"City": "Greenville",
"County": "Pitt County",
"State": "NC",
"References": [
"http://thecelebritycafe.com/feature/2013/06/five-shot-north-carolina-rampage",
"http://www.hendersondispatch.com/news/state/x1568238100/Five-including-gunman-shot-in-Greenville",
"http://www.cbsnews.com/8301-504083_162-57590696-504083/north-carolina-shooting-update-lakim-anthony-faust-23-to-be-charged-with-4-counts-of-attempted-murder-police-say/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.3663538,
35.612661
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/22/13",
"Shooter": "Kamal Rico Edge",
"Dead": 1,
"Injured": 4,
"Location": "Paterson, NJ",
"City": "Paterson",
"County": "Passaic County",
"State": "NJ",
"References": [
"http://www.nbc40.net/story/22662014/police-1-dead-3-wounded-in-paterson-shooting",
"http://www.app.com/viewart/20130622/NJNEWS14/306220053/Police-1-dead-3-wounded-Paterson-shooting",
"http://newyork.cbslocal.com/2013/06/22/report-one-killed-three-wounded-in-early-morning-paterson-shooting/",
"http://www.nj.com/passaic-county/index.ssf/2013/06/paterson_police_identify_man_who_shot_five_killed_one_over_one_night_last_week.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.17181099999999,
40.9167654
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/22/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://articles.baltimoresun.com/2013-06-22/news/bs-md-ci-five-shot-20130622_1_west-baltimore-early-morning-shooting-homicide-unit",
"http://www.abc2news.com/dpp/news/crime_checker/baltimore_city_crime/four-shot-1-dead-in-east-baltimore-shooting",
"http://www.wusa9.com/news/article/263535/189/Police-1-Dead-4-Injured-In-Md-Shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/23/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chattanooga, TN",
"City": "Chattanooga",
"County": "Hamilton County",
"State": "TN",
"References": [
"http://www.newschannel5.com/story/22668926/1-killed-3-injured-in-chattanooga-vehicle-shooting",
"http://www.jacksonsun.com/article/20130624/NEWS01/306240010/South-briefs-1-killed-3-injured-Chattanooga-vehicle-shooting-Coroner-Police-fatally-shot-gunman-Mississippi-church-3-family-members-killed-Arkansas-crash",
"http://www.wrcbtv.com/story/22664154/one-dead-in-chattanooga-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.3096801,
35.0456297
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/23/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 8,
"Location": "Kansas City, MO",
"City": "KCMO",
"County": "Jackson County",
"State": "MO",
"References": [
"http://www.kshb.com/dpp/news/crime/nine-people-shot-at-club-in-kansas-city-at-least-three-in-critical-condition",
"http://www.kmbc.com/news/kansas-city/police-9-injured-3-critically-in-kc-shooting/-/11664182/20680600/-/88wn7o/-/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.5785667,
39.0997265
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/23/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Gentilly, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.wwltv.com/news/crime/Quadruple-shooting-rocks-Gentilly-street-during-soldiers-going-away-party-212688831.html",
"http://www.wwltv.com/news/local/NOPD-4-shot-in-Gentilly-212660801.html",
"http://www.nola.com/crime/index.ssf/2013/06/four_shot_at_a_gentilly_house.html",
"http://wgno.com/2013/06/23/four-teens-shot-at-house-party/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.06066369999999,
30.014503
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/23/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Virginia Beach, VA",
"City": "Virginia Beach",
"State": "VA",
"References": [
"http://www.wvec.com/news/1-dead-4-injured-in-Town-Center-shooting-212669741.html",
"http://www.wavy.com/dpp/news/local_news/va_beach/mayor-reacts-to-town-center-shooting",
"http://www.dailypress.com/news/crime/dp-virginia-beach-shooting-0623,0,6144559.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.97798499999999,
36.8529263
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/23/13",
"Shooter": "Elijah Rodgers",
"Dead": 1,
"Injured": 3,
"Location": "Sacramento, CA",
"City": "Sacramento",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://www.sacbee.com/2013/06/24/5518682/party-dispute-leads-to-gunfire.html",
"http://celebrityexaminer.com/2013/06/24/man-shot-at-house-party-identified/",
"http://fox40.com/2013/06/23/19-year-old-dead-after-shots-ring-out-at-party/",
"http://blogs.sacbee.com/crime/archives/2013/08/homicide-suspect-denies-involvement-in-valley-hi-shooting-of-four.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4943996,
38.5815719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/24/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Kansas City, MO",
"City": "KCMO",
"County": "Jackson County",
"State": "MO",
"References": [
"http://fox4kc.com/2013/06/24/1-dead-2-injured-in-kc-shooting/",
"http://www.kansascity.com/2013/06/25/4311699/summer-starts-violently-in-kansas.html",
"http://www.kansascity.com/2013/06/24/4311105/two-hospitalized-after-kc-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.5785667,
39.0997265
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/25/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/chi-1-dead-4-wounded-in-south-side-shooting-20130625,0,2417544.story",
"http://chicago.cbslocal.com/tag/marissa-boyd-stangley/",
"http://www.dnainfo.com/chicago/20130625/chicago/teen-killed-five-people-injured-shootings",
"http://homicides.suntimes.com/2013/06/25/teen-killed-four-others-wounded-when-shots-fired-into-car/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/27/13",
"Shooter": "Manuel Talamantez, Christina Martinez",
"Dead": 2,
"Injured": 2,
"Location": "Three Rivers, CA",
"City": "Three Rivers",
"County": "Tulare County",
"State": "CA",
"References": [
"http://www.visaliatimesdelta.com/article/20130629/NEWS01/306290008/Two-behind-bars-after-four-shot-Three-Rivers",
"http://www.visaliatimesdelta.com/article/20130628/NEWS01/306280028/Two-arrested-connection-Three-Rivers-homicides",
"http://www.fresnobee.com/2013/06/28/3366047/farmersville-man-held-in-gun-fatalities.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.9045445,
36.4388364
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/27/13",
"Shooter": "Tierra Fallin",
"Dead": 1,
"Injured": 3,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://www.baltimoresun.com/news/maryland/baltimore-city/bs-md-ci-shooting-arrest-20130704,0,710526.story",
"http://www.afro.com/sections/news/Baltimore/story.htm?storyid=79020",
"http://www.wbal.com/article/101049/3/template-story/Woman-Charged-In-Murder-Following-Dispute"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/28/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.huffingtonpost.com/2013/06/29/uptown-driveby-shooting-6_n_3521906.html?utm_hp_ref=chicago",
"http://www.suntimes.com/21031715-761/five-men-shot-in-uptown.html",
"http://articles.chicagotribune.com/2013-06-28/news/chi-fire-department-reports-5-shot-in-uptown-20130628_1_uptown-neighborhood-24-year-old-man-30-year-old-man"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/29/13",
"Shooter": "Ronald Reid, Barry Stinson",
"Dead": 3,
"Injured": 1,
"Location": "North Charleston, SC",
"City": "North Charleston",
"County": "Charleston County",
"State": "SC",
"References": [
"http://www.dailyjournal.net/view/story/edf01532a7374ccf8a2654b74f045693/NC--Bike-Shop-Shooting/",
"http://www.postandcourier.com/article/20130629/PC16/130629268/1009/north-charleston-police-report-3-killed-in-shooting-at-cycle-gear-shop&source=RSS",
"http://www.wistv.com/story/22722475/police-responding-to-shooting-in-brentwood-plaza"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9748103,
32.8546197
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/29/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Aurora, CO",
"City": "Aurora",
"County": "Arapahoe County",
"State": "CO",
"References": [
"http://kdvr.com/2013/06/30/police-4-shot-at-aurora-house-party/",
"http://www.9news.com/news/article/342929/339/4-juveniles-shot-at-Aurora-party-?odyssey=tab%7Ctopnews%7Cbc%7Clarge",
"http://www.denverpost.com/breakingnews/ci_23571359/four-shot-at-aurora-house-party"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.8319195,
39.7294319
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/30/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 9,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.nypost.com/p/news/local/brooklyn/seven_wounded_by_brooklyn_gunfire_lknqTq0jhQRk2PAdxM4N5K",
"http://www.nbcnewyork.com/news/local/Brooklyn-House-Party-Shooting-Police-Surveillance-Video-213814521.html",
"http://newyork.cbslocal.com/2013/06/30/shooting-at-east-flatbush-house-party-leaves-8-people-hospitalized/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/1/13",
"Shooter": "Amos Wells",
"Dead": 4,
"Injured": 0,
"Location": "Fort Worth, TX",
"City": "Fort Worth",
"County": "Tarrant County",
"State": "TX",
"References": [
"http://www.nbcdfw.com/news/local/Three-Shot-in-Fort-Worth-213915921.html",
"http://crimeblog.dallasnews.com/2013/07/reports-fort-worth-shooting-wounds-three-including-child.html/",
"http://www.star-telegram.com/2013/07/02/4976857/two-women-and-10-year-old-boy.html#storylink=cpy"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.3307658,
32.7554883
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/2/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Montgomery, AL",
"City": "Montgomery",
"County": "Montgomery County",
"State": "AL",
"References": [
"http://www.wncftv.com/localnews/Triple-Shooting-in-Montgomery-Leaves-1-dead-3-Injured--213921881.html",
"http://blog.al.com/montgomery/2013/07/1_person_killed_others_injured.html",
"http://blog.al.com/montgomery/2013/07/1_person_killed_others_injured.html",
"http://www.wsfa.com/story/22736348/montgomery-police-1-dead-after-multi-person-shooting-at-apt-complex"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.2999689,
32.3668052
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/3/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Calais, ME",
"City": "Calais",
"County": "Washington County",
"State": "ME",
"References": [
"http://www.wcsh6.com/news/article/248564/2/One-dead-and-three-injured-from-a-shooting-in-Calais",
"http://bangordailynews.com/2013/07/03/news/down-east/shooting-reported-in-calais/?ref=polbeat",
"http://www.wabi.tv/news/41432/update-1-dead-3-wounded-in-calais-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-67.27860380000001,
45.1889633
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/4/13",
"Shooter": "Robert Marion Naylor",
"Dead": 1,
"Injured": 6,
"Location": "Pontiac, MI",
"City": "Pontiac",
"County": "Oakland County",
"State": "MI",
"References": [
"http://www.wxyz.com/dpp/news/1-dead-6-injured-in-pontiac-shooting",
"http://www.theoaklandpress.com/articles/2013/07/06/news/cops_and_courts/doc51d6d36e6c76a008268351.txt"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.29104679999999,
42.6389216
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/4/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Woodlawn, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2013/07/05/four-shot-including-14-year-old-boy-in-woodlawn/",
"http://www.chicagotribune.com/news/local/breaking/chi-man-wounded-in-south-side-shooting-20130704,0,3358230.story",
"http://chicago.cbslocal.com/2013/07/05/5-dead-27-wounded-in-holiday-weekend-shootings/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.5939087,
41.780228
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Macon, GA",
"City": "Macon",
"County": "Bibb County",
"State": "GA",
"References": [
"http://www.13wmaz.com/news/article/237898/4/1-Dead-3-Injured-in-Shooting-Outside-Macon-Club",
"http://onlineathens.com/breaking-news/2013-07-05/teen-killed-3-others-wounded-outside-macon-nightclub",
"http://www.41nbc.com/news/local-news/25214-17-year-old-dead-3-others-shot-at-macon-nightclub"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.6324022,
32.8406946
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/6/13",
"Shooter": "Chauncy Laray Mitchell",
"Dead": 0,
"Injured": 4,
"Location": "Florence, AL",
"City": "Florence",
"County": "Lauderdale County",
"State": "AL",
"References": [
"http://blog.al.com/breaking/2013/07/early_morning_shooting_leaves_1.html",
"http://www.sfgate.com/news/crime/article/Lauderdale-County-man-charged-with-assaulting-4-4650279.php",
"http://www.waff.com/story/22766314/4-taken-to-hospital-after-shooting-in-florence"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.677251,
34.79981
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/6/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 7,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://articles.chicagotribune.com/2013-07-07/news/chi-chicago-violence-july-6july-7-20130706_1_west-flournoy-street-drive-by-shooting-west-side",
"http://cltv.com/2013/07/06/at-least-7-wounded-in-lawndale-neighborhood-shooting/",
"http://www.suntimes.com/news/crime/21196299-418/witness-ducked-for-cover-when-gunfire-erupted-on-west-side-killing-man-injuring-7.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/6/13",
"Shooter": "Brandon Reese",
"Dead": 1,
"Injured": 3,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://bed-stuy.patch.com/groups/editors-picks/p/four-people-shot-one-dead-at-marcy-houses",
"http://www.ny1.com/content/top_stories/185065/teen-basketball-player-fatally-shot-near-brooklyn-tournament",
"http://www.myfoxny.com/story/22774756/3-people-injured-in-brooklyn-shooting",
"http://www.nytimes.com/2013/07/09/nyregion/arrest-in-shooting-of-4-brooklyn-teenagers.html?_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/6/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.dailynews.com/ci_23615062/1-shot-death-3-wounded-during-party-south?source=most_viewed",
"http://losangeles.cbslocal.com/2013/07/08/1-fatally-shot-3-wounded-in-south-los-angeles/",
"http://abclocal.go.com/kabc/story?section=news/local/los_angeles&id=9164667"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/7/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Pompano Beach, FL",
"City": "Pompano Beach",
"County": "Broward County",
"State": "FL",
"References": [
"http://www.nbcmiami.com/news/local/1-Dead-3-Injured-in-Pompano-Beach-Armed-Robbery-Attempt-Deputies-214527091.html",
"http://miami.cbslocal.com/2013/07/07/pompano-beach-robbery-attempt-turns-deadly/",
"http://articles.sun-sentinel.com/2013-07-07/news/fl-pompano-shooting-20130707_1_bso-attempted-robbery-dominoes"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1247667,
26.2378597
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/7/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Meridian, MS",
"City": "Meridian",
"County": "Lauderdale County",
"State": "MS",
"References": [
"http://www.wjtv.com/story/22782311/quadruple-shooting-sunday-morning",
"http://www.wtok.com/news/headlines/MPD-Investigating-Quadruple-Shooting--214541691.html?ref=691",
"http://www.wtok.com/news/headlines/MPD-Investigating-Quadruple-Shooting--214541691.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.703656,
32.3643098
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/7/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Stockton, CA",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://www.recordnet.com/apps/pbcs.dll/article?AID=/20130709/A_NEWS/307090313",
"http://www.recordnet.com/apps/pbcs.dll/article?AID=/20130708/A_NEWS/307080310",
"http://www.recordnet.com/apps/pbcs.dll/article?AID=/20130708/A_NEWS/130709912/-1/NEWSMAP"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/7/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.suntimes.com/news/crime/21201725-418/four-shot-in-roseland-person-in-custody.html",
"http://www.chicagotribune.com/news/local/breaking/chi-chicago-crime-shooting-gun-violence-sunday,0,4979831.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/9/13",
"Shooter": "Lamont Jones",
"Dead": 0,
"Injured": 4,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://articles.baltimoresun.com/2013-07-09/news/bs-md-ci-western-multiple-shooting-20130709_1_west-baltimore-broadway-east-east-baltimore",
"http://www.baltimorenewsjournal.com/2013/07/09/five-people-shot-in-west-baltimore/",
"http://www.baltimorebrew.com/2013/07/09/mayor-to-go-on-safety-walk-as-city-shootings-escalate/",
"http://www.abc2news.com/dpp/news/crime_checker/baltimore_city_crime/bpd-to-announce-arrest-in-quadruple-shooting",
"http://www.afro.com/sections/news/Baltimore/story.htm?storyid=79180"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/9/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Rockford, IL",
"City": "Rockford",
"County": "Winnebago County",
"State": "IL",
"References": [
"http://abclocal.go.com/wls/story?section=news/local/illinois&id=9168037",
"http://www.saukvalley.com/2013/07/11/police-2-dead-2-injured-in-shootings/avpv0zm/",
"http://www.therepublic.com/view/story/4cf9ad99d50545b3b11437fabbc479dc/IL--Rockford-Shootings",
"http://mystateline.com/fulltext-sportsconnection?nxd_id=407602"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.0939952,
42.2711311
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/10/13",
"Shooter": "Konrad Schafer and David Damus",
"Dead": 2,
"Injured": 12,
"Location": "Kissimmee, FL",
"City": "Kissimmee",
"County": "Osceola County",
"State": "FL",
"References": [
"http://www.orlandosentinel.com/news/local/breakingnews/os-konrad-schafer-murder--20130711,0,5562510.story",
"http://www.heraldsun.com.au/news/law-order/teenager-konrad-schafer-killed-man-because-he-thought-it-would-be-fun-embarked-on-gang-spree/story-fni0ffnk-1226677633351",
"http://www.nydailynews.com/news/crime/fla-teen-thought-fun-kill-cops-article-1.1394614"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.40757099999999,
28.2919557
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/11/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Charlotte, NC",
"City": "Charlotte",
"County": "Mecklenburg County",
"State": "NC",
"References": [
"http://www.wbtv.com/story/22817634/police-one-dead-3",
"http://www.charlotteobserver.com/2013/07/11/4159546/cmpd-investigating-homicide-in.html",
"http://www.qcitymetro.com/news/articles/1_dead_3_injured_in_apparent_driveby_shooting044813666.cfm"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8431267,
35.2270869
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/12/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "San Francicsco, CA",
"City": "SF",
"County": "San Francisco County",
"State": "CA",
"References": [
"http://www.sfgate.com/crime/article/1-killed-3-wounded-in-Mission-shooting-4649420.php",
"http://sanfrancisco.cbslocal.com/2013/07/08/man-dies-from-injuries-suffered-in-sf-mission-district-shooting/",
"http://www.fugitive.com/2013/07/08/keith-smith-critically-injured-in-a-shooting-in-san-francisco-died/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.4194155,
37.7749295
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/12/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Hamilton Township, NJ",
"City": "Hamilton Township",
"County": "Mercer County",
"State": "NJ",
"References": [
"http://www.washingtontimes.com/news/2013/jul/14/one-teen-dead-4-wounded-nj-birthday-party-shooting/",
"http://abclocal.go.com/wpvi/story?section=news/local&id=9166536",
"http://philadelphia.cbslocal.com/2013/07/13/1-dead-4-injured-in-hamilton-twp-birthday-party-shooting/",
"http://www.nbcphiladelphia.com/news/local/1-Dead-4-Hurt-in-Shooting-at-Teen-Girls-Birthday-Party-215364471.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.6796651,
40.2115109
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/12/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Greensburg, KY",
"City": "Greensburg",
"County": "Green County",
"State": "KY",
"References": [
"http://www.kentucky.com/2013/07/12/2712598/police-2-dead-2-injured-in-rural.html",
"http://www.whas11.com/news/local/KSP-1-dead-3-others-injured-in-Green-Co-shooting-215258851.html",
"http://www.wave3.com/story/22826584/1-dead-3-wounded-in-green-co-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.49885479999999,
37.2608936
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/13/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Oklahoma City, OK",
"City": "Oklahoma City",
"County": "Oklahoma County",
"State": "OK",
"References": [
"http://kfor.com/2013/07/14/one-dead-three-injured-in-northeast-okc-shooting/",
"http://www.news9.com/story/22842674/okc-police-identify-victims-of-fatal-quadruple-shooting",
"http://newsok.com/one-dead-three-wounded-in-northeast-oklahoma-city-shooting/article/3862318"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.5164276,
35.4675602
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/13/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.nbcwashington.com/news/local/Four-Shot-Police-Searching-for-Gunman-215434211.html",
"http://www.nbcwashington.com/news/local/PD-Men-Enter-and-Exit-Metrobus-Shoot-at-Pedestrians-215573571.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/14/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Wichita, KS",
"City": "Wichita",
"County": "Sedgwick County",
"State": "KS",
"References": [
"http://www.wibw.com/home/headlines/One-Dead-Four-Injured-In-Shooting-Near-Downtown-Wichita-215439921.html",
"http://www.ksn.com/2013/07/14/one-dead-several-injured-in-central-wichita-shooting/",
"http://www.kansas.com/2013/07/14/2887178/one-dead-four-injured-in-overnight.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.33005299999999,
37.68717609999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/14/13",
"Shooter": "Billie McKinney",
"Dead": 0,
"Injured": 5,
"Location": "Kentwood, MI",
"City": "Kentwood",
"County": "Kent County",
"State": "MI",
"References": [
"http://www.mlive.com/news/grand-rapids/index.ssf/2013/07/5_people_shot_late_sunday_at_p.html",
"http://www.wzzm13.com/news/article/261687/280/BREAKING-5-hurt-in-Kentwood-pool-party-shooting",
"http://www.woodtv.com/dpp/news/local/kent_county/4-shot-at-kentwood-house-party",
"http://www.mlive.com/news/grand-rapids/index.ssf/2013/07/kentwood_police_release_ages_i.html",
"http://www.wzzm13.com/news/article/270391/2/Witnesses-describe-shooting-at-graduation-party"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.64474919999999,
42.8694731
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/14/13",
"Shooter": "Phillip Brierly Jr.",
"Dead": 2,
"Injured": 2,
"Location": "Lexington, SC",
"City": "Lexington",
"County": "Lexington County",
"State": "SC",
"References": [
"http://www.thestate.com/2013/07/15/2863458/sheriff-man-stabs-uncle-commits.html",
"http://www.wistv.com/story/22845698/sheriff-two-dead-two-others-injured-in-murder-suicide",
"http://www.wltx.com/news/article/242693/2/Deputies-Man-Kills-Uncle-Then-Kills-Himself"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.2362107,
33.9815369
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/17/13",
"Shooter": "Joe Carroll",
"Dead": 3,
"Injured": 1,
"Location": "Oakland, CA",
"City": "Oakland",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.nbcbayarea.com/news/local/Quadruple-Shooting-Girl-8-Dead-Children-Grandma-Injured-215984691.html",
"http://www.insidebayarea.com/breaking-news/ci_23684178/oakland-girl-8-killed-when-gunman-opens-fire",
"http://www.mercurynews.com/breaking-news/ci_23684177/oakland-girl-8-killed-when-gunman-opens-fire",
"http://www.contracostatimes.com/news/ci_24214195/oakland-two-arrested-july-slaying-8-year-old"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2711137,
37.8043637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/19/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Madera, CA",
"City": "Madera",
"County": "Madera County",
"State": "CA",
"References": [
"http://www.fresnobee.com/2013/07/19/3396298/madera-drive-by-may-be-revenge.html",
"http://abclocal.go.com/kfsn/story?section=news/local&id=9176737",
"http://www.cbs47.tv/news/local/story/Shooting-Friday-morning-in-Madera/rgQEgoA8x06dHJhaD4Xo1A.cspx"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.0607176,
36.9613356
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/19/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Hartford, CT",
"City": "Hartford",
"County": "Hartford County",
"State": "CT",
"References": [
"http://articles.courant.com/2013-07-19/community/hc-hartford-shooting-vibes-club-0720-20130719_1_graze-wound-18-year-old-man-10-gunshots",
"http://www.nbcconnecticut.com/news/local/Several-Injured-in-Hartford-Shooting-216138411.html",
"http://www.topix.com/city/hartford-ct/2013/07/4-teens-shot-after-family-party-in-hartford"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-72.6850932,
41.76371109999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/20/13",
"Shooter": "Devin Spann",
"Dead": 0,
"Injured": 5,
"Location": "Campbell, OH",
"City": "Campbell",
"County": "Mahoning County",
"State": "OH",
"References": [
"http://www.vindy.com/news/2013/jul/21/-injured-in-shootings-in-campbell/",
"http://www.vindy.com/news/2013/jul/22/campbell/?nw",
"http://www.vindy.com/news/2013/jul/20/5-people-shot-in-campbell/?nw",
"http://www.wkbn.com/2013/07/22/details-in-quadruple-shooting-released/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.59923959999999,
41.0783918
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/21/13",
"Shooter": "Terrence Lynom and Angelo Clark",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://wgntv.com/2013/07/21/1-dead-3-injured-in-far-south-side-shooting/",
"http://abclocal.go.com/wls/story?section=news/local&id=9179997",
"http://homicides.suntimes.com/2013/07/22/altgeld-gardens-father-of-three-killed-when-fight-escalates/",
"http://www.chicagotribune.com/news/local/breaking/chi-chicago-crime-shooting-gun-violence-south-side-20130422,0,1015711.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/21/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Brooklyn (Crown Heights), NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://brooklyn.news12.com/news/4-shot-in-drive-by-shooting-in-brooklyn-1.5739729",
"http://newyork.cbslocal.com/2013/07/21/cops-seek-suspects-in-east-new-york-shooting-that-left-one-dead-and-one-wounded/",
"http://online.wsj.com/article/AP124a33eded194869879362236d465f2a.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9447994,
40.6681032
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/21/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Brooklyn (Bushwick), NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.nypost.com/p/news/local/brooklyn/spray_of_bullets_hits_Utf74cwI8L0Lr8TSaw0D5H",
"http://www.inquisitr.com/862001/five-family-members-shot-in-brooklyn-after-calling-police-about-abuse-in-mcdonalds/",
"http://www.nypost.com/p/news/local/brooklyn/four_people_shot_as_gunman_opens_oVwU7ClQgdINy8w20NDCEM"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.92128579999999,
40.6944282
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/21/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Fort Pierce, FL",
"City": "Fort Pierce",
"County": "St Lucie County",
"State": "FL",
"References": [
"http://www.wptv.com/dpp/news/region_st_lucie_county/fort_pierce/3-wounded-in-2-fort-pierce-drive-by-shootings-sunday-morning-on-boston-avenue-and-angle-road",
"http://www.rawstory.com/rs/2013/07/22/suspect-in-seemingly-random-florida-drive-by-shootings-found-dead/",
"http://www.tcpalm.com/news/2013/jul/22/st-lucie-sheriff-says-man-who-shot-3-people-likely/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.3256056,
27.4467056
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/24/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Topeka, KS",
"City": "Topeka",
"County": "Shawnee County",
"State": "KS",
"References": [
"http://www.wibw.com/home/headlines/Drive-by-Reported-On-SE-Topeka-Street-For-2nd-Time-In-One-Week-216878511.html",
"http://www.sfgate.com/news/crime/article/4-injured-in-drive-by-shooting-in-Topeka-4685988.php",
"http://www.kake.com/home/headlines/4-Injured-In-Drive-By-Shooting-In-Topeka-216914861.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.68901849999999,
39.0558235
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/25/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Inkster, MI",
"City": "Inkster",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.wxyz.com/dpp/news/4-people-shot-in-inkster-on-thursday-evening",
"http://detroit.cbslocal.com/2013/07/26/4-injured-in-apparent-drive-by-shooting-in-inkster/",
"http://www.detroitnews.com/article/20130726/METRO01/307260079/1361/Four-people-recovering-with-minor-injuries-after-Inkster-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.30993029999999,
42.2942045
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/26/13",
"Shooter": "Sidney A. Muller",
"Dead": 4,
"Injured": 0,
"Location": "Clarksburg, WV",
"City": "Clarksburg",
"County": "Harrison County",
"State": "WV",
"References": [
"http://www.wvgazette.com/News/201307260012",
"http://www.wboy.com/story/22937993/3-dead-and-one-transported-to-the-hosptal",
"http://www.newsandsentinel.com/page/content.detail/id/576437/Four-killed-in-Clarksburg-shooting.html?nav=5061",
"http://www.upi.com/Top_News/US/2013/07/27/Four-shot-dead-after-drug-deal-gone-bad/UPI-91451374961163/",
"http://www.exponent-telegram.com/news/court_and_police/probable-cause-hearing-set-for-quadruple-homicide-suspect/article_16874a28-4cd7-11e3-ab28-001a4bcf887a.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.34453409999999,
39.2806451
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/26/13",
"Shooter": "Pedro Alberto Vargas",
"Dead": 7,
"Injured": 0,
"Location": "Hialea, FL",
"City": "Hialeah",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.abc22now.com/shared/news/top-stories/stories/wkef_vid_14957.shtml",
"http://www.examiner.com/article/seven-people-shot-and-killed-florida-including-gunman",
"http://www.miamiherald.com/2013/08/03/3539629/hialeah-killer-showed-signs-of.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.2781057,
25.8575963
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/27/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Farmington, NM",
"City": "Farmington",
"County": "San Juan County",
"State": "NM",
"References": [
"http://www.krqe.com/dpp/news/crime/1-dead-3-hurt-in-farmington-shooting",
"http://www.daily-times.com/four_corners-news/ci_23746219/names-released-victims-suspects-saturdays-fatal-shooting-farmington",
"http://www.daily-times.com/four_corners-news/ci_23744925/shooting-reported-near-orchard-avenue-and-apache-street"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-108.2186856,
36.72805830000001
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/28/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Irvington, NJ",
"City": "Irvington",
"County": "Essex County",
"State": "NJ",
"References": [
"http://newjersey.news12.com/news/1-dead-3-injured-after-irvington-shootings-1.5786807",
"http://www.nj.com/essex/index.ssf/2013/07/slain_victim_in_irvington_shooting_identified_as_linden_man.html",
"http://njtoday.net/2013/07/29/linden-man-killed-in-irvington-sunday/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.22864349999999,
40.7263249
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/28/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Dallas, TX",
"City": "Dallas",
"County": "Dallas County",
"State": "TX",
"References": [
"http://crimeblog.dallasnews.com/2013/07/police-five-shot-wounded-at-fast-food-drive-through-in-north-dallas.html/",
"http://www.theeagle.com/news/texas/article_00d09aa2-74c0-5ffb-bf19-9f3f3b4fe249.html",
"http://www.nbcdfw.com/news/local/Four-Wounded-In-McDonalds-Parking-Lot-Gunfire-217316361.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.79698789999999,
32.7766642
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/28/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Granger, WA",
"City": "Granger",
"County": "Yakima County",
"State": "WA",
"References": [
"http://seattletimes.com/html/localnews/2021495487_apwagrangershooting.html",
"http://www.tri-cityherald.com/2013/07/29/2493551/four-mattawa-teens-shot-while.html",
"http://www.kimatv.com/news/local/Four-Mattawa-teens-shot-after-Granger-house-party-217374841.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.1872727,
46.3420741
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/30/13",
"Shooter": "Parrish Chee",
"Dead": 0,
"Injured": 4,
"Location": "Lea County (Hobbs), NM",
"City": "Hobbs",
"County": "Lea County",
"State": "NM",
"References": [
"http://www.krqe.com/dpp/news/crime/4-injured-in-shooting-near-hobbs",
"http://www.newswest9.com/story/22981254/four-people-hurt-after-shooting-in-lea-county-officials-searching-for-suspect",
"http://www.oaoa.com/news/crime_justice/law_enforcement/article_1fe3fb70-fa39-11e2-920e-0019bb30f31a.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-103.1360403,
32.7026116
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/13",
"Shooter": "Tristan Crayton",
"Dead": 0,
"Injured": 4,
"Location": "Broad Ripple, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.wishtv.com/dpp/news/local/marion_county/4-people-shot-outside-broad-ripple-nightclub",
"http://fox59.com/2013/08/02/four-people-shot-in-broadripple/",
"http://www.theindychannel.com/news/local-news/pd-4-people-shot-in-broad-ripple-suspect-in-custody",
"http://www.indystar.com/article/20130807/NEWS02/308070060/Man-accused-Broad-Ripple-shooting-released-from-jail-charges-referred-grand-jury"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.1340693,
39.8686846
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.nj.com/news/index.ssf/2013/08/at_least_one_dead_four_shot_in_newarks_central_ward.html",
"http://abclocal.go.com/wabc/story?section=news/local/new_jersey&id=9194102"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Whitesburg, KY",
"City": "Whitesburg",
"County": "Letcher County",
"State": "KY",
"References": [
"http://www.sfgate.com/news/crime/article/4-dead-in-shooting-in-eastern-Ky-4702896.php",
"http://www.kentucky.com/2013/08/02/2746300/4-dead-in-shooting-in-eastern.html",
"http://www.kentucky.com/2013/08/02/2746208/triple-murder-suicide-occurs-in.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.8268265,
37.1184318
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/3/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Detriot, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.clickondetroit.com/news/5-shot-including-child-outside-detroit-home/-/1719418/21320248/-/p60k3gz/-/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/4/13",
"Shooter": "Giovanni Pacheco",
"Dead": 3,
"Injured": 4,
"Location": "Salinas, CA",
"City": "Salinas",
"County": "Monterey County",
"State": "CA",
"References": [
"http://www.ksbw.com/news/central-california/salinas/double-homicide-in-salinas/-/5738906/21334240/-/lx0hwnz/-/index.html",
"http://lethbridgeherald.com/2013/08/news/world-news/3-killed-in-shooting-outside-california-taco-shop-suspect-arrested/",
"http://www.latimes.com/local/lanow/la-me-ln-2-killed-5-wounded-in-taco-stand-shooting-man-arrested-20130805,0,4509638.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.6555013,
36.6777372
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/4/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Kansas City, Mo",
"City": "KCMO",
"County": "Jackson County",
"State": "MO",
"References": [
"http://fox4kc.com/2013/08/04/quadruple-shooting-leaves-one-dead-while-neighborhood-church-seeks-change/",
"http://www.kshb.com/dpp/news/crime/three-injured-one-dead-in-fatal-shooting-at-24th-and-park",
"http://www.kctv5.com/story/23040380/teen-killed-in-quadruple-shooting-in-east-kc"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.5785667,
39.0997265
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/5/13",
"Shooter": "Rockne Newell",
"Dead": 3,
"Injured": 4,
"Location": "Ross Township, PA",
"City": "Ross Township",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://articles.mcall.com/2013-08-06/news/mc-monroe-ross-township-municipal-building-shootin-20130805_1_township-official-state-police-hamilton-township",
"http://www.poconorecord.com/apps/pbcs.dll/article?AID=/20130806/NEWS/308060316",
"http://www.nypost.com/p/news/local/gun_nut_murders_three_in_pennsylvania_qevA03ScXQpE5wPdGjQ2CN",
"http://articles.mcall.com/2013-12-16/news/mc-ross-township-shooting-rockne-newell-arraignmen-20131216_1_david-fleetwood-bernie-kozen-gerard-kozic"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.0199562,
40.5367715
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/5/13",
"Shooter": "Known but unidentified.",
"Dead": 0,
"Injured": 4,
"Location": "Montclair, NJ",
"City": "Montclair",
"County": "Essex County",
"State": "NJ",
"References": [
"http://pix11.com/2013/08/06/4-people-shot-in-montclair-new-jersey/",
"http://www.nj.com/essex/index.ssf/2013/08/neighbors_say_montclair_neighborhood_where_4_were_shot_is_becoming_more_violent.html",
"http://abclocal.go.com/wabc/story?section=news/local/new_jersey&id=9196641"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.2090053,
40.8259007
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/7/13",
"Shooter": "Erbie Bowser",
"Dead": 4,
"Injured": 4,
"Location": "Dallas, TX",
"City": "Dallas",
"County": "Dallas County",
"State": "TX",
"References": [
"http://bigstory.ap.org/article/police-least-4-dead-dallas-area-shootings",
"http://www.huffingtonpost.com/2013/08/08/dallas-shooting-spree_n_3723955.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.79698789999999,
32.7766642
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/11/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Portsmouth, VA",
"City": "Portsmouth",
"State": "VA",
"References": [
"http://www.fox43tv.com/dpps/news/crime/mount-vernon-avenue-shooting-portsmouth_6624449",
"http://www.wavy.com/dpp/news/crime/mount-vernon-avenue-shooting-portsmouth",
"http://www.dailypress.com/news/crime/dp-portsmouth-homicide-shooting-0812,0,793658.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.2982742,
36.8354258
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/11/13",
"Shooter": "Nikko Jenkins",
"Dead": 4,
"Injured": 0,
"Location": "Omaha, NE",
"City": "Omaha",
"County": "Douglas County",
"State": "NE",
"References": [
"http://www.inquisitr.com/937335/nebraska-convict-nikko-jenkins-adds-four-homicides-after-prison-release/",
"http://www.businessinsider.com/nikko-jenkins-alleged-murders-in-omaha-2013-9"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99798829999999,
41.2523634
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/11/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Flatbush, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.amny.com/urbanite-1.812039/four-shot-in-flatbush-1.5873385",
"http://abclocal.go.com/wabc/story?section=news/local/new_york&id=9202495",
"http://newyork.cbslocal.com/2013/08/11/police-searching-for-suspect-who-opened-fire-at-e-flatbush-house-party/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.96243270000001,
40.6409217
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/11/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://fox2now.com/2013/08/09/multiple-people-shot-in-north-st-louis-2/",
"http://www.topix.com/stl/2013/08/130812IU00EG",
"http://stlouis.cbslocal.com/2013/08/10/north-st-louis-shooting-leaves-two-dead-two-wounded/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/11/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Wilmington, DE",
"City": "Wilmington",
"County": "New Castle County",
"State": "DE",
"References": [
"http://www.delawareonline.com/article/20130812/NEWS01/308120084/4-wounded-in-Wilmington-shooting",
"http://abclocal.go.com/wpvi/story?section=news/local&id=9202915",
"http://www.sfgate.com/news/crime/article/4-hurt-in-Wilmington-in-apparent-drive-by-shooting-4725279.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.5397878,
39.7390721
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/12/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Cincinnati, OH",
"City": "Cincinnati",
"County": "Hamilton County",
"State": "OH",
"References": [
"http://downtown-mtauburn.fox19.com/news/news/164041-4-injured-after-drive-shooting-otr",
"http://www.wcpo.com/dpp/news/region_central_cincinnati/over_the_rhine/police-teen-among-4-injured-in-drive-by-shooting-near-findlay-market",
"http://www.local12.com/news/features/top-stories/stories/4-people-shot-overtherhine-monday-night-936.shtml"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5120196,
39.1031182
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/15/13",
"Shooter": "Daniel Green",
"Dead": 4,
"Injured": 0,
"Location": "Oklahoma, OK",
"City": "Oklahoma City",
"County": "Oklahoma County",
"State": "OK",
"References": [
"http://www.news9.com/story/23149917/neighbors-shocked-over-qualduple-murder-in",
"http://www.news9.com/story/23177122/man-accused-in-okc-quadruple-murder-arraigned-on-Monday",
"http://newsok.com/oklahoma-city-man-charged-with-killing-four-family-members/article/3874045"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.5164276,
35.4675602
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/16/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Kingsessing, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.philly.com/philly/news/breaking/20130814_Four_injured__1_critically__in_Kingsessing_shooting.html",
"http://philadelphia.cbslocal.com/2013/08/13/breaking-police-investigate-shooting-in-kingsessing/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.22165199999999,
39.9391535
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/17/13",
"Shooter": "Demetrius Ward",
"Dead": 0,
"Injured": 4,
"Location": "Oakland, CA",
"City": "Oakland",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.contracostatimes.com/news/ci_23885411/oakland-four-shot-telegraph-avenue",
"http://abclocal.go.com/kgo/story?section=news/local/east_bay&id=9210450",
"http://www.contracostatimes.com/news/ci_23893647/oakland-police-arrest-suspect-uptown-salon-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2711137,
37.8043637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/18/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Port Norris, NJ",
"City": "Commercial Township",
"County": "Cumberland County",
"State": "NJ",
"References": [
"http://www.myfoxphilly.com/story/23166504/4-shot-during-gathering-in-south-jersey-woods"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.035178,
39.24594769999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/18/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Toledo, OH",
"City": "Toledo",
"County": "Lucas County",
"State": "OH",
"References": [
"http://www.toledoblade.com/Police-Fire/2013/08/19/Six-injured-in-violent-weekend-in-Toledo.html",
"http://www.13abc.com/story/23120283/teen-among-4-hurt-in-cincinnati-drive-by-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.55521200000001,
41.6639383
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/18/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Rochester, NY",
"City": "Rochester",
"County": "Monroe County",
"State": "NY",
"References": [
"http://www.rochesterhomepage.net/story/innocent-bystander-shot-and-killed-on-south-plymouth-avenue/d/story/BzbJIALklUy5obzJF0tt_A",
"http://www.whec.com/news/stories/S3133832.shtml?cat=565"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.6109219,
43.16103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/18/13",
"Shooter": "Darryl Sain",
"Dead": 0,
"Injured": 4,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://fox2now.com/2013/08/18/suspect-arrested-four-shot-midtown-gas-station/",
"http://stlouis.cbslocal.com/2013/08/19/charged-multiple-shooting-st-louis-gas-station/",
"http://www.ksdk.com/news/article/393394/3/Four-people-recovering-after-overnight-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/18/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2013/08/18/1-killed-3-wounded-in-west-side-shooting/",
"http://chicago.cbslocal.com/2013/08/19/6-dead-27-wounded-in-weekend-shootings/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/18/13",
"Shooter": "Dontrel Shyhee Blakeney",
"Dead": 1,
"Injured": 4,
"Location": "Chesterfield County, SC",
"County": "Chesterfield County",
"State": "SC",
"References": [
"http://myfox8.com/2013/08/18/5-shot-1-killed-in-sc-shooting-suspects-sought-in-nc/",
"http://www.wsoctv.com/news/news/local/chesterfield-co-investigators-search-2-shooting-su/nZR5g/",
"http://www.ansonrecord.com/news/home_top/2360871/Wadesboro-club-owner-killed-in-S.C.-shooting",
"http://www.ansonrecord.com/news/home_top-news/2400266/Five-arrested-in-shooting-that-killed-Wadesboro-man"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1428584,
34.6830936
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/19/13",
"Shooter": "Kelsky Patterson",
"Dead": 1,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://articles.chicagotribune.com/2013-08-20/news/chi-cops-5-shot-in-uptown-20130819_1_bang-five-men-shooting",
"http://www.suntimes.com/news/metro/22036784-418/five-injured-in-uptown-shooting.html",
"http://chicago.cbslocal.com/2013/08/19/breaking-5-shot-one-fatally-in-uptown/",
"http://www.huffingtonpost.com/2013/11/13/kelsky-patterson-charged_n_4268634.html?utm_hp_ref=chicago"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/20/13",
"Shooter": "Melville Mason",
"Dead": 2,
"Injured": 2,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://www.abc2news.com/dpp/news/crime_checker/baltimore_city_crime/three-people-shot-on-n-carey-street-in-west-baltimore",
"http://www.baltimoresun.com/news/maryland/crime/blog/bs-md-pigtown-shooting-20130820,0,7475756.story",
"http://articles.washingtonpost.com/2013-08-20/local/41427658_1_baltimore-police-quadruple-shooting-man-and-woman",
"http://www.afro.com/sections/news/Baltimore/story.htm?storyid=79509"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/20/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Vanceboro, NC",
"City": "Vanceboro",
"County": "Craven County",
"State": "NC",
"References": [
"http://www.witn.com/home/headlines/Multiple-People-Shot-Outside-Vanceboro-220411001.html",
"http://www.wral.com/two-shot-in-craven-co-/12798932/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.1541194,
35.3084953
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/22/13",
"Shooter": "Jim Edwards",
"Dead": 2,
"Injured": 2,
"Location": "Shaler, PA",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://pittsburgh.cbslocal.com/2013/08/22/deadly-shooting-in-shaler/",
"http://www.wtae.com/news/local/allegheny/shaler-township-shooting/-/10927008/21571948/-/atgtdq/-/index.html",
"http://www.wpxi.com/news/news/police-shaler-twp-man-shoots-wife-daughter-son-tur/nZYsn/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.95284509999999,
40.5309184
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/23/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://baltimore.cbslocal.com/2013/08/25/juvenile-dead-6-shot-after-dice-game-goes-bad/",
"http://articles.baltimoresun.com/2013-08-25/news/bs-md-ci-shootings-20130824_1_west-baltimore-15-year-old-boy-shooting-incidents",
"http://www.abc2news.com/dpp/news/crime_checker/baltimore_city_crime/seven-shot-1-dead-at-illegal-dice-game"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/24/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.theindychannel.com/news/local-news/four-indianapolis-men-wounded-after-seemingly-random-gunfire",
"http://www.indystar.com/article/20130825/NEWS02/308250025/4-people-shot-Eastside-Saturday-night"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/25/13",
"Shooter": "Hubert Allen Jr.",
"Dead": 3,
"Injured": 2,
"Location": "Lake Butler, FL",
"City": "Lake Butler",
"County": "Union County",
"State": "FL",
"References": [
"http://www.abcactionnews.com/dpp/news/state/officials-gunman-kills-wounds-multiple-people-in-north-florida-shooting-spree",
"http://www.cbsnews.com/8301-201_162-57600001/motive-a-mystery-in-lake-butler-fla-shooting-spree/",
"http://jacksonville.com/news/2013-08-25/story/lake-butler-gunman-ex-boss-he-killed-were-once-close",
"http://www.usatoday.com/story/news/nation/2013/08/28/workplace-shooting-florida/2712227/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.33955739999999,
30.0227391
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/25/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Minneapolis, MN",
"City": "Minneapolis",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://minnesota.publicradio.org/display/web/2013/08/26/news/2-shot-dead-2-injured-in-minneapolis",
"http://www.duluthnewstribune.com/event/article/id/276175/group/homepage/",
"http://www.startribune.com/local/221113551.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2650108,
44.977753
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/25/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Oakland, CA",
"City": "Oakland",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.contracostatimes.com/news/ci_23939970/four-people-including-two-girls-wounded-oakland-shooting",
"http://sanfrancisco.cbslocal.com/2013/08/25/4-injured-oakland-shooting/",
"http://www.nbcbayarea.com/news/local/Two-Children-Two-Adults-Injured-in-Oakland-Shooting-221111801.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2711137,
37.8043637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/25/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Dillon County, SC",
"County": "Dillon County",
"State": "SC",
"References": [
"http://www.carolinalive.com/news/story.aspx?id=938146",
"http://www.wbtw.com/story/23245535/one-killed-four-injured-in-dillon-county-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.4253776,
34.3596012
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/28/13",
"Shooter": "Devonere Simmonds",
"Dead": 3,
"Injured": 2,
"Location": "Columbus, OH",
"City": "Columbus",
"County": "Franklin County",
"State": "OH",
"References": [
"http://www.dispatch.com/content/stories/public/2013/08/29/third-homicide-charge-for.teen.html",
"http://www.nbc4i.com/story/22959914/1-suspect-in-crime-spree-returns-to-columbus",
"http://www.whiotv.com/news/news/crime-law/highway-patrol-on-lookout-for-armed-carjackers/nY5nF/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.99879419999999,
39.9611755
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/5/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Charlotte, NC",
"City": "Charlotte",
"County": "Mecklenburg County",
"State": "NC",
"References": [
"http://www.wsoctv.com/news/news/local/police-investigate-multiple-calls-shots-fired-outs/nZn7z/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8431267,
35.2270869
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/7/13",
"Shooter": "Darnell Hollings",
"Dead": 1,
"Injured": 3,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.kmov.com/news/crime/21-year-old-man-charged-in-fatal-quadruple-north-St-Louis-shooting-223392611.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/7/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "Gary, IN",
"City": "Gary",
"County": "Lake County",
"State": "IN",
"References": [
"http://www.chron.com/news/media/2-dead-4-injured-in-Gary-Indiana-shooting-87075.php?cmpid=videohcat",
"http://abclocal.go.com/wls/story?section=news/local/indiana&id=9239958"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.3464271,
41.5933696
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/10/13",
"Shooter": "Roderick Rodgers and David Anderson",
"Dead": 1,
"Injured": 4,
"Location": "Bridgeport, CT",
"City": "Bridgeport",
"County": "Fairfield County",
"State": "CT",
"References": [
"http://www.courant.com/news/connecticut/hc-bridgeport-shooting-0911-20130910,0,6220161.story",
"http://www.courant.com/community/bridgeport/hc-bridgeport-shooting-0912-20130912,0,3111130.story",
"http://connecticut.cbslocal.com/2013/09/16/five-shot-in-bridgeport-arrest-made/",
"http://www.wfsb.com/story/23539618/second-arrest-made-in-deadly-shooting-in-bridgeport"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.19517669999999,
41.1865478
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/11/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.wusa9.com/news/article/274561/158/1-dead-3-injured-after-quadruple-shooting-in-NW-DC",
"http://www.nbcwashington.com/news/local/1-Dead-3-Injured-in-NW-DC-Shooting-223435251.html",
"http://washington.cbslocal.com/2013/09/12/one-dead-three-injured-in-overnight-d-c-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/11/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "New York, NY",
"City": "New York",
"State": "NY",
"References": [
"http://www.nydailynews.com/new-york/4-people-shot-club-sob-varick-st-article-1.1453270",
"http://nypost.com/2013/09/12/four-shot-inside-soho-music-club/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.0059413,
40.7127837
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/11/13",
"Shooter": "Jacob Bennett and Brittany Moser",
"Dead": 4,
"Injured": 0,
"Location": "Renegade Mountain, TN",
"County": "Cumberland County",
"State": "TN",
"References": [
"http://www.foxnews.com/us/2013/09/12/investigators-bodies-4-people-shot-to-death-found-in-car-on-renegade-mountain/",
"http://www.washingtonpost.com/national/investigators-bodies-of-4-people-shot-to-death-found-in-car-on-renegade-mountain-in-tennessee/2013/09/12/5d75e3ec-1bd9-11e3-80ac-96205cacb45a_story.html",
"http://www.reuters.com/article/2013/09/12/us-usa-crime-tennessee-idUSBRE98B15X20130912",
"http://abcnews.go.com/US/wireStory/tenn-shooting-victims-car-include-teens-20248942",
"http://www.wsmv.com/story/23415177/4-people-found-dead-inside-car-in-cumberland-county"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.8522294,
35.8823309
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/13/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Centreville, IL",
"City": "Centreville",
"County": "St Clair County",
"State": "IL",
"References": [
"http://fox2now.com/2013/09/13/four-shot-in-centreville-housing-complex/",
"http://www.stltoday.com/news/local/crime-and-courts/dispute-at-centreville-apartment-complex-ends-with-three-men-shot/article_24d68032-35c0-59f8-8517-27e858c69458.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.125109,
38.5833842
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/14/13",
"Shooter": "Earl Spencer Boyce",
"Dead": 0,
"Injured": 4,
"Location": "Marion, NC",
"City": "Marion",
"County": "McDowell County",
"State": "NC",
"References": [
"http://www.mcdowellnews.com/news/article_1476be3e-1d6c-11e3-8698-001a4bcf6878.html",
"http://www.wlos.com/shared/news/features/top-stories/stories/wlos_update-nightclub-shooting-suspect-arrested-13239.shtml"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.00927449999999,
35.6840131
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": [
"http://www.ksee24.com/news/local/Six-Injured-in-Shooting-at-Fresno-Party-223953501.html",
"http://www.fresnobee.com/2013/09/16/3500854/7-injured-1-critically-in-gunfight.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Colorado Springs, CO",
"City": "Colorado Springs",
"County": "El Paso County",
"State": "CO",
"References": [
"http://www.kktv.com/home/headlines/Shooting--223813311.html",
"http://www.krdo.com/news/five-injured-in-colorado-springs-shooting/-/417220/21946284/-/2wkkdz/-/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.8213634,
38.8338816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Wilmington, DE",
"City": "Wilmington",
"County": "New Castle County",
"State": "DE",
"References": [
"http://abclocal.go.com/wpvi/story?section=news/local&id=9249747",
"http://www.wdel.com/story.php?id=53630"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.5397878,
39.7390721
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Bakersfield, CA",
"City": "Bakersfield",
"County": "Kern County",
"State": "CA",
"References": [
"http://www.bakersfieldnow.com/news/local/2-suspects-dead-2-officers-wounded-in-shootout-223903971.html",
"http://www.turnto23.com/news/local-news/four-point-by-sheraton-hotel-locked-down-following-reports-of-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.0187125,
35.3732921
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Yakima, WA",
"City": "Yakima",
"County": "Yakima County",
"State": "WA",
"References": [
"http://www.kimatv.com/news/local/Shooting-leaves-six-people-shot-one-in-critical-condition--223823421.html",
"http://www.yakimaherald.com/news/latestlocalnews/1505107-8/six-people-shot-outside-yakima-hookah-lounge"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.5058987,
46.6020711
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/13",
"Shooter": "Robert E. Bell",
"Dead": 3,
"Injured": 1,
"Location": "Snellville, GA",
"City": "Snellville",
"County": "Gwinnett County",
"State": "GA",
"References": [
"http://www.11alive.com/news/article/306499/40/4-Shot-3-dead-in-Gwinnett-Co-shooting",
"http://www.gwinnettdailypost.com/news/2013/sep/16/police-investigate-deadly-shooting-snellville/",
"http://www.myfoxatlanta.com/story/23439354/four-shot-snellville-gunman-search",
"http://onlineathens.com/local-news/2013-09-16/3-people-shot-death-home-atlanta-suburbs",
"http://www.examiner.com/article/cops-guest-shoots-kills-woman-her-12-year-old-son-and-teenage-godson",
"http://www.upi.com/Top_News/US/2013/09/25/Police-say-four-people-shot-at-their-Georgia-home-were-ambushed/UPI-65751380125926/?spt=hs&or=tn"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.0199108,
33.857328
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/16/13",
"Shooter": "Aaron Alexis",
"Dead": 13,
"Injured": 8,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.washingtonpost.com/local/police-search-for-active-shooter-on-grounds-of-washington-navy-yard-in-southeast-dc/2013/09/16/b1d72b9a-1ecb-11e3-b7d1-7153ad47b549_story.html",
"http://www.nbcwashington.com/news/local/Confirmed-Shooter-at-Navy-Yard-One-Person-Shot-223897891.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/17/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Stockton, CA",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://www.news10.net/news/article/257700/2/1-dead-4-injured-in-shooting-at-Stockton-grocery-store",
"http://abclocal.go.com/kfsn/story?section=news/state&id=9252662",
"http://www.recordnet.com/apps/pbcs.dll/article?AID=/20130917/A_NEWS/130919885/-1/A_NEWS02"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/17/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Lansing, MI",
"City": "Lansing",
"County": "Ingham County",
"State": "MI",
"References": [
"http://www.wlns.com/story/23456201/shooting-1524-ottawa",
"http://www.mlive.com/lansing-news/index.ssf/2013/09/sexton_shooting_rocks_quiet_ne.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5555347,
42.732535
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/17/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"https://www.reviewjournal.com/news/crime-courts/las-vegas-police-seek-information-drive-shooting",
"http://www.ktnv.com/news/local/4-people-shot-police-looking-for-suspect--224278251.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/17/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "West Broward, FL",
"County": "Broward County",
"State": "FL",
"References": [
"http://www.lasvegassun.com/news/2013/sep/19/us-florida-chase-deaths/",
"http://miami.cbslocal.com/2013/09/18/wild-police-chase-on-u-s-27-ends-in-shoot-out/",
"http://www.wflx.com/story/23474164/four-dead-in-fatal-shooting-high-speed"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.365865,
26.190096
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/18/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Whitehaven, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://whitehaven.wmctv.com/news/news/195832-police-one-dead-after-multiple-people-shot-whitehaven",
"http://wreg.com/2013/09/18/one-dead-three-injured-in-whitehaven-shooting/",
"http://www.wmctv.com/story/23470990/police-at-least-three-people-shot-in"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.04665589999999,
35.0277933
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/18/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Kissimmee, FL",
"City": "Kissimmee",
"County": "Osceola County",
"State": "FL",
"References": [
"http://www.myfoxorlando.com/story/23469838/kissimmee-police-investigate-shootings-which-left-5-injured",
"http://www.orlandosentinel.com/news/local/breakingnews/os-kissimmee-shooting-victims-mum-20130919,0,5746356.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.40757099999999,
28.2919557
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/18/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Bakersfield, CA",
"City": "Bakersfield",
"County": "Kern County",
"State": "CA",
"References": [
"http://www.bakersfieldnow.com/news/local/4-shot-behind-convenience-store-224423401.html",
"http://www.kget.com/news/local/story/Police-investigating-shooting-in-northeast/ukH91TJVeUmVao2IGugCNg.cspx",
"http://www.turnto23.com/news/local-news/bakersfield-police-search-for-two-suspect-in-fastrip-shooting-091913",
"http://fox40.com/2013/09/19/stockton-shooting-aftermath-posted-on-facebook/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.0187125,
35.3732921
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/19/13",
"Shooter": "Bryon Champ",
"Dead": 0,
"Injured": 13,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/chi-multiple-people-including-3yearold-shot-in-south-side-attack-20130919,0,352520.story",
"http://www.cbsnews.com/8301-201_162-57603810/chicago-park-shooting-leaves-13-wounded-including-3-year-old-boy/",
"http://abclocal.go.com/wls/story?section=news/local/chicago_news&id=9255232",
"http://www.wral.com/2-men-charged-in-mass-shooting-at-chicago-park/12917922/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/20/13",
"Shooter": "Guadalupe Ronquillo-Ovalle",
"Dead": 5,
"Injured": 0,
"Location": "Rice, TX",
"City": "Rice",
"County": "Navarro County",
"State": "TX",
"References": [
"http://www.cnn.com/2013/09/22/justice/texas-bodies-found/",
"http://www.nbcdfw.com/news/local/Five-Family-Members-Found-Dead-In-Navarro-County-224807262.html",
"http://www.miamiherald.com/2013/09/23/3645244/5-family-members-found-dead-at.html",
"http://abcnews.go.com/US/wireStory/correction-dead-texas-story-20356406",
"http://www.dallasnews.com/news/crime/headlines/20130924-sheriff-navarro-county-mother-killed-husband-children-before-shooting-herself.ece"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.4985966,
32.2437586
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/20/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Long Beach, CA",
"City": "Long Beach",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.lbreport.com/news/sep13/187nlbros.htm",
"http://www.ocregister.com/news/officer-527454-beach-police.html",
"http://www.latimes.com/local/lanow/la-me-ln-long-beach-shooting-20130921,0,509395.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.1937395,
33.7700504
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/21/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Palm Springs, FL",
"City": "Palm Springs",
"County": "Palm Beach County",
"State": "FL",
"References": []
},
"geometry": {
"type": "Point",
"coordinates": [
-80.0961538,
26.6359009
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/22/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Witchita, KA",
"City": "Wichita",
"County": "Sedgwick County",
"State": "KS",
"References": [
"http://www.ksn.com/2013/09/22/police-investigating-shooting-in-old-town/",
"http://www.kansas.com/2013/09/22/3015131/six-injured-after-shooting-in.html",
"http://www.kansascity.com/2013/09/22/4500139/six-injured-after-shooting-in.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.33005299999999,
37.68717609999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/22/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://blogs.riverfronttimes.com/dailyrft/2013/09/randy_lee_jones_21_killed_three_injured_north_st_louis.php",
"http://www.stltoday.com/news/local/crime-and-courts/shot-one-fatally-on-st-louis-street/article_e2cdfd83-17c9-550a-91e1-7afb3a809b9c.html",
"http://fox2now.com/2013/09/22/north-st-louis-shooting-kills-one-wounds-three/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/22/13",
"Shooter": "Antonio Keshawn Raglin",
"Dead": 3,
"Injured": 1,
"Location": "Muskegon, MI",
"City": "Muskegon",
"County": "Muskegon County",
"State": "MI",
"References": [
"http://www.usatoday.com/story/news/nation/2013/09/22/shootout-social-club/2850083/",
"http://wwmt.com/shared/news/features/top-stories/stories/wwmt_updated-muskegon-police-investigate-multiple-homicide-at-elks-lodge-13911.shtml",
"http://www.woodtv.com/news/5-hurt-2-killed-in-muskegon-shooting",
"http://www.mininggazette.com/page/content.detail/id/379764/Man-held-in-Muskegon-shooting-that-left-3-dead.html?isap=1&nav=5014"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.24839209999999,
43.2341813
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/24/13",
"Shooter": "Antonio Michael Smith",
"Dead": 0,
"Injured": 6,
"Location": "Huntington, WV",
"City": "Huntington",
"County": "Cabell County",
"State": "WV",
"References": [
"http://www.wsaz.com/news/huntingtonnews/headlines/Multiple-People-Shot-in-Huntington-At-Least-Four-Victims-225120602.html",
"http://www.theepochtimes.com/n3/298606-huntington-shooting-6-people-shot-in-west-virginia/",
"http://wvmetronews.com/2013/09/25/six-shot-in-huntington-shooting/",
"http://www.wsaz.com/news/headlines/Multiple-People-Shot-in-Huntington-At-Least-Four-Victims-225120602.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.44515400000002,
38.4192496
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/25/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Haw River, NC",
"City": "Haw River",
"County": "Alamance County",
"State": "NC",
"References": [
"http://www.thetimesnews.com/news/top-news/four-shot-at-haw-river-sports-bar-1.208316"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.36418619999999,
36.091526
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/26/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Jacksonville, FL",
"City": "Jacksonville",
"County": "Duval County",
"State": "FL",
"References": [
"http://www.sfgate.com/news/crime/article/4-injured-in-Jacksonville-nightclub-shooting-4849153.php",
"http://jacksonville.com/news/crime/2013-09-27/story/shooting-plush-puts-4-people-hospital-1-life-threatening-condition"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.65565099999999,
30.3321838
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/27/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Ashville, PA",
"City": "Ashville",
"County": "Cambria County",
"State": "PA",
"References": [
"http://www.post-gazette.com/stories/local/region/state-police-identify-4-shooting-victims-in-cambria-county-incident-705426/",
"http://www.parentdish.co.uk/2013/09/30/woman-shot-her-mother-and-was-then-killed-by-father/",
"http://www.officer.com/news/11181714/pa-family-feud-deaths-of-four-investigated"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.5486289,
40.5600684
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/29/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Zanesville, OH",
"City": "Zanesville",
"County": "Muskingum County",
"State": "OH",
"References": [
"http://www.zanesvilletimesrecorder.com/article/20130930/NEWS01/309300004/Four-people-hit-during-Putnam-Avenue-shooting",
"http://www.10tv.com/content/stories/2013/09/30/zanesville-hoppys-bar-shooting-4-injured.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.0131924,
39.9403453
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/29/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2013/09/28/four-hurt-in-washington-park-shooting/",
"http://www.suntimes.com/22867010-418/1-dead-14-wounded-in-shootings-across-chicago-since-friday.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/2/13",
"Shooter": "Andy Keith Hunt",
"Dead": 4,
"Injured": 0,
"Location": "Double Springs, AL",
"City": "Double Springs",
"County": "Winston County",
"State": "AL",
"References": [
"http://blog.al.com/spotnews/2013/10/4_found_shot_to_death_in_car_s.html",
"http://www.abc3340.com/story/23595954/winston-co-sheriff-4-found-shot-to-death-inside-vehicle-in-black-pond-community",
"http://nation.time.com/2013/10/03/four-found-brutally-beaten-and-shot-in-alabama/",
"http://www.myfoxal.com/story/23628816/sheriff-confirms-murder-suicide-in-winston-county-identifies-4th-body"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.40223859999999,
34.1464916
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/2/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Omaha, NE",
"City": "Omaha",
"County": "Douglas County",
"State": "NE",
"References": [
"http://www.omaha.com/article/20131002/NEWS/131009582",
"http://www.wowt.com/news/headlines/Seven-Injured-In-Overnight-Shootings-226275981.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99798829999999,
41.2523634
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/5/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 13,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": []
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/6/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Avondale, AZ",
"City": "Avondale",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.azfamily.com/news/Five-people-shot-in-Avondale-226653571.html",
"http://www.abc15.com/dpp/news/region_west_valley/avondale/avondale-pd-4-people-shot-during-party-at-versante-luxury-apartments",
"http://www.azcentral.com/community/swvalley/articles/20131006avondale-shooting-four-people-injured-abrk.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.3496021,
33.4355977
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/6/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Phillidelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": []
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/6/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Buffalo, NY",
"City": "Buffalo",
"County": "Erie County",
"State": "NY",
"References": [
"http://www.buffalonews.com/city-region/police-blotter/four-shot-outside-zelmer-street-party-20131006",
"http://www.wivb.com/news/local/2-possibly-3-men-shot"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8783689,
42.88644679999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/9/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Paris, TX",
"City": "Paris",
"County": "Lamar County",
"State": "TX",
"References": [
"http://dfw.cbslocal.com/2013/10/10/4-people-found-shot-dead-in-paris-texas/",
"http://www.foxnews.com/us/2013/10/10/police-say-4-men-found-fatally-shot-at-ne-texas-house-no-details-on-suspects/",
"http://www.nbcdfw.com/news/local/Paris-Police-Investigating-Quadruple-Homicide-227221721.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.55551299999999,
33.6609389
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/12/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.tulsaworld.com/news/dead-injured-in-shooting-saturday-outside-after-hours-club/article_5e8c6612-55e9-5078-a530-4740deefd91c.html",
"http://www.fox23.com/news/local/story/Two-killed-outside-of-a-Tulsa-nightclub/r7yOulCIG02n-YZZDbl2Gg.cspx"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/12/13",
"Shooter": "Meng Lee",
"Dead": 0,
"Injured": 5,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.theblaze.com/stories/2013/10/13/gunfire-erupts-at-asian-cultural-celebration-5-injured-2-arrested/",
"http://www.yourhoustonnews.com/courier/news/two-in-custody-for-shooting-of-at-tulsa-event/article_b02e84a3-94a9-5153-83e0-979849c8d2c8.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/13/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 8,
"Location": "Harrisburg, PA",
"City": "Harrisburg",
"County": "Dauphin County",
"State": "PA",
"References": [
"http://cumberlink.com/news/local/communities/harrisburg/police-multiple-people-shot-sunday-outside-harrisburg-community-center/article_23653c26-34bf-11e3-af30-001a4bcf887a.html",
"http://www.pennlive.com/midstate/index.ssf/2013/10/allison_hill_community_center.html",
"http://www.pennlive.com/midstate/index.ssf/2013/10/police_confirm_eight_people_sh.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.8867008,
40.2731911
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/18/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Margate, FL",
"City": "Margate",
"County": "Broward County",
"State": "FL",
"References": [
"http://articles.sun-sentinel.com/2013-10-22/news/fl-margate-shooting-folo-20131022_1_lori-eller-shooting-victims-margate-coconut-creek-fire-rescue",
"http://miami.cbslocal.com/2013/10/19/four-people-found-shot-in-margate/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.206436,
26.2445263
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/20/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Reno, NV",
"City": "Reno",
"County": "Washoe County",
"State": "NV",
"References": [
"http://www.rgj.com/viewart/20131021/NEWS01/131021004/Update-Shooting-morning-Sparks-Middle-School",
"http://www.usatoday.com/story/news/nation/2013/10/21/nevada-middle-school-shooting/3143063/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.8138027,
39.5296329
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/20/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "Pittsburgh, PA",
"City": "Pittsburgh",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://www.philly.com/philly/news/breaking/20131020_ap_ce7c85b6f7cd419d97b4c28ecd7d1f2c.html",
"http://pittsburgh.cbslocal.com/2013/10/20/homewood-shooting-leaves-2-dead/",
"http://www.wpxi.com/news/news/local/homewood-shooting-leaves-least-1-dead/nbSh6/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9958864,
40.44062479999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/20/13",
"Shooter": "Benjamin Frazier",
"Dead": 1,
"Injured": 4,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.usatoday.com/story/news/nation/2013/10/21/las-vegas-casino-shooting/3142815/",
"http://www.8newsnow.com/story/23743794/breaking-news-police-activity-near-ballys-hotel-and-casino",
"http://www.lasvegassun.com/news/2013/oct/21/us-nightclub-shooting-vegas/",
"http://www.examiner.com/article/bally-s-hotel-shooting-leaves-1-dead-4-hurt-gunfire-at-vegas-nightclub",
"http://www.christianpost.com/news/ballys-hotel-shooting-las-vegas-shooting-sees-patron-shot-dead-4-others-injured-in-drais-nightclub-107140/",
"http://www.fox5vegas.com/story/23743924/police-1-dead-3-hurt-in-ballys-casino-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/20/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Miami-Dade, FL",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.wsvn.com/news/articles/local/21012002683326/multiple-people-shot-in-agricultural-area/",
"http://www.miamiherald.com/2013/10/21/3702502/2-dead-2-injured-in-shooting-at.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.6326916,
25.5516034
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/26/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Miami Gardens, FL",
"City": "Miami Gardens",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.miamiherald.com/2013/10/27/3714331/miami-gardens-shooting-leaves.html",
"http://miami.cbslocal.com/2013/10/27/four-injured-in-miami-gardens-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.2456045,
25.9420377
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/26/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "New Haven, CT",
"City": "New Haven",
"County": "New Haven County",
"State": "CT",
"References": [
"http://www.nbcconnecticut.com/news/local/1-Killed-5-Injured-in-New-Haven-Club-Shooting-229371141.html",
"http://www.upi.com/Top_News/US/2013/10/27/One-dead-five-injured-in-shooting-at-New-Haven-Conn-nightclub/UPI-73691382907716/",
"http://www.nhregister.com/general-news/20131026/governor-new-haven-mayor-denounce-violence-that-left-1-dead-in-city-nightclub-Saturday",
"http://yaledailynews.com/blog/2013/10/28/six-shot-at-nightclub/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-72.9278835,
41.308274
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/26/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Ridgecrest, CA",
"City": "Ridgecrest",
"County": "Kern County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-victims-ridgecrest-shootings-20131025,0,7877039.story#axzz2j22H29vy",
"http://www.lasvegassun.com/news/2013/oct/28/us-ridgecrest-shooting-spree/",
"http://usnews.nbcnews.com/_news/2013/10/26/21172930-gunman-slain-hostages-freed-after-30-mile-mojave-desert-police-chase?lite"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.6708966,
35.6224561
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/26/13",
"Shooter": "Michael Guzzo",
"Dead": 5,
"Injured": 0,
"Location": "Phonix, AZ",
"City": "Phoenix",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.chicagotribune.com/sns-rt-usa-phoenixshooting-20131026,0,899134.story",
"http://cnews.canoe.ca/CNEWS/World/2013/10/26/21225046.html",
"http://www.news.com.au/world/michael-dante-guzzo-kills-neighbours-barking-dogs-may-have-sparked-dispute/story-fndir2ev-1226748605120",
"http://blogs.phoenixnewtimes.com/valleyfever/2013/10/names_released_in_phoenix_quad.php",
"http://nation.time.com/2013/10/28/family-of-four-may-have-been-slain-over-noisy-dog/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0740373,
33.4483771
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/27/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Sacramento, CA",
"City": "Sacramento",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://sacramento.cbslocal.com/2013/10/27/7-people-shot-1-killed-during-drive-by-shooting-at-sacramento-club/",
"http://www.mercedsunstar.com/2013/10/28/3300215/sacto-911-fairfield-man-identified.html",
"http://fox40.com/2013/10/27/shooting-after-halloween-party-leaves-1-dead-6-hurt/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4943996,
38.5815719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/27/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 7,
"Location": "Vallejo, CA",
"City": "Vallejo",
"County": "Solano County",
"State": "CA",
"References": [
"http://fox40.com/2013/10/27/police-8-people-shot-in-vallejo-after-getting-flat-tire/",
"http://abclocal.go.com/kgo/story?section=news/local/east_bay&id=9302826",
"http://www.nbcbayarea.com/news/local/One-Dead-Seven-Injured-in-Drive-By-Shooting-in-Vallejo-229459261.html",
"http://www.dailyrepublic.com/news/crimecourts/police-1-dead-after-8-shot-while-changing-flat-tire/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2566367,
38.1040864
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/27/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Beaumont, TX",
"City": "Beaumont",
"County": "Jefferson County",
"State": "TX",
"References": [
"http://www.chron.com/news/texas/article/4-wounded-in-Beaumont-gunfire-suspect-sought-4930432.php?cmpid=htx",
"http://www.khou.com/news/national/229453381.html",
"http://www.wafb.com/story/23800728/4-wounded-in-beaumont-gunfire-suspect-sought"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.1265562,
30.080174
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/27/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Albuquerque, NM",
"City": "Albuquerque",
"County": "Bernalillo County",
"State": "NM",
"References": [
"http://www.washingtonpost.com/national/2-police-officers-1-sheriffs-deputy-wounded-in-albuquerque-shootout/2013/10/26/2cababe0-3e9b-11e3-b0e7-716179a2c2c7_story.html",
"http://usnews.nbcnews.com/_news/2013/10/26/21182048-albuquerque-shootout-and-chase-cops-sheriffs-deputy-wounded"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-106.6055534,
35.0853336
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/27/13",
"Shooter": "Samuel Nathan Duran",
"Dead": 0,
"Injured": 6,
"Location": "Roseville, CA",
"City": "Roseville",
"County": "Placer County",
"State": "CA",
"References": [
"http://www.journalgazette.net/article/20131027/NEWS03/131029521/1066"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2880059,
38.7521235
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/27/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Southern Pines, NC",
"City": "Southern Pines",
"County": "Moore County",
"State": "NC",
"References": [
"http://www.wral.com/five-shot-at-southern-pines-billiards-bar/13043219/",
"http://abclocal.go.com/wtvd/story?section=news/local&id=9302794",
"http://www.wncn.com/story/23800338/5-shot-outside-southern-pines-pool-hall",
"http://abclocal.go.com/wtvd/story?section=news/local&id=9308137"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.3922539,
35.1740471
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/28/13",
"Shooter": "Charles Everett Brownlow Jr.",
"Dead": 5,
"Injured": 0,
"Location": "Terrell, TX",
"City": "Terrell",
"County": "Kaufman County",
"State": "TX",
"References": [
"http://inforney.com/crime/item/1378-terrell-pd-five-confirmed-dead-after-shooting-spree-suspect-in-custody",
"http://www.wfaa.com/news/local/Terrell-police-investigate-two-deaths-229633611.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.2752569,
32.7359626
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/29/13",
"Shooter": "Bryan Sweatt",
"Dead": 6,
"Injured": 0,
"Location": "Callison, SC",
"City": "Callison",
"County": "Greenwood County",
"State": "SC",
"References": [
"http://www.wyff4.com/news/local-news/abbeville-greenwood-news/sheriff-multiple-dead-in-upstate-home/-/9654572/22702972/-/cnrsfg/-/index.html",
"http://www.huffingtonpost.com/2013/10/30/south-carolina-shooting_n_4176154.html",
"http://www.cbsnews.com/8301-504083_162-57610066-504083/s.c-murder-suicide-update-gunman-idd-as-bryan-sweatt-victims-include-former-girlfriend-her-parents-and-two-children/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.12567709999999,
34.0145697
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/31/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Fayetteville, NC",
"City": "Fayetteville",
"County": "Cumberland County",
"State": "NC",
"References": [
"http://www.wncn.com/story/23849018/2-dead-2-injured-in-fayetteville-shooting",
"http://www.wral.com/two-killed-two-injured-in-shooting-outside-fayetteville-nightclub/13062045/",
"http://www.fayobserver.com/articles/2013/11/01/1293467?sac=fo.local"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.87835849999999,
35.0526641
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/2/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Radcliff, KY",
"City": "Radcliff",
"County": "Hardin County",
"State": "KY",
"References": [
"http://www.wave3.com/story/23858405/early-morning-shooting-leaves-one-dead-3-injured",
"http://www.wdrb.com/story/23858347/shhoting-in-radcliffe"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.9491298,
37.8403456
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/3/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.nbclosangeles.com/news/local/SoCal-Teacher-Survives-LAX-Shooting-Rampage-230385911.html",
"http://www.chicagotribune.com/news/chi-lax-shooting-20131103,0,119366.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/4/13",
"Shooter": "Jose Luis Avalos",
"Dead": 0,
"Injured": 5,
"Location": "Perris, CA",
"City": "Perris",
"County": "Riverside County",
"State": "CA",
"References": [
"http://blog.pe.com/crime/2013/11/04/perris-five-people-shot-in-early-morning-drive-by/",
"http://lakeelsinore-wildomar.patch.com/groups/police-and-fire/p/5-people-wounded-in-driveby-shooting-at-local-restaurant",
"http://www.menifee247.com/2013/11/suspect-vehicle-in-driveby-shooting-located-in-menifee.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.2286478,
33.7825194
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/5/13",
"Shooter": "Jerry Vue",
"Dead": 1,
"Injured": 3,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": [
"http://www.fresnobee.com/2013/11/05/3591785/sunnyside-high-other-schools-locked.html",
"http://abclocal.go.com/kfsn/story?section=news/local&id=9313803"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/5/13",
"Shooter": "Victor Leon Coley",
"Dead": 0,
"Injured": 4,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.wtop.com/109/3499118/At-least-three-men-shot-in-Northeast-DC",
"http://www.huffingtonpost.com/2013/11/06/dc-shooting-northeast_n_4227290.html",
"http://www.nbcwashington.com/news/local/Four-Reportedly-Shot-in-Northeast-DC-230848981.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/5/13",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 7,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://bigstory.ap.org/article/detroit-police-3-dead-4-hurt-store-shooting",
"http://abcnews.go.com/US/wireStory/detroit-police-dead-hurt-store-shooting-20810077",
"http://www.buzzfeed.com/mbvd/multiple-people-shot-on-detroits-east-side",
"http://www.usatoday.com/story/news/nation/2013/11/06/9-people-shot-at-detroit-barber-shop-at-least-3-dead-/3459413/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/7/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Jacksonville, FL",
"City": "Jacksonville",
"County": "Duval County",
"State": "FL",
"References": [
"http://jacksonville.com/breaking-news/2013-11-08/story/police-investigating-quadruple-shooting-jacksonvilles-westside",
"http://www.miamiherald.com/2013/11/08/3739103/police-4-dead-after-shooting-in.html",
"http://www.firstcoastnews.com/topstories/article/335396/483/Still-no-answers-in-Murray-Hill-quadruple-murder"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.65565099999999,
30.3321838
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/9/13",
"Shooter": "Randy Stewart",
"Dead": 2,
"Injured": 16,
"Location": "Cyprus, TX",
"City": "Cypress",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.chron.com/news/houston-texas/houston/article/Two-dead-more-than-a-dozen-injured-in-shooting-4971781.php",
"http://www.ajc.com/ap/ap/general/authorities-2-dead-22-hurt-in-gunfire-at-party/nbntW/",
"http://abclocal.go.com/ktrk/story?section=news/local&id=9320227",
"http://www.presstv.ir/detail/2013/11/10/334064/texas-party-shooting-kills-2-injures-22/",
"http://www.chicagotribune.com/news/sns-rt-us-usa-texas-shooting-20131110,0,7055012.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.6937856,
29.9716905
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/9/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Phoenix, AZ",
"City": "Phoenix",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.myfoxphoenix.com/story/23928624/2013/11/10/woman-killed-during-shooting-at-party",
"http://www.abc15.com/dpp/news/region_phoenix_metro/south_phoenix/pd-2-shot-at-large-house-party-in-phoenix",
"http://www.kpho.com/story/23928754/pd-1-dead-3-wounded-in-phoenix-party-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0740373,
33.4483771
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/10/13",
"Shooter": "Dwight Ellis",
"Dead": 1,
"Injured": 3,
"Location": "Canton, OH",
"City": "Canton",
"County": "Stark County",
"State": "OH",
"References": [
"http://www.newsnet5.com/dpp/news/local_news/oh_stark/man-arrested-for-shooting-four-in-canton-bar-parking-lot",
"http://www.mysanantonio.com/news/crime/article/Police-1-killed-3-wounded-outside-Ohio-bar-4972733.php",
"http://fox8.com/2013/11/10/1-killed-3-injured-in-canton-bar-shooting/",
"http://www.cantonrep.com/article/20131110/NEWS/131119993"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.378447,
40.79894729999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/10/13",
"Shooter": "Ali Akbar Mohammadi Rafie",
"Dead": 4,
"Injured": 1,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.nbcnewyork.com/news/local/East-Williamsburg-Shooting-Monday-231395251.html",
"http://nypost.com/2013/11/11/gunman-three-others-dead-in-brooklyn-bloodshed/",
"http://www.nydailynews.com/new-york/brooklyn/manhunt-gunman-east-williamsburg-article-1.1512828",
"http://www.nytimes.com/2013/11/12/nyregion/4-dead-in-brooklyn-murder-suicide-police-say.html?_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/12/13",
"Shooter": "Michael Sanders",
"Dead": 4,
"Injured": 0,
"Location": "Phoenix, AZ",
"City": "Phoenix",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.azcentral.com/community/nephoenix/articles/20131113phoenix-police-release-ids-triple-homicide-abrk.html",
"http://www.myfoxphoenix.com/story/23950414/2013/11/12/body-found",
"http://www.azfamily.com/news/Multiple-people-shot-in-Phoenix-neighborhood-231662891.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0740373,
33.4483771
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/17/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://abclocal.go.com/ktrk/story?section=news/local&id=9319503"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/20/13",
"Shooter": "Johnathan Sanchez",
"Dead": 3,
"Injured": 2,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.washingtonpost.com/national/gunfire-at-suburban-houston-apartment-complex-kills-3-wounds-2/2013/11/20/98e33be4-5240-11e3-9ee6-2580086d8254_story.html",
"http://www.nydailynews.com/news/national/3-dead-2-injured-houston-shooting-article-1.1524017",
"http://www.chron.com/neighborhood/cyfair/crime-courts/article/3-killed-2-wounded-in-shooting-at-apartment-4996946.php?cmpid=hpbn",
"http://abclocal.go.com/ktrk/story?section=news/local&id=9334256",
"http://abclocal.go.com/ktrk/story?section=news/local&id=9337822"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/20/13",
"Shooter": "Roberto Garcia Sousa",
"Dead": 3,
"Injured": 1,
"Location": "Miami-Dade, FL",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.myfoxorlando.com/story/24027285/3-dead-1-injured-in-miami-dade-shooting",
"http://www.miamiherald.com/2013/11/20/3767531/one-dead-one-critical-in-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.6326916,
25.5516034
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/21/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.myfoxphilly.com/story/24039009/four-people-shot-in-overbrook",
"http://philadelphia.cbslocal.com/2013/11/21/polcie-investigate-quadruple-shooting-in-west-philadelphia/",
"http://www.abc27.com/story/24039567/police-say-4-men-wounded-in-philly-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/22/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Columbus, OH",
"City": "Columbus",
"County": "Franklin County",
"State": "OH",
"References": [
"http://www.reuters.com/article/2013/11/22/us-usa-shooting-ohio-idUSBRE9AL11420131122",
"http://www.sfgate.com/news/crime/article/Ohio-boy-shot-by-mom-s-ex-boyfriend-dies-5007226.php",
"http://www.myfox28columbus.com/shared/news/features/top-stories/stories/wsyx_new-details-suspected-gunman-danny-thornton-27640.shtml"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.99879419999999,
39.9611755
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/23/13",
"Shooter": "David Cornell Bennett Jr.",
"Dead": 4,
"Injured": 0,
"Location": "Parsons, KA",
"City": "Oswego",
"County": "Labette County",
"State": "KS",
"References": [
"http://www.kansas.com/2013/11/28/3147418/kan-ags-office-takes-quadruple.html",
"http://www.kansas.com/2013/12/02/3154290/suspect-to-appear-in-court-in.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.1033453,
37.1660122
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/23/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 1,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.reuters.com/article/2013/11/25/us-usa-shooting-tulsa-idUSBRE9AO02F20131125",
"http://www.muskogeephoenix.com/statenews/x1267067651/Four-killed-in-Tulsa-shooting",
"http://www.fox23.com/news/local/story/Neighbor-says-quadruple-shooting-was-a-message/aO1TF25WPUaghNqDGMBKhw.cspx",
"http://www.newson6.com/story/24067125/new-details-uncovered-in-quadruple"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/24/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Oakland, CA",
"City": "Oakland",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.sfgate.com/crime/article/Oakland-birthday-shooting-2-gunmen-7-victims-5013659.php",
"http://www.nbcbayarea.com/news/local/7-Injured-in-East-Oakland-Shooting-233404941.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2711137,
37.8043637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/24/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Minneapolis, MN",
"City": "Minneapolis",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://www.myfoxtwincities.com/story/24060228/1-dead-3-injured-in-shooting-at-e-lake-st-restaurant",
"http://www.sfgate.com/news/crime/article/1-dead-3-injured-in-restaurant-shooting-5009562.php",
"http://www.twincities.com/localnews/ci_24595473/minneapolis-shooting-leaves-one-dead-three-injured"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2650108,
44.977753
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/28/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Rochester, NY",
"City": "Rochester",
"County": "Monroe County",
"State": "NY",
"References": [
"http://www.newstimes.com/news/crime/article/4-men-wounded-by-gunfire-on-Rochester-street-5019212.php",
"http://www.sfgate.com/news/crime/article/4-men-wounded-by-gunfire-on-Rochester-street-5019212.php",
"http://www.whec.com/news/stories/S3230445.shtml"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.6109219,
43.16103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/29/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": [
"http://www.fresnobee.com/2013/11/29/3639288/four-injured-in-southwest-fresno.html",
"http://abclocal.go.com/kfsn/story?section=news/local&id=9344154"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/29/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.indystar.com/story/news/2013/11/30/four-teens-shot-at-eastside-party-friday/3791085/",
"http://www.wishtv.com/news/local/shots-fired-at-teen-house-party"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/30/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Lansing, MI",
"City": "Lansing",
"County": "Ingham County",
"State": "MI",
"References": [
"http://www.lansingstatejournal.com/article/20131130/NEWS01/311300014/",
"http://www.lansingstatejournal.com/article/20131202/NEWS01/312020019/Lansing-shooting-injured-5-could-been-really-bad-"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5555347,
42.732535
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/30/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Valdosta, GA",
"City": "Valdosta",
"County": "Lowndes County",
"State": "GA",
"References": [
"http://www.wtxl.com/news/four-people-shot-valdosta-police-search-for-suspects/article_33eb666a-5a1c-11e3-8eba-0019bb30f31a.html",
"http://www.wctv.tv/home/headlines/233942891.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.2784851,
30.8327022
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/1/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Topeka, KA",
"County": "Logan County",
"State": "KS",
"References": [
"http://www.kake.com/home/headlines/Three-dead-one-injured-in-Topeka-shooting-234030831.html?ref=831",
"http://www.kansascity.com/2013/12/02/4663870/police-shooting-probe-in-topeka.html",
"http://cjonline.com/news/2013-12-03/police-say-fourth-victim-central-topeka-homicide-has-died"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-100.971867,
38.9740488
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/1/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://miami.cbslocal.com/2013/12/02/liberty-city-shooting-leaves-two-women-dead-two-injured/",
"http://www.wsvn.com/news/articles/local/21012363217371/2-women-injured-2-killed-in-miami-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/2/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Gary, IN",
"City": "Gary",
"County": "Lake County",
"State": "IN",
"References": [
"http://wgntv.com/2013/12/03/violent-confusing-day-in-gary-leaves-3-dead-several-injured/",
"http://articles.chicagotribune.com/2013-12-02/news/chi-reports-several-shot-in-gary-overnight-20131202_1_coroner-wounded-man-gabrielle-king"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.3464271,
41.5933696
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/3/13",
"Shooter": "Tim Adams",
"Dead": 4,
"Injured": 0,
"Location": "Alma, AL",
"City": "Alma",
"County": "Clarke County",
"State": "AL",
"References": [
"http://www.nwahomepage.com/story/three-dead-in-crawford-county-shooting/d/story/etJnF0YqjUO4e2t9MBgB0A",
"http://www.arktimes.com/ArkansasBlog/archives/2013/12/03/police-triple-murder-suicide-near-alma",
"http://www.miamiherald.com/2013/12/03/3795364/sheriff-arkansas-granddad-fatally.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.7538838,
31.4640524
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/3/13",
"Shooter": "Chad Smith and Tony Churchill",
"Dead": 0,
"Injured": 4,
"Location": "Louisville, KY",
"City": "Louisville",
"County": "Jefferson County",
"State": "KY",
"References": [
"http://www.whas11.com/news/local/Police-investigate-after-man-shot-234270721.html",
"http://www.wdrb.com/story/24133619/arrest-two-men-taken-into-custody-in-connection-with"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.7584557,
38.2526647
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/3/13",
"Shooter": "Herbert Clyde Hughes Jr.",
"Dead": 4,
"Injured": 0,
"Location": "Erwin, TN",
"City": "Erwin",
"County": "Unicoi County",
"State": "TN",
"References": [
"http://www.johnsoncitypress.com/article/104594",
"http://www.local8now.com/home/headlines/Police-release-names-of-4-family-members-killed-in-Erwin-189834641.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.41680550000001,
36.1451082
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/7/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Wilmington, DE",
"City": "Wilmington",
"County": "New Castle County",
"State": "DE",
"References": [
"http://hiphopwired.com/2013/12/08/meek-mill-delaware-concert-4-people-shot/",
"http://www.rapbasement.com/meek-mill/120813-meek-mill-show-cut-short-due-to-shooting-four-people-shot.html",
"http://www.philly.com/philly/news/Police_Four_shot_outside_Meek_Mill_concert.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.5397878,
39.7390721
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/8/13",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Manchester, CT",
"City": "Manchester",
"County": "Hartford County",
"State": "CT",
"References": [
"http://articles.courant.com/2013-12-08/community/hc-manchester-shooting-1208-20131207_1_three-women-gunshot-child",
"http://www.nj.com/union/index.ssf/2013/12/union_woman_among_3_dead_in_connecticut_double_murder-suicide.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-72.52150089999999,
41.7759301
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/9/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Miami-Dade, FL",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.miamiherald.com/2013/12/10/3809575/3-officers-shot-in-northwest-miami.html",
"http://www.nydailynews.com/news/national/wild-shootout-miami-leaves-officers-wounded-suspects-dead-article-1.1543065"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.6326916,
25.5516034
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/13/13",
"Shooter": "Antonio Devon Brown",
"Dead": 1,
"Injured": 3,
"Location": "Huntington, WV",
"City": "Huntington",
"County": "Cabell County",
"State": "WV",
"References": [
"http://www.wsaz.com/news/headlines/Multiple-Shooting-in-Huntington-235696321.html",
"http://www.wowktv.com/story/24211066/gunman-dead-three-hurt-in-huntington-wv-shooting",
"http://www.wvva.com/story/24212155/2013/12/13/at-least-one-person-is-dead-after-a-shooting-near-marshall-university",
"http://www.herald-dispatch.com/x955017292/HPD-investigating-downtown-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.44515400000002,
38.4192496
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/14/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Statesville, NC",
"City": "Statesville",
"County": "Iredell County",
"State": "NC",
"References": [
"http://www.statesville.com/news/article_85907f20-65ff-11e3-aa76-001a4bcf6878.html",
"http://www.wcnc.com/news/crime/4-teens-shot-during-Statesville-birthday-party-236044071.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8872959,
35.7826363
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/15/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Florida City, FL",
"City": "Florida City",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.nbcmiami.com/news/4-Injured-in-Florida-City-Shooting-Police-235869831.html",
"http://miami.cbslocal.com/2013/12/14/florida-city-shooting-leaves-four-in-the-hospital/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.47922369999999,
25.4478898
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/15/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Channelview, TX",
"City": "Channelview",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.nbcdfw.com/news/local/Five-Teens-Shot-in-Harris-County-235999031.html",
"http://www.wfaa.com/news/crime/Five--people-wounded-in-shooting-in-Harris-County-235947061.html",
"http://www.kcentv.com/story/24226920/5-people-shot-police-searching-for-suspect"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.11465330000001,
29.7760599
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/17/13",
"Shooter": "Alan Frazier",
"Dead": 2,
"Injured": 2,
"Location": "Reno, NV",
"City": "Reno",
"County": "Washoe County",
"State": "NV",
"References": [
"http://bigstory.ap.org/article/gunman-shoots-4-kills-himself-reno-hospital",
"http://www.cleveland.com/nation/index.ssf/2013/12/2_dead_2_injured_in_shooting_a.html",
"http://www.usatoday.com/story/news/nation/2013/12/19/shots-fired-at-reno-medical-facility/4122815/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.8138027,
39.5296329
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/21/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Trenton, NJ",
"City": "Trenton",
"County": "Mercer County",
"State": "NJ",
"References": [
"http://www.nj.com/mercer/index.ssf/2013/12/drive-by_shooting_in_trenton_leaves_1_dead_4_wounded_authorities_say.html",
"http://newjersey.news12.com/news/brandon-varlow-killed-4-others-hurt-in-trenton-drive-by-shooting-1.6660970"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.7429384,
40.2170534
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/22/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Shelby, NC",
"City": "Shelby",
"County": "Cleveland County",
"State": "NC",
"References": [
"http://www.shelbystar.com/news/local/police-four-injured-in-overnight-shooting-updated-10-15-a-m-1.253381"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.5356463,
35.2923513
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/22/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Fruitland Township, MI",
"County": "Muskegon County",
"State": "MI",
"References": [
"http://www.freep.com/article/20131221/NEWS06/312210061/1-man-killed-3-wounded-in-Michigan-party-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.357952,
43.3295527
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/25/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Medford, NY",
"City": "Medford",
"County": "Suffolk County",
"State": "NY",
"References": [
"http://newyork.cbslocal.com/2013/12/25/one-dead-3-injured-in-early-morning-medford-li-shooting/",
"http://nypost.com/2013/12/25/1-dead-3-injured-in-christmas-morning-shooting/",
"http://patchogue.patch.com/groups/police-and-fire/p/four-shot-one-fatally-at-medford-engine-shop"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.0001068,
40.8175985
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/25/13",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 2,
"Location": "Irvington, NJ",
"City": "Irvington",
"County": "Essex County",
"State": "NJ",
"References": []
},
"geometry": {
"type": "Point",
"coordinates": [
-74.22864349999999,
40.7263249
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/26/13",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 7,
"Location": "Slidell, LA",
"City": "Slidell",
"County": "St Tammany Parish",
"State": "LA",
"References": [
"http://www.wafb.com/story/24305963/shooting-outside-bar-leaves-several-people-injured",
"http://www.wwltv.com/news/local/237290471.html",
"http://www.nola.com/crime/index.ssf/2013/12/one_dead_seven_injured_in_olde.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.78117449999999,
30.2751945
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/26/13",
"Shooter": "Ben Edward Freeman",
"Dead": 4,
"Injured": 3,
"Location": "Raceland, LA",
"City": "Raceland",
"County": "Lafourche Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2013/12/lafourche_parish_shooter_attac.html#incart_river_default",
"http://www.nydailynews.com/news/national/louisiana-man-kills-wounds-shooting-spree-article-1.1559338#ixzz2oh2cbodF"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.5989759,
29.7274331
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/29/13",
"Shooter": "Ivan Wong",
"Dead": 2,
"Injured": 2,
"Location": "Miami-Dade, FL",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.wsvn.com/news/articles/local/21012612231273/suspect-named-in-rampage-that-killed-2-injured-2/",
"http://miami.cbslocal.com/2013/12/30/police-id-two-people-killed-in-sw-dade-dispute/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.6326916,
25.5516034
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/29/13",
"Shooter": "Jason McWilliams",
"Dead": 2,
"Injured": 6,
"Location": "Montgomery, AL",
"City": "Montgomery",
"County": "Montgomery County",
"State": "AL",
"References": [
"http://www.cbsatlanta.com/story/24318554/mpd-investigating-citys-47th-and-48th-homicide",
"http://www.usatoday.com/story/news/nation/2013/12/30/alabama-nightclub-shooting/4248753/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.2999689,
32.3668052
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/30/13",
"Shooter": "Abbas Lodhi",
"Dead": 4,
"Injured": 0,
"Location": "Pleasant Valley, NY",
"City": "Pleasant Valley",
"County": "Dutchess County",
"State": "NY",
"References": [
"http://www.cbsnews.com/news/cops-ny-pharmacist-killed-wife-then-sons-then-himself/",
"http://www.syracuse.com/news/index.ssf/2013/11/ny_pharmacist_abbas_lodhi_shot_to_death_his_wife_then_killed_2_sons_and_himself.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.8212439,
41.7445382
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/31/13",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://online.wsj.com/article/AP4e28dd72538b433eb86c62607da2a04f.html",
"http://www.nbcnewyork.com/news/politics/Shooting-Party-Brooklyn--238202211.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/31/13",
"Shooter": "Undisclosed",
"Dead": 4,
"Injured": 0,
"Location": "Fontana, CA",
"City": "Fontana",
"County": "San Bernardino County",
"State": "CA",
"References": [
"http://www.therepublic.com/view/story/a00d45543d0f446ab2a3f7658fe195db/US--Bodies-In-Home",
"http://www.latimes.com/local/lanow/la-me-ln-shooting-deaths-fontana-family-20131231,0,2131640.story#axzz2p5fGw0xj",
"http://www.nydailynews.com/news/national/people-including-children-found-killed-california-home-article-1.1562139"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.435048,
34.0922335
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/31/13",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Barberton, OH",
"City": "Barberton",
"County": "Summit County",
"State": "OH",
"References": [
"http://www.ohio.com/news/break-news/two-teens-killed-two-injured-in-barberton-robbery-shooting-1.456428",
"http://www.vindy.com/news/2014/jan/01/2-barberton-teens-dead-after-new-years-eve-shootin/",
"http://www.newsnet5.com/news/local-news/oh-summit/multiple-people-found-shot-in-barberton-home-on-new-years-eve"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6051221,
41.012833
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/1/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Norfolk, VA",
"City": "Norfolk",
"State": "VA",
"References": [
"http://www.wvec.com/my-city/norfolk/Three-people-shot-in-Norfolk-two-are-dead-238350921.html",
"http://www.wavy.com/news/local/norfolk/two-people-killed-in-early-morning-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.28587259999999,
36.8507689
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/3/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "New York (Queens), NY",
"City": "New York",
"County": "Queens County",
"State": "NY",
"References": [
"http://www.nytimes.com/2014/01/04/nyregion/gunman-fires-at-moving-suv-in-queens-killing-one-and-wounding-three-others.html?_r=0",
"http://pix11.com/2014/01/03/four-people-shot-one-killed-in-queens/#axzz2pwOjY3Gz"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7948516,
40.7282239
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/4/14",
"Shooter": "Leonard �Frank� Harris Jr",
"Dead": 2,
"Injured": 2,
"Location": "Rock Falls, IL",
"City": "Rock Falls",
"County": "Whiteside County",
"State": "IL",
"References": [
"http://wqad.com/2014/01/04/man-reportedly-killed-in-shooting-outside-rock-falls-bar/",
"http://qctimes.com/news/local/dead-after-shooting-outside-rock-falls-tavern/article_fee0cf80-76c9-11e3-8a9e-0019bb2963f4.html",
"http://www.kwqc.com/story/24364069/deadly-shooting-in-rock-island"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.68899669999999,
41.7797533
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/5/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Erie, OH",
"County": "Erie County",
"State": "OH",
"References": [
"http://www.goerie.com/man-shot-dead-at-private-party-in-parade-street-building",
"http://www.erietvnews.com/story/24366744/1-killed-3-injured-in-early-morning-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.4752757,
41.4349882
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/5/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Atlanta, Ga",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.cbsatlanta.com/story/24366624/4-men-hospitalized-and-arrested-after-atlatna-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/12/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Elgin, Il",
"City": "Elgin",
"County": "Kane County",
"State": "IL",
"References": [
"http://www.dailyherald.com/article/20140112/news/701129890/",
"http://articles.chicagotribune.com/2014-01-12/news/chi-elgin-shooting-leaves-5-injured-20140112_1_gang-crimes-unit-shooting-fifth-person"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.2825668,
42.0354084
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/12/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Huntsville, AL",
"City": "Huntsville",
"County": "Madison County",
"State": "AL",
"References": [
"http://whnt.com/2014/01/13/15-year-old-arrested-in-bench-warmer-shooting-clubs-liquor-license-suspended/",
"http://whnt.com/2014/01/12/early-morning-shooting-at-bench-warmer-in-huntsville/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.5861037,
34.7303688
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/12/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Portland, OR",
"City": "Portland",
"County": "Multnomah County",
"State": "OR",
"References": [
"http://www.katu.com/news/local/Multiple-people-shot-at-Southeast-Portland-Club-239796101.html",
"http://www.kptv.com/story/24427490/update-security-guard-could-lose-life-in-strip-club-shooting",
"http://portlandtribune.com/pt/9-news/207216-64210-bouncer-shoots-gunman-at-strip-club-others-wounded"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.6764816,
45.5230622
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/14/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.nbclosangeles.com/news/local/Multiple-People-Shot-in-South-LA--240207831.html",
"http://ktla.com/2014/01/14/4-injured-in-south-los-angeles-shooting-lapd/#axzz2qV4cNuX1",
"http://www.latimes.com/local/lanow/la-me-ln-4-men-shot-south-la-driveby-20140114,0,2237447.story?track=rss#axzz2qV4ez5s0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/16/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Ardmore, OK",
"City": "Ardmore",
"County": "Carter County",
"State": "OK",
"References": [
"http://www.cnn.com/2014/01/17/justice/oklahoma-atf-agents-shot/",
"http://www.cbsnews.com/news/teen-who-shot-4-including-2-atf-agents-is-killed-by-cops-they-say/",
"http://www.kten.com/story/24477645/2014/01/16/breaking-manhunt-over-for-ardmore-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.14362539999999,
34.1742611
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/16/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-fresno-carjacking-shooting-spree-20140117,0,577172.story#axzz2qgY3j6io",
"http://www.fresnobee.com/2014/01/16/3718463/2-dead-2-hurt-in-wild-fresno-carjacking.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/16/14",
"Shooter": "Joshua Boren",
"Dead": 5,
"Injured": 0,
"Location": "Spanish Fork, UT",
"City": "Spanish Fork",
"County": "Utah County",
"State": "UT",
"References": [
"http://www.washingtonpost.com/national/family-friends-stunned-by-utah-murder-suicide/2014/01/19/4cab8f68-8177-11e3-a273-6ffd9cf9f4ba_story.html",
"http://www.sltrib.com/sltrib/news/57416402-78/boren-family-kelly-amp.html.csp"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-111.654923,
40.114955
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/20/14",
"Shooter": " Jeremiah Eugene Pullen",
"Dead": 0,
"Injured": 4,
"Location": "Manassas, VA",
"City": "Manassas",
"State": "VA",
"References": [
"http://www.washingtonpost.com/local/crime/four-shot-at-manassas-sports-bar/2014/01/20/a178eefa-81d1-11e3-bbe5-6a2a3141e3a9_story.html",
"http://www.nbcwashington.com/news/local/Four-Shot-at-Manassas-Sports-Bar--241121891.html",
"http://www.nydailynews.com/news/national/shooting-injures-4-virginia-bar-article-1.1585188"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.47526669999999,
38.7509488
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/21/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.nj.com/essex/index.ssf/2014/01/prosecutors_identify_victims_in_newark_shooting_that_left_2_dead_3_hurt.html",
"http://www.abc27.com/story/24520688/authorities-id-woman-killed-in-newark-car-shooting",
"http://www.nj.com/essex/index.ssf/2014/01/several_shot_1_dead_near_newark_restaurant.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/25/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Belle Glade, FL",
"City": "Belle Glade",
"County": "Palm Beach County",
"State": "FL",
"References": [
"http://www.cbs12.com/news/top-stories/stories/vid_12757.shtml",
"http://articles.sun-sentinel.com/2014-01-26/news/sfl-four-injured-in-belle-glade-shooting-20140125_1_belle-glade-four-people-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.6675577,
26.6845104
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/25/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.suntimes.com/25170149-761/1-dead-4-wounded-in-south-side-bar-shooting.html",
"http://abclocal.go.com/wls/story?id=9406988",
"http://www.nbcchicago.com/news/local/5-Shot-1-Killed-in-Shooting-During-Birthday-Party-at-South-Side-Lounge-241957291.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/27/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Rocky Mount, NC",
"City": "Rocky Mount",
"County": "Edgecombe County",
"State": "NC",
"References": [
"http://www.wral.com/four-people-shot-behind-church-in-rocky-mount/13332824/",
"http://abclocal.go.com/wtvd/story?section=news/local&id=9409413"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.7905339,
35.9382103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/27/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Seattle, WA",
"City": "Seattle",
"County": "King County",
"State": "WA",
"References": [
"http://q13fox.com/2014/01/27/woman-shot-near-pioneer-square/#axzz2riLpuDCJ",
"http://blogs.seattletimes.com/today/2014/02/woman-who-died-after-jan-27-pioneer-square-shooting-is-idd/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.3320708,
47.6062095
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/28/14",
"Shooter": "Darion Marcus Aguilar",
"Dead": 3,
"Injured": 5,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://thebottomline.as.ucsb.edu/2014/01/three-killed-five-injured-during-shooting-in-maryland-mall",
"http://www.foxbaltimore.com/news/features/top-stories/stories/police-columbia-mall-shooting-victims-were-zumiez-employees-their-20s-24920.shtml"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/28/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Milwaukee, WI",
"City": "Milwaukee",
"County": "Milwaukee County",
"State": "WI",
"References": [
"http://fox6now.com/2014/01/28/at-least-three-victims-discovered-after-shooting-near-28th-chambers/",
"http://www.wisn.com/news/south-east-wisconsin/milwaukee/five-juveniles-shot-near-28th-chambers-in-milwaukee/-/10148890/24167220/-/1u2nqyz/-/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9064736,
43.0389025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/2/14",
"Shooter": "Andrew Parish",
"Dead": 3,
"Injured": 2,
"Location": "Franklin, IL",
"City": "Franklin",
"County": "Morgan County",
"State": "IL",
"References": [
"http://www.theindychannel.com/news/local-news/multiple-people-shot-in-franklin-home",
"http://www.indystar.com/story/news/crime/2014/02/03/multiple-shootings-reported-in-franklin/5196955/",
"http://wishtv.com/2014/02/04/2-people-are-dead-3-others-injured-in-domestic-shooting/",
"http://www.theindychannel.com/news/local-news/multiple-people-shot-in-franklin-home"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.04400009999999,
39.6203259
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/3/14",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Cypress, TX",
"City": "Cypress",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.chron.com/neighborhood/cyfair/crime-courts/article/Cops-seek-gunman-in-Cypress-shooting-that-killed-4-5200810.php",
"http://www.khou.com/news/crime/HCSO-4-found-dead-in-northwest-Harris-County-242872011.html",
"http://abclocal.go.com/ktrk/story?section=news/local&id=9418703"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.6937856,
29.9716905
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/5/14",
"Shooter": "Earl Edward Clauge Jr.",
"Dead": 1,
"Injured": 3,
"Location": "Perry, FL",
"City": "Perry",
"County": "Taylor County",
"State": "FL",
"References": [
"http://www.wctv.tv/news/floridanews/headlines/Shooting-At-Perry-Ford-Dealership-243701681.html",
"http://www.wtxl.com/news/shooting-at-taylor-county-car-dealership/article_a27a9ab0-8e83-11e3-8e81-0017a43b2370.html",
"http://www.tallahassee.com/article/20140205/NEWS/140205022/Update-Shooter-dead-Perry-Ford-dealership-shooting?odyssey=tab%7Ctopnews%7Ctext%7Cfrontpage"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.5818147,
30.1174351
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/6/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://articles.chicagotribune.com/2014-02-06/news/chi-chicago-shootings-at-least-2-shot-on-far-north-side-20140205_1_masked-gunman-police-search-3-others",
"http://abclocal.go.com/wls/story?section=news/local/chicago_news&id=9420949"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/6/14",
"Shooter": "Robert Garza Sr.",
"Dead": 4,
"Injured": 0,
"Location": "Defiance, OH",
"City": "Defiance",
"County": "Defiance County",
"State": "OH",
"References": [
"http://www.foxnews.com/us/2014/02/07/4-dead-in-apparent-murder-suicide-in-ohio-authorities-say/",
"http://www.nydailynews.com/news/national/family-members-dead-gruesome-triple-murder-suicide-ohio-house-article-1.1605588",
"http://nation.time.com/2014/02/07/ohio-murder-suicide-robert-garza/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3557802,
41.2844933
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/7/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.wafb.com/story/24662387/four-people-shot-at-lounge-in-eastern-new-orleans",
"http://www.nola.com/crime/index.ssf/2014/02/4_people_recovering_after_club.html",
"http://www.wwltv.com/news/NOPD-investigates-four-shot-at-New-Orleans-East-nightclub-244208011.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/12/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Gary, IN",
"City": "Gary",
"County": "Lake County",
"State": "IN",
"References": [
"http://abclocal.go.com/wls/story?section=news/local/indiana&id=9430380"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.3464271,
41.5933696
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/12/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Oakland, CA",
"City": "Oakland",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.sfgate.com/crime/article/One-dead-3-wounded-in-Oakland-shooting-5230506.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2711137,
37.8043637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/12/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Stockton, Ca",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://www.kcra.com/news/4-shot-1-killed-in-shooting-at-stockton-park/24443448"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/15/14",
"Shooter": "Peter Andrade",
"Dead": 0,
"Injured": 5,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.fox5vegas.com/story/24738619/2-people-shot-at-wedding-reception",
"http://www.reviewjournal.com/news/several-people-shot-las-vegas-wedding-reception-Saturday",
"http://lasvegassun.com/news/2014/feb/20/bail-set-suspect-accused-shooting-five-weekend-wed/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/15/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Fort Wayne, In",
"City": "Fort Wayne",
"County": "Allen County",
"State": "IN",
"References": [
"http://wlfi.com/2014/02/16/five-injured-in-fort-wayne-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.1393513,
41.079273
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/16/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Saginaw, Mi",
"City": "Saginaw",
"County": "Saginaw County",
"State": "MI",
"References": [
"http://www.mlive.com/news/saginaw/index.ssf/2014/02/police_1_woman_3_men_shot_outs.html",
"http://www.mlive.com/news/saginaw/index.ssf/2014/02/saginaw_police_four_people_sho.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.9508068,
43.4194699
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/16/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Fort Worth, Tx",
"City": "Fort Worth",
"County": "Tarrant County",
"State": "TX",
"References": [
"http://www.star-telegram.com/2014/02/16/5574682/three-shot-at-fort-worth-stockyards.html",
"http://www.myfoxdfw.com/story/24741622/one-dead-three-injured-in-shooting-at-fort-worth-stockyards"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.3307658,
32.7554883
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/16/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Jacksonville, Fl",
"City": "Jacksonville",
"County": "Duval County",
"State": "FL",
"References": [
"http://www.firstcoastnews.com/story/news/local/murray-hill-ortega/2014/02/16/fat-kats-shooting/5530199/",
"http://jacksonville.com/news/crime/2014-02-16/story/one-dead-four-injured-shooting-murray-hill-nightclub",
"http://www.gainesville.com/article/20140216/WIRE/140219628?Title=One-dead-four-injured-after-shooting-at-Florida-club-"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.65565099999999,
30.3321838
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/16/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Dallas, Tx",
"City": "Dallas",
"County": "Dallas County",
"State": "TX",
"References": [
"http://www.cbsnews.com/news/one-dead-six-injured-after-shooting-at-dallas-nightclub/",
"http://www.nbcdfw.com/news/local/One-Dead-Six-Injured-In-Dallas-Nightclub-Shooting-245753181.html",
"http://www.dallasnews.com/news/crime/headlines/20140216-one-killed-six-injured-in-gang-related-shooting.ece"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.79698789999999,
32.7766642
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/16/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Pine Hills, FL",
"City": "Pine Hills",
"County": "Orange County",
"State": "FL",
"References": [
"http://www.gainesville.com/article/20140216/WIRE/140219630?Title=One-dead-six-injured-after-shots-fired-at-house-party-",
"http://www.greenfieldreporter.com/view/story/e35299805df84bc58bdf7f6ba217c4b6/FL--House-Party-Shooting",
"http://www.miamiherald.com/2014/02/16/3939699/1-dead-6-injured-after-shots-fired.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.4534046,
28.5577794
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/18/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Fort Lauderdale, Fl",
"City": "Fort Lauderdale",
"County": "Broward County",
"State": "FL",
"References": [
"http://www.huffingtonpost.com/2014/02/18/officer-shooting-at-shooters_n_4810242.html",
"http://www.miamiherald.com/2014/02/16/3940696/shooting-at-shooters-miami-dade.html",
"http://www.sun-sentinel.com/fl-shooters-gunshot-20140216,0,3277812.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.13731740000001,
26.1224386
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/20/14",
"Shooter": "Cherie Lash Rhoades",
"Dead": 4,
"Injured": 2,
"Location": "Alturas, Ca",
"City": "Alturas",
"County": "Modoc County",
"State": "CA",
"References": [
"http://news.yahoo.com/police-4-dead-2-injured-n-calif-shooting-042059615.html",
"http://www.nydailynews.com/news/national/killed-woman-threatened-eviction-california-indian-reservation-cops-article-1.1622207",
"http://sanfrancisco.cbslocal.com/2014/02/20/4-dead-2-injured-in-shooting-at-norcal-tribal-headquarters/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.5424555,
41.4871146
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/20/14",
"Shooter": "Andrew Sizemore",
"Dead": 4,
"Injured": 0,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.startribune.com/nation/246522671.html",
"http://www.theindychannel.com/news/local-news/impd-investigating-reports-of-multiple-cops-shot-on-south-side",
"http://wishtv.com/2014/03/05/police-officer-shot-on-southeast-side/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/23/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Wilmington, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://losangeles.cbslocal.com/2014/02/22/4-shot-during-family-party-in-harbor-city/",
"http://abclocal.go.com/kabc/story?section=news/local/los_angeles&id=9441699"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2643567,
33.7857948
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/24/14",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 1,
"Location": "Glade Spring, VA",
"City": "Glade Spring",
"County": "Washington County",
"State": "VA",
"References": [
"http://www.tricities.com/news/article_183acf4e-9e20-11e3-b7a7-0017a43b2370.html",
"http://www.hickoryrecord.com/news/us/article_119bf646-9e24-11e3-be59-0017a43b2370.html",
"http://www.chron.com/news/crime/article/4-people-killed-in-shooting-at-Glade-Spring-home-5265585.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.7712324,
36.791225
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/26/14",
"Shooter": "John Conta Jr.",
"Dead": 4,
"Injured": 0,
"Location": "Oak Lawn, IL",
"City": "Oak Lawn",
"County": "Cook County",
"State": "IL",
"References": [
"http://abclocal.go.com/wls/story?section=news/local&id=9446990%5D(Man",
"http://www.chicagotribune.com/news/local/suburbs/palos/chi-authorities-id-dead-in-oak-lawn-shootings-fire-20140227,0,7294173.story%5D(Oak"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.7479528,
41.719978
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/1/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Pittsburgh, PA",
"City": "Pittsburgh",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://pittsburgh.cbslocal.com/2014/03/01/1-killed-in-homewood-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9958864,
40.44062479999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/3/14",
"Shooter": "Xzavier Tyrone Mazyck",
"Dead": 0,
"Injured": 4,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.freep.com/article/20140228/NEWS01/302280128/Four-people-shot-in-Detroit",
"http://www.freep.com/article/20140303/NEWS01/303030082/Detroit-tax-shooting",
"http://www.myfoxdetroit.com/story/24854398/quadruple-shooting-at-detroit-tax-service-business"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/5/14",
"Shooter": "Jared Michael Williams, and Hope Phillips",
"Dead": 3,
"Injured": 1,
"Location": "Pelzer, NC",
"City": "Woodfin",
"County": "Buncombe County",
"State": "NC",
"References": [
"http://www.foxcarolina.com/story/24895264/deputies-respond-to-shooting-in-pelzer",
"http://www.wlos.com/shared/news/features/top-stories/stories/wlos_3-dead-1-injured-pelzer-shooting-15393.shtml",
"http://www.greenvilleonline.com/article/20140306/NEWS06/303060008/Man-custody-Pelzer-triple-slayings"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.5772336,
35.633852
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/8/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Richmond, Ca",
"City": "Richmond",
"County": "Contra Costa County",
"State": "CA",
"References": [
"http://abclocal.go.com/kgo/story?section=news/local/east_bay&id=9459909",
"http://www.sfgate.com/crime/article/Man-killed-3-hurt-in-North-Richmond-shooting-5301713.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.3477486,
37.9357576
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/9/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Milwaukee, WI",
"City": "Milwaukee",
"County": "Milwaukee County",
"State": "WI",
"References": [
"http://fox6now.com/2014/03/09/four-teens-shot-while-inside-vehicle-one-critically-injured/",
"http://www.jrn.com/tmj4/news/Four-injured-in-shooting-on-Milwaukees-north-side-249196091.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9064736,
43.0389025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/9/14",
"Shooter": "Patrick Calhoun",
"Dead": 0,
"Injured": 6,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.suntimes.com/news/metro/26090624-418/orr-star-among-6-shot-at-party.html",
"http://abclocal.go.com/wls/story?section=news/local/chicago_news&id=9459725",
"http://www.nbcchicago.com/news/local/Man-Charged-After-6-Shot-at-West-Side-House-Party-249578131.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/9/14",
"Shooter": "Igmidio Mista",
"Dead": 3,
"Injured": 1,
"Location": "Fremont, OH",
"City": "Fremont",
"County": "Sandusky County",
"State": "OH",
"References": [
"http://www.newsnet5.com/news/state/3-killed-2-wounded-in-fremont-overnight-nightclub-shootings",
"http://www.thestate.com/2014/03/09/3315192/3-men-dead-1-hurt-in-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.1218634,
41.3503303
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/14/14",
"Shooter": "Two Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://abclocal.go.com/wabc/story?section=news/local/new_york&id=9467017"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/16/14",
"Shooter": "Joe Frederick Hawkins",
"Dead": 3,
"Injured": 1,
"Location": "Beaumont, TX",
"City": "Beaumont",
"County": "Jefferson County",
"State": "TX",
"References": [
"http://www.chron.com/news/texas/article/3-family-members-dead-in-shooting-at-Beaumont-home-5324763.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.1265562,
30.080174
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/16/14",
"Shooter": "Tacorey Lamon Lakes, Brandell Shaquael Little, and Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Waynsboro, GA",
"City": "Waynesboro",
"County": "Burke County",
"State": "GA",
"References": [
"http://www.wjbf.com/story/24988474/4-shot-in-waynesboro"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.0156736,
33.0898731
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/22/14",
"Shooter": "Antonio Marcel Flenoid ",
"Dead": 0,
"Injured": 4,
"Location": " Sikeston, Mo",
"City": "Sikeston",
"County": "Scott County",
"State": "MO",
"References": [
"http://www.kfvs12.com/story/25046780/4-hurt-1-in-custody-after-shooting-at-bar-in-sikeston"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.5878579,
36.876719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/22/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "North Charlston, SC",
"City": "North Charleston",
"County": "Charleston County",
"State": "SC",
"References": [
"http://www.wmbfnews.com/story/25045920/four-wounded-after-shooting-at-a-north-charleston-club"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9748103,
32.8546197
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/23/14",
"Shooter": "Alvin Bell",
"Dead": 1,
"Injured": 3,
"Location": "Arlington, TX",
"City": "Arlington",
"County": "Tarrant County",
"State": "TX",
"References": [
"http://crimeblog.dallasnews.com/2014/03/one-dead-three-injured-after-arlington-sports-bar-shooting.html/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.10806559999999,
32.735687
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/24/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "San Francisco, CA",
"City": "SF",
"County": "San Francisco County",
"State": "CA",
"References": [
"http://sanfrancisco.cbslocal.com/2014/03/24/no-arrests-after-7-injured-in-sf-tenderloin-drive-by-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.4194155,
37.7749295
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/24/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Long Beach, CA",
"City": "Long Beach",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-fatal-shooting-long-beach-restaurant-20140324,0,2537437.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.1937395,
33.7700504
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/30/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Starkville, MS",
"City": "Starkville",
"County": "Oktibbeha County",
"State": "MS",
"References": [
"http://www.wjtv.com/story/25120281/five-injured-nightclub-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.81838719999999,
33.4503998
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/30/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Charlotte, NC",
"City": "Charlotte",
"County": "Mecklenburg County",
"State": "NC",
"References": [
"http://www.wsoctv.com/news/news/local/4-injured-overnight-shooting-sunset-road-cook-out/nfN3c/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8431267,
35.2270869
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/3/14",
"Shooter": "Ivan Lopez",
"Dead": 4,
"Injured": 16,
"Location": "Kileen, TX",
"City": "Killeen",
"County": "Bell County",
"State": "TX",
"References": [
"http://abclocal.go.com/ktrk/story?section=news/state&id=9489479",
"http://www.chron.com/news/houston-texas/houston/article/Fort-Hood-gunman-kills-3-soldiers-then-himself-5372059.php",
"http://rt.com/usa/fort-hood-shooting-lockdown-969/",
"http://www.bbc.com/news/world-us-canada-26863033",
"http://edition.cnn.com/2014/04/02/us/fort-hood-shooting/index.html",
"http://www.washingtonpost.com/news/post-nation/wp/2014/04/02/fort-hood-shelter-in-place-order-amid-reports-of-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.72779589999999,
31.1171194
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/4/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.wxyz.com/news/region/detroit/7-people-injured-during-shooting-on-detroits-east-side",
"http://www.detroitnews.com/article/20140405/METRO01/304050036/1361/Four-injured-in-shooting-on-Detroit-s-east-side"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/5/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Chicago, Il",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abclocal.go.com/wls/story?section=news/local/chicago_news&id=9492677",
"http://www.dnainfo.com/chicago/20140405/west-garfield-park/man-dies-after-being-shot-at-west-garfield-park-party-five-others-wounded"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/5/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Phoenix, Az",
"City": "Phoenix",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.abc15.com/news/region-phoenix-metro/west-phoenix/pd-1-dead-3-injured-after-shooting-at-neighboring-parties",
"http://www.sandiego6.com/news/state-news/254057061.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0740373,
33.4483771
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/5/14",
"Shooter": " Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Fairfield, Ca",
"City": "Fairfield",
"County": "Solano County",
"State": "CA",
"References": [
"http://abclocal.go.com/kgo/story?section=news/local/north_bay&id=9493728"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.0399663,
38.24935809999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/6/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Oklahoma City, Ok",
"City": "Oklahoma City",
"County": "Oklahoma County",
"State": "OK",
"References": [
"http://www.koco.com/news/4-hurt-in-oklahoma-city-club-shooting/25346772",
"http://www.news9.com/story/25176032/neighborhood-on-edge-after-shooting-at-nw-okc-club"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.5164276,
35.4675602
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/6/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Springfield, Ma",
"City": "Springfield",
"County": "Hampden County",
"State": "MA",
"References": [
"http://www.masslive.com/news/index.ssf/2014/04/4_people_wounded_in_springfiel.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-72.589811,
42.1014831
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/7/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2014/04/mid-city_shooting_leaves_4_inj.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/9/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Rockford, IL",
"City": "Rockford",
"County": "Winnebago County",
"State": "IL",
"References": [
"http://www.rrstar.com/article/20140410/NEWS/140419948/10448/NEWS"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.0939952,
42.2711311
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/10/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Arlington, TX",
"City": "Arlington",
"County": "Tarrant County",
"State": "TX",
"References": [
"http://www.pal-item.com/article/20140410/NEWS01/304100024/RPD-identifies-4-shooting-victims"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.10806559999999,
32.735687
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/11/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Richmond, IN",
"City": "Richmond",
"County": "Wayne County",
"State": "IN",
"References": [
"http://www.pal-item.com/article/20140410/NEWS01/304100024/RPD-identifies-4-shooting-victims"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.8902382,
39.8289369
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/12/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.wwl.com/pages/18797373.php?contentType=4&contentId=15047837"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/13/14",
"Shooter": "Derek Morse",
"Dead": 3,
"Injured": 1,
"Location": "Lookout Valley, TN",
"City": "Chattanooga",
"County": "Hamilton County",
"State": "TN",
"References": [
"http://www.wrcbtv.com/story/25208440/chattanooga-police-investigating-a-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.37468109999999,
34.9939646
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/14/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.wusa9.com/story/news/local/dc/2014/04/14/four-shot-in-southeast-dc/7691681/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/14/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Vineland, NJ",
"City": "Vineland",
"County": "Cumberland County",
"State": "NJ",
"References": [
"http://www.thedailyjournal.com/article/20140414/NEWS01/140414001/Reports-4-shot-Vineland-1-dead?nclick_check=1",
"http://www.myfoxphilly.com/story/25237944/vineland-shootings"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.02596369999999,
39.4863773
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/17/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Nashville, TN",
"City": "Nashville",
"County": "Davidson County",
"State": "TN",
"References": [
"http://www.newschannel5.com/story/25279549/3-people-four-year-old-injured-during-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.7816016,
36.1626638
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/20/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Chicago, Il",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://wgntv.com/2014/04/21/5-children-injured-in-south-side-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/20/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Tampa Bay, FL",
"State": "FL",
"References": [
"http://www.tampabay.com/news/publicsafety/crime/two-killed-two-injured-in-tampa-park-shooting/2175979"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.58372890000001,
27.7503208
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/20/14",
"Shooter": "Kim Tong Yik Doluony",
"Dead": 1,
"Injured": 3,
"Location": "Mankato, MN",
"City": "Mankato",
"County": "Blue Earth County",
"State": "MN",
"References": [
"http://minnesota.cbslocal.com/2014/04/20/4-shot-1-dead-3-arrested-in-mankato-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.99939959999999,
44.1635775
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/20/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Montgomory, IL",
"City": "Montgomery",
"County": "Kane County",
"State": "IL",
"References": [
"http://wgntv.com/2014/04/21/6-shot-at-easter-party-in-montgomery/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.3459048,
41.730585
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/24/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://abclocal.go.com/ktrk/story?section=news/local&id=9514647"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/25/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.wmctv.com/story/25338203/2-people-dead-3-injured-in-early-morning-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/27/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Rome, GA",
"City": "Rome",
"County": "Floyd County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/1-dead-3-injured-in-floyd-county-shooting/nfjGq/",
"http://www.northwestgeorgianews.com/rome/police-release-second-statement-about-chevy-club-shooting/article_804577d8-cd3c-11e3-92c1-0017a43b2370.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.1646726,
34.257038
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/27/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Troy, NY",
"City": "Troy",
"County": "Rensselaer County",
"State": "NY",
"References": [
"http://www.timesunion.com/local/article/Five-shot-in-Troy-5433252.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.69178509999999,
42.7284117
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/29/14",
"Shooter": "Geddy Kramer",
"Dead": 1,
"Injured": 6,
"Location": "Cobb County, GA",
"County": "Cobb County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/cobb-police-investigating-shooting-at-fedex-facili/nfkNR/",
"http://www.cnn.com/2014/04/29/justice/georgia-fedex/index.html?hpt=hp_t2",
"http://www.usatoday.com/story/news/nation/2014/04/29/shooting-at-fedex-facility-near-atlanta/8449315/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.56414699999999,
33.8999297
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/30/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, Il",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2014/04/30/four-wounded-in-south-shore-shooting-2/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/3/14",
"Shooter": "Porfirio Hernandez",
"Dead": 4,
"Injured": 4,
"Location": "Jonesboro, AR",
"City": "Jonesboro",
"County": "Craighead County",
"State": "AR",
"References": [
"http://dailydigestnews.com/2014/05/report-gunman-3-others-killed-in-arkansas-shootings/",
"http://www.kait8.com/story/25421094/update-4-dead-4-injured-in-jonesboro-shootings"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.704279,
35.84229670000001
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/3/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.chron.com/news/houston-texas/houston/article/4-injured-in-shooting-at-after-prom-party-in-5450776.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/5/14",
"Shooter": "Karim Kamdar",
"Dead": 2,
"Injured": 2,
"Location": " Fort Bend County, TX",
"County": "Fort Bend County",
"State": "TX",
"References": [
"http://www.khou.com/news/local/Life-Flight-called-to-shooting-in-Fort-Bend-County-257927111.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.81428849999999,
29.5692614
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/5/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, Il",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/archive/9527250/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/5/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Wheat Ridge, CO",
"City": "Wheat Ridge",
"County": "Jefferson County",
"State": "CO",
"References": [
"http://www.thedenverchannel.com/news/local-news/shooting-at-wheat-ridge-hotel-police-say-4-people-may-have-been-shot-no-suspect-in-custody-050314"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-105.0772063,
39.766098
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/9/14",
"Shooter": "Darrin Campbell ",
"Dead": 4,
"Injured": 0,
"Location": "Tampa, FL",
"City": "Tampa",
"County": "Hillsborough County",
"State": "FL",
"References": [
"http://www.pennlive.com/midstate/index.ssf/2014/05/florida_man_shot_family_set_fi.html",
"http://www.cnn.com/2014/05/09/justice/florida-blake-mansion-deaths/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.4571776,
27.950575
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/9/14",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Pomona, CA",
"City": "Pomona",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.theguardian.com/world/2014/may/09/man-kills-himself-three-members-california-family",
"http://www.latimes.com/local/lanow/la-me-ln-four-dead-pomona-murder-suicide-20140509-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.7499909,
34.055103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/10/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Sacramento, CA",
"City": "Sacramento",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://www.sacbee.com/2014/05/10/6395499/one-dead-six-injured-in-shooting.html",
"http://sacramento.cbslocal.com/2014/05/10/1-dead-multiple-shot-near-sacramento-park/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4943996,
38.5815719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/10/14",
"Shooter": "Oslushla Smith",
"Dead": 1,
"Injured": 3,
"Location": "DeKalb, GA",
"County": "Dekalb County",
"State": "GA",
"References": [
"http://www.wsbtv.com/news/news/local/2-men-sought-after-baby-shot-killed-dekalb-home-in/nftWg/",
"http://www.ajc.com/news/news/crime-law/bond-denied-to-2-suspects-in-dekalb-shooting-that-/nfw34/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.2278796,
33.7956441
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/10/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.wmcactionnews5.com/story/25488030/seven-people-shot-outside-of-a-memphis-nightclue"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/11/14",
"Shooter": "Marvin Louis Guy",
"Dead": 1,
"Injured": 3,
"Location": "Kileen, TX",
"City": "Killeen",
"County": "Bell County",
"State": "TX",
"References": [
"http://www.upi.com/Top_News/US/2014/05/11/Killeen-Texas-police-shooting-Officer-dies/3931399854346/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.72779589999999,
31.1171194
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/11/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "DeKalb, GA",
"County": "Dekalb County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/local/1-killed-3-injured-in-drive-by-shooting-in-dekalb/nfs8b/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.2278796,
33.7956441
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/12/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, Il",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.dnainfo.com/chicago/20140513/little-village/little-village-shooting-leaves-four-men-wounded"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/13/14",
"Shooter": "Marcellus Brooks",
"Dead": 0,
"Injured": 5,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.wmcactionnews5.com/story/25506522/3-shot-near-therrell-high-school-in-sw-atlanta"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/17/14",
"Shooter": "unknown",
"Dead": 0,
"Injured": 5,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.washingtonpost.com/local/crime/five-wounded-in-shooting-outside-strip-club-in-northeast-washington/2014/05/17/0c630764-ddcb-11e3-b745-87d39690c5c0_story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/17/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Coachella, CA",
"City": "Coachella",
"County": "Riverside County",
"State": "CA",
"References": [
"http://ktla.com/2014/05/17/coachella-shooting-leaves-teenage-boy-dead-3-injured/#axzz32eab06Sn"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-116.173894,
33.6803003
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/18/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Cobb County, GA",
"County": "Cobb County",
"State": "GA",
"References": [
"http://www.wsbtv.com/news/news/local/2-dead-2-injured-cobb-county-shooting/nfy7F/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.56414699999999,
33.8999297
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/18/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Sandusky, OH",
"City": "Sandusky",
"County": "Erie County",
"State": "OH",
"References": [
"http://fox8.com/2014/05/18/1-badly-beaten-7-shot-during-incident-at-sports-bar/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.7079605,
41.4489396
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/22/14",
"Shooter": "Jarmon Phillips",
"Dead": 1,
"Injured": 3,
"Location": "Dallas, Tx",
"City": "Dallas",
"County": "Dallas County",
"State": "TX",
"References": [
"http://www.nbcdfw.com/news/local/Quadruple-Shooting-at-Dallas-Shopping-Center-260202931.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.79698789999999,
32.7766642
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/23/14",
"Shooter": "Elliot Rodger",
"Dead": 4,
"Injured": 8,
"Location": "Santa Barbara,CA",
"City": "Santa Barbara",
"County": "Santa Barbara County",
"State": "CA",
"References": [
"http://www.nytimes.com/2014/05/25/us/california-drive-by-shooting.html",
"http://news.msn.com/crime-justice/7-dead-in-drive-by-shooting-near-uc-santa-barbara",
"http://www.reuters.com/article/2014/05/24/us-usa-shooting-california-idUSBREA4N05120140524"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.6981901,
34.4208305
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Bellflower, CA",
"City": "Bellflower",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://ktla.com/2014/05/23/quadruple-shooting-in-bellflower-leaves-3-hospitalized/#axzz32eab06Sn"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.1170117,
33.8816818
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 7,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.wdsu.com/news/local-news/new-orleans/nopd-boy-15-killed-others-injured-in-overnight-shooting-on-eads-street/26152954"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "San Antonio, TX",
"City": "San Antonio",
"County": "Bexar County",
"State": "TX",
"References": [
"http://www.ksat.com/news/4-injured-in-east-side-shooting/26150408"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-98.49362819999999,
29.4241219
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.myfoxdetroit.com/story/25606670/5-shot-on-detroits-west-side-suspects-still-at-large"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/25/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Toledo, OH",
"City": "Toledo",
"County": "Lucas County",
"State": "OH",
"References": [
"http://www.monroenews.com/news/2014/may/26/police-1-killed-3-others-hurt-toledo-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.55521200000001,
41.6639383
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/25/14",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Myrtle Beach, SC",
"City": "Myrtle Beach",
"County": "Horry County",
"State": "SC",
"References": [
"http://www.usatoday.com/story/news/nation/2014/05/25/myrtle-beach-shooting/9569305/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8866943,
33.6890603
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/27/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Norwalk, CA",
"City": "Norwalk",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.whittierdailynews.com/general-news/20140527/4-wounded-in-norwalk-shooting",
"http://www.presstelegram.com/general-news/20140527/4-wounded-in-norwalk-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.081733,
33.9022367
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/28/14",
"Shooter": "Michael Harrison Davis Sheer",
"Dead": 4,
"Injured": 0,
"Location": "Mission Viejo, CA",
"City": "Mission Viejo",
"County": "Orange County",
"State": "CA",
"References": [
"http://www.nbclosangeles.com/news/local/Four-Bodies-Found-in-Mission-Viejo-Home-260791721.html",
"http://www.latimes.com/local/la-me-0530-murder-suicide-20140530-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.6719953,
33.6000232
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/31/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://brooklyn.news12.com/news/4-injured-in-shooting-near-1191-prospect-place-in-crown-heights-1.8295291"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/31/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "San Bernardino, CA",
"City": "San Bernardino",
"County": "San Bernardino County",
"State": "CA",
"References": [
"http://www.sbsun.com/general-news/20140601/san-bernardino-drive-by-shooting-kills-one-sends-three-to-hospital",
"http://blog.pe.com/breaking-news/2014/06/01/san-bernardino-drive-by-shooting-kills-1-wounds-3/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.2897652,
34.1083449
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/1/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Chicago, Il",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.dnainfo.com/chicago/20140601/austin/teen-killed-five-others-injured-austin-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/1/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Sacramento, CA",
"City": "Sacramento",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://fox40.com/2014/06/01/sacramento-driveby-shooting-leaves-3-wounded/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4943996,
38.5815719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/3/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.wsbtv.com/news/news/4-shot-1-killed-auburn-avenue/ngCYg/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/5/14",
"Shooter": "Aaron Ybarra",
"Dead": 1,
"Injured": 3,
"Location": "Seattle, WA",
"City": "Seattle",
"County": "King County",
"State": "WA",
"References": [
"http://blogs.seattletimes.com/today/2014/06/shooting-on-seattle-pacific-campus-2-victims-reported/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.3320708,
47.6062095
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/6/14",
"Shooter": "Unreleased",
"Dead": 1,
"Injured": 3,
"Location": "Oak Park, MI",
"City": "Oak Park",
"County": "Oakland County",
"State": "MI",
"References": [
"http://detroit.cbslocal.com/2014/06/08/2-suspects-in-custody-after-shooting-in-oak-park-leaves-1-dead-3-injured/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.18270509999999,
42.4594803
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/7/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Moncks Corner, SC",
"City": "Moncks Corner",
"County": "Berkeley County",
"State": "SC",
"References": [
"http://www.live5news.com/story/25719421/1-dead-4-injured-in-berkeley-co-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.01313739999999,
33.1960027
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/8/14",
"Shooter": "Jerad Miller & Amanda Miller",
"Dead": 5,
"Injured": 0,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.mynews3.com/mostpopular/story/Tragic-day-Five-killed-including-2-Metro-officers/D9ijUJ5li0WVolLrKpXz6A.cspx",
"http://www.lasvegassun.com/news/2014/jun/08/two-officers-shot-cicis-nellis-suspects-run-wal-ma/",
"http://www.8newsnow.com/story/25723142/breaking-news-2-metro-officers-shot-near-nellis-and-stewart"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/8/14",
"Shooter": "Sonny Enrique �Quique� Medina",
"Dead": 5,
"Injured": 0,
"Location": "San Carlos Park, FL",
"City": "San Carlos Park",
"County": "Lee County",
"State": "FL",
"References": [
"http://www.rawstory.com/rs/2014/06/09/florida-sheriff-man-guns-down-3-daughters-wife-himself-in-everyday-usa-mass-killing/",
"http://www.naplesnews.com/news/2014/jun/08/something-went-terribly-wrong/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.8014742,
26.4673016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/8/14",
"Shooter": "Kanavis Malik Cole",
"Dead": 1,
"Injured": 4,
"Location": "Opp, AL",
"City": "Opp",
"County": "Covington County",
"State": "AL",
"References": [
"http://www.wsfa.com/story/25722331/arrest-made-after-4-injured-1-killed-in-opp-club-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.2555067,
31.2826685
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/9/14",
"Shooter": "Edward Prince",
"Dead": 3,
"Injured": 1,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.suntimes.com/news/27972053-761/3-dead-2-wounded-in-domestic-shooting-in-ashburn.html#.U6DF8PldV8E"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/9/14",
"Shooter": "Delshawn Lowery",
"Dead": 0,
"Injured": 6,
"Location": "Paterson, NJ",
"City": "Paterson",
"County": "Passaic County",
"State": "NJ",
"References": [
"http://www.northjersey.com/news/drive-by-shooting-in-paterson-leaves-six-people-wounded-1.1032409"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.17181099999999,
40.9167654
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/13/14",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Los Angelas, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://ktla.com/2014/06/14/3-killed-1-injured-in-south-l-a-shooting-investigation-underway/#axzz34dEzt0K2"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/15/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Kokomo, IN",
"City": "Kokomo",
"County": "Howard County",
"State": "IN",
"References": [
"http://wishtv.com/2014/06/15/sunday-morning-shooting-sends-three-to-the-hospital/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.13360329999999,
40.486427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/15/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Park Forest, IL",
"City": "Park Forest",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2014/06/15/four-people-shot-at-party-in-park-forest/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6744891,
41.4914236
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/20/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Seat Pleasant, MD",
"City": "Seat Pleasant",
"County": "Prince George's County",
"State": "MD",
"References": [
"http://www.csnwashington.com/article/police-gambling-dispute-leads-4-shot",
"http://www.washingtonpost.com/local/seat-pleasant-shooting-leaves-4-men-injured/2014/06/21/096867e8-f94b-11e3-8aa9-dad2ec039789_story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.9066399,
38.8962231
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/21/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.walb.com/story/25850437/five-teens-shot-after-midnight-basketball-tournament"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/22/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Windsor, CA",
"City": "Windsor",
"County": "Essex County",
"State": "ON",
"References": [
"http://sanfrancisco.cbslocal.com/2014/06/22/teenager-killed-3-hurt-early-morning-shooting-windsor/",
"http://sfbay.ca/2014/06/22/teen-15-fatally-shot-at-windsor-house-party/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.03636329999999,
42.3149367
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/24/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 7,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://edition.cnn.com/2014/06/24/us/miami-shooting/",
"http://www.miamiherald.com/2014/06/24/4197904/miami-police-up-to-10-people-shot.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/25/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Lowell, MA",
"City": "Lowell",
"County": "Middlesex County",
"State": "MA",
"References": [
"http://www.bostonherald.com/news_opinion/local_coverage/2014/06/5_people_shot_at_massachusetts_birthday_party"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.31617179999999,
42.6334247
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/26/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Milwaukee, WI",
"City": "Milwaukee",
"County": "Milwaukee County",
"State": "WI",
"References": [
"http://fox6now.com/2014/06/27/teen-altercation-leads-to-shoot-out-three-of-five-people-injured-released-from-hospital/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9064736,
43.0389025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/26/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://detroit.cbslocal.com/2014/06/26/2-killed-2-hurt-in-west-side-detroit-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/28/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Antioch, CA",
"City": "Antioch",
"County": "Contra Costa County",
"State": "CA",
"References": [
"http://www.ktvu.com/news/news/crime-law/seven-victims-injured-late-night-antioch-shooting/ngWL6/",
"http://www.contracostatimes.com/antioch/ci_26057264/seven-injured-shooting-at-antioch-home"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.805789,
38.0049214
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/29/14",
"Shooter": "unknown",
"Dead": 0,
"Injured": 4,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.kmov.com/news/crime/4-shot-in-2800-block-of-Dayton-Saturday-night-265307151.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/29/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.reuters.com/article/2014/06/29/us-usa-california-shooting-idUSKBN0F40UL20140629",
"http://www.latimes.com/local/lanow/la-me-ln-bet-awards-shooting-20140629-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/29/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 8,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.usatoday.com/story/news/nation/2014/06/29/bourbon-street-shooting/11703789/",
"http://www.latimes.com/nation/nationnow/la-na-nn-nine-injured-in-shooting-on-bourbon-street-20140629-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/29/14",
"Shooter": "unknown",
"Dead": 1,
"Injured": 3,
"Location": "San Diego, CA",
"City": "San Diego",
"County": "San Diego County",
"State": "CA",
"References": [
"http://www.10news.com/news/relatives-say-victim-in-shooting-at-mobile-home-park-near-imperial-beach-was-a-stepfather-06292014",
"http://www.nbcsandiego.com/news/local/Imperial-Beach-Fatal-Shooting-Egger-Highlands-Cathy-Street-265041541.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.1610838,
32.715738
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/30/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Lexington, KY",
"City": "Lexington",
"County": "Fayette County",
"State": "KY",
"References": [
"http://www.lex18.com/news/one-of-four-women-shot-in-lexington-dies",
"http://www.kentucky.com/2014/07/01/3317489/4-women-shot-at-lexington-house.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5037164,
38.0405837
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/2/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Chester Township, PA",
"City": "Chester Township",
"County": "Delaware County",
"State": "PA",
"References": [
"http://www.delcotimes.com/general-news/20140702/cops-consider-link-between-chester-shootings",
"http://www.nbcphiladelphia.com/news/local/2-Kids-3-Adults-Shot-at-Chester-Basketball-Court-265499631.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.4024228,
39.8517618
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Portland, OR",
"City": "Portland",
"County": "Multnomah County",
"State": "OR",
"References": [
"http://www.oregonlive.com/portland/index.ssf/2014/07/one_dead_four_injured_followin.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.6764816,
45.5230622
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Norfolk, VA",
"City": "Norfolk",
"State": "VA",
"References": [
"http://hamptonroads.com/2014/07/norfolk-police-focus-shooting-injured-7"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.28587259999999,
36.8507689
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://abc13.com/news/6-hurt-after-shooting-at-houston-caribbean-festival/158283/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Broad Ripple, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.indystar.com/story/news/crime/2014/07/05/people-shot-broad-ripple/12242111/?from=global&sessionKey=&autologin=",
"http://www.indystar.com/story/news/crime/2014/07/07/impd-asking-publics-help-broad-ripple-shooting/12314999/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.1340693,
39.8686846
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/14",
"Shooter": "Zeric D. McKinney",
"Dead": 0,
"Injured": 5,
"Location": "Centerville, IL",
"City": "Centerville",
"County": "Calhoun County",
"State": "IL",
"References": [
"http://www.bnd.com/2014/07/12/3300006/centreville-man-accused-of-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.571541,
38.929256
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/6/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Buffalo, NY",
"City": "Buffalo",
"County": "Erie County",
"State": "NY",
"References": [
"http://wivb.com/2014/07/07/four-men-shot-on-erb-street/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8783689,
42.88644679999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/6/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Bogalusia, LA",
"City": "Bogalusa",
"County": "Washington Parish",
"State": "LA",
"References": [
"http://www.wwltv.com/news/northshore/Bogalusa-police-investigating-fatal-quadruple-shooting-265972731.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.8486858,
30.7910204
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/6/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "St Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://stlouis.cbslocal.com/2014/07/06/four-shot-outside-northside-club/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/7/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Stopover, KY",
"City": "Stopover",
"County": "Pike County",
"State": "KY",
"References": [
"http://www.wkyt.com/home/headlines/Four-injured-in-Pike-Co-shooting-266060871.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.09124,
37.5159411
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/7/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.wsvn.com/story/25952520/2-dead-3-injured-in-northwest-miami-dade-shooting",
"http://www.local10.com/news/fatal-shooting-leaves-two-dead-in-northwest-miamidade/26821866"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/8/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "San Bernardino, CA",
"City": "San Bernardino",
"County": "San Bernardino County",
"State": "CA",
"References": [
"http://ktla.com/2014/07/08/police-searching-for-gunman-after-shooting-in-san-bernardino-leaves-1-person-dead-4-injured/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.2897652,
34.1083449
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/8/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Providence, RI",
"City": "Providence",
"County": "Providence County",
"State": "RI",
"References": [
"http://www.providencejournal.com/breaking-news/content/20140709-five-people-shot-in-providence-police-searching-for-shooters-and-increasing-patrols.ece"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.4128343,
41.8239891
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/9/14",
"Shooter": "Ronald Lee Haskell",
"Dead": 6,
"Injured": 1,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.deseretnews.com/article/865606660/Utahn-accused-of-killing-6-in-Texas-was-ordered-to-stay-away-from-ex-wife.html",
"http://www.nytimes.com/2014/07/11/us/man-being-held-in-killing-of-six-in-houston.html?_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/12/14",
"Shooter": "John Izeal Smith",
"Dead": 3,
"Injured": 2,
"Location": "Pasadena, CA",
"City": "Pasadena",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-at-least-one-killed-in-pasadena-shooting-police-said-20140712-story.html",
"http://ktla.com/2014/07/13/first-of-3-victims-identified-in-fatal-pasadena-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.1445155,
34.1477849
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/13/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Sacramento, CA",
"City": "Sacramento",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://www.sacbee.com/2014/07/13/6553124/five-people-shot-one-dead-in-early.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4943996,
38.5815719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/13/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Skyline, WA",
"City": "Anacortes",
"County": "Skagit County",
"State": "WA",
"References": [
"http://blogs.seattletimes.com/today/2014/07/five-people-injured-in-skyway-shooting-early-this-morning/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.684618,
48.483158
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/13/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Stamford, CT",
"City": "Stamford",
"County": "Fairfield County",
"State": "CT",
"References": [
"http://stamford.dailyvoice.com/police-fire/five-people-shot-downtown-stamford-incident-caught-video",
"http://stamford.patch.com/groups/police-and-fire/p/five-shot-in-stamford-suspect-in-custody"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5387341,
41.0534302
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/19/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/chi-chicago-shootings-violence-20140719,0,5419990.story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/20/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.kmov.com/news/crime/Teenager-killed-in-shootout-at-Metro-East-strip-club-267845511.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/20/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Washington Park, IL",
"City": "Washington Park",
"County": "St Clair County",
"State": "IL",
"References": [
"http://www.bnd.com/2014/07/20/3310805/one-man-dead-three-other-people.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0928852,
38.6350501
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/20/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.lasvegassun.com/news/2014/jul/20/one-dead-three-inured-drive-by-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/20/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Irvington, NJ",
"City": "Irvington",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.nj.com/essex/index.ssf/2014/07/six_injured_after_fight_ends_in_gunfire_in_irvington_police_say.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.22864349999999,
40.7263249
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/20/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Kent, WA",
"City": "Kent",
"County": "King County",
"State": "WA",
"References": [
"http://www.kentreporter.com/news/267863071.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.2348431,
47.3809335
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/21/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://wreg.com/2014/07/22/five-injured-in-foote-homes-shootings/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/22/14",
"Shooter": "Alex Anderson",
"Dead": 3,
"Injured": 1,
"Location": "Moreno Valley, CA",
"City": "Moreno Valley",
"County": "Riverside County",
"State": "CA",
"References": [
"http://blog.pe.com/crime/2014/07/25/moreno-valley-gunman-in-fatal-shooting-spree-idd/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.2296717,
33.9424658
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/23/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Pittsburgh, PA",
"City": "Pittsburgh",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://pittsburgh.cbslocal.com/2014/07/23/at-least-2-shot-in-north-braddock/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9958864,
40.44062479999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/25/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.nbcchicago.com/news/local/Multiple-People-Shot-on-Chicagos-West-Side-268669332.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/26/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Pine Bluff, AR",
"City": "Pine Bluff",
"County": "Jefferson County",
"State": "AR",
"References": [
"http://www.katv.com/story/26123434/2014/07/27/4-shot-1-dead-in-pine-bluff-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-92.00319549999999,
34.2284312
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/26/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Sylvester, GA",
"City": "Sylvester",
"County": "Worth County",
"State": "GA",
"References": [
"http://www.walb.com/story/26119457/seven-teens-shot-in-sylvester"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.8354542,
31.5307349
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/27/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Kalamazoo, MI",
"City": "Kalamazoo",
"County": "Kalamazoo County",
"State": "MI",
"References": [
"http://www.mlive.com/news/kalamazoo/index.ssf/2014/07/4_wounded_in_shooting_at_off-c.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.5872286,
42.2917069
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/27/14",
"Shooter": "Joel Smith",
"Dead": 5,
"Injured": 0,
"Location": "Saco, ME",
"City": "Saco",
"County": "York County",
"State": "ME",
"References": [
"http://www.reuters.com/article/2014/07/28/us-usa-maine-saco-idUSKBN0FX01J20140728",
"http://www.nbcwashington.com/news/national-international/268811921.html",
"http://www.wcsh6.com/story/news/local/2014/08/03/funerals-for-saco-shooting-victims/13544459/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-70.4428286,
43.5009176
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/28/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.philly.com/philly/news/1_killed_in_Feltonville_shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/28/14",
"Shooter": "Charles Mozdir",
"Dead": 1,
"Injured": 3,
"Location": "New York, NY",
"City": "New York",
"State": "NY",
"References": [
"http://online.wsj.com/articles/two-u-s-marshals-nypd-detective-shot-in-new-york-city-1406570113"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.0059413,
40.7127837
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/31/14",
"Shooter": "Andrew Michaelis",
"Dead": 3,
"Injured": 3,
"Location": "Fayetteville, NC",
"City": "Fayetteville",
"County": "Cumberland County",
"State": "NC",
"References": [
"http://bigstory.ap.org/article/3-people-killed-3-deputies-wounded-shootout",
"http://www.wncn.com/story/26149109/more-than-60-shots-fired-at-cumberland-co-home-where-3-died"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.87835849999999,
35.0526641
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/1/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://philadelphia.cbslocal.com/2014/08/01/child-reportedly-shot-in-grays-ferry/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/14",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Dallas, TX",
"City": "Dallas",
"County": "Dallas County",
"State": "TX",
"References": [
"http://www.nbcdfw.com/news/local/Four-Shot-3-Dead-in-Dallas-Shooting--269669971.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.79698789999999,
32.7766642
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Pittsburgh, PA",
"City": "Pittsburgh",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://philadelphia.cbslocal.com/2014/08/02/man-killed-5-others-shot-outside-pa-bar/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9958864,
40.44062479999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "New Bedford, MA",
"City": "New Bedford",
"County": "Bristol County",
"State": "MA",
"References": [
"http://bostonherald.com/news_opinion/local_coverage/2014/08/7_shot_after_argument_outside_new_bedford_bar"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-70.93420499999999,
41.6362152
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Salem City, NJ",
"City": "Salem",
"County": "Salem County",
"State": "NJ",
"References": [
"http://www.nj.com/salem/index.ssf/2014/08/4_teenagers_shot_in_salem_city_authorities_say_its_part_ongoing_feud.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.46714229999999,
39.5717796
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/3/14",
"Shooter": "Clarence Washington",
"Dead": 5,
"Injured": 0,
"Location": "Culpeper, VA",
"City": "Culpeper",
"County": "Culpeper County",
"State": "VA",
"References": [
"http://www.nbcwashington.com/news/local/Five-Found-Dead-in-Culpeper-Virginia-Home-269806131.html",
"http://www.nydailynews.com/news/national/family-found-dead-northern-virginia-home-article-1.1890953"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.9962512,
38.4729632
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/3/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.khou.com/story/news/crime/2014/08/03/mass-shooting-houston-night-club/13542329/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/3/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.stltoday.com/news/local/crime-and-courts/five-wounded-in-st-louis-shooting/article_03615f36-5610-5475-887e-c4b02ecee90c.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/3/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Beloit, WI",
"City": "Beloit",
"County": "Rock County",
"State": "WI",
"References": [
"http://fox6now.com/2014/08/02/breaking-multiple-gunshot-victims-reported-at-beloit-park/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.03177649999999,
42.5083482
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/3/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Columbia, TN",
"City": "Columbia",
"County": "Maury County",
"State": "TN",
"References": [
"http://columbiadailyherald.com/news/local-news/five-wounded-east-side-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.0352831,
35.6150716
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/4/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/5-injured-in-northwest-atlanta-shooting-monday/ngwKf/",
"http://columbiadailyherald.com/news/local-news/five-wounded-east-side-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/5/14",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Fayetteville, NC",
"City": "Fayetteville",
"County": "Cumberland County",
"State": "NC",
"References": [
"http://www.wncn.com/story/26206212/3-dead-1-injured-in-fayetteville-shooting",
"http://www.wect.com/story/26206212/3-dead-1-injured-in-fayetteville-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.87835849999999,
35.0526641
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/6/14",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Bakersfield, CA",
"City": "Bakersfield",
"County": "Kern County",
"State": "CA",
"References": [
"http://www.turnto23.com/news/local-news/late-night-shooting-in-east-bakersfield-leaves-several-people-injured-080614"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.0187125,
35.3732921
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/6/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://voices.suntimes.com/news/breaking-news/three-hurt-in-shooting-outside-goose-island-night-club/",
"http://chicago.cbslocal.com/2014/08/06/four-wounded-in-goose-island-nightclub-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/7/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Wichita, KS",
"City": "Wichita",
"County": "Sedgwick County",
"State": "KS",
"References": [
"http://www.kansas.com/2014/08/07/3585741/three-shot-at-apartment-complex.html",
"http://www.kake.com/home/headlines/Four-shot-at-Wichita-apartment-complex-270306461.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.33005299999999,
37.68717609999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/7/14",
"Shooter": "Hasaan Jamel Ray, Antonio Ray",
"Dead": 0,
"Injured": 4,
"Location": "St. Pauls, PA",
"City": "Ardmore",
"County": "Montgomery County",
"State": "PA",
"References": [
"http://www.robesonian.com/news/news/50100207/Two-charged-4-injured-during-shooting-at-store-in-St.-Pauls"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.291383,
40.00379969999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/8/14",
"Shooter": "Marcos Delgado",
"Dead": 1,
"Injured": 3,
"Location": "Albuquerque, NM",
"City": "Albuquerque",
"County": "Bernalillo County",
"State": "NM",
"References": [
"http://www.koat.com/news/four-shot-near-carlisle-candelaria/27378416?_escaped_fragment_=bzz1Te#!bzz1Te",
"http://www.koat.com/news/1-dead-3-wounded-in-albuquerque-shooting/27401650"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-106.6055534,
35.0853336
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/8/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Milwaukee, WI",
"City": "Milwaukee",
"County": "Milwaukee County",
"State": "WI",
"References": [
"http://www.620wtmj.com/news/local/Quadruple-shooting-caps-off-violent-night-in-Milwaukee-270593521.html",
"http://fox6now.com/2014/08/09/milwaukee-police-six-shot-injured-in-three-separate-shooting-incidents/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9064736,
43.0389025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/8/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Washington DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.washingtonpost.com/local/quadruple-shooting-in-northeast/2014/08/09/4f87a8fa-1fda-11e4-82f9-2cd6fa8da5c4_story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/8/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Hauma, LA",
"City": "Houma",
"County": "Terrebonne Parish",
"State": "LA",
"References": [
"http://www.wwltv.com/news/lafourche-terrebonne/Four-shot-at-Houma-birthday-party-Friday-night-270594151.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.71953479999999,
29.5957696
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/9/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 9,
"Location": "Minneapolis, MN",
"City": "Minneapolis",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://minnesota.cbslocal.com/2014/08/09/several-people-shot-inside-dt-mpls-nightclub/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2650108,
44.977753
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/9/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Columbus, OH",
"City": "Columbus",
"County": "Franklin County",
"State": "OH",
"References": [
"http://www.dispatch.com/content/stories/local/2014/08/10/man-killed-4-teens-hurt-in-separate-shootings.html",
"http://www.10tv.com/content/stories/2014/08/09/columbus-parsons-teens-shot-after-fight.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.99879419999999,
39.9611755
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/9/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://6abc.com/news/police-argument-leads-to-4-struck-in-feltonville-shooting/250999/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/10/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 5,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.theguardian.com/world/2014/aug/11/two-dead-five-injured-new-orleans",
"http://bigstory.ap.org/article/police-2-slain-5-hurt-new-orleans-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/10/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Wrightsville, GA",
"City": "Wrightsville",
"County": "Johnson County",
"State": "GA",
"References": [
"http://www.macon.com/2014/08/10/3242315/6-wounded-in-wrightsville-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.719859,
32.7293279
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/10/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Moreno Valley, CA",
"City": "Moreno Valley",
"County": "Riverside County",
"State": "CA",
"References": [
"http://abc7.com/news/moreno-valley-house-party-shooting-7-injured/251363/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.2296717,
33.9424658
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/10/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Washington DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.washingtonpost.com/local/crime/six-injured-in-shooing-in-southwest-dc/2014/08/10/01dcb296-20a0-11e4-86ca-6f03cbd15c1a_story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/12/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Buffalo, NY",
"City": "Buffalo",
"County": "Erie County",
"State": "NY",
"References": [
"http://www.buffalonews.com/city-region/police-blotter/2-teens-killed-in-separate-shootings-police-know-identity-of-gunman-who-killed-14-year-old-20140812"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8783689,
42.88644679999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/12/14",
"Shooter": "Austin Denzell Tyler",
"Dead": 3,
"Injured": 4,
"Location": "Cartersville, GA",
"City": "Cartersville",
"County": "Bartow County",
"State": "GA",
"References": [
"http://patch.com/georgia/cartersville/sheriff-bartow-shooter-fired-12-people-15-minute-shooting-spree#.U-__TmMzOSo",
"http://www.wsbtv.com/news/news/local/double-shooting-car-fire-reported-near-cartersvill/ngzy5/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.7999382,
34.1650972
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/13/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.commercialappeal.com/news/local-news/crime/fourth-memphis-shooting-in-15-hours-leaves-six-including-four-children-shot-one-man-dead_24710039"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/13/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2014/08/four_injured_in_7th_ward_shoot.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/14/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Sauk Villiage, IL",
"City": "Sauk Village",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.suntimes.com/news/29268672-418/16-year-old-boy-killed-3-injured-in-sauk-village-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.5675414,
41.4883685
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/15/14",
"Shooter": "Michael William Little",
"Dead": 2,
"Injured": 2,
"Location": "Knoxville, TN",
"City": "Knoxville",
"County": "Knox County",
"State": "TN",
"References": [
"http://www.rawstory.com/rs/2014/08/18/knoxville-police-cadet-opens-fire-on-ex-girlfriends-family-is-killed-by-her-brother/",
"http://www.wate.com/story/26295297/shooting-on-inskip-road-injures-3"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.9207392,
35.9606384
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/16/14",
"Shooter": "Frederick Miller",
"Dead": 2,
"Injured": 2,
"Location": "Camp Spring, MD",
"City": "Camp Springs",
"County": "Prince George's County",
"State": "MD",
"References": [
"http://www.nbcwashington.com/news/local/Grandparents-Shot-Suspect-Dies-in-Gun-Battle-Child-Wounded-271529321.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.90663959999999,
38.8040027
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/16/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Plainfield, NJ",
"City": "Plainfield",
"County": "Union County",
"State": "NJ",
"References": [
"http://7online.com/news/multiple-people-shot-in-plainfield-new-jersey-/266123/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.4073736,
40.6337136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/16/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Salt Lake City, UT",
"City": "Salt Lake City",
"County": "Salt Lake County",
"State": "UT",
"References": [
"http://bigstory.ap.org/article/6-hurt-salt-lake-city-nightclub-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-111.8910474,
40.7607793
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/17/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.lasvegassun.com/news/2014/aug/17/four/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/17/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Queens, NY",
"City": "New York",
"County": "Queens County",
"State": "NY",
"References": [
"http://7online.com/news/south-jamaica-shooting-leaves-4-wounded-2-critically/266817/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7948516,
40.7282239
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/17/14",
"Shooter": "Melvin Smith",
"Dead": 0,
"Injured": 4,
"Location": "Boston, MA",
"City": "Boston",
"County": "Suffolk County",
"State": "MA",
"References": [
"http://www.bostonglobe.com/metro/2014/08/17/four-injured-chinatown-shooting/kowA3S5nozEligJNwcTNuN/story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.0588801,
42.3600825
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/17/14",
"Shooter": "Unkown",
"Dead": 1,
"Injured": 4,
"Location": "Palo Alto, CA",
"City": "Palo Alto",
"County": "Santa Clara County",
"State": "CA",
"References": [
"http://www.mercurynews.com/crime-courts/ci_26357654/east-palo-alto-one-killed-four-injured-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.1430195,
37.4418834
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/20/14",
"Shooter": "Unkown",
"Dead": 0,
"Injured": 5,
"Location": "Frayser, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.commercialappeal.com/news/local-news/crime/five-men-shot-in-frayser_59439274"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.04665589999999,
35.203847
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/24/14",
"Shooter": "Unkown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.dnainfo.com/chicago/20140824/auburn-gresham/auburn-gresham-lounge-shooting-leaves-one-dead-three-injured"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/25/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "San Fernando Valley, CA",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.nbclosangeles.com/news/local/Three-Homicides-San-Fernando-Valley-May-Be-Linked-272485031.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.4396756,
34.1825782
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/25/14",
"Shooter": "Unkown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/chi-pizza-hut-four-shot-20140826-story.html",
"http://voices.suntimes.com/news/breaking-news/four-wounded-in-south-shore-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/26/14",
"Shooter": "William Rolando Fuentes Godinez",
"Dead": 4,
"Injured": 0,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.newson6.com/story/26369827/tulsa-police-two-adults-two-children-killed-in-murder-suicide",
"http://kfor.com/2014/08/26/four-dead-including-two-children-in-oklahoma-apartment-shooting/",
"http://www.tulsaworld.com/news/crimewatch/police-four-dead-including-two-children-in-east-tulsa-apartment/article_610ccdfe-309e-5c10-94b5-9105ae3c2f9e.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/27/14",
"Shooter": "Alexander Hernandez",
"Dead": 3,
"Injured": 4,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://abcnews.go.com/US/wireStory/suspect-fatal-shootings-charged-murder-25137192",
"http://abcnews.go.com/US/wireStory/suspect-held-deadly-california-shooting-spree-25116946"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/27/14",
"Shooter": "Unkown",
"Dead": 1,
"Injured": 3,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.clickondetroit.com/news/detroit-police-investigating-a-quadruple-shooting/27767568",
"http://detroit.cbslocal.com/2014/08/28/18-year-old-killed-in-quadruple-shooting-police-searching-for-men-with-high-powered-weapon/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/30/14",
"Shooter": "Francis Stack",
"Dead": 4,
"Injured": 0,
"Location": "Elmhurst, IL",
"City": "Elmhurst",
"County": "Dupage County",
"State": "IL",
"References": [
"http://www.pjstar.com/article/20140831/LIFESTYLE/140839923/10929/NEWS",
"http://www.nbcchicago.com/news/local/Several-Family-Members-Found-Dead-in-Suburban-Home-273344271.html",
"http://www.rawstory.com/rs/2014/08/31/elderly-couple-and-their-two-disabled-adult-children-found-shot-to-death-in-chicago-suburb/#.VANjj2Yidro.reddit"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9403418,
41.8994744
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/30/14",
"Shooter": "George Mason III",
"Dead": 3,
"Injured": 1,
"Location": "Brooksville, FL",
"City": "Brooksville",
"County": "Hernando County",
"State": "FL",
"References": [
"http://www.wtsp.com/story/news/local/2014/08/30/luck-for-police-after-truck-accidentally-hits-shooting-suspect/14875769/",
"http://tbo.com/news/crime/hernando-deputies-several-people-hurt-in-shooting-20140829/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.3878709,
28.5552719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/31/14",
"Shooter": "Anthony Jesus Torres",
"Dead": 0,
"Injured": 5,
"Location": "Livermore, CA",
"City": "Livermore",
"County": "Alameda County",
"State": "CA",
"References": [
"http://www.sfgate.com/bayarea/article/5-shot-at-Livermore-party-5725329.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.7680088,
37.6818745
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/31/14",
"Shooter": "Unkown",
"Dead": 2,
"Injured": 2,
"Location": "Birmingham, AL",
"City": "Birmingham",
"County": "Jefferson County",
"State": "AL",
"References": [
"http://www.abc3340.com/story/26419037/police-two-people-dead-two-injured-following-motorcycle-club-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.80248999999999,
33.5206608
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/1/14",
"Shooter": "Unkown",
"Dead": 2,
"Injured": 2,
"Location": "Greensboro, NC",
"City": "Greensboro",
"County": "Guilford County",
"State": "NC",
"References": [
"http://www.wxii12.com/news/police-investigating-shooting-in-greensboro/27826982"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.7919754,
36.0726354
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/1/14",
"Shooter": "Derek Gooding",
"Dead": 1,
"Injured": 3,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.dnainfo.com/new-york/20140901/crown-heights/man-killed-3-others-injured-during-crown-heights-shooting-police-say",
"http://www.nydailynews.com/news/crime/man-dies-3-shot-route-west-indian-day-parade-article-1.1923705"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/1/14",
"Shooter": "Evan Bennett",
"Dead": 4,
"Injured": 1,
"Location": "Greenville, NC",
"City": "Greenville",
"County": "Pitt County",
"State": "NC",
"References": [
"http://www.wlos.com/news/features/top-stories/stories/officer-shooting-linked-three-other-killings-17601.shtml",
"http://www.thestate.com/2014/09/03/3655810_4-dead-1-injured-in-upstate-thrill.html?rh=1"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.3663538,
35.612661
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/2/14",
"Shooter": "Unkown",
"Dead": 3,
"Injured": 2,
"Location": "Kansas City, KS",
"City": "Kansas City",
"County": "Wyandotte County",
"State": "KS",
"References": [
"http://www.kansascity.com/news/local/crime/article1348304.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.6274636,
39.114053
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/2/14",
"Shooter": "Unkown",
"Dead": 0,
"Injured": 5,
"Location": "Highland, CA",
"City": "Highland",
"County": "San Bernardino County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-five-hospitalized-highland-shooting-20140902-story.html",
"http://www.sbsun.com/general-news/20140902/five-in-san-bernardino-taken-to-hospital-with-gunshot-wounds"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.2086513,
34.1283442
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/2/14",
"Shooter": "Unkown",
"Dead": 2,
"Injured": 3,
"Location": "Jackson, MS",
"City": "Jackson",
"County": "Hinds County",
"State": "MS",
"References": [
"http://www.msnewsnow.com/story/26436970/2-dead-in-shooting-at-jackson-sports-bar"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.1848103,
32.2987573
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/3/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://ktla.com/2014/09/03/4-men-wounded-in-south-l-a-shooting-2-other-people-shot-in-previous-incident/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/4/14",
"Shooter": "unknown",
"Dead": 0,
"Injured": 5,
"Location": "Flint, MI",
"City": "Flint",
"County": "Genesee County",
"State": "MI",
"References": [
"http://www.detroitnews.com/article/20140904/METRO06/309040076/Police-5-wounded-shooting-outside-Flint-store",
"http://www.mlive.com/news/flint/index.ssf/2014/09/five_people_shot_in_flint_over.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.6874562,
43.0125274
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/6/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Orlando, FL",
"City": "Orlando",
"County": "Orange County",
"State": "FL",
"References": [
"http://www.orlandosentinel.com/news/breaking-news/os-5-shot-drive-by-kwik-stop-gas-20140906-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.3792365,
28.5383355
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/6/14",
"Shooter": "Jamel Ramon Nolton",
"Dead": 0,
"Injured": 5,
"Location": "Macon, GA",
"City": "Macon",
"County": "Bibb County",
"State": "GA",
"References": [
"http://www.macon.com/2014/09/06/3289964_five-shot-outside-grants-lounge.html?rh=1"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.6324022,
32.8406946
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/11/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 5,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.clickondetroit.com/news/detroit-police-investigating-seven-people/28025096",
"http://www.freep.com/article/20140912/NEWS01/309120078/Detroit-vigil-shooting-crash"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/14/14",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Corpus Christi, TX",
"City": "Corpus Christi",
"County": "Nueces County",
"State": "TX",
"References": [
"http://www.huffingtonpost.com/2014/09/15/texas-trailer-park-shooting_n_5822968.html?utm_hp_ref=crime",
"http://www.caller.com/news/local-news/update-police-arrest-man-in-triple-homicide"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.39638099999999,
27.8005828
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/14/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Norfolk, VA",
"City": "Norfolk",
"State": "VA",
"References": [
"http://wavy.com/2014/09/14/one-dead-two-wounded-in-norfolk-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.28587259999999,
36.8507689
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/14/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Anchorage, AK",
"City": "Anchorage",
"County": "Anchorage",
"State": "AK",
"References": [
"http://abcnews.go.com/Technology/wireStory/police-hurt-shooting-alaska-bar-25498698",
"http://www.huffingtonpost.com/2014/09/15/alaska-bar-shooting_n_5821622.html?utm_hp_ref=crime"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-149.9002778,
61.2180556
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/14/14",
"Shooter": "Unkown",
"Dead": 0,
"Injured": 7,
"Location": "Abbeville, LA",
"City": "Abbeville",
"County": "Vermilion Parish",
"State": "LA",
"References": [
"http://www.theadvertiser.com/story/news/crime/2014/09/14/abbevilleshooting/15638545/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-92.13429210000001,
29.9746502
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/14",
"Shooter": "Wesley Daley Jr",
"Dead": 0,
"Injured": 4,
"Location": "Cleveland, OH",
"City": "Cleveland",
"County": "Cuyahoga County",
"State": "OH",
"References": [
"http://www.cleveland.com/metro/index.ssf/2014/09/cleveland_man_wanted_for_shoot.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6943605,
41.49932
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2014/09/5_shot_in_eastern_new_orleans.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/18/14",
"Shooter": "Don Charles Spirit",
"Dead": 8,
"Injured": 0,
"Location": "Bell, FL",
"City": "Bell",
"County": "Gilchrist County",
"State": "FL",
"References": [
"http://www.bbc.com/news/business-29266609",
"http://www.nbcnews.com/news/us-news/don-spirit-kills-daughter-six-grandchildren-bell-florida-n206861",
"http://www.mediaite.com/online/florida-man-reportedly-shoots-and-kills-daughter-6-grandchildren/",
"http://www.gainesville.com/article/20140918/ARTICLES/140919556/1139?Title=2-adults-six-children-dead-in-Gilchrist-shootings"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.8626239,
29.7555125
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/19/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Queens, NY",
"City": "New York",
"County": "Queens County",
"State": "NY",
"References": [
"http://newyork.cbslocal.com/2014/09/19/east-elmhurst-queens-shooting-leaves-multiple-people-wounded/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7948516,
40.7282239
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/20/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Panola County, MS",
"County": "Panola County",
"State": "MS",
"References": [
"http://www.commercialappeal.com/news/local-news/desoto/2-dead-2-injured-in-mississippi-shooting_13582967"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.9253233,
34.4198016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/21/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "East Liverpool, OH",
"City": "East Liverpool",
"County": "Columbiana County",
"State": "OH",
"References": [
"http://www.theintelligencer.net/page/content.detail/id/612546.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.5772928,
40.6186756
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/21/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.nbcphiladelphia.com/news/local/2-Dead-2-Injured-in-Overnight-Shooting-at-Day-Care-Facility-275922111.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/28/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://philadelphia.cbslocal.com/2014/09/28/police-investigate-quadruple-shooting-in-fairhill/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/28/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 15,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.miamiherald.com/news/local/crime/article2282344.html",
"http://www.wtop.com/209/3711160/Police-15-hurt-in-Miami-nightclub-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/28/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Walterboro, SC",
"City": "Walterboro",
"County": "Colleton County",
"State": "SC",
"References": [
"http://www.abcnews4.com/story/26646633/1-dead-5-wounded-in-colleton-county-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.6667688,
32.9051704
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/28/14",
"Shooter": "Vernell Ballard, Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.theindychannel.com/news/local-news/4-people-shot-during-private-party-at-vfw-building-near-3600-english-ave",
"http://www.wthr.com/story/26650416/2014/09/29/birthday-party-at-vfw-ends-in-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/29/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": [
"http://www.fresnobee.com/2014/09/29/4151197_three-people-shot-in-northwest.html?rh=1"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/30/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.freep.com/story/news/local/michigan/detroit/2014/09/30/five-shot-detroit-party/16466987/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/2/14",
"Shooter": "Alonzo Russell Sr., Sylvester Lamont Jordan, Damaino Nicholas Thomas",
"Dead": 0,
"Injured": 5,
"Location": "Darlington, SC",
"City": "Darlington",
"County": "Darlington County",
"State": "SC",
"References": [
"http://www.wbtw.com/story/26691567/3-arrested-after-5-shot-in-drug-deal-gone-badly-darlington-sheriff-says"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.8761741,
34.2998762
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/4/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Pomona, CA",
"City": "Pomona",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.insidesocal.com/sgvcrime/2014/10/05/four-wounded-in-shooting-at-pomona-restaurant-drive-through/?doing_wp_cron=1422648180.5885689258575439453125"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.7499909,
34.055103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/4/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/news/1-dead-3-wounded-in-west-garfield-park-shooting/336592/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/4/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://wreg.com/2014/10/04/multiple-people-shot-in-southeast-memphis/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/5/14",
"Shooter": "Prosper Natron Johnson, Deanta Holsey",
"Dead": 3,
"Injured": 2,
"Location": "Jacksonville, FL",
"City": "Jacksonville",
"County": "Duval County",
"State": "FL",
"References": [
"http://www.news4jax.com/news/3-killed-2-dead-in-mass-shooting/28963234"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.65565099999999,
30.3321838
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/6/14",
"Shooter": "Unreported",
"Dead": 1,
"Injured": 5,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.myfoxdetroit.com/story/26719319/mass-shooting-kills-mother-of-three-wounds-five-others",
"http://www.clickondetroit.com/news/police-woman-shot-killed-by-man-she-rejected-at-detroit-hall/28976620"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/7/14",
"Shooter": "Mickey Sudduth",
"Dead": 2,
"Injured": 2,
"Location": "Aberdeen, MS",
"City": "Aberdeen",
"County": "Monroe County",
"State": "MS",
"References": [
"http://www.rawstory.com/rs/2014/10/mississippi-family-gunfight-leaves-two-dead-two-wounded/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.5436553,
33.8251139
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/8/14",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Guilderland, NY",
"City": "Guilderland",
"County": "Albany County",
"State": "NY",
"References": [
"http://www.dailymail.co.uk/news/article-2786805/Cops-4-slain-include-2-adults-boys-ages-7-10.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9116433,
42.7043568
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/8/14",
"Shooter": "Traymont B. Burton",
"Dead": 0,
"Injured": 4,
"Location": "Richmond, VA",
"City": "Richmond",
"State": "VA",
"References": [
"http://www.nbc12.com/story/26741075/richmond-police-respond-to-south-richmond-shooting",
"http://www.nydailynews.com/news/crime/dead-richmond-murder-suicide-cops-article-1.1969599"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.4360481,
37.5407246
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/9/14",
"Shooter": "Unreported",
"Dead": 1,
"Injured": 3,
"Location": "Oklahoma City, OK",
"City": "Oklahoma City",
"County": "Oklahoma County",
"State": "OK",
"References": [
"http://www.koco.com/news/police-officer-shot-in-southeast-oklahoma-city/29019196"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.5164276,
35.4675602
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/9/14",
"Shooter": "unknown",
"Dead": 0,
"Injured": 4,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/three-wounded-in-auburn-avenue-shooting/nhfX4/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/10/14",
"Shooter": "Calvin A. Dennis",
"Dead": 0,
"Injured": 5,
"Location": "Utica, NY",
"City": "Utica",
"County": "Oneida County",
"State": "NY",
"References": [
"http://wibx950.com/multiple-shooting-victims-at-level-bar-officer-shot-suspect/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.232664,
43.100903
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/11/14",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Stockton, CA",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://www.sacbee.com/news/local/crime/article2691157.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/12/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/local/police-investigate-apparent-drive-by-shooting/nhg9B/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/14/14",
"Shooter": "Brandon Mclean",
"Dead": 3,
"Injured": 2,
"Location": "Peachtree Corners, GA",
"City": "Peachtree Corners",
"County": "Gwinnett County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/2-killed-3-injured-in-gwinnett-county-shooting/nhjN6/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.2214551,
33.9698929
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/16/14",
"Shooter": "David Mohney",
"Dead": 3,
"Injured": 1,
"Location": "Port Orange, FL",
"City": "Port Orange",
"County": "Volusia County",
"State": "FL",
"References": [
"http://www.wftv.com/news/news/local/fire-rescue-multiple-people-shot-including-3-child/nhk4z/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.9956105,
29.1383165
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/16/14",
"Shooter": "Donnie Everett",
"Dead": 1,
"Injured": 3,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.clickondetroit.com/news/detroit-man-charged-in-shooting-that-killed-3yearold-injured-3-others/29230266",
"http://www.huffingtonpost.com/2014/10/17/amiracle-williams-3-year-old-killed-facebook-fight_n_6002280.html?utm_hp_ref=crime"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/18/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Aiken, SC",
"City": "Aiken",
"County": "Aiken County",
"State": "SC",
"References": [
"http://www.aikenstandard.com/article/20141018/AIK0101/141019399/1083/update-victim-s-name-released-in-deadly-graniteville-nightclub-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.7195533,
33.5604168
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/18/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.nydailynews.com/new-york/nyc-crime/4-men-hospitalized-brooklyn-shooting-article-1.1979466"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/20/14",
"Shooter": "unknown",
"Dead": 0,
"Injured": 4,
"Location": "Detroit, Mi",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://detroit.cbslocal.com/2014/10/21/4-injured-in-gas-station-shooting-near-ecorse-police-department/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/22/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Joliet, IL",
"City": "Joliet",
"County": "Will County",
"State": "IL",
"References": [
"http://www.theherald-news.com/2014/10/23/three-hospitalized-following-shooting-in-joliet/aoj7zsx/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.0817251,
41.525031
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/24/14",
"Shooter": " Jaylen Fryberg",
"Dead": 5,
"Injured": 1,
"Location": "Marysville, WA",
"City": "Marysville",
"County": "Snohomish County",
"State": "WA",
"References": [
"http://www.nytimes.com/2014/11/09/us/death-toll-rises-to-5-in-school-shooting.html?smid=re-share",
"http://www.firstcoastnews.com/story/news/nation/2014/11/03/fourth-student-high-school-shooting-dies/18400611/",
"http://www.theguardian.com/us-news/2014/nov/01/washington-school-shootings-third-victim-dies",
"http://www.cnn.com/2014/10/24/us/washington-school-shooting/index.html?hpt=hp_t1"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.1770818,
48.0517637
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/26/14",
"Shooter": "Ryan Champion",
"Dead": 4,
"Injured": 0,
"Location": "Cadiz, KY",
"City": "Cadiz",
"County": "Trigg County",
"State": "KY",
"References": [
"http://www.lex18.com/news/ksp-arrests-sole-survivor-of-trigg-county-triple-homicide-charges-him-with-murder/",
"http://www.kfvs12.com/story/27018546/ksp-investigating-4-shooting-deaths-at-home-in-trigg-county-ky"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.835295,
36.8650496
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/29/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Raleigh, NC",
"City": "Raleigh",
"County": "Wake County",
"State": "NC",
"References": [
"http://www.walb.com/story/27155807/five-shot-at-raleigh-apartment-complex"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.6381787,
35.7795897
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/5/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "San Francisco, CA",
"City": "SF",
"County": "San Francisco County",
"State": "CA",
"References": [
"http://www.sfgate.com/crime/article/Four-shot-in-S-F-s-Mission-District-5874728.php?cmpid=reddit-desktop"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.4194155,
37.7749295
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/7/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.presstelegram.com/general-news/20141108/four-shot-outside-willowbrook-apartment"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/8/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Pomona, CA",
"City": "Pomona",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-five-shot-pomona-park-20141109-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.7499909,
34.055103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/8/14",
"Shooter": "Jose M. Chavez, Michael Wayne Davis",
"Dead": 1,
"Injured": 4,
"Location": "Greensboro, NC",
"City": "Greensboro",
"County": "Guilford County",
"State": "NC",
"References": [
"http://myfox8.com/2014/11/08/1-dead-4-injured-in-downtown-greensboro-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.7919754,
36.0726354
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/15/14",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Springfield, MO",
"City": "Springfield",
"County": "Greene County",
"State": "MO",
"References": [
"http://www.ky3.com/news/local/springfield-police-investigate-homicide-possibly-multiple-dead-at-motel-on-glenstone-and-kearney/21048998_29738482"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.29229889999999,
37.2089572
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/16/14",
"Shooter": "Kenan Ivery",
"Dead": 1,
"Injured": 4,
"Location": "Akron, OH",
"City": "Akron",
"County": "Summit County",
"State": "OH",
"References": [
"http://www.ohio.com/news/break-news/slain-akron-officer-was-a-hero-eyewitness-says-four-others-shot-suspect-arrested-1.541405"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.51900529999999,
41.0814447
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/16/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://miami.cbslocal.com/2014/11/17/police-identify-man-killed-during-quadruple-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/17/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "El Paso, TX",
"City": "El Paso",
"County": "El Paso County",
"State": "TX",
"References": [
"http://www.kvia.com/news/police-club-shooter-5-others-injured/29754252"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-106.4850217,
31.7618778
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/17/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "North Las Vegas, NV",
"City": "North Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.reviewjournal.com/news/las-vegas/4-wounded-north-las-vegas-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1175013,
36.1988592
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/19/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/chi-several-shot-in-humboldt-park-20141119-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/19/14",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 1,
"Location": "Cleveland, OH",
"City": "Cleveland",
"County": "Cuyahoga County",
"State": "OH",
"References": [
"http://www.nytimes.com/aponline/2014/11/22/us/ap-us-cleveland-home-killings.html?smid=re-share",
"http://www.theguardian.com/us-news/2014/nov/22/pregnant-woman-four-dead-cleveland-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6943605,
41.49932
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/19/14",
"Shooter": " Myron May",
"Dead": 1,
"Injured": 3,
"Location": "Tallahassee, FL",
"City": "Tallahassee",
"County": "Leon County",
"State": "FL",
"References": [
"http://www.sfgate.com/news/texas/article/Dangerous-situation-reported-at-Florida-State-5905512.php?cmpid=reddit-mobile",
"http://www.cnn.com/2014/11/20/us/fsu-incident/",
"http://fox40.com/2014/11/19/shooting-reported-on-fsu-campus/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.28073289999999,
30.4382559
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/20/14",
"Shooter": "Jeannine LePage",
"Dead": 3,
"Injured": 1,
"Location": "Tabernacle, NJ",
"City": "Tabernacle",
"County": "Burlington County",
"State": "NJ",
"References": [
"http://bigstory.ap.org/article/d61e024d8f844be9a51cd16eaff24506/mother-who-shot-children-dies-her-injuries",
"http://nypost.com/2014/11/20/2-children-dead-2-injured-in-new-jersey-home-shooting/",
"http://www.nbcphiladelphia.com/news/local/Shooting-at-Burlington-County-Home-283338971.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.7107048,
39.8433853
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/21/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Clairton, PA",
"City": "Clairton",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://www.wpxi.com/news/news/local/breaking-many-6-people-shot-clairton/njCYF/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.881715,
40.292292
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/22/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Springfield, OH",
"City": "Springfield",
"County": "Clark County",
"State": "OH",
"References": [
"http://wdtn.com/2014/11/22/springfield-police-investigate-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.8088171,
39.9242266
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/22/14",
"Shooter": "Colter Richard Arbach",
"Dead": 4,
"Injured": 1,
"Location": "Sisseton, SD",
"City": "Sisseton",
"County": "Roberts County",
"State": "SD",
"References": [
"http://www.theguardian.com/us-news/2014/nov/22/gunman-four-dead-south-dakota-indiana-reservation?CMP=share_btn_gp",
"http://www.rawstory.com/rs/2014/11/four-dead-in-murder-suicide-on-south-dakota-reservation-police-say/#.VHD7EyfscnQ.reddit"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.0498046,
45.6646815
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/23/14",
"Shooter": "Jaquan Cortez Portier",
"Dead": 0,
"Injured": 4,
"Location": "Accomack County, VA",
"County": "Accomack County",
"State": "VA",
"References": [
"http://wtkr.com/2014/11/24/man-accused-of-shooting-four-people-inside-accomack-co-home/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.8069082,
37.7063323
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/23/14",
"Shooter": "Unknown",
"Dead": 5,
"Injured": 0,
"Location": "Cleveland, OH",
"City": "Cleveland",
"County": "Cuyahoga County",
"State": "OH",
"References": [
"http://www.usatoday.com/story/news/nation/2014/11/24/cleveland-mass-shooting/19474067/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6943605,
41.49932
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/26/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "San Francisco, CA",
"City": "SF",
"County": "San Francisco County",
"State": "CA",
"References": [
"http://www.sfgate.com/news/article/Six-shot-and-wounded-in-S-F-s-Mission-District-5919251.php?cmpid=reddit-mobile"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.4194155,
37.7749295
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/26/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Reading, PA",
"City": "Reading",
"County": "Berks County",
"State": "PA",
"References": [
"http://www.usatoday.com/story/news/nation/2014/11/26/barbershop-shooting-reading-pennsylvania/19549491/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.9268747,
40.3356483
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/28/14",
"Shooter": "Jose Hernandez Benitez",
"Dead": 2,
"Injured": 3,
"Location": "Weir, TX",
"City": "Weir",
"County": "Williamson County",
"State": "TX",
"References": [
"http://www.mystatesman.com/news/news/local/man-arrested-after-2-killed-3-injured-in-weir-part/njHdp/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.58617009999999,
30.6749425
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/28/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.wmcactionnews5.com/story/27500884/shooting-outside-memphis-bikini-bar"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/29/14",
"Shooter": "Unkown",
"Dead": 3,
"Injured": 2,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.rawstory.com/rs/2014/11/three-people-shot-to-death-in-atlanta-two-injured/#.VHojCEsJpzk.reddit"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/29/14",
"Shooter": "Unkown",
"Dead": 1,
"Injured": 3,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.nj.com/essex/index.ssf/2014/11/1_killed_in_newark_shooting_3_others_wounded_officials_say.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/30/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Chattanooga, TN",
"City": "Chattanooga",
"County": "Hamilton County",
"State": "TN",
"References": [
"http://www.wrcbtv.com/story/27508990/deputies-early-morning-shooting-injures-5-people"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.3096801,
35.0456297
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/30/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://nypost.com/2014/12/01/three-shot-outside-baby-shower/",
"http://www.nytimes.com/2014/12/01/nyregion/4-wounded-in-shooting-at-a-baby-shower-in-brooklyn.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/1/14",
"Shooter": "Jody Lee Hunt",
"Dead": 5,
"Injured": 0,
"Location": "Westover, WV",
"City": "Westover",
"County": "Monongalia County",
"State": "WV",
"References": [
"http://www.nbcnews.com/news/us-news/west-virginia-gunman-jody-lee-hunt-dead-after-four-killed-n259261",
"http://www.usatoday.com/story/news/nation/2014/12/01/west-virginia-shootings/19743281/",
"http://www.wvgazette.com/article/20141201/GZ01/141209961/1419"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9697862,
39.6345259
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/2/14",
"Shooter": "unknown",
"Dead": 0,
"Injured": 5,
"Location": "Newport News, VA",
"City": "Newport News",
"State": "VA",
"References": [
"http://www.13newsnow.com/story/news/local/mycity/newport-news/2014/12/02/newport-news-police-investigating-shooting-incident/19807177/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.4730122,
37.0870821
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/2/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.stltoday.com/news/local/crime-and-courts/six-shot-in-suspected-holdup-at-st-louis-bar-popular/article_33503b67-ec0b-570e-af58-a699771c4ed6.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/3/14",
"Shooter": "Reginald Mercer",
"Dead": 1,
"Injured": 3,
"Location": "Cabarrus County, NC",
"County": "Cabarrus County",
"State": "NC",
"References": [
"http://www.wsoctv.com/news/news/local/dispatch-cabarrus-co-officials-working-shooting-in/njK4M/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.5882803,
35.4168123
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/4/14",
"Shooter": "Andres Andy Avalos",
"Dead": 3,
"Injured": 1,
"Location": "Bradenton, FL",
"City": "Bradenton",
"County": "Manatee County",
"State": "FL",
"References": [
"http://www.cbsnews.com/news/3-dead-1-injured-in-bradenton-florida-shootings/",
"http://www.nbcnews.com/news/crime-courts/suspect-sought-killings-wife-church-pastor-florida-n261756"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.5748194,
27.4989278
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/6/14",
"Shooter": "Unkown",
"Dead": 0,
"Injured": 4,
"Location": "Minneapolis, MN",
"City": "Minneapolis",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://www.kare11.com/story/news/crime/2014/12/06/4-injured-in-party-bus-shooting-in-minneapolis/20022493/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2650108,
44.977753
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/7/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "St. Joseph County, IN",
"County": "St Joseph County",
"State": "IN",
"References": [
"http://www.southbendtribune.com/news/local/four-injured-in-st-joseph-county-banquet-hall-shooting/article_f241d43c-7e24-11e4-ba15-67a1a0af4ad1.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.3376761,
41.6228085
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/12/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Portland, OR",
"City": "Portland",
"County": "Multnomah County",
"State": "OR",
"References": [
"http://www.nytimes.com/2014/12/13/us/oregon-4-hurt-in-shooting-near-portland-high-school.html?partner=rss&emc=rss&smid=tw-nytimes&_r=1",
"http://www.cnn.com/2014/12/12/us/portland-school-shooting/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.6764816,
45.5230622
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/13/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Tampa, FL",
"City": "Tampa",
"County": "Hillsborough County",
"State": "FL",
"References": [
"http://tbo.com/news/crime/five-wounded-in-shooting-at-tampa-nightclub-20141213/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.4571776,
27.950575
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/14/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.nbcmiami.com/news/local/One-of-Five-Victims-in-Overtown-Drive-By-Shooting-Dies-Miami-Police-286224471.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/14/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "Macon, GA",
"City": "Macon",
"County": "Bibb County",
"State": "GA",
"References": [
"http://www.13wmaz.com/story/news/local/macon/2014/12/12/friday-morning-macon-wings-cafe-shooting/20292021/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.6324022,
32.8406946
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/15/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/chi-multiple-people-shot-michigan-and-57th-chicago-20141215-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/15/14",
"Shooter": "Bradley William Stone",
"Dead": 6,
"Injured": 3,
"Location": "Montgomery County, PA",
"County": "Montgomery County",
"State": "PA",
"References": [
"http://www.mediaite.com/tv/while-you-were-watching-sydney-pa-gunman-killed-6-and-is-still-at-large/",
"http://abc7chicago.com/437053/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.3878525,
40.2290075
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/16/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Elizabeth, NJ",
"City": "Elizabeth",
"County": "Union County",
"State": "NJ",
"References": [
"http://www.nj.com/union/index.ssf/2014/12/one_man_seriously_injured_three_others_stable_after_elizabeth_shooting_police_say.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.2107006,
40.6639916
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/20/14",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Rockford, Il",
"City": "Rockford",
"County": "Winnebago County",
"State": "IL",
"References": [
"http://chicago.suntimes.com/nationworld/7/71/223001/4-people-including-2-children-killed-rockford-home"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.0939952,
42.2711311
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/21/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 10,
"Location": "Calumet City, IL",
"City": "Calumet City",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc13.com/news/house-party-shooting-kills-1-wounds-10/445683/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.5294871,
41.6155909
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/21/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Sarasota, Fl",
"City": "Sarasota",
"County": "Sarasota County",
"State": "FL",
"References": [
"http://www.heraldtribune.com/article/20141221/BREAKING/141229965/2416/NEWS?Title=UPDATE-2-dead-3-injured-after-shooting-in-Sarasota-bar"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.53065269999999,
27.3364347
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/21/14",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Denton, TX",
"City": "Denton",
"County": "Denton County",
"State": "TX",
"References": [
"http://dfw.cbslocal.com/2014/12/21/denton-police-look-for-shooting-suspect/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.13306829999999,
33.2148412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/22/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/chi-5-teens-shot-in-englewood-20141222-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/22/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": [
"http://abc30.com/news/4-wounded-in-central-fresno-drive-by-shooting/447341/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/22/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.myfoxdetroit.com/story/27702993/police-investigate-teen-shooting-as-robbery-gone-bad"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/22/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 9,
"Location": "West Little River, FL",
"City": "West Little River",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.local10.com/news/police-checking-on-reports-of-a-shooting/30357538"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.2369934,
25.8570407
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/22/14",
"Shooter": "William Spengler",
"Dead": 3,
"Injured": 2,
"Location": "Webster, NY",
"City": "Webster",
"County": "Monroe County",
"State": "NY",
"References": [
"http://www.usatoday.com/story/news/nation/2012/12/24/webster-new-york-firefighter-shot/1788917/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.4299939,
43.2122851
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/23/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Winchester, KY",
"City": "Winchester",
"County": "Clark County",
"State": "KY",
"References": [
"http://www.wlky.com/news/one-person-dead-three-injured-in-apartment-complex-shooting/30380264"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.17965029999999,
37.990079
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/24/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.ksdk.com/story/news/crime/2014/12/24/1-dead-in-downtown-quadruple-shooting/20883631/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/26/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "East St. Louis, IL",
"City": "East St Louis",
"County": "St Clair County",
"State": "IL",
"References": [
"http://www.kmov.com/news/crime/East-St-Louis-Man-murdered-early-Friday-286882421.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.1506465,
38.624514
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/26/14",
"Shooter": "Demarcus Gladney & a 16 year old minor",
"Dead": 1,
"Injured": 3,
"Location": "Shreveport, LA",
"City": "Shreveport",
"County": "Caddo Parish",
"State": "LA",
"References": [
"http://www.shreveporttimes.com/story/news/2014/12/28/another-arrested-in-downtown-shooting/20977211/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.7501789,
32.5251516
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/27/14",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.nbclosangeles.com/news/local/4-People-Shot-1-Fatally-in-South-LA-286939761.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/27/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Sacramento, CA",
"City": "Sacramento",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://www.sacbee.com/news/local/crime/article5079981.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4943996,
38.5815719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/29/14",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2014/12/4_injured_in_monday_morning_sh.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/1/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.wmcactionnews5.com/story/27743361/5-injured-in-new-years-day-party-bus-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/2/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Savannah, GA",
"City": "Savannah",
"County": "Chatham County",
"State": "GA",
"References": [
"http://savannahnow.com/crime/2015-01-02/police-1-dead-4-injured-overnight-savannah-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.09983419999999,
32.0835407
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/4/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Dallas, TX",
"City": "Dallas",
"County": "Dallas County",
"State": "TX",
"References": [
"http://dfw.cbslocal.com/2015/01/04/police-3-dead-1-in-surgery-after-dallas-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.79698789999999,
32.7766642
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/4/15",
"Shooter": "William Christopher Cabbler",
"Dead": 2,
"Injured": 4,
"Location": "Roanoke, VA",
"City": "Roanoke",
"State": "VA",
"References": [
"http://www.wdbj7.com/news/local/developing-story-roanoke-police-investigating-early-am-shooting/30521654"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9414266,
37.2709704
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/6/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.nbcmiami.com/news/local/2-Shot-2-Grazed-by-Bullets-in-Miami-287737751.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/7/15",
"Shooter": "Cortez Sims",
"Dead": 1,
"Injured": 3,
"Location": "Chattanooga, TN",
"City": "Chattanooga",
"County": "Hamilton County",
"State": "TN",
"References": [
"http://www.wrcbtv.com/story/27778835/one-person-is-dead-and-three-others-are-injured-in-overnight-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.3096801,
35.0456297
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/8/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Boston, MA",
"City": "Boston",
"County": "Suffolk County",
"State": "MA",
"References": [
"http://boston.cbslocal.com/2015/01/09/1-dead-3-wounded-in-shooting-on-roxbury-street/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.0588801,
42.3600825
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/9/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "San Francisco, CA",
"City": "SF",
"County": "San Francisco County",
"State": "CA",
"References": [
"http://abc7news.com/news/sfpd-confirm-4-dead-following-shooting-in-hayes-valley/469681/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.4194155,
37.7749295
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/10/15",
"Shooter": "John Lee",
"Dead": 3,
"Injured": 1,
"Location": "Moscow, ID",
"City": "Moscow",
"County": "Latah County",
"State": "ID",
"References": [
"http://www.kxly.com/news/north-idaho-news/moscow-police-investigating-shooting/30634900"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.0001651,
46.73238749999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/11/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "San Jose, CA",
"City": "San Jose",
"County": "Santa Clara County",
"State": "CA",
"References": [
"http://abc7news.com/news/5-hurt-in-shooting-during-chris-brown-party-in-sj/470625/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.8863286,
37.3382082
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/11/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 5,
"Location": "Hope Mills, NC",
"City": "Hope Mills",
"County": "Cumberland County",
"State": "NC",
"References": [
"http://www.wral.com/two-dead-five-injured-in-shooting-at-hope-mills-party/14346149/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.9453056,
34.9704419
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/11/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Lakeland, FL",
"City": "Lakeland",
"County": "Polk County",
"State": "FL",
"References": [
"http://www.abcactionnews.com/news/region-polk/lakeland/deputies-one-person-killed-three-others-shot-during-a-home-invasion-robbery-in-lakeland"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.9498042,
28.0394654
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/11/15",
"Shooter": "Rishod Shermaine Fields",
"Dead": 0,
"Injured": 5,
"Location": "Tuskegee, AL",
"City": "Tuskegee",
"County": "Macon County",
"State": "AL",
"References": [
"http://www.al.com/news/montgomery/index.ssf/2015/01/arrest_made_in_shooting_that_i_1.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.7077266,
32.430237
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/12/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Wichita, KS",
"City": "Wichita",
"County": "Sedgwick County",
"State": "KS",
"References": [
"http://www.kansas.com/news/local/crime/article6058869.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.33005299999999,
37.68717609999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/13/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Portsmouth, VA",
"City": "Portsmouth",
"State": "VA",
"References": [
"http://wtkr.com/2015/01/13/early-morning-shooting-at-portsmouth-lounge-leaves-5-people-injured/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.2982742,
36.8354258
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/14/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Rockford, IL",
"City": "Rockford",
"County": "Winnebago County",
"State": "IL",
"References": [
"http://www.mystateline.com/fulltext-news/d/story/update-victims-identified-in-deadly-rockford-shoot/42689/GXoLZ3hSL0a6X8s5IeDbCA"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.0939952,
42.2711311
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/19/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 5,
"Location": "San Antonio, TX",
"City": "San Antonio",
"County": "Bexar County",
"State": "TX",
"References": [
"http://www.ksat.com/content/pns/ksat/news/2015/01/20/chaotic-brawl--shooting-leaves-two-dead--more-wounded.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-98.49362819999999,
29.4241219
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/20/15",
"Shooter": "Timothy David Shoffner",
"Dead": 1,
"Injured": 3,
"Location": "Clarksville, TN",
"City": "Clarksville",
"County": "Montgomery County",
"State": "TN",
"References": [
"http://www.wsmv.com/story/27904193/clarksville-police-id-suspect-in-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.3594528,
36.5297706
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/23/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Boston, MA",
"City": "Boston",
"County": "Suffolk County",
"State": "MA",
"References": [
"http://www.wcvb.com/news/multiple-people-shot-in-boston/30895680"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.0588801,
42.3600825
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/24/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 5,
"Location": "Omaha, NE",
"City": "Omaha",
"County": "Douglas County",
"State": "NE",
"References": [
"http://www.usatoday.com/story/news/nation/2015/01/24/omaha-party-shooting/22297565/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99798829999999,
41.2523634
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/24/15",
"Shooter": "Jonathon Walker",
"Dead": 4,
"Injured": 1,
"Location": "Queens, NY",
"City": "New York",
"County": "Queens County",
"State": "NY",
"References": [
"http://www.nbcnewyork.com/news/local/2-Kids-and-1-Adult-Dead-in-Queens-Shooting-3rd-Child-Being-Treated-Brookville-148th-Avenue-289669211.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.7948516,
40.7282239
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/26/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Stockton, CA",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://www.kcra.com/news/local-news/news-stockton/teenager-dies-3-others-hurt-in-stockton-shooting/30937222"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/28/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "DeKalb, GA",
"County": "Dekalb County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/one-dead-three-wounded-in-dekalb-shooting/njy7R/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.2278796,
33.7956441
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "1/29/15",
"Shooter": "Thomas Jessee Lee",
"Dead": 5,
"Injured": 0,
"Location": "Troup County, GA",
"County": "Troup County",
"State": "GA",
"References": [
"http://www.wsbtv.com/news/news/local/five-bodies-found-inside-lagrange-home/nj2rK/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.02334599999999,
33.0698575
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/1/15",
"Shooter": "Michael Morris",
"Dead": 0,
"Injured": 6,
"Location": "Syracuse, NY",
"City": "Syracuse",
"County": "Onondaga County",
"State": "NY",
"References": [
"http://www.syracuse.com/news/index.ssf/2015/02/6th_victim_in_mcavans_pub_shooting_took_herself_to_hospital_sunday_police_say.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.14742439999999,
43.0481221
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/1/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Manhattan, NY",
"City": "New York",
"County": "New York County",
"State": "NY",
"References": [
"http://7online.com/news/1-dead-4-wounded-after-shooting-in-hamilton-heights/500497/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9712488,
40.7830603
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/4/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "King, NC",
"City": "King",
"County": "Stokes County",
"State": "NC",
"References": [
"http://www.journalnow.com/news/crime/four-dead-in-stokes-county-shooting/article_eed92570-aca5-11e4-91e7-0f002c38c9b8.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.3592197,
36.2806939
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/5/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 3,
"Location": "Warrensville Heights, OH",
"City": "Warrensville Heights",
"County": "Cuyahoga County",
"State": "OH",
"References": [
"http://www.wkyc.com/story/news/local/cuyahoga-county/2015/02/05/warrensville-heights-barbershop/22956675/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.5102655,
41.4323067
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/6/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.newson6.com/story/28049041/tulsa-police-investigating-reports-of-triple-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/7/15",
"Shooter": "Cedric G. Prather",
"Dead": 5,
"Injured": 2,
"Location": "Douglasville, GA",
"City": "Douglasville",
"County": "Douglas County",
"State": "GA",
"References": [
"http://www.csmonitor.com/USA/Latest-News-Wires/2015/0208/Children-among-five-dead-in-Georgia-shooting-video"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.7477136,
33.7514966
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/8/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Crockett County, TN",
"County": "Crockett County",
"State": "TN",
"References": [
"http://www.wmcactionnews5.com/story/28054306/six-hit-in-early-morning-crockett-county-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.1324866,
35.7812386
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/9/15",
"Shooter": "Christopher Lee Duncan and Dora Delgado",
"Dead": 3,
"Injured": 1,
"Location": "New Port Richey, FL",
"City": "New Port Richey",
"County": "Pasco County",
"State": "FL",
"References": [
"http://www.tampabay.com/news/publicsafety/crime/pasco-sheriff-identifies-third-victim-in-moon-lake-shooting/2217118"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.7192671,
28.2441768
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/15/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Long Beach, CA",
"City": "Long Beach",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.nbclosangeles.com/news/local/Long-Beach-Shooting-Sunday-292042941.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.1937395,
33.7700504
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/17/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Little Rock, AR",
"City": "Little Rock",
"County": "Pulaski County",
"State": "AR",
"References": [
"http://www.arkansasonline.com/news/2015/feb/18/one-killed-three-injured-in-shooting-at/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-92.28959479999999,
34.7464809
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/22/15",
"Shooter": "Anthony Giaquinta",
"Dead": 3,
"Injured": 2,
"Location": "Habersham County, GA",
"County": "Habersham County",
"State": "GA",
"References": [
"http://www.wsbtv.com/news/news/local/2-deputies-shot-habersham-county/nkGwC/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.54965659999999,
34.6478893
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/22/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Charleston, SC",
"City": "Charleston",
"County": "Charleston County",
"State": "SC",
"References": [
"http://www.postandcourier.com/article/20150223/PC16/150229733/1005&source=RSS"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.93105120000001,
32.7764749
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/22/15",
"Shooter": "Atase Giffa",
"Dead": 4,
"Injured": 1,
"Location": "Killeen, TX",
"City": "Killeen",
"County": "Bell County",
"State": "TX",
"References": [
"http://www.wfaa.com/story/news/nation/2015/02/23/four-dead-killeen-texas-shooting/23873731/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.72779589999999,
31.1171194
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/25/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 2,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.khou.com/story/news/2015/02/26/3-dead-2-injured-in-south-houston-shooting/24040425/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/27/15",
"Shooter": "Joseph Jesse Aldridge",
"Dead": 8,
"Injured": 1,
"Location": "Tyrone, MO",
"City": "Tyrone",
"County": "Texas County",
"State": "MO",
"References": [
"http://www.nbcnews.com/news/crime-courts/nine-found-dead-including-gunman-after-missouri-shooting-spree-police-n314071"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-91.8765399,
37.2033832
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/28/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://baltimore.cbslocal.com/2015/02/28/multiple-injured-in-baltimore-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/28/15",
"Shooter": "Ian Sherrod",
"Dead": 4,
"Injured": 0,
"Location": "Tarboro, NC",
"City": "Tarboro",
"County": "Edgecombe County",
"State": "NC",
"References": [
"http://www.wncn.com/story/28228144/at-least-2-shot-at-tarboro-barber-shop"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.5358049,
35.8968236
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "2/28/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Columbia, MO",
"City": "Columbia",
"County": "Boone County",
"State": "MO",
"References": [
"http://www.wmur.com/national/three-dead-one-wounded-in-missouri-shootings/31551946"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-92.3340724,
38.9517053
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/1/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Tangelo Park, FL",
"City": "Tangelo Park",
"County": "Orange County",
"State": "FL",
"References": [
"http://www.wftv.com/news/news/local/4-injured-tangelo-park-shooting/nkL22/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.44590470000001,
28.4558386
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/1/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.toledoblade.com/Nation/2015/03/01/Man-44-killed-5-wounded-when-gunfire-erupts-during-celebration-at-Detroit-social-hall.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/2/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Santa Ana, CA",
"City": "Santa Ana",
"County": "Orange County",
"State": "CA",
"References": [
"http://www.ocregister.com/articles/santa-652761-altercation-shot.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.8678338,
33.7455731
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/3/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.jrn.com/ktnv/news/2-dead-2-hospitalized-after-shooting-near-Fort-Apache-and-Sahara-294993961.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/4/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 5,
"Location": "San Bernadino, CA",
"City": "San Bernardino",
"County": "San Bernardino County",
"State": "CA",
"References": [
"http://www.nbclosangeles.com/news/local/People-Shot-Nightclub-San-Bernardino-294974301.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.2897652,
34.1083449
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/9/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/news/roseland-shooting-leaves-1-dead-3-injured-/551473/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/10/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Columbus, GA",
"City": "Columbus",
"County": "Muscogee County",
"State": "GA",
"References": [
"http://www.ledger-enquirer.com/2015/03/10/3607030_five-wounded-during-tuesday-morning.html?rh=1"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.9877094,
32.4609764
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/11/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Aurora, IL",
"City": "Aurora",
"County": "Kane County",
"State": "IL",
"References": [
"http://my.chicagotribune.com/#section/-1/article/p2p-83042213/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.32007150000001,
41.7605849
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/13/15",
"Shooter": "Jimmy Lyons",
"Dead": 2,
"Injured": 3,
"Location": "Brookhaven, MS",
"City": "Brookhaven",
"County": "Lincoln County",
"State": "MS",
"References": [
"http://www.wapt.com/news/central-mississippi/reports-5-shot-in-brookhaven/31775312"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.4406506,
31.5790588
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/14/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.wsbtv.com/news/news/local/police-investigating-shooting-left-5-men-injured/nkXFD/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/15/15",
"Shooter": "Eric Antonio Cannady and Tommy Ray Jackson Jr.",
"Dead": 0,
"Injured": 4,
"Location": "Lillington, NC",
"City": "Lillington",
"County": "Harnett County",
"State": "NC",
"References": [
"http://www.wncn.com/story/28524422/4-injured-in-early-morning-shooting-in-lillington"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8158528,
35.39932700000001
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/15/15",
"Shooter": "Christopher Lance Joyner",
"Dead": 3,
"Injured": 1,
"Location": "Houston County, AL",
"County": "Houston County",
"State": "AL",
"References": [
"http://www.wsfa.com/story/28529911/3-dead-1-injured-in-houston-county-murder-suicide"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.31362179999999,
31.1318686
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/16/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Compton, CA",
"City": "Compton",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://losangeles.cbslocal.com/2015/03/15/2-girls-2-men-shot-at-birthday-party-in-compton/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2200712,
33.8958492
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/17/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 4,
"Location": "Stockton, CA",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://www.kcra.com/news/police-multiple-people-reportedly-injured-in-stockton-shooting/31860188"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/18/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Mesa, AZ",
"City": "Mesa",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.usatoday.com/story/news/nation/2015/03/18/mesa-arizona-shootings/24965575/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-111.8314724,
33.4151843
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/18/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.northjersey.com/news/police-1-killed-3-wounded-in-afternoon-shooting-in-newark-1.1291344"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/19/15",
"Shooter": "Justin Fowler",
"Dead": 2,
"Injured": 2,
"Location": "Navajo Nation, AZ",
"County": "Apache County",
"State": "AZ",
"References": [
"http://www.kob.com/article/stories/s3740954.shtml"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-109.1880047,
36.0672173
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/20/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Columbus, MS",
"City": "Columbus",
"County": "Lowndes County",
"State": "MS",
"References": [
"http://www.cdispatch.com/news/article.asp?aid=40862"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.4272627,
33.4956744
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/20/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Oklahoma City, OK",
"City": "Oklahoma City",
"County": "Oklahoma County",
"State": "OK",
"References": [
"http://newsok.com/police-investigate-quadruple-shooting-in-northeast-oklahoma-city/article/5403359"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.5164276,
35.4675602
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/20/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Joliet, IL",
"City": "Joliet",
"County": "Will County",
"State": "IL",
"References": [
"http://chicago.suntimes.com/crime/7/71/463526/four-shot-joliet"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.0817251,
41.525031
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/20/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Lancaster, TX",
"City": "Lancaster",
"County": "Dallas County",
"State": "TX",
"References": [
"http://crimeblog.dallasnews.com/2015/03/five-wounded-one-killed-in-lancaster-shooting.html/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.7561082,
32.5920798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/21/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Ybor City, FL",
"City": "Tampa",
"County": "Hillsborough County",
"State": "FL",
"References": [
"http://tbo.com/news/crime/four-shot-outside-carmines-restaurant-in-ybor-city-20150321/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.4350941,
27.9650212
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/21/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Lehigh Acres, FL",
"City": "Lehigh Acres",
"County": "Lee County",
"State": "FL",
"References": [
"http://www.winknews.com/2015/03/22/five-injured-at-lehigh-acres-party/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6248026,
26.6253497
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/22/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Albuquerque, NM",
"City": "Albuquerque",
"County": "Bernalillo County",
"State": "NM",
"References": [
"http://www.abqjournal.com/558868/abqnewsseeker/albuquerque-police-1-dead-others-hurt-in-park-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-106.6055534,
35.0853336
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/23/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Clarksville, TN",
"City": "Clarksville",
"County": "Montgomery County",
"State": "TN",
"References": [
"http://www.theleafchronicle.com/story/news/crime/2015/03/24/dead-injured-drive-shooting/70366434/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.3594528,
36.5297706
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/24/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.usatoday.com/story/news/nation/2015/03/24/4-dead-indianapolis-home/70374450/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/26/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Amarillo, TX",
"City": "Amarillo",
"County": "Potter County",
"State": "TX",
"References": [
"http://amarillo.com/news/latest-news/2015-03-26/police-investigate-near-hamlet-elementary"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-101.8312969,
35.2219971
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/28/15",
"Shooter": "David Jamichael Daniels",
"Dead": 0,
"Injured": 7,
"Location": "Panama City Beach, FL",
"City": "Panama City Beach",
"County": "Bay County",
"State": "FL",
"References": [
"http://www.oregonlive.com/today/index.ssf/2015/03/spring_break_shooting_in_flori.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.8054879,
30.1765914
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/29/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Stockton, CA",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://www.news10.net/story/news/local/stockton/2015/03/29/four-people-shooting-deja-vu-night-club/70644684/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "3/30/15",
"Shooter": "Sudheer Khamitkar",
"Dead": 4,
"Injured": 0,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.tulsaworld.com/news/crimewatch/four-people-found-dead-in-east-tulsa-home-police-say/article_9c246e78-57b2-5d84-8257-5a5d23e37a14.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/2/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://www.wbaltv.com/news/multiple-people-shot-in-west-baltimore/32156116"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/3/15",
"Shooter": "Vincent Tyrone Smith",
"Dead": 0,
"Injured": 4,
"Location": "Daytona Beach, FL",
"City": "Daytona Beach",
"County": "Volusia County",
"State": "FL",
"References": [
"http://www.wesh.com/news/4-people-shot-near-bethunecookman-university-deputies-say/32169944"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.0228331,
29.2108147
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/5/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Louisville, KY",
"City": "Louisville",
"County": "Jefferson County",
"State": "KY",
"References": [
"http://www.wave3.com/story/28724814/5-people-shot-in-early-hours-of-easter-sunday"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.7584557,
38.2526647
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/5/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.bigstory.ap.org/article/c5d24cbeed8d40afb2322c66e6b9153c/police-2-women-3-children-shot-indianapolis-townhome"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/7/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "North Rome, GA",
"City": "Rome",
"County": "Floyd County",
"State": "GA",
"References": [
"http://wrgarome.com/common/page.php?feed=1&id=45571&is_corp=1"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.1646726,
34.257038
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/16/15",
"Shooter": "Unknown",
"Dead": 5,
"Injured": 0,
"Location": "Phoenix, AZ",
"City": "Phoenix",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.washingtonpost.com/news/morning-mix/wp/2015/04/17/five-dead-in-family-dispute-after-hours-long-standoff-at-phoenix-home/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0740373,
33.4483771
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/16/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.dailynews.com/general-news/20150416/1-killed-4-wounded-in-shootings-in-palms-male-suspect-sought"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/18/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Paterson, NJ",
"City": "Paterson",
"County": "Passaic County",
"State": "NJ",
"References": [
"http://www.nbcnewyork.com/news/local/Boy-15-Dies-in-NJ-Shooting-Paterson-300593881.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.17181099999999,
40.9167654
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/18/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Charlotte, NC",
"City": "Charlotte",
"County": "Mecklenburg County",
"State": "NC",
"References": [
"http://www.wsoctv.com/news/news/local/medic-1-person-taken-hospital-after-west-charlotte/nkxff/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8431267,
35.2270869
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/18/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Lumberton, NC",
"City": "Lumberton",
"County": "Robeson County",
"State": "NC",
"References": [
"http://www.wave3.com/story/28837482/police-shooting-in-lumberton-leaves-one-dead-6-year-old-child-among-3-injured"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.0086424,
34.6182199
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/18/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Williamsport, PA",
"City": "Williamsport",
"County": "Lycoming County",
"State": "PA",
"References": [
"http://www.pennlive.com/midstate/index.ssf/2015/04/five_wounded_in_shooting_outsi.html#incart_river"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.00107860000001,
41.2411897
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/18/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Montgomery, AL",
"City": "Montgomery",
"County": "Montgomery County",
"State": "AL",
"References": [
"http://www.wsfa.com/story/28841135/5-injured-in-west-montgomery-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.2999689,
32.3668052
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/19/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Richmond, VA",
"City": "Richmond",
"State": "VA",
"References": [
"http://www.richmond.com/news/local/city-of-richmond/article_d6647e6f-dd0f-5edf-b43b-4c981e8eb9aa.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.4360481,
37.5407246
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/21/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Killeen, TX",
"City": "Killeen",
"County": "Bell County",
"State": "TX",
"References": [
"http://www.kwtx.com/home/headlines/Police-Investigate-Early-Morning-Shooting-300759331.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.72779589999999,
31.1171194
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/25/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Trenton, NJ",
"City": "Trenton",
"County": "Mercer County",
"State": "NJ",
"References": [
"http://www.nj.com/mercer/index.ssf/2015/04/4_shot_in_trenton_early_saturday_night_police_say.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.7429384,
40.2170534
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/25/15",
"Shooter": "David Alligood",
"Dead": 1,
"Injured": 6,
"Location": "Gates, NY",
"City": "Gates-North Gates",
"County": "Monroe County",
"State": "NY",
"References": [
"http://www.democratandchronicle.com/story/news/2015/04/25/killed-hurt-gates-pub-shooting/26355003/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.69924069999999,
43.1497793
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/27/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.nytimes.com/2015/04/28/nyregion/5-shot-2-fatally-outside-funeral-at-brooklyn-church.html?smid=re-share&_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "4/27/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Gila Bend, AZ",
"City": "Gila Bend",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://azdailysun.com/news/state-and-regional/mcso-people-dead-wounded-in-shooting-east-of-gila-bend/article_858544a6-fbd7-592c-8c5a-141c79e7836a.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.7168305,
32.9478236
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/1/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Milwaukee, WI",
"City": "Milwaukee",
"County": "Milwaukee County",
"State": "WI",
"References": [
"http://fox6now.com/2015/05/01/developing-two-killed-in-early-morning-shooting-near-37th-and-nash/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9064736,
43.0389025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/3/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 1,
"Location": "Menasha, WI",
"City": "Menasha",
"County": "Winnebago County",
"State": "WI",
"References": [
"http://news.yahoo.com/four-killed-shooting-wisconsin-foot-bridge-including-suspect-041118959.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.44649729999999,
44.2022084
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/3/15",
"Shooter": "Christopher Lee Accettura",
"Dead": 0,
"Injured": 4,
"Location": "South Bend, IN",
"City": "South Bend",
"County": "St Joseph County",
"State": "IN",
"References": [
"http://www.wsbt.com/news/local/update-arrest-made-in-south-bend-shooting-that-injured-4/32785308"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.25198979999999,
41.6763545
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/3/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.kwtx.com/home/headlines/Six-Injured-In-Shooting-Outside-Of-Texas-Nightclub-302352761.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/3/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 6,
"Location": "Dayton, OH",
"City": "Dayton",
"County": "Montgomery County",
"State": "OH",
"References": [
"http://www.wlwt.com/news/police-8-shot-at-dayton-business/32778884"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.1916069,
39.7589478
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/4/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Bronx, NY",
"County": "Bronx County",
"State": "NY",
"References": [
"http://nypost.com/2015/05/04/daily-blotter-512/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.86542949999999,
40.8370495
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/4/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Buffalo, NY",
"City": "Buffalo",
"County": "Erie County",
"State": "NY",
"References": [
"http://wivb.com/2015/05/04/police-respond-to-triple-shooting-in-buffalo/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8783689,
42.88644679999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/7/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Cincinnati, OH",
"City": "Cincinnati",
"County": "Hamilton County",
"State": "OH",
"References": [
"http://www.wlwt.com/news/cpd-investigating-quadruple-shooting-on-baltimore-avenue/32867572"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5120196,
39.1031182
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/10/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Jersey City, NJ",
"City": "Jersey City",
"County": "Hudson County",
"State": "NJ",
"References": [
"http://www.nj.com/hudson/index.ssf/2015/05/4_women_shot_on_jersey_city_street_5_charged_with.html#incart_river"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.0776417,
40.72815749999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/10/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Cleveland, OH",
"City": "Cleveland",
"County": "Cuyahoga County",
"State": "OH",
"References": [
"http://www.huffingtonpost.com/2015/05/11/cleveland-shooting_n_7254086.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6943605,
41.49932
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/10/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.nbcnewyork.com/news/local/NJ-Newark-Knights-Biker-Club-Shooting-Dead-303236741.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/12/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Capitol Heights, MD",
"City": "Capitol Heights",
"County": "Prince George's County",
"State": "MD",
"References": [
"http://wtop.com/prince-georges-county/2015/05/one-killed-4-injured-in-capitol-heights-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.9158068,
38.8851122
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/12/15",
"Shooter": "Christopher Carrillo",
"Dead": 5,
"Injured": 0,
"Location": "Tucson, AZ",
"City": "Tucson",
"County": "Pima County",
"State": "AZ",
"References": [
"http://www.huffingtonpost.com/2015/05/13/tucson-shooting_n_7272000.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-110.926479,
32.2217429
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/13/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Anchorage, AK",
"City": "Anchorage",
"County": "Anchorage",
"State": "AK",
"References": [
"http://www.adn.com/article/20150514/domestic-violence-blame-4-deaths-south-anchorage-police-say"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-149.9002778,
61.2180556
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/16/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Milwaukee, WI",
"City": "Milwaukee",
"County": "Milwaukee County",
"State": "WI",
"References": [
"http://fox6now.com/2015/05/16/breaking-police-investigate-triple-shooting-on-milwaukees-north-side/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9064736,
43.0389025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/16/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://www.wbaltv.com/news/2-men-2-women-shot-in-baltimore-police-say/33062884"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/16/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Rochester, NY",
"City": "Rochester",
"County": "Monroe County",
"State": "NY",
"References": [
"http://www.democratandchronicle.com/story/news/2015/05/16/four-men-shot-near-lewis-street/27434111/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.6109219,
43.16103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/17/15",
"Shooter": "Unknown",
"Dead": 9,
"Injured": 18,
"Location": "Waco, TX",
"City": "Waco",
"County": "McLennan County",
"State": "TX",
"References": [
"http://www.cnn.com/2015/05/17/us/texas-shooting/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.1466695,
31.549333
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/18/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.miamiherald.com/news/local/community/miami-dade/article21349797.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/18/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Kinloch, MO",
"City": "Kinloch",
"County": "St Louis County",
"State": "MO",
"References": [
"http://www.kmov.com/story/29099207/two-hospitalized-after-late-night-shooting-in-kinloch"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.3253922,
38.7406065
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/19/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Arlington, VA",
"City": "Arlington",
"County": "Arlington County",
"State": "VA",
"References": [
"http://www.wjla.com/articles/2015/05/4-injured-in-shooting-in-arlington-114076.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.1067698,
38.8799697
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/20/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://www.wbaltv.com/news/police-several-people-shot-in-east-baltimore/33129870"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/23/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": [
"http://www.fresnobee.com/news/local/crime/article21934929.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.stltoday.com/news/local/crime-and-courts/police-critically-wounded-in-st-louis-shooting/article_08aeee05-13db-53a9-95c4-11d3820a0b80.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Montgomery, AL",
"City": "Montgomery",
"County": "Montgomery County",
"State": "AL",
"References": [
"http://www.wsfa.com/story/29146971/4-shot-1-dead-in-weekend-shooting-at-montgomerys-smiley-court"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.2999689,
32.3668052
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Flint, MI",
"City": "Flint",
"County": "Genesee County",
"State": "MI",
"References": [
"http://www.abc12.com/home/headlines/Multiple-people-shot-during-violent-holiday-weekend-304862191.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.6874562,
43.0125274
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/24/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Brockton, MA",
"City": "Brockton",
"County": "Plymouth County",
"State": "MA",
"References": [
"http://www.wcvb.com/news/gunfire-erupts-at-brockton-bar-multiple-injuries-reported/33195690?absolute=true"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.0183787,
42.0834335
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/25/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Decatur, IL",
"City": "Decatur",
"County": "Macon County",
"State": "IL",
"References": [
"http://herald-review.com/news/local/crime-and-courts/decatur-man-killed-four-wounded-in-shooting-at-club-maxey/article_2c850ef3-21f1-5830-80df-3d430638b068.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.9548001,
39.8403147
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/26/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2015/05/2_killed_2_injured_shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/28/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Omaha, NE",
"City": "Omaha",
"County": "Douglas County",
"State": "NE",
"References": [
"http://www.wowt.com/home/headlines/Four-Wounded-In-Shooting-305416711.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99798829999999,
41.2523634
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/28/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chester, PA",
"City": "Chester",
"County": "Delaware County",
"State": "PA",
"References": [
"http://6abc.com/news/1-dead-3-wounded-in-chester-shooting/751826/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.3557457,
39.849557
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/28/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Chicago, Il",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.dnainfo.com/chicago/20150529/west-englewood/toddler-among-five-wounded-west-englewood-shooting-police-say"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/29/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.cbs8.com/story/29196990/4-shot-at-bar-swat-standoff-underway"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/30/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "San Diego, CA",
"City": "San Diego",
"County": "San Diego County",
"State": "CA",
"References": [
"http://www.cbs8.com/story/29196990/4-shot-at-bar-swat-standoff-underway"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-117.1610838,
32.715738
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/30/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "North Amityville, NY",
"City": "North Amityville",
"County": "Suffolk County",
"State": "NY",
"References": [
"http://newyork.cbslocal.com/2015/05/30/north-amityville-fight/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.4098154,
40.6988709
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/31/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Cleveland, OH",
"City": "Cleveland",
"County": "Cuyahoga County",
"State": "OH",
"References": [
"http://www.wkyc.com/story/news/local/cleveland/2015/05/31/lavern-ave-shooting/28285919/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6943605,
41.49932
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/31/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Conyers, GA",
"City": "Conyers",
"County": "Rockdale County",
"State": "GA",
"References": [
"http://www.rockdalecitizen.com/news/2015/may/31/one-dead-three-wounded-in-shooting-rampage-in/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.01769039999999,
33.6676103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/31/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Springdale, MD",
"City": "Springdale",
"County": "Prince George's County",
"State": "MD",
"References": [
"http://www.nbcwashington.com/news/local/One-Dead-Three-Injured-in-Shooting-at-Prince-George-Co-Park-305617831.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.8388602,
38.9376113
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "5/31/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "New Haven, CT",
"City": "New Haven",
"County": "New Haven County",
"State": "CT",
"References": [
"http://www.nbcconnecticut.com/news/local/Five-People-Shot-at-New-Haven-Party-305604931.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-72.9278835,
41.308274
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/2/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Anniston, AL",
"City": "Anniston",
"County": "Calhoun County",
"State": "AL",
"References": [
"http://www.al.com/news/anniston-gadsden/index.ssf/2015/06/4_people_shot_in_anniston_disp.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.8316318,
33.6598257
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/3/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Wyandanch, NY",
"City": "Wyandanch",
"County": "Suffolk County",
"State": "NY",
"References": [
"http://www.nbcnewyork.com/news/local/3-Dead-Wyandanch-Long-Island-Shooting-Police-306096381.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.360398,
40.7539878
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/5/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Davenport, IA",
"City": "Davenport",
"County": "Scott County",
"State": "IA",
"References": [
"http://qctimes.com/news/local/injured-in-shooting-in-davenport/article_a7b33225-4ada-50d6-805e-474aa473c9ff.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.5776367,
41.5236437
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/5/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.wdsu.com/news/local-news/new-orleans/nopd-responding-to-multiple-people-shot-near-trem-seventh-ward/33423652?absolute=true"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/6/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/news/5-injured-in-south-austin-shooting/769688/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/6/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Buffalo, NY",
"City": "Buffalo",
"County": "Erie County",
"State": "NY",
"References": [
"http://wivb.com/2015/06/06/buffalo-police-investigate-triple-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8783689,
42.88644679999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/7/15",
"Shooter": "Michael Augustine Bournes",
"Dead": 5,
"Injured": 0,
"Location": "Deer Lodge, MT",
"City": "Deer Lodge",
"County": "Powell County",
"State": "MT",
"References": [
"http://www.krtv.com/story/29277717/victims-identified-in-murders-suicide-near-deer-lodge"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.7383721,
46.3990941
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/9/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.stltoday.com/news/local/crime-and-courts/woman-dead-wounded-by-gunfire-in-north-st-louis-park/article_e5e1e823-c09f-579f-8d3d-5d81401b269b.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/10/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Cincinnati, OH",
"City": "Cincinnati",
"County": "Hamilton County",
"State": "OH",
"References": [
"http://www.wlwt.com/news/police-investigating-after-3-people-shot-in-evanston/33507594"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5120196,
39.1031182
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/10/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://abc7.com/news/1-dead-3-wounded-in-south-la-shooting/776768/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/11/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 8,
"Location": "Bridgeport, CT",
"City": "Bridgeport",
"County": "Fairfield County",
"State": "CT",
"References": [
"http://news.yahoo.com/nine-wounded-one-dead-shooting-connecticut-apartment-media-094718511.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.19517669999999,
41.1865478
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/11/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://abc13.com/news/one-dead-several-injured-after-third-ward-shooting/777883/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/12/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://miami.cbslocal.com/2015/06/12/several-people-injured-in-shooting-outside-miami-club/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/13/15",
"Shooter": "Patrick Solis & Donald Walters",
"Dead": 0,
"Injured": 4,
"Location": "Oklahoma City, OK",
"City": "Oklahoma City",
"County": "Oklahoma County",
"State": "OK",
"References": [
"http://www.okcfox.com/story/29315672/four-injured-in-drive-by-shooting-2-arrested"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.5164276,
35.4675602
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/13/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Bronx, NY",
"County": "Bronx County",
"State": "NY",
"References": [
"http://www.nbcnewyork.com/news/local/Suspect-Sought-5-Shot-Bronx-NYPD-307540851.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.86542949999999,
40.8370495
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/13/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.tulsaworld.com/news/crimewatch/four-hospitalized-in-overnight-shooting-at-north-tulsa-party/article_cdb02e7a-c686-58c0-971a-3638aff44fd7.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/13/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 1,
"Location": "Columbus, OH",
"City": "Columbus",
"County": "Franklin County",
"State": "OH",
"References": [
"http://abcnews.go.com/US/wireStory/police-dead-injured-shooting-ohio-home-31741950"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.99879419999999,
39.9611755
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/13/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.kmov.com/story/29315038/saturday-night-party-ends-in-quadruple-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/13/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Fayette County, GA",
"County": "Fayette County",
"State": "GA",
"References": [
"http://www.11alive.com/story/news/crime/2015/06/14/fayette-fatal-pool-party-shooting/71207432/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.4802606,
33.4502206
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/14/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Camden, NJ",
"City": "Camden",
"County": "Camden County",
"State": "NJ",
"References": [
"http://www.courierpostonline.com/story/news/crime/2015/06/14/camden-shooting-leaves-injured/71207522/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1196199,
39.9259463
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/14/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Milledgeville, GA",
"City": "Milledgeville",
"County": "Baldwin County",
"State": "GA",
"References": [
"http://www.macon.com/2015/06/14/3796263/one-killed-three-wounded-in-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.2320991,
33.0801429
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/15/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.nydailynews.com/new-york/nyc-crime/4-shot-1-slashed-brooklyn-bar-sources-article-1.2258318"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/16/15",
"Shooter": "Ivan Clark",
"Dead": 0,
"Injured": 4,
"Location": "Miami Gardens, FL",
"City": "Miami Gardens",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.nbcmiami.com/news/local/Four-People-Shot-in-Miami-Gardens-Police-307722511.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.2456045,
25.9420377
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/17/15",
"Shooter": "Dylan Roof",
"Dead": 9,
"Injured": 0,
"Location": "Charleston, SC",
"City": "Charleston",
"County": "Charleston County",
"State": "SC",
"References": [
"http://www.usatoday.com/story/news/nation/2015/06/17/charleston-south-carolina-shooting/28902017/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.93105120000001,
32.7764749
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/19/15",
"Shooter": "Zackary Alvarado",
"Dead": 0,
"Injured": 4,
"Location": "Woonsocket, RI",
"City": "Woonsocket",
"County": "Providence County",
"State": "RI",
"References": [
"http://m.providencejournal.com/article/20150619/NEWS/150619206/14110"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.51478390000001,
42.00287609999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/20/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 10,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.cnn.com/2015/06/21/us/philadelphia-block-party-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/20/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 11,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.cnn.com/2015/06/21/us/detroit-birthday-party-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/21/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Lexington, KY",
"City": "Lexington",
"County": "Fayette County",
"State": "KY",
"References": [
"http://www.wkyt.com/home/headlines/Several-people-injured-in-shooting-at-Douglass-Park-in-Lexington.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5037164,
38.0405837
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/21/15",
"Shooter": "Russell Smith",
"Dead": 4,
"Injured": 0,
"Location": "Roy, UT",
"City": "Roy",
"County": "Weber County",
"State": "UT",
"References": [
"http://www.wkyt.com/home/headlines/Several-people-injured-in-shooting-at-Douglass-Park-in-Lexington.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0263313,
41.1616108
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/22/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.philly.com/philly/news/breaking/20150623_Seven_people_shot_in_Kensington.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/23/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/news/1-dead-3-injured-in-bronzeville-shooting/802755/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/23/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Breaux Bridge, LA",
"City": "Breaux Bridge",
"County": "St Martin Parish",
"State": "LA",
"References": [
"http://www.katc.com/story/29392606/3-dead-1-injured-in-breaux-bridge-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-91.8992837,
30.2735323
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/24/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Manhattan, NY",
"City": "New York",
"County": "New York County",
"State": "NY",
"References": [
"http://www.nytimes.com/2015/06/25/nyregion/four-wounded-in-upper-manhattan-shooting.html?_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9712488,
40.7830603
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/25/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.theneworleansadvocate.com/news/12756595-171/violent-night-in-new-orleans"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/26/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://detroit.cbslocal.com/2015/06/27/4-men-shot-at-block-party-in-detroit/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/27/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Greenacres, FL",
"City": "Greenacres",
"County": "Palm Beach County",
"State": "FL",
"References": [
"http://www.palmbeachpost.com/news/news/crime-law/greenacres-police-probe-report-of-shooting/nmm6y/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1353896,
26.6276276
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/27/15",
"Shooter": "Roosevelt Holmes",
"Dead": 1,
"Injured": 3,
"Location": "Hartford, CT",
"City": "Hartford",
"County": "Hartford County",
"State": "CT",
"References": [
"http://connecticut.cbslocal.com/2015/06/28/shooting-at-hartford-basketball-tournament-leaves-4-hurt/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-72.6850932,
41.76371109999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/27/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Taunton, MA",
"City": "Taunton",
"County": "Bristol County",
"State": "MA",
"References": [
"http://www.turnto10.com/story/29424942/one-dead-three-others-injured-in-taunton-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.0897674,
41.900101
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/28/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Harrington, DE",
"City": "Harrington",
"County": "Kent County",
"State": "DE",
"References": [
"http://www.doverpost.com/article/20150628/NEWS/150629891"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.5777033,
38.9237244
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/28/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.freep.com/story/news/local/michigan/detroit/2015/06/29/block-party-shooting/29451529/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/28/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Venice, IL",
"City": "Venice",
"County": "Madison County",
"State": "IL",
"References": [
"http://thetelegraph.com/news/3391/autopsy-man-killed-in-granite-city-crash-had-been-shot"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.169832,
38.6722727
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "6/29/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Opa-locka, FL",
"City": "Opa-locka",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.wsvn.com/story/29437311/4-shot-in-opa-locka-neighborhood"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.25032709999999,
25.9023168
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/1/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.nj.com/essex/index.ssf/2015/07/five_people_wounded_in_multiple_newark_shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/1/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.indystar.com/story/news/crime/2015/07/03/one-killed-three-injured-drive-shooting/29659359/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/3/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.myfoxphilly.com/story/29468719/2-dead-2-wounded-in-nicetown-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/4/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Washington, D.C.",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.wusa9.com/story/news/local/dc/2015/07/05/4-shot-1-killed-in-se-dc-shooting/29731213/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/4/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Pittsfield, MA",
"City": "Pittsfield",
"County": "Berkshire County",
"State": "MA",
"References": [
"http://www.masslive.com/news/index.ssf/2015/07/pittsfield_shooting_leaves_1_d.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.2453824,
42.4500845
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/4/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "San Antonio, TX",
"City": "San Antonio",
"County": "Bexar County",
"State": "TX",
"References": [
"http://www.mysanantonio.com/news/local/article/Police-Fight-over-women-led-to-North-Side-6366733.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-98.49362819999999,
29.4241219
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/4/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Syracuse, NY",
"City": "Syracuse",
"County": "Onondaga County",
"State": "NY",
"References": [
"http://www.syracuse.com/crime/index.ssf/2015/07/4_people_shot_as_suspect_opens_fire_on_syracuse_crowd_watching_july_4th_firework.html#incart_story_package"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.14742439999999,
43.0481221
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 9,
"Location": "Fort Wayne, IN",
"City": "Fort Wayne",
"County": "Allen County",
"State": "IN",
"References": [
"http://wane.com/2015/07/05/nine-people-hurt-in-early-morning-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.1393513,
41.079273
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 8,
"Location": "Shreveport, LA",
"City": "Shreveport",
"County": "Caddo Parish",
"State": "LA",
"References": [
"http://www.ksla.com/story/29477516/8-injured-in-overnight-shooting-in-w-shreveport"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.7501789,
32.5251516
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Rock Hill, SC",
"City": "Rock Hill",
"County": "York County",
"State": "SC",
"References": [
"http://www.charlotteobserver.com/news/local/crime/article26552740.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.02507840000001,
34.9248667
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/5/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "East Orange, NJ",
"City": "East Orange",
"County": "Essex County",
"State": "NJ",
"References": [
"http://newyork.cbslocal.com/2015/07/06/east-orange-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.2048677,
40.767323
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/7/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://www.wbal.com/article/116967/40/4-shot-3-dead-just-blocks-from-umb-campus"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/12/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Jersey City, NJ",
"City": "Jersey City",
"County": "Hudson County",
"State": "NJ",
"References": [
"http://www.nj.com/hudson/index.ssf/2015/07/four_people_injured_in_jersey_city_shooting_police.html#incart_river"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.0776417,
40.72815749999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/12/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "River Forest, IL",
"City": "River Forest",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.cbslocal.com/2015/07/12/cop-wounded-in-river-forest-shootout-neighbor-says/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.81394829999999,
41.8978091
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/12/15",
"Shooter": "Marquiles Whaley",
"Dead": 3,
"Injured": 1,
"Location": "Baton Rouge, LA",
"City": "Baton Rouge",
"County": "East Baton Rouge Parish",
"State": "LA",
"References": [
"http://theadvocate.com/news/12895241-171/three-dead-one-wounded-in"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-91.1403196,
30.4582829
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/13/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Stockton, CA",
"City": "Stockton",
"County": "San Joaquin County",
"State": "CA",
"References": [
"http://sacramento.cbslocal.com/2015/07/13/1-dead-4-injured-in-stockton-shooting-2/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.2907796,
37.9577016
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/14/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.stltoday.com/news/local/crime-and-courts/four-shot-one-critically-injured-in-shooting-near-halls-ferry/article_efb36b2b-1654-5f7f-b86f-d88cf9cfdbcf.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/15/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://www.baltimoresun.com/news/maryland/crime/blog/bs-md-ci-shootings-20150715-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/15/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 1,
"Location": "Holly Hill, SC",
"City": "Holly Hill",
"County": "Orangeburg County",
"State": "SC",
"References": [
"http://abcnews.go.com/US/wireStory/sheriffs-office-people-killed-home-south-carolina-32464912"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.41370370000001,
33.3226624
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/15/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Cleaveland, OH",
"City": "Cleveland",
"County": "Cuyahoga County",
"State": "OH",
"References": [
"http://fox8.com/2015/07/16/at-least-7-injured-in-overnight-drive-by-shooting-on-clevelands-east-side/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6943605,
41.49932
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/15/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.clickondetroit.com/news/4-people-shot-in-driveby-shooting-on-detroits-west-side/34189762"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/15/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Atlanta, GA",
"City": "Atlanta",
"County": "Fulton County",
"State": "GA",
"References": [
"http://www.wsbtv.com/news/news/local/double-shooting-investigated-nw-atlanta/nmzQt/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3879824,
33.7489954
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/16/15",
"Shooter": "Muhammad Youssef Abdulazeez",
"Dead": 5,
"Injured": 3,
"Location": "Chattanooga, TN",
"City": "Chattanooga",
"County": "Hamilton County",
"State": "TN",
"References": [
"http://www.cbsnews.com/news/report-police-officer-shot-near-tennessee-army-recruiting-center/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.3096801,
35.0456297
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/16/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Dallas, TX",
"City": "Dallas",
"County": "Dallas County",
"State": "TX",
"References": [
"http://www.wfaa.com/story/news/crime/2015/07/17/three-shot-in-grocery-store-ambush/30285841/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-96.79698789999999,
32.7766642
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/17/15",
"Shooter": "Clement Dwight Cooper and Michael Antonio Long",
"Dead": 1,
"Injured": 5,
"Location": "Columbus, OH",
"City": "Columbus",
"County": "Franklin County",
"State": "OH",
"References": [
"http://nbc4i.com/2015/07/17/1-dead-4-injured-in-west-columbus-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.99879419999999,
39.9611755
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/17/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Cincinnati, OH",
"City": "Cincinnati",
"County": "Hamilton County",
"State": "OH",
"References": [
"http://www.cincinnati.com/story/news/2015/07/17/sunshine-avenue-shooting/30327115/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5120196,
39.1031182
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/17/15",
"Shooter": "Anthony Lord",
"Dead": 2,
"Injured": 4,
"Location": "Aroostook County, ME",
"County": "Aroostook County",
"State": "ME",
"References": [
"http://www.pressherald.com/2015/07/17/town-of-lee-shut-down-for-manhunt/",
"http://bangordailynews.com/2015/07/20/news/aroostook/lord-confessed-to-shooting-spree-that-left-2-dead-says-affidavit/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-68.4766064,
46.819941
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/17/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.nbcwashington.com/news/local/Three-People-Shot-in-Northeast-DC--316481771.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/17/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.nbcchicago.com/news/local/chicago-violence-five-shot-west-garfield-park-friday-316363111.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/18/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Baton Rouge, LA",
"City": "Baton Rouge",
"County": "East Baton Rouge Parish",
"State": "LA",
"References": [
"http://www.wafb.com/story/29580203/two-dead-two-hospitalized-in-brice-street-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-91.1403196,
30.4582829
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/18/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Salem, OR",
"City": "Salem",
"County": "Marion County",
"State": "OR",
"References": [
"http://www.kval.com/news/local/1-dead-3-injured-in-Salem-strip-club-shooting-316933861.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-123.0350963,
44.9428975
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/19/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Louisville, KY",
"City": "Louisville",
"County": "Jefferson County",
"State": "KY",
"References": [
"http://www.14news.com/story/29581038/7-people-shot-inside-louisville-nightclub-suspect-at-large"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.7584557,
38.2526647
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/19/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Suffolk, VA",
"City": "Suffolk",
"State": "VA",
"References": [
"http://wtkr.com/2015/07/19/four-people-shot-in-suffolk/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.5835621,
36.7282054
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/20/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Bronx, NY",
"County": "Bronx County",
"State": "NY",
"References": [
"http://www.nydailynews.com/new-york/nyc-crime/5-youths-wounded-gunfire-erupts-barbecue-bronx-park-article-1.2297516"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.86542949999999,
40.8370495
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/21/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Miami Gardens, FL",
"City": "Miami Gardens",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.wsvn.com/story/29597409/shooting-outside-miami-gardens-night-club-leaves-1-dead"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.2456045,
25.9420377
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/22/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 1,
"Location": "Forsyth County, GA",
"County": "Forsyth County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/crime-law/three-people-dead-two-wounded-in-forsyth-county-sh/nm4jg/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.14351359999999,
34.2358502
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/23/15",
"Shooter": "John Russell Houser",
"Dead": 3,
"Injured": 9,
"Location": "Lafayette, LA",
"City": "Lafayette",
"County": "Lafayette Parish",
"State": "LA",
"References": [
"http://www.latimes.com/nation/la-na-louisiana-movie-theater-shooting-20150724-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-92.0198427,
30.2240897
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/25/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "Erie, PA",
"City": "Erie",
"County": "Erie County",
"State": "PA",
"References": [
"http://www.erietvnews.com/story/29640437/4th-gun-recovered-in-investigation-into-deadly-shootout",
"http://www.erietvnews.com/story/29630640/erie-teen-killed-5-more-injured-in-overnight-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.085059,
42.12922409999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/25/15",
"Shooter": "William Timothy Faust",
"Dead": 0,
"Injured": 4,
"Location": "Hopewell, VA",
"City": "Hopewell",
"State": "VA",
"References": [
"http://www.nbc12.com/story/29682598/police-make-arrest-in-shotgun-shooting-that-injured-4-in-hopewell"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.28720009999999,
37.3043154
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/26/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.wthr.com/story/29633647/multiple-people-wounded-in-near-downtown-shooting-incident-with-police-officers"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/26/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Kansas City, MO",
"City": "KCMO",
"County": "Jackson County",
"State": "MO",
"References": [
"http://www.reuters.com/article/2015/07/26/us-usa-crime-missouri-idUSKCN0Q00QF20150726"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.5785667,
39.0997265
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/26/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2015/07/4_shot_in_assault_rifle_attack.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/27/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Rockford, IL",
"City": "Rockford",
"County": "Winnebago County",
"State": "IL",
"References": [
"http://www.wifr.com/home/headlines/Five-People-Shot-at-House-Party-318631191.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.0939952,
42.2711311
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/28/15",
"Shooter": "Harley Wilder",
"Dead": 2,
"Injured": 2,
"Location": "West Frankfort, IL",
"City": "West Frankfort",
"County": "Franklin County",
"State": "IL",
"References": [
"http://www.wpsdlocal6.com/story/29660069/two-killed-two-injured-in-west-frankfort-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.9233622,
37.8985966
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "7/30/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Pittsburgh, PA",
"City": "Pittsburgh",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://www.wtae.com/news/12yearold-shot-in-homewood-north/34453952"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9958864,
40.44062479999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/1/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Orlando, FL",
"City": "Orlando",
"County": "Orange County",
"State": "FL",
"References": [
"http://www.orlandosentinel.com/news/breaking-news/os-victor-hernandez-shot-eye-orlando-20150803-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.3792365,
28.5383355
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/news/1-dead-4-injured-in-north-austin-shooting/898451/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 9,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://www.nytimes.com/2015/08/03/nyregion/9-injured-in-shooting-in-east-brooklyn.html?_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Savannah, GA",
"City": "Savannah",
"County": "Chatham County",
"State": "GA",
"References": [
"http://m.wtoc.com/wtoc/db_350145/contentdetail.htm?full=true&contentguid=lTj70D7u&pn=&ps=#display"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.09983419999999,
32.0835407
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/2/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://www.baltimoresun.com/news/maryland/crime/blog/bal-7-shot-in-single-incident-in-w-baltimore-neighborhood-20150802-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/3/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://nypost.com/2015/08/04/five-wounded-in-brooklyn-drive-by-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/4/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "St. Louis, MO",
"City": "St. Louis",
"State": "MO",
"References": [
"http://www.stltoday.com/news/local/crime-and-courts/two-men-killed-wounded-in-overnight-shootings-in-st-louis/article_5d1e6dce-ee47-5da2-8a78-65e0283841fc.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.19940419999999,
38.6270025
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/6/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Columbia, SC",
"City": "Columbia",
"County": "Richland County",
"State": "SC",
"References": [
"http://www.wltx.com/story/news/2015/08/07/four-people-shot-columbia-suspect-wanted/31300491/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.0348144,
34.0007104
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/7/15",
"Shooter": "Jody Herring",
"Dead": 4,
"Injured": 0,
"Location": "Barre, VT",
"City": "Barre",
"County": "Washington County",
"State": "VT",
"References": [
"http://www.wcax.com/story/29740309/3-women-found-dead-in-berlin-related-to-barre-shooting-suspect"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-72.50204939999999,
44.1970055
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/8/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Gastonia, NC",
"City": "Gastonia",
"County": "Gaston County",
"State": "NC",
"References": [
"http://www.nbcnews.com/news/us-news/gaston-county-shooting-five-shot-including-two-police-officers-n406611"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.18730049999999,
35.262082
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/8/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 11,
"Location": "Blytheville, AR",
"City": "Blytheville",
"County": "Mississippi County",
"State": "AR",
"References": [
"http://www.therepublic.com/view/story/7f29eae4bf1f48c79d31b1e53dbc19a0/AR--Blytheville-Slaying"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.9189753,
35.9272953
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/8/15",
"Shooter": "David Conley",
"Dead": 8,
"Injured": 0,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.usatoday.com/story/news/nation/2015/08/10/victims-shooting-mourned/31398681/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/9/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Forest, MS",
"City": "Forest",
"County": "Scott County",
"State": "MS",
"References": [
"http://www.wapt.com/news/central-mississippi/woman-killed-in-forest-shooting/34631886"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.47423479999999,
32.3645888
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/9/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Detroit, MI",
"City": "Detroit",
"County": "Wayne County",
"State": "MI",
"References": [
"http://www.detroitnews.com/story/news/local/detroit-city/2015/08/10/dead-wounded-overnight-detroit-shootings/31403023/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0457538,
42.331427
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/10/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Long Beach, CA",
"City": "Long Beach",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-4-shot-in-long-beach-gunman-at-large-20150810-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.1937395,
33.7700504
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/15/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Pittsburgh, PA",
"City": "Pittsburgh",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://www.wpxi.com/news/news/local/3-shot-1-dead-west-end-shooting/nnK5P/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9958864,
40.44062479999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/15/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Orangeburg, SC",
"City": "Orangeburg",
"County": "Orangeburg County",
"State": "SC",
"References": [
"http://thetandd.com/news/drive-by-shooter-kills-injures/article_5a98e314-e6f4-5ab0-b54f-431853f606ff.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8556476,
33.4918203
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/15/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://abc7.com/news/4-people-in-car-injured-after-gunman-opens-fire-in-south-los-angeles/935475/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/16/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Miami, FL",
"City": "Miami",
"County": "Miami-Dade County",
"State": "FL",
"References": [
"http://www.miamiherald.com/news/local/community/miami-dade/article31249055.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1917902,
25.7616798
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/16/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Fort Worth, TX",
"City": "Fort Worth",
"County": "Tarrant County",
"State": "TX",
"References": [
"http://www.star-telegram.com/news/local/community/fort-worth/article31246733.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.3307658,
32.7554883
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/16/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Bennettsville, SC",
"City": "Bennettsville",
"County": "Marlboro County",
"State": "SC",
"References": [
"http://www.wfxg.com/story/29803458/five-people-shot-at-bennettsville-club-early-sunday-morning-officials-state"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.68478139999999,
34.6173803
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/16/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.dnainfo.com/chicago/20150816/austin/3-men-1-female-passerby-injured-austin-party-shooting-police-say"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/19/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 4,
"Location": "Rochester, NY",
"City": "Rochester",
"County": "Monroe County",
"State": "NY",
"References": [
"http://abcnews.go.com/US/wireStory/killed-wounded-shooting-western-york-33194354"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.6109219,
43.16103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/20/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Starr County, TX",
"County": "Starr County",
"State": "TX",
"References": [
"http://www.themonitor.com/news/local/two-dead-two-injured-in-starr-county-shooting/article_37057292-47b8-11e5-8a52-ab722992a66f.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-98.7481167,
26.6215167
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/21/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 8,
"Location": "Durham, NC",
"City": "Durham",
"County": "Durham County",
"State": "NC",
"References": [
"http://wncn.com/2015/08/22/7-injured-in-durham-drive-by-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.898619,
35.9940329
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/21/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 1,
"Location": "Roswell, NM",
"City": "Roswell",
"County": "Chaves County",
"State": "NM",
"References": [
"http://www.kob.com/article/stories/s3886264.shtml#.VdtF_PlVhHw"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.5230242,
33.3942655
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/21/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 5,
"Location": "Cincinnati, OH",
"City": "Cincinnati",
"County": "Hamilton County",
"State": "OH",
"References": [
"http://www.cincinnati.com/story/news/2015/08/22/police-5-injured-2-dead--madisonville-shooting/32189603/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5120196,
39.1031182
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/21/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Pine Hills, FL",
"City": "Pine Hills",
"County": "Orange County",
"State": "FL",
"References": [
"http://www.orlandosentinel.com/news/breaking-news/os-three-shot-gas-station-pine-hills-20150822-story.html#"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.4534046,
28.5577794
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/22/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 7,
"Location": "Modesto, CA",
"City": "Modesto",
"County": "Stanislaus County",
"State": "CA",
"References": [
"http://www.nbcnews.com/news/us-news/after-california-music-festival-shooting-leaves-1-dead-7-injured-n414561"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.9968782,
37.63909719999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/25/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2015/08/new_orleans_homicide.html#incart_story_package"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/26/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Brooklyn Center, MN",
"City": "Brooklyn Center",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://minnesota.cbslocal.com/2015/08/26/4-shot-injured-in-brooklyn-center-home-invasion/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.3327283,
45.076076
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/26/15",
"Shooter": "Vester Flanagan (aka Bryce Williams)",
"Dead": 3,
"Injured": 1,
"Location": "Moneta, VA",
"City": "Moneta",
"County": "Bedford County",
"State": "VA",
"References": [
"http://www.nytimes.com/2015/08/27/us/wdbj7-virginia-journalists-shot-during-live-broadcast.html?emc=edit_na_20150826&nlid=54192941&ref=headline&_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.6172536,
37.18125360000001
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/26/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "West Palm Beach, FL",
"City": "West Palm Beach",
"County": "Palm Beach County",
"State": "FL",
"References": [
"http://www.palmbeachpost.com/news/news/crime-law/police-more-than-one-injured-in-west-palm-beach-sh/nnRYF/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.0533746,
26.7153424
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/26/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.chicagotribune.com/news/local/breaking/ct-3-shot-in-east-garfield-park-20150826-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/27/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Salinas, CA",
"City": "Salinas",
"County": "Monterey County",
"State": "CA",
"References": [
"http://www.ksbw.com/news/two-dead-two-wounded-in-salinas-shooting/34949818"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.6555013,
36.6777372
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/28/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Brooklyn, NY",
"City": "New York",
"County": "Kings County",
"State": "NY",
"References": [
"http://newyork.cbslocal.com/2015/08/28/deadly-brooklyn-lounge-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9441579,
40.6781784
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/29/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Smith County, TX",
"County": "Smith County",
"State": "TX",
"References": [
"http://www.cbs19.tv/story/29913661/victim-identified-in-truck-stop-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3102505,
32.3352505
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/29/15",
"Shooter": "Robert Seth Denton",
"Dead": 3,
"Injured": 2,
"Location": "Bristol, TN",
"City": "Bristol",
"County": "Sullivan County",
"State": "TN",
"References": [
"http://abcnews.go.com/US/wireStory/dead-injured-shooting-spree-tennessee-33417102"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.18874439999999,
36.5951059
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/29/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Macon, GA",
"City": "Macon",
"County": "Bibb County",
"State": "GA",
"References": [
"http://www.macon.com/news/local/crime/article32791677.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.6324022,
32.8406946
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/30/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://www.wmcactionnews5.com/story/29916653/1-dead-4-injured-in-shooting-on-sobota-circle"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "8/30/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Muskegon Heights, MI",
"City": "Muskegon Heights",
"County": "Muskegon County",
"State": "MI",
"References": [
"http://woodtv.com/2015/08/30/3-shot-in-muskegon-heights/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.23894639999999,
43.2011264
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/1/15",
"Shooter": "Lyndon Beharry",
"Dead": 4,
"Injured": 0,
"Location": "Long Branch, NJ",
"City": "Long Branch",
"County": "Monmouth County",
"State": "NJ",
"References": [
"http://6abc.com/news/family-shot-in-murder-suicide-before-nj-fire-prosecutors-say/969948/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9923596,
40.30427780000001
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/5/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Charlotte, NC",
"City": "Charlotte",
"County": "Mecklenburg County",
"State": "NC",
"References": [
"http://wtop.com/national/2015/09/police-girl-9-dead-3-hurt-after-north-carolina-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8431267,
35.2270869
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/5/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Columbus, MO",
"City": "Columbus",
"County": "Johnson County",
"State": "MO",
"References": [
"http://www.abc17news.com/news/four-injured-following-shooting-at-columbia-vfw/35121054"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.8907751,
38.8586209
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/5/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Daytona Beach, FL",
"City": "Daytona Beach",
"County": "Volusia County",
"State": "FL",
"References": [
"http://www.wftv.com/news/news/local/police-4-shot-outside-daytona-beach-nightclub/nnYsn/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.0228331,
29.2108147
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/5/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Las Vegas, NV",
"City": "Las Vegas",
"County": "Clark County",
"State": "NV",
"References": [
"http://www.fox5vegas.com/story/29967889/1-killed-3-injured-in-shooting-on-eastside"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-115.1398296,
36.1699412
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/7/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Denver, CO",
"City": "Denver",
"County": "Denver County",
"State": "CO",
"References": [
"http://www.9news.com/story/news/crime/2015/09/07/4-injured-downtown-denver-shooting/71833624/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.990251,
39.7392358
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/7/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://www.nbcwashington.com/news/local/Multiple-People-Shot-in-Southeast-DC-Incident-325529391.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/8/15",
"Shooter": "Brian Short",
"Dead": 5,
"Injured": 0,
"Location": "Minneapolis, MN",
"City": "Minneapolis",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://www.chron.com/news/crime/article/Authorities-Minnesota-family-died-in-6500498.php"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2650108,
44.977753
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/8/15",
"Shooter": "Unkown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.suntimes.com/crime/7/71/941400/four-shot-englewood-backyard"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/8/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Manson, WA",
"City": "Manson",
"County": "Chelan County",
"State": "WA",
"References": [
"http://www.yakimaherald.com/news/crime_and_courts/dead-in-shooting-in-chelan-county/article_9ff488b6-5707-11e5-a337-a77b679c27c1.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-120.1567011,
47.8847447
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/11/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Charlotte, NC",
"City": "Charlotte",
"County": "Mecklenburg County",
"State": "NC",
"References": [
"http://www.wcnc.com/story/news/local/2015/09/11/breaking-3-people-shot--nc-music-factory/72117028/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8431267,
35.2270869
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/12/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Minneapolis, MN",
"City": "Minneapolis",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://www.startribune.com/one-killed-three-injured-in-early-morning-shooting/327025161/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2650108,
44.977753
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/12/15",
"Shooter": "Undisclosed",
"Dead": 0,
"Injured": 6,
"Location": "Minneapolis, MN",
"City": "Minneapolis",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://www.startribune.com/six-people-shot-overnight-near-target-center-in-downtown-minneapolis/327032521/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2650108,
44.977753
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/12/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 4,
"Location": "Rochester, NY",
"City": "Rochester",
"County": "Monroe County",
"State": "NY",
"References": [
"http://www.twcnews.com/nys/rochester/news/2015/09/12/woodward-street-shooting-.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.6109219,
43.16103
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/12/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Shreveport, LA",
"City": "Shreveport",
"County": "Caddo Parish",
"State": "LA",
"References": [
"http://www.arklatexhomepage.com/news/four-injured-in-caddo-heights-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.7501789,
32.5251516
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/13/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Ocala, FL",
"City": "Ocala",
"County": "Marion County",
"State": "FL",
"References": [
"http://www.mynews13.com/content/news/cfnews13/news/article.html/content/news/articles/cfn/2015/9/13/_1_dead_5_injured_in.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.14009229999999,
29.1871986
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/13/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Los Chavez, NM",
"City": "Los Chavez",
"County": "Valencia County",
"State": "NM",
"References": [
"http://krqe.com/2015/09/13/state-police-investigating-double-homicide-in-los-chaves/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-106.7554819,
34.736851
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/13/15",
"Shooter": "Rodney Chemin",
"Dead": 4,
"Injured": 0,
"Location": "Baker, LA",
"City": "Baker",
"County": "East Baton Rouge Parish",
"State": "LA",
"References": [
"http://theadvocate.com/news/13436293-100/four-found-dead-in-apparent"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-91.16816299999999,
30.5882429
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/15/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Newark, NJ",
"City": "Newark",
"County": "Essex County",
"State": "NJ",
"References": [
"http://www.nj.com/essex/index.ssf/2015/09/4_wounded_in_multiple_newark_shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.1723667,
40.735657
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/17/15",
"Shooter": "Undisclosed",
"Dead": 0,
"Injured": 4,
"Location": "Albion, MI",
"City": "Albion",
"County": "Calhoun County",
"State": "MI",
"References": [
"http://woodtv.com/2015/09/17/dispatchers-multiple-victims-in-albion-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.7530304,
42.243097
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/17/15",
"Shooter": "Scott Westerhuis",
"Dead": 6,
"Injured": 0,
"Location": "Platte, SD",
"City": "Platte",
"County": "Charles Mix County",
"State": "SD",
"References": [
"http://www.nbcnews.com/news/us-news/father-killed-wife-kids-suicide-prelim-autopsy-reveals-n431401?cid=sm_tw&hootPostID=1cbcc7d6cf3ec13f4bb8ee5651e7de1f"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-98.8445303,
43.3869397
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/19/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://www.indystar.com/story/news/crime/2015/09/19/4-people-shot-northside/72498548/",
"http://wishtv.com/2015/09/19/4-shot-including-juvenile-on-near-north-side/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/20/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 5,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://wgntv.com/2015/09/20/one-dead-11-injured-in-englewood-shooting-crash/",
"http://chicago.suntimes.com/crime/7/71/974500/police-1-killed-11-injured-englewood-shooting-crash"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/20/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 6,
"Location": "Tulsa, OK",
"City": "Tulsa",
"County": "Tulsa County",
"State": "OK",
"References": [
"http://www.newson6.com/story/30072412/six-shot-outside-tulsa-nightclub"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.99277500000001,
36.1539816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/21/15",
"Shooter": "Undisclosed",
"Dead": 2,
"Injured": 2,
"Location": "Sand City, CA",
"City": "Sand City",
"County": "Monterey County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-sand-city-police-shooting-20150921-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.8482855,
36.6171819
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/21/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://www.nbcphiladelphia.com/news/local/Tavern-Philadelphia-Shooting-Bikers-Fatal--328438681.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/23/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Fort Meyers, FL",
"City": "Fort Myers",
"County": "Lee County",
"State": "FL",
"References": [
"http://www.news-press.com/story/news/crime/2015/09/24/fort-myers-shooting-victim-identified/72733012/",
"http://www.winknews.com/2015/09/24/seven-people-shot-in-seven-hours-in-fort-myers/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.8723084,
26.640628
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/23/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Norcross, GA",
"City": "Norcross",
"County": "Gwinnett County",
"State": "GA",
"References": [
"http://www.wsbtv.com/ap/ap/georgia/police-1-dead-several-injured-in-norcross-shooting/nnmrT/",
"http://www.11alive.com/story/news/local/norcross/2015/09/24/police-one-dead-several-injured-norcross-shooting/72722640/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.2135309,
33.9412127
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/23/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Shreveport, LA",
"City": "Shreveport",
"County": "Caddo Parish",
"State": "LA",
"References": [
"http://www.arklatexhomepage.com/news/5-injured-in-shooting",
"http://www.ktbs.com/story/30103197/five-injured-in-peach-st-drive-by-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.7501789,
32.5251516
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/24/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/news/4-people-shot-in-back-of-the-yards-/1000927/",
"http://chicago.suntimes.com/crime/7/71/988138/four-shot-back-yards"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/25/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Danville, IL",
"City": "Danville",
"County": "Vermilion County",
"State": "IL",
"References": [
"http://www.wandtv.com/story/30123982/danville-police-investigating-may-street-shooting",
"http://www.commercial-news.com/news/four-injured-in-friday-night-shooting-in-danville/article_e128931c-649b-11e5-9476-af5ed178c329.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6300207,
40.124481
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/26/15",
"Shooter": "James Diaz",
"Dead": 2,
"Injured": 2,
"Location": "Banning, CA",
"City": "Banning",
"County": "Riverside County",
"State": "CA",
"References": [
"http://www.pe.com/articles/shooting-781634-officers-banning.html",
"http://www.desertsun.com/story/news/2015/09/26/shootings-two-dead-banning/72903096/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-116.8764103,
33.9255713
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/27/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Kansas City, MO",
"City": "KCMO",
"County": "Jackson County",
"State": "MO",
"References": [
"http://www.kmbc.com/news/police-4-shot-outside-18th-vine-jazz-club/35510854",
"http://www.kctv5.com/story/30125432/four-shot-outside-jazz-club-in-18th-vine-district"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-94.5785667,
39.0997265
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/27/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 10,
"Location": "Greenville, GA",
"City": "Greenville",
"County": "Meriwether County",
"State": "GA",
"References": [
"http://abcnews.go.com/US/wireStory/sheriff-11-people-injured-west-georgia-bar-shooting-34101372",
"http://www.ajc.com/news/news/crime-law/11-people-shot-inside-georgia-bar/nnpy2/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.7129848,
33.0287373
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/28/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 3,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://chicago.suntimes.com/news/7/71/996375/five-people-including-infant-shot-back-yards",
"http://www.chicagotribune.com/news/local/breaking/ct-chicago-family-shooting-20150929-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/28/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Cincinnati, OH",
"City": "Cincinnati",
"County": "Hamilton County",
"State": "OH",
"References": [
"http://www.cincinnati.com/story/news/2015/09/28/four-men-one-child-shot-evanston/73008124/",
"http://www.wcpo.com/news/local-news/hamilton-county/cincinnati/evanston/4-men-child-shot-in-evanston"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.5120196,
39.1031182
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/28/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Dayton, OH",
"City": "Dayton",
"County": "Montgomery County",
"State": "OH",
"References": [
"http://www.whio.com/news/news/crime-law/multiple-victims-reported-in-dayton-shooting/nnqSG/",
"http://wdtn.com/2015/09/29/investigation-underway-after-4-shot-in-dayton/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.1916069,
39.7589478
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "9/29/15",
"Shooter": "Unknown",
"Dead": 3,
"Injured": 2,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/news/3-dead-2-wounded-in-fuller-park-shooting/1007546/",
"http://wgntv.com/2015/09/29/3-dead-2-injured-in-fuller-park-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/1/15",
"Shooter": "Chris Harper-Mercer",
"Dead": 10,
"Injured": 7,
"Location": "Roseburg, OR",
"City": "Roseburg",
"County": "Douglas County",
"State": "OR",
"References": [
"http://www.oregonlive.com/pacific-northwest-news/index.ssf/2015/10/horror_in_roseburg_10_minutes.html#incart_maj-story-1",
"http://www.nytimes.com/2015/10/02/us/oregon-shooting-umpqua-community-college.html?hp&action=click&pgtype=Homepage&module=a-lede-package-region&region=top-news&WT.nav=top-news&_r=0"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-123.3417381,
43.216505
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/2/15",
"Shooter": "Undisclosed",
"Dead": 1,
"Injured": 4,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://washington.cbslocal.com/2015/10/02/report-4-injured-1-dead-in-reisterstown-road-shooting/",
"http://www.wbaltv.com/news/multiple-people-shot-in-northwest-baltimore/35622480"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/2/15",
"Shooter": "Walter A. Tyson",
"Dead": 3,
"Injured": 1,
"Location": "Inglis, FL",
"City": "Inglis",
"County": "Levy County",
"State": "FL",
"References": [
"http://www.fox13news.com/news/local-news/27686663-story?updates=",
"http://www.ibtimes.com/florida-shooting-3-killed-including-gunman-outside-inglis-town-hall-hours-after-2124331"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.6687161,
29.0302514
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/6/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://baltimore.cbslocal.com/2015/10/06/at-least-2-shot-in-baltimore/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/9/15",
"Shooter": "Steven Jones",
"Dead": 1,
"Injured": 3,
"Location": "Flagstaff, AZ",
"City": "Flagstaff",
"County": "Coconino County",
"State": "AZ",
"References": [
"http://abcnews.go.com/US/deadly-shooting-reported-northern-arizona-universitys-flagstaff-campus/story?id=34363113",
"http://www.usatoday.com/story/news/2015/10/09/one-person-dead-and-three-injured-in-shooting-at-northern-arizona-university/73639918/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-111.651302,
35.1982836
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/10/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Peoria, IL",
"City": "Peoria",
"County": "Peoria County",
"State": "IL",
"References": [
"http://www.centralillinoisproud.com/news/local-news/teenager-dies-in-early-morning-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-89.5889864,
40.6936488
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/10/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Charlotte, NC",
"City": "Charlotte",
"County": "Mecklenburg County",
"State": "NC",
"References": [
"http://www.wsoctv.com/news/news/local/1-person-seriously-injured-after-shooting-west-cha/nnzBY/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.8431267,
35.2270869
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/10/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Memphis, TN",
"City": "Memphis",
"County": "Shelby County",
"State": "TN",
"References": [
"http://wreg.com/2015/10/11/five-shot-one-ran-over-outside-hickory-hill-nightclub/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0489801,
35.1495343
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/12/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "DeKalb County, GA",
"County": "Dekalb County",
"State": "GA",
"References": [
"http://www.wsbtv.com/news/news/local/child-critical-following-quadruple-shooting-deK/nn2GZ/",
"http://patch.com/georgia/decatur/child-three-adults-injured-dekalb-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.2278796,
33.7956441
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/17/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Elkhart, IN",
"City": "Elkhart",
"County": "Elkhart County",
"State": "IN",
"References": [
"http://www.elkharttruth.com/news/crime-fire-courts/2015/10/17/Four-injured-in-overnight-shooting-at-The-Big-Easy-bar-in-Elkhart.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-85.9766671,
41.6819935
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/17/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Fort Meyers, FL",
"City": "Fort Myers",
"County": "Lee County",
"State": "FL",
"References": [
"http://www.news4jax.com/news/us-world-news/deadly-shooting-sparks-panic-at-zombicon/35907256",
"http://www.latimes.com/nation/nationnow/la-na-nn-zombicon-shooting-20151017-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.8723084,
26.640628
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/18/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.ksla.com/story/30291009/nopd-4-women-injured-following-lower-ninth-ward-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/19/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 7,
"Location": "Calumet City, IL",
"City": "Calumet City",
"County": "Cook County",
"State": "IL",
"References": [
"http://www.fox32chicago.com/news/local/36382222-story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.5294871,
41.6155909
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/23/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Nashville, TN",
"City": "Nashville",
"County": "Davidson County",
"State": "TN",
"References": [
"http://www.usatoday.com/story/news/nation-now/2015/10/23/3-shot-tennessee-campus-one-critical-condition/74444990/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.7816016,
36.1626638
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/24/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Bamberg, SC",
"City": "Bamberg",
"County": "Bamberg County",
"State": "SC",
"References": [
"http://thetandd.com/news/four-injured-in-bamberg-shooting/article_bd56a66a-cefe-5524-a65d-39d2ba4773f4.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.0348202,
33.2971012
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/25/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Washington, DC",
"City": "Washington",
"County": "District of Columbia",
"State": "DC",
"References": [
"http://wjla.com/news/local/5-injured-in-shooting-in-southeast-dc"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0368707,
38.9071923
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/25/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 4,
"Location": "Pheonix, AZ",
"City": "Phoenix",
"County": "Maricopa County",
"State": "AZ",
"References": [
"http://www.azfamily.com/story/30344012/pd-1-dead-4-injured-in-shooting-outside-phoenix-nightclub?autostart=true"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-112.0740373,
33.4483771
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/25/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Four Oaks, NC",
"City": "Four Oaks",
"County": "Johnston County",
"State": "NC",
"References": [
"http://www.wral.com/five-injured-in-johnston-county-shooting/15014504/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.4269489,
35.4448836
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/25/15",
"Shooter": "Rashawn Little",
"Dead": 2,
"Injured": 2,
"Location": "Pageland, SC",
"City": "Pageland",
"County": "Chesterfield County",
"State": "SC",
"References": [
"http://www.wsoctv.com/news/news/local/two-people-shot-one-killed-chesterfield-county/nn9BT/",
"http://www.abccolumbia.com/news/local/Suspect-accused-of-shooting-4-in-Pageland-captured-after-10-hour-manhunt-337118411.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.39173149999999,
34.7732102
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/26/15",
"Shooter": "Marquell Maurice Jackson, Corey James Cain, Diego Thomas",
"Dead": 0,
"Injured": 5,
"Location": "Evansville, IN",
"City": "Evansville",
"County": "Vanderburgh County",
"State": "IN",
"References": [
"http://www.tristatehomepage.com/news/local-news/several-injured-in-shooting-behind-evansville-bar",
"http://www.14news.com/story/30356421/epd-5-hurt-after-shooting-behind-711-tavern"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.5710898,
37.9715592
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/27/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Fort Worth, TX",
"City": "Fort Worth",
"County": "Tarrant County",
"State": "TX",
"References": [
"http://www.wfaa.com/story/news/local/tarrant-county/2015/10/27/five-injured-gunfire-fort-worth/74716370/",
"http://www.fox4news.com/news/39939044-story"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.3307658,
32.7554883
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/28/15",
"Shooter": "Elward Williams, Anthony Sylvester",
"Dead": 1,
"Injured": 3,
"Location": "Houma, LA",
"City": "Houma",
"County": "Terrebonne Parish",
"State": "LA",
"References": [
"http://www.wdsu.com/news/1-killed-in-quadruple-shooting/36107530",
"http://www.fox8live.com/story/30386078/arrest-warrants-issued-for-suspects-in-houma-quadruple-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.71953479999999,
29.5957696
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "10/31/15",
"Shooter": "Undisclosed",
"Dead": 4,
"Injured": 0,
"Location": "Colorado Springs, CO",
"City": "Colorado Springs",
"County": "El Paso County",
"State": "CO",
"References": [
"http://www.denverpost.com/news/ci_29052366/shooting-reported-near-downtown-colorado-springs"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.8213634,
38.8338816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/1/15",
"Shooter": "Unknown",
"Dead": 4,
"Injured": 0,
"Location": "Pendleton, SC",
"City": "Pendleton",
"County": "Anderson County",
"State": "SC",
"References": [
"http://www.foxcarolina.com/story/30411911/anderson-county-deputies-investigate-pendleton-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.7837514,
34.6517733
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/3/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Jacksonville, FL",
"City": "Jacksonville",
"County": "Duval County",
"State": "FL",
"References": [
"http://www.news4jax.com/news/1-dead-in-northwest-jacksonville/36241146"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.65565099999999,
30.3321838
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/3/15",
"Shooter": "John Howell",
"Dead": 2,
"Injured": 2,
"Location": "Harris County, TX",
"County": "Harris County",
"State": "TX",
"References": [
"http://abc13.com/news/two-dead-two-injured-in-shooting-in-nw-harris-county/1068207/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3102505,
29.7751825
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/4/15",
"Shooter": "Herman Derico",
"Dead": 4,
"Injured": 0,
"Location": "Oakland, ME",
"City": "Oakland",
"County": "Kennebec County",
"State": "ME",
"References": [
"http://www.wcsh6.com/story/news/2015/11/04/police-from-five-agencies-are-at-the-scene-of-a-reported-shooting-on-belgrade-road-in-oakland/75189082/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-69.72199499999999,
44.5402221
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/6/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Tallahassee, FL",
"City": "Tallahassee",
"County": "Leon County",
"State": "FL",
"References": [
"http://www.wctv.tv/home/headlines/Crime-Scene-in-Tallahassee-342183851.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-84.28073289999999,
30.4382559
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/6/15",
"Shooter": "Darius Ratcliff",
"Dead": 1,
"Injured": 3,
"Location": "Denver, CO",
"City": "Denver",
"County": "Denver County",
"State": "CO",
"References": [
"http://www.thedenverchannel.com/news/local-news/one-killed-three-wounded-in-shooting-at-bayaud-ave-and-bannock-st-in-denver"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.990251,
39.7392358
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/6/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Bakersfield, CA",
"City": "Bakersfield",
"County": "Kern County",
"State": "CA",
"References": [
"http://www.bakersfieldnow.com/news/local/Shooting-near--342248321.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.0187125,
35.3732921
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/8/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Des Moines, IA",
"City": "Des Moines",
"County": "Polk County",
"State": "IA",
"References": [
"http://whotv.com/2015/11/08/one-person-killed-in-early-morning-shooting-outside-nightclub/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.6091064,
41.6005448
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/8/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Warren, MI",
"City": "Warren",
"County": "Macomb County",
"State": "MI",
"References": [
"http://www.detroitnews.com/story/news/local/macomb-county/2015/11/08/shot-warren-hall-shooting/75416718/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-83.01465259999999,
42.5144566
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/9/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Indianapolis, IN",
"City": "Indianapolis",
"County": "Marion County",
"State": "IN",
"References": [
"http://cbs4indy.com/2015/11/09/multiple-people-shot-on-near-east-side-early-monday-morning/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-86.158068,
39.768403
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/13/15",
"Shooter": "Gawain Rushane Wilson",
"Dead": 4,
"Injured": 1,
"Location": "Jacksonville, FL",
"City": "Jacksonville",
"County": "Duval County",
"State": "FL",
"References": [
"http://www.wftv.com/news/ap/florida/infant-twins-among-4-killed-in-florida-domestic-sh/npNKJ/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.65565099999999,
30.3321838
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/14/15",
"Shooter": "John Revels",
"Dead": 3,
"Injured": 2,
"Location": "Los Angeles, CA",
"City": "Los Angeles",
"County": "Los Angeles County",
"State": "CA",
"References": [
"http://www.latimes.com/local/lanow/la-me-ln-man-wanted-in-deadly-killing-spree-kills-himself-as-cops-move-in-20151114-story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-118.2436849,
34.0522342
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/14/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Johnstown, PA",
"City": "Johnstown",
"County": "Cambria County",
"State": "PA",
"References": [
"http://www.wjactv.com/news/features/top-stories/stories/5-injured-overnight-shootings-johnstown-7599.shtml"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.9219698,
40.32674069999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/15/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Philadelphia, PA",
"City": "Philadelphia",
"County": "Philadelphia County",
"State": "PA",
"References": [
"http://6abc.com/news/4-hospitalized-after-shooting-in-east-mount-airy-/1086030/",
"http://philadelphia.cbslocal.com/2015/11/15/philadelphia-police-investigate-shooting-that-leaves-four-hospitalized/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1652215,
39.9525839
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/15/15",
"Shooter": "William Hudson",
"Dead": 6,
"Injured": 0,
"Location": "Anderson County, TX",
"County": "Anderson County",
"State": "TX",
"References": [
"http://crimeblog.dallasnews.com/2015/11/suspect-in-anderson-county-campsite-slayings-charged-with-six-counts-of-capital-murder.html/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.6457951,
31.776932
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/16/15",
"Shooter": "Donnie Lee Abernathy",
"Dead": 3,
"Injured": 1,
"Location": "Round Mountain, AL",
"County": "Lawrence County",
"State": "AL",
"References": [
"http://wiat.com/2015/11/16/3-dead-1-injured-after-cherokee-county-shooting/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.3364102,
34.5803704
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/16/15",
"Shooter": "Daniel Harris",
"Dead": 1,
"Injured": 5,
"Location": "Youngstown, OH",
"City": "Youngstown",
"County": "Mahoning County",
"State": "OH",
"References": [
"http://wkbn.com/2015/11/16/youngstown-police-investigating-shooting-at-southern-tavern/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-80.6495194,
41.0997803
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/17/15",
"Shooter": "Pascasio Arellano",
"Dead": 4,
"Injured": 0,
"Location": "Murray, KY",
"City": "Murray",
"County": "Calloway County",
"State": "KY",
"References": [
"http://bnonews.com/news/index.php/news/id2716"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-88.31476099999999,
36.6103334
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/18/15",
"Shooter": "Unknown",
"Dead": 5,
"Injured": 0,
"Location": "Fresno, CA",
"City": "Fresno",
"County": "Fresno County",
"State": "CA",
"References": [
"http://www.yourcentralvalley.com/news/five-injured-in-south-west-fresno-shooting"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-119.7725868,
36.7468422
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/20/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Pittsburgh, PA",
"City": "Pittsburgh",
"County": "Allegheny County",
"State": "PA",
"References": [
"http://triblive.com/news/allegheny/9479922-74/shortly-east-least#axzz3s2LF2D5A"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9958864,
40.44062479999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/21/15",
"Shooter": "Unknown ",
"Dead": 1,
"Injured": 3,
"Location": "Baltimore, MD",
"City": "Baltimore",
"State": "MD",
"References": [
"http://baltimore.cbslocal.com/2015/11/21/multiple-people-reportedly-shot-in-baltimore/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6121893,
39.2903848
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/22/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Newburgh, NY",
"City": "Newburgh",
"County": "Orange County",
"State": "NY",
"References": [
"http://www.recordonline.com/article/20151123/NEWS/151129781"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-74.0104178,
41.5034271
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/22/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 5,
"Location": "Seattle, WA",
"City": "Seattle",
"County": "King County",
"State": "WA",
"References": [
"http://www.komonews.com/news/local/5-injured-in-drive-by-shooting-on-Capitol-Hill-352946021.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-122.3320708,
47.6062095
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/22/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 4,
"Location": "Chicago, IL",
"City": "Chicago",
"County": "Cook County",
"State": "IL",
"References": [
"http://abc7chicago.com/news/four-shot-in-north-lawndale-police-say/1095371/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-87.6297982,
41.8781136
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/22/15",
"Shooter": "Marcos Antonio Hernandez",
"Dead": 0,
"Injured": 4,
"Location": "Brownsville, TX",
"City": "Brownsville",
"County": "Cameron County",
"State": "TX",
"References": [
"http://www.brownsvilleherald.com/news/local/article_918bd5a4-92cb-11e5-93a0-27d11413c3b4.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-97.4974838,
25.9017472
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/22/15",
"Shooter": "Unknown",
"Dead": 0,
"Injured": 17,
"Location": "New Orleans, LA",
"City": "New Orleans",
"County": "Orleans Parish",
"State": "LA",
"References": [
"http://www.nola.com/crime/index.ssf/2015/11/at_least_10_victims_of_bunny_f.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-90.0715323,
29.95106579999999
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/23/15",
"Shooter": "Allen Lawrence Scarsella, Nathan Gustavsson, Daniel Macey, and Joseph Backman",
"Dead": 0,
"Injured": 5,
"Location": "Minneapolis, MN",
"City": "Minneapolis",
"County": "Hennepin County",
"State": "MN",
"References": [
"http://www.nytimes.com/2015/11/26/us/4-arrested-in-shooting-at-black-lives-matter-protest-are-identified.html",
"https://www.washingtonpost.com/news/morning-mix/wp/2015/11/24/five-people-shot-near-minneapolis-protest-cops-searching-for-3-white-male-suspects/?hpid=hp_rhp-top-table-main_minneapolis-120am%3Ahomepage%2Fstory"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2650108,
44.977753
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/23/15",
"Shooter": "Barry Kirk",
"Dead": 4,
"Injured": 1,
"Location": "Columbus, OH",
"City": "Columbus",
"County": "Franklin County",
"State": "OH",
"References": [
"http://www.dispatch.com/content/stories/local/2015/11/23/Three-killed-in-police-shooting.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-82.99879419999999,
39.9611755
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/23/15",
"Shooter": "Undisclosed",
"Dead": 1,
"Injured": 3,
"Location": "Houston, TX",
"City": "Houston",
"County": "Harris County",
"State": "TX",
"References": [
"http://www.khou.com/story/news/crime/2015/11/24/1-dead-3-others-wounded-sw-houston-shooting/76299510/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3698028,
29.7604267
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/24/15",
"Shooter": "Undisclosed",
"Dead": 0,
"Injured": 4,
"Location": "Conway, SC",
"City": "Conway",
"County": "Horry County",
"State": "SC",
"References": [
"http://www.live5news.com/story/30602372/4-hospitalized-after-shooting-at-house-party-near-conway-police-say"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-79.0478143,
33.8360034
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/26/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Boston, MA",
"City": "Boston",
"County": "Suffolk County",
"State": "MA",
"References": [
"http://www.bostonglobe.com/metro/2015/11/26/one-killed-shooting-near-fenway/sJBRMenLOs5R103bWjdwAK/story.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-71.0588801,
42.3600825
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/27/15",
"Shooter": "Unknown",
"Dead": 2,
"Injured": 2,
"Location": "Sacramento, CA",
"City": "Sacramento",
"County": "Sacramento County",
"State": "CA",
"References": [
"http://www.kcra.com/news/two-dead-two-injured-in-sacramento-restaurant-shooting/36680932"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-121.4943996,
38.5815719
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "11/27/15",
"Shooter": "Robert Lewis Dear",
"Dead": 3,
"Injured": 9,
"Location": "Colorado Springs, CO",
"City": "Colorado Springs",
"County": "El Paso County",
"State": "CO",
"References": [
"http://www.cnn.com/2015/11/28/us/colorado-planned-parenthood-shooting/index.html"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-104.8213634,
38.8338816
],
"id": "unknown"
}
},
{
"type": "Feature",
"properties": {
"Date": "12/2/15",
"Shooter": "Unknown",
"Dead": 1,
"Injured": 3,
"Location": "Savannah, GA",
"City": "Savannah",
"County": "Chatham County",
"State": "GA",
"References": [
"http://www.ajc.com/news/news/crime-law/3-men-wounded-woman-killed-in-savannah-shooting/npbN6/"
]
},
"geometry": {
"type": "Point",
"coordinates": [
-81.09983419999999,
32.0835407
],
"id": "unknown"
}
}
]
}
body {
margin: 0;
padding: 0;
font-family: "Lato";
}
#mapDiv {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
max-width: 960px;
max-height1: 700px;
}
.reset {
padding-left: 1em;
font-size: smaller;
color: #ccc;
}
.ui-brusadfadsadsfah {
background: #f8f8f8;
position: absolute;
bottom: 35px;
right: 10px;
left: 10px;
height: 80px;
opacity: 0.5;
}
.brush .extent {
stroke: #fff;
fill-opacity: 0.125;
shape-rendering: crispEdges;
}
.chart {
display: inline-block;
height: 110px;
margin-bottom: 10px;
background: black; /*#f8f8f8;*/
position: absolute;
bottom: 25px;
right: 10px;
left: 10px;
opacity: 0.8;
padding: 10px;
width: 920px;
}
.title {
color: #fff;
}
path {
shape-rendering: crispEdges;
}
.background.bar {
fill: #ccc;
}
.foreground.bar {
fill: steelblue;
}
.axis path, .axis line {
fill: none;
stroke: #fff; /*#000*/
shape-rendering: crispEdges;
}
.axis text {
/*font: 10px sans-serif;*/
font-size: 10px;
font-family: Lato;
fill: #fff;
stroke: none;
}
.brush rect.extent {
fill: steelblue;
fill-opacity: .125;
}
.brush .resize path {
fill: #eee;
stroke: #666;
}
.select {
font-size: 12px;
display: inline-block;
vertical-align: top;
margin-top: 15px;
}
.select label {
display: block;
color: #fff;
}
.animControls {
position: absolute;
right: 10px;
top: 10px;
width: 600px;
height: 25px;
}
.animControls button {
display: inline-block;
cursor: default;
background-color: black;
border: 1px solid gray;
border-radius: 4px;
text-align: left;
padding: 2px 4px 2px 4px;
margin-right: 15px;
font-size: 13px;
color: #ccc;
font-family: Lato;
}
.titleDiv {
position: absolute;
top: 0px;
margin: auto;
width: 960px;
font-family: Lato;
color: white;
}
.titleDiv h1 {
text-align: center;
font-weight: normal;
margin-bottom: 0px;
}
.titleDiv h4 {
text-align: center;
font-weight: normal;
margin-top: 5px;
}
.infoDiv {
position: absolute;
bottom: 190px;
left: 10px;
color: white;
border-radius: 4px;
background: black;
opacity: 0.9;
padding: 10px;
}
.infoDiv table {
width: 200px;
}
.infoDiv .dead {
color: red;
}
.infoDiv .injured {
color: orange;
}
.infoDiv .data {
text-align: right;
}
.source a {
color: gray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment