-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortStage3.csv
We can't make this file beautiful and searchable because it's too large.
1027 lines (1013 loc) · 671 KB
/
shortStage3.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
incident_id,date,state,city_or_county,address,n_killed,n_injured,incident_url,source_url,incident_url_fields_missing,congressional_district,gun_stolen,gun_type,incident_characteristics,latitude,location_description,longitude,n_guns_involved,notes,participant_age,participant_age_group,participant_gender,participant_name,participant_relationship,participant_status,participant_type,sources,state_house_district,state_senate_district
461105,2013-01-01,Pennsylvania,Mckeesport,1506 Versailles Avenue and Coursin Street,0,4,http://www.gunviolencearchive.org/incident/461105,http://www.post-gazette.com/local/south/2013/01/17/Man-arrested-in-New-Year-s-Eve-shooting-in-McKeesport/stories/201301170275,False,14,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession (gun(s) found during commission of other crimes)||Possession of gun by felon or prohibited person",40.3467,,-79.8559,,Julian Sims under investigation: Four Shot and Injured,0::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||3::Male||4::Female,0::Julian Sims,,0::Arrested||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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/17977588||http://www.post-gazette.com/local/south/2013/01/17/Man-arrested-in-New-Year-s-Eve-shooting-in-McKeesport/stories/201301170275,,
460726,2013-01-01,California,Hawthorne,13500 block of Cerise Avenue,1,3,http://www.gunviolencearchive.org/incident/460726,http://www.dailybulletin.com/article/zz/20130105/NEWS/130109127,False,43,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",33.909,,-118.333,,Four Shot; One Killed; Unidentified shooter in getaway car,0::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male,0::Bernard Gillis,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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||https://usgunviolence.wordpress.com/2013/01/01/killed-man-hawthorne-ca/||http://www.dailybulletin.com/article/zz/20130105/NEWS/130109127,62,35
478855,2013-01-01,Ohio,Lorain,1776 East 28th Street,1,3,http://www.gunviolencearchive.org/incident/478855,http://chronicle.northcoastnow.com/2013/02/14/2-men-indicted-in-new-years-day-lorain-murder/,False,9,0::Unknown||1::Unknown,0::Unknown||1::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Shots Fired - No Injuries||Bar/club incident - in or around establishment",41.4455,Cotton Club,-82.1377,2,,0::25||1::31||2::33||3::34||4::33,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Damien Bell||1::Desmen Noble||2::Herman Seagers||3::Ladd Tate Sr||4::Tallis Moore,,"0::Injured, Unharmed, Arrested||1::Unharmed, Arrested||2::Killed||3::Injured||4::Injured",0::Subject-Suspect||1::Subject-Suspect||2::Victim||3::Victim||4::Victim,http://www.morningjournal.com/general-news/20130222/lorain-man-pleads-innocent-to-new-years-murder||http://chronicle.northcoastnow.com/2013/02/14/2-men-indicted-in-new-years-day-lorain-murder/,56,13
478925,2013-01-05,Colorado,Aurora,16000 block of East Ithaca Place,4,0,http://www.gunviolencearchive.org/incident/478925,http://www.dailydemocrat.com/20130106/aurora-shootout-killer-was-frenetic-talented-neighbor-says,False,6,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||Drug involvement||Kidnapping/abductions/hostage||Under the influence of alcohol or drugs (only applies to the subject/suspect/perpetrator )",39.6518,,-104.802,,,0::29||1::33||2::56||3::33,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Female||1::Male||2::Male||3::Male,0::Stacie Philbrook||1::Christopher Ratliffe||2::Anthony Ticali||3::Sonny Archuleta,,0::Killed||1::Killed||2::Killed||3::Killed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect,http://denver.cbslocal.com/2013/01/06/officer-told-neighbor-standoff-gunman-was-on-meth-binge/||http://www.westword.com/news/sonny-archuleta-triple-murder-in-aurora-guns-purchased-legally-55-57-5900504||http://www.denverpost.com/ci_22322380/aurora-shooter-was-frenetic-talented-neighbor-says||http://www.dailymail.co.uk/news/article-2258008/Sonny-Archuleta-Gunman-left-dead-latest-Aurora-shooting-lost-brother-gun-violence.html||http://www.dailydemocrat.com/20130106/aurora-shootout-killer-was-frenetic-talented-neighbor-says,40,28
478959,2013-01-07,North Carolina,Greensboro,307 Mourning Dove Terrace,2,2,http://www.gunviolencearchive.org/incident/478959,http://www.journalnow.com/news/local/article_d4c723e8-5a0f-11e2-a1fa-0019bb30f31a.html,False,6,0::Unknown||1::Unknown,0::Handgun||1::Handgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Attempted Murder/Suicide (one variable unsuccessful)||Domestic Violence",36.114,,-79.9569,2,"Two firearms recovered. (Attempted) murder suicide - both succeeded in fulfilling an M/S and did not succeed, based on details.",0::18||1::46||2::14||3::47,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Adult 18+,0::Female||1::Male||2::Male||3::Female,"0::Danielle Imani Jameison||1::Maurice Eugene Edmonds, Sr.||2::Maurice Edmonds II||3::Sandra Palmer",3::Family,0::Injured||1::Injured||2::Killed||3::Killed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect,http://myfox8.com/2013/01/08/update-mother-shot-14-year-old-son-two-others-before-killing-herself/||http://myfox8.com/2013/01/07/police-respond-to-report-of-triple-shooting-in-greensboro/||http://www.journalnow.com/news/local/article_d4c723e8-5a0f-11e2-a1fa-0019bb30f31a.html,62,27
478948,2013-01-07,Oklahoma,Tulsa,6000 block of South Owasso,4,0,http://www.gunviolencearchive.org/incident/478948,http://usnews.nbcnews.com/_news/2013/01/07/16397584-police-four-women-found-dead-in-tulsa-okla-apartment?lite,False,1,,,"Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident killed||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Armed robbery with injury/death and/or evidence of DGU found",36.2405,Fairmont Terrace,-95.9768,,,0::23||1::23||2::33||3::55,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Female||2::Female||3::Female||4::Male||5::Male,0::Rebeika Powell||1::Kayetie Melchor||2::Misty Nunley||3::Julie Jackson||4::James Poore||5::Cedric Poore,,"0::Killed||1::Killed||2::Killed||3::Killed||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.kjrh.com/news/local-news/4-found-shot-inside-apartment-in-tulsa||http://www.cbsnews.com/news/tulsa-apartment-murders-update-hearing-scheduled-for-brothers-charged-in-quadruple-killing/||http://www.kjrh.com/news/local-news/hearing-continues-for-fairmont-terrace-quadruple-homicide-suspect-cedric-poore-james-poore||http://www.kjrh.com/news/local-news/hearing-for-quadruple-murder-suspects-continue||http://usnews.nbcnews.com/_news/2013/01/07/16397584-police-four-women-found-dead-in-tulsa-okla-apartment?lite,72,11
479363,2013-01-19,New Mexico,Albuquerque,2806 Long Lane,5,0,http://www.gunviolencearchive.org/incident/479363,http://hinterlandgazette.com/2013/01/pastor-greg-griego-identified-victims-killed-nehemiah-griego-albuquerque-nm-shooting.html,False,1,0::Unknown||1::Unknown,0::22 LR||1::223 Rem [AR-15],"Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence",34.9791,,-106.716,2,,0::51||1::40||2::9||3::5||4::2||5::15,0::Adult 18+||1::Adult 18+||2::Child 0-11||3::Child 0-11||4::Child 0-11||5::Teen 12-17,0::Male||1::Female||2::Male||3::Female||4::Female||5::Male,0::Greg Griego||1::Sara Griego||2::Zephania Griego||3::Jael Griego||4::Angelina Griego||5::Nehemiah Griego,5::Family,"0::Killed||1::Killed||2::Killed||3::Killed||4::Killed||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.cbsnews.com/news/nehemiah-gringo-case-memorial-service-planned-for-family-allegedly-slain-by-new-mexico-teen/||http://www.thewire.com/national/2013/01/teenager-reportedly-used-ar-15-kill-five-new-mexico/61199/||http://bigstory.ap.org/article/officials-nm-teen-gunman-kills-5-inside-home||http://www.huffingtonpost.com/2013/01/21/nehemiah-griego-teen-shoots-parents-3-children_n_2519359.html||http://murderpedia.org/male.G/g/griego-nehemiah.htm||http://hinterlandgazette.com/2013/01/pastor-greg-griego-identified-victims-killed-nehemiah-griego-albuquerque-nm-shooting.html,10,14
479374,2013-01-21,Louisiana,New Orleans,LaSalle Street and Martin Luther King Jr. Boulevard,0,5,http://www.gunviolencearchive.org/incident/479374,http://www.nola.com/crime/index.ssf/2013/01/nopd_4_people_shot_in_central.html,False,2,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",29.9435,,-90.0836,,Unprovoked drive-by results in multiple teens and young adults injured. No source with names or exact ages.,,,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.huffingtonpost.com/2013/01/21/new-orleans-mlk-day-shooting_n_2521750.html||http://www.fox8live.com/story/20640921/nopd-4-shot-alomg||http://www.nola.com/crime/index.ssf/2013/01/nopd_4_people_shot_in_central.html,93,5
479389,2013-01-21,California,Brentwood,1100 block of Breton Drive,0,4,http://www.gunviolencearchive.org/incident/479389,http://sanfrancisco.cbslocal.com/2013/01/22/4-teens-hurt-in-drive-by-shooting-in-brentwood/,False,9,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",37.9656,,-121.718,,Perps were likely motivated by gang affliations,,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.contracostatimes.com/ci_22426767/brentwood-teens-may-have-been-shot-over-nike||http://sanfrancisco.cbslocal.com/2013/01/22/4-teens-hurt-in-drive-by-shooting-in-brentwood/,11,7
492151,2013-01-23,Maryland,Baltimore,1500 block of W. Fayette St.,1,6,http://www.gunviolencearchive.org/incident/492151,http://www.abc2news.com/news/crime-checker/baltimore-city-crime/mother-of-murdered-15-yo-speaks-out,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.2899,,-76.6412,,Shooting occurred over illegal dice game; victim was killed as he sat on a stoop. Victim was not a participant in the game.,0::15,0::Teen 12-17||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male,0::Deshaun Jones,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim,http://articles.baltimoresun.com/2013-08-25/news/bs-md-ci-shootings-20130824_1_west-baltimore-15-year-old-boy-shooting-incidents||http://baltimore.cbslocal.com/2013/08/25/juvenile-dead-6-shot-after-dice-game-goes-bad/||http://www.abc2news.com/news/crime-checker/baltimore-city-crime/mother-of-murdered-15-yo-speaks-out,,44
491674,2013-01-23,Tennessee,Chattanooga,1501 Dodds Ave,1,3,http://www.gunviolencearchive.org/incident/491674,http://www.wrcbtv.com/story/22664154/one-dead-in-chattanooga-shooting,False,3,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Murder/Suicide||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.0221,,-85.2697,1,"19 yr. old male dies; 3 inured; shooting on Dodds Ave.;
35.022083, -85.269986",0::19,0::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Demetrius Davis,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wrcbtv.com/story/22664154/one-dead-in-chattanooga-shooting,28,10
479413,2013-01-25,Missouri,Saint Louis,W Florissant Ave and Riverview Blvd,1,3,http://www.gunviolencearchive.org/incident/479413,http://stlouis.cbslocal.com/2013/01/25/one-dead-four-wounded-in-drive-by-shooting/,False,1,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",38.7067,,-90.2494,1,"38.706732, -90.249375",0::28,0::Adult 18+,0::Male,0::Terry Robinson Jr.,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://fox2now.com/2013/01/25/two-shot-in-north-st-louis/||http://www.stltoday.com/news/local/crime-and-courts/st-louis-police-seek-white-suv-in-shootings/article_2b4dcbcb-f885-5c96-b41f-bdf5a9674c98.html||http://stlouis.cbslocal.com/2013/01/25/one-dead-four-wounded-in-drive-by-shooting/,76,4
479561,2013-01-26,Louisiana,Charenton,1000 block of Flat Town Road,2,3,http://www.gunviolencearchive.org/incident/479561,http://www.huffingtonpost.com/2013/01/27/wilbert-thibodeaux-arrested_n_2561190.html,False,3,0::Unknown,0::Shotgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident killed||Officer Involved Incident||Officer Involved Shooting - Officer shot||Officer Involved Shooting - Officer killed||Officer Involved Shooting - subject/suspect/perpetrator shot||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",29.8816,,-91.5251,1,Ofc. hailed from Chitimacha Tribe of Louisiana Native American reservation; deputies hailed from St. Mary Parish sheriff's office. Lyons shot before arson.,3::78||4::48,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Ofc.||1::Dep.||2::Dep.||3::Eddie Lyons||4::Wilbert Thibodeaux,,"0::Killed||1::Injured||2::Injured||3::Killed||4::Injured, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://theadvocate.com/home/5018249-125/3-law-enforcement-officers-shot||http://www.dailymail.co.uk/news/article-2268979/Wilbert-Thibodeaux-Gunman-slays-lawman-wounds-torching-mobile-home.html||http://www.foxnews.com/us/2013/01/26/trooper-officer-killed-2-sheriff-deputies-wounded-in-la-shooting-suspect-in.html||http://www.tlgnewspaper.com/man-arrested-after-officer-killed-2-sheriff039s-deputies-hurt||http://www.huffingtonpost.com/2013/01/27/wilbert-thibodeaux-arrested_n_2561190.html,50,21
479554,2013-01-26,District of Columbia,Washington,2403 Benning Road Northeast,0,5,http://www.gunviolencearchive.org/incident/479554,http://www.washingtontimes.com/news/2013/jan/29/dc-police-release-person-interest-photos-club-shoo/,False,1,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",38.8978,,-76.9717,1,"Media accounts conflict as to gender of victims - there were either 2 women, 3 men wounded OR 1 woman, 4 men.",,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Female||2::Male||3::Male||4::Male||5::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.washingtonexaminer.com/d.c.-nightclub-shooting-leaves-5-injured/article/2519778||http://www.nbcwashington.com/news/local/Five-Injured-in-DC-Nightclub-Shooting-188481201.html||http://thefabempire.com/2013/01/26/five-injured-in-shooting-at-d-c-soundstage/||http://dcist.com/2013/01/five_shot_sunday_morning_at_northea.php||http://www.washingtontimes.com/news/2013/jan/29/dc-police-release-person-interest-photos-club-shoo/,,
479460,2013-01-26,Ohio,Springfield,601 West Main Street,1,3,http://www.gunviolencearchive.org/incident/479460,http://www.whio.com//news/news/crime-law/arrest-made-in-nite-owl-homicide/nWsp4/,False,8,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",39.9252,Nite Owl Tavern,-83.8218,,,0::34||1::28||2::23||3::29||4::29,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Ernest Edwards||1::Anthony Clark||2::Joshua Clay||3::Richard Arnold||4::Julian Anwar Johnson,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.daytondailynews.com/news/news/1-dead-3-injured-in-tavern-shooting/nT77k/||http://www.springfieldnewssun.com/news/news/crime-law/family-mourns-bar-shooting-victim/nWwmT/||http://www.whio.com/news/news/crime-law/man-sentenced-8-years-springfield-homicide/nc4BY/||http://www.whio.com//news/news/crime-law/arrest-made-in-nite-owl-homicide/nWsp4/,79,10
479573,2013-02-02,Tennessee,Memphis,2514 Mount Moriah,0,5,http://www.gunviolencearchive.org/incident/479573,https://www.highbeam.com/doc/1P2-34349822.html,False,9,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",35.0803,Club Venue,-89.8871,1,,5::24,0::Adult 18+||1::Adult 18+||2::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Female||2::Female||3::Female||4::Female||5::Female,4::Mary||5::Sundra Payne,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://wreg.com/2013/02/02/five-hurt-in-memphis-nightclub-shooting/||http://www.wmcactionnews5.com/story/20961644/search-continues-for-woman-accused-of-shooting-5-in-nightclub||http://www.commercialappeal.com/news/police-looking-for-woman-in-memphis-nightclub-shooting-ep-362608190-329060811.html||https://www.highbeam.com/doc/1P2-34349822.html,84,33
479580,2013-02-03,California,Yuba (county),5800 block of Poplar Avenue,1,3,http://www.gunviolencearchive.org/incident/479580,http://sacramento.cbslocal.com/2013/02/04/1-dead-3-hurt-in-olivehurst-shooting/,False,3,0::Unknown,0::9mm,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",39.1236,,-121.583,1,"perps have gang affiliation, but unclear as to why victims were targeted. Vic and perp with same last name have no relation. KMV's bro, ex-felon, found w/ weaps",0::20||4::25||5::18||6::19,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Female||4::Male||5::Male||6::Male,0::Teng Yang||1::Tou Yang||2::Xong Yang||3::Yang Vue||4::Kong Meng Vue||5::Ryan Cha||6::Ken Cha,4::Drive by - Random victims||5::Drive by - Random victims||6::Drive by - Random victims,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect,http://news.asiantown.net/r/28306/no-death-penalty-for-kong-meng-vue-in-drive-by-shooting-case||http://www.appeal-democrat.com/three-suspects-in-linda-gang-shooting-arraigned/article_e7830fcf-5ddc-5ff6-b5ac-fb44a1a31040.html||http://www.nwculaw.edu/pdf/Linda_drive-by_shooting_death_Appeal-Democrat.pdf||http://www.abc10.com/story/news/2014/01/21/4730283/||http://sacramento.cbslocal.com/2013/02/04/1-dead-3-hurt-in-olivehurst-shooting/,3,4
479592,2013-02-07,Illinois,Chicago,2500 block of East 75th Street,0,4,http://www.gunviolencearchive.org/incident/479592,http://chicago.cbslocal.com/2013/02/07/four-wounded-in-south-shore-shooting/,False,2,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",41.7592,,-87.5628,,,0::18||1::41||2::28||3::28,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://crimeinchicago.blogspot.com/2013/02/4-men-shot-in-south-shore-aka-terror.html||http://www.dnainfo.com/chicago/20130207/south-shore-above-79th/4-men-wounded-shooting-on-south-side||http://articles.chicagotribune.com/2013-02-08/news/chi-3-shot-in-south-shore-neighborhood-20130207_1_south-shore-neighborhood-men-shot-south-exchange-avenue||http://chicago.cbslocal.com/2013/02/07/four-wounded-in-south-shore-shooting/,25,13
479603,2013-02-09,Louisiana,New Orleans,400 block of Bourbon Street,0,4,http://www.gunviolencearchive.org/incident/479603,http://www.nola.com/crime/index.ssf/2013/04/suspect_sought_in_bourbon_stre.html,False,2,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",29.9563,,-90.0676,1,,0::18||1::22||2::21||3::29||4::19||5::22||6::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Female||2::Female||3::Male||4::Male||5::Male||6::Male,"4::Malcolm ""London"" Hall||5::Brandon Brown||6::Deron Bridgewater",,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect,http://www.cbsnews.com/news/mardi-gras-shooting-third-man-arrested-in-new-orleans-bourbon-street-attack/||http://www.nola.com/crime/index.ssf/2013/02/nopd_arrests_third_suspect_in.html||http://www.nola.com/crime/index.ssf/2013/02/bourbon_street_shooting_suspec_3.html||http://www.nola.com/crime/index.ssf/2013/04/suspect_sought_in_bourbon_stre.html,93,4
480311,2013-02-11,California,Vallejo,800 block of Humboldt Street,1,4,http://www.gunviolencearchive.org/incident/480311,http://archive.news10.net/news/article/229997/2/5-shot-in-Vallejo-dead-victim-identified,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.1072,,-122.228,,,0::22,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Female,0::Oscar Garcia,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.timesheraldonline.com/article/ZZ/20130212/NEWS/130217172||http://www.sfgate.com/crime/article/1-dead-4-hurt-in-Vallejo-shooting-4271870.php||http://sanfrancisco.cbslocal.com/2013/02/12/1-killed-4-hurt-in-vallejo-shooting/||http://archive.news10.net/news/article/229997/2/5-shot-in-Vallejo-dead-victim-identified,14,3
480327,2013-02-11,Delaware,Wilmington,500 North King Street,3,2,http://www.gunviolencearchive.org/incident/480327,http://www.philly.com/philly/news/Police_ID_victims_in_Wilmington_courthouse_shooting.html,False,1,0::Unknown,0::45 Auto,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Officer Involved Incident||Officer Involved Shooting - Officer shot||Officer Involved Shooting - subject/suspect/perpetrator suicide at standoff||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.7407,New Castle County courthouse,-75.5499,1,"M/S was both succesful and not - perp killed two, but injured two, killing himself afterwards.",1::39||4::68,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Female||2::Male||3::Male||4::Male,"0::Laura Elizabeth ""Beth"" Mulford||1::Christine Belford||2::Ofc. Steven Rinehart||3::Ofc. Michael Manley||4::Thomas F. Matusiewicz",,0::Killed||1::Killed||2::Injured||3::Injured||4::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.usatoday.com/story/news/nation/2013/02/11/delaware-courthouse-shooting/1909075/||http://articles.latimes.com/2013/feb/13/nation/la-na-nn-delaware-courthouse-shooting-matusiewicz-20130212||http://heavy.com/news/2013/02/thomas-matusiewicz-courthouse-shooting-delaware/||http://www.abajournal.com/news/article/women_gunned_down_at_del._courthouse_were_slain_by_father_of_man_involved/||http://www.philly.com/philly/news/Police_ID_victims_in_Wilmington_courthouse_shooting.html,2,3
480344,2013-02-12,Utah,Midvale,8286 Adams Street and 450 West Street,4,1,http://www.gunviolencearchive.org/incident/480344,,False,4,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Drug involvement",40.6008,,-111.903,,"Occured at ""known narcotics house,"" suggesting it may have been robbery attempt or home invasion, but that is not confirmed in sources",0::35||1::34||2::26||4::25,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Male||5::Male,0::Omar Paul Jarman||1::Shontay N. Young||2::Danielle B. Lucero||3::Vicky Myers||4::David Fresques||5::Davis Fotu,,"0::Killed||1::Killed||2::Killed||3::Injured||4::Killed, Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://fox13now.com/2014/03/28/man-sentenced-for-role-in-midvale-triple-murder-apologizes-in-court/||http://fox13now.com/2013/02/13/victims-identified-in-midvale-triple-murder/||https://www.ksl.com/?nid=148&sid=24062944||http://www.cbsnews.com/news/utah-house-shooting-update-house-where-three-were-shot-dead-is-linked-to-narcotics-police-say/,44,8
480358,2013-02-19,California,Orange (county),Katella Avenue,4,3,http://www.gunviolencearchive.org/incident/480358,http://www.dailymail.co.uk/news/article-2281171/California-shooting-suspect-Ali-Syed-gunned-woman-bloody-25-minute-murder-spree.html,False,46,0::Unknown,0::12 gauge,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Drive-by (car to street, car to car)||Spree Shooting (multiple victims, multiple locations)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.8031,,-117.943,1,Aoki killed in Ladera Ranch; 3 vics shot while driving on 5 Freeway to SOBO 55 Freeway; 5th vic shot in Santa Ana near Village Way; 6th vic shot in 2nd carjack,0::20||4::69||5::27||6::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Female||4::Male||5::Male||6::Male,0::Courtney Aoki||4::Melvin Edwards||5::Jeremy Lewis||6::Ali Syed,,0::Killed||1::Injured||2::Injured||3::Injured||4::Killed||5::Killed||6::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,http://www.nydailynews.com/news/national/2-southern-california-shooting-spree-victims-identified-article-1.1269107||http://www.huffingtonpost.com/2013/03/01/ali-syed-california-rampage-shooting-suicide-note_n_2792470.html||http://www.nbclosangeles.com/news/local/Tustin-Orange-County-Freeway-Shootings-191813631.html||http://www.ibtimes.com/who-ali-syed-oc-gunman-leaves-4-dead-3-victims-identified-1095082||http://www.dailymail.co.uk/news/article-2281171/California-shooting-suspect-Ali-Syed-gunned-woman-bloody-25-minute-murder-spree.html,72,34
480383,2013-02-21,Oklahoma,Tulsa,1200 block of North 89th East Avenue,1,3,http://www.gunviolencearchive.org/incident/480383,http://www.krmg.com/news/news/local/more-details-emerging-shooting-rampage-spartan-lan/nWXMX/,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",36.1722,Spartan Landing apartments,-95.8778,,,0::18||1::18||2::18||3::19||4::41,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Male,0::Chaz Fain||4::Mark Hopkins,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.kjrh.com/news/local-news/suspect-in-spartan-landing-apartments-fatal-shooting-formally-charged||http://www.newson6.com/story/21303635/man-in-custody-after-fatal-shooting-at-tulsa-apartments-near-spartan-college||http://newsok.com/article/3757974||http://www.krmg.com/news/news/local/more-details-emerging-shooting-rampage-spartan-lan/nWXMX/,77,34
480401,2013-02-22,Michigan,Grand Rapids,1447 Grandville Ave. SW,0,4,http://www.gunviolencearchive.org/incident/480401,http://www.mlive.com/news/grand-rapids/index.ssf/2013/03/whos_to_blame_for_new_roosevel.html,False,3,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",42.9371,New Roosevelt Bar,-85.6853,,"One source article says there were five victims, but others say four.",,0::Adult 18+||1::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Female,0::Marcus Antoine Smith,,"0::Unharmed, Arrested||1::Injured||2::Injured||3::Injured||4::Injured",0::Subject-Suspect||1::Victim||2::Victim||3::Victim||4::Victim,http://www.mlive.com/news/grand-rapids/index.ssf/2014/12/grand_rapids_man_guilty_of_att.html||http://www.mlive.com/news/grand-rapids/index.ssf/2013/03/new_roosevelt_bar_where_4_were.html||http://fox17online.com/2013/02/22/breaking-now-shooting-at-bar-in-grand-rapids/||http://www.mlive.com/news/grand-rapids/index.ssf/2013/02/four_shot_outside_grandville_s.html||http://www.mlive.com/news/grand-rapids/index.ssf/2013/03/whos_to_blame_for_new_roosevel.html,76,29
480407,2013-02-23,California,Lancaster,43145 Business Center Parkway,0,4,http://www.gunviolencearchive.org/incident/480407,http://latimesblogs.latimes.com/lanow/2013/02/suspects-sought-in-shooting-outside-lancaster-club.html,False,25,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",34.6666,Industry Theater,-118.131,,Perps fire gun into crowd following altercation inside venue,0::22||1::26||2::29||3::37,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://losangeles.cbslocal.com/2013/02/23/4-wounded-in-lancaster-nightclub-shooting-2-suspects-at-large/||http://theavtimes.com/2013/02/23/four-wounded-in-lancaster-nightclub-shooting/||http://latimesblogs.latimes.com/lanow/2013/02/suspects-sought-in-shooting-outside-lancaster-club.html,36,21
480443,2013-02-24,Georgia,Macon,2800 block of Mercer University Drive,0,8,http://www.gunviolencearchive.org/incident/480443,http://www.macon.com/news/local/crime/article30130797.html,False,2,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",32.826,,-83.6704,,"Perp's brother, Adrian, also initially charged in this event, but those charges were dropped.",8::29,0::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Female||7::Female||8::Male,"8::Frank Fletcher, Jr.",,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Subject-Suspect,http://www.macon.com/news/local/crime/article30172629.html||http://www.macon.com/news/local/crime/article30123057.html||http://www.macon.com/news/local/crime/article30130797.html,142,26
481186,2013-03-02,Louisiana,Shreveport,7000 block of Burlingame Boulevard,1,3,http://www.gunviolencearchive.org/incident/481186,http://www.shreveportla.gov/DocumentCenter/View/1193,False,4,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",32.442,,-93.7726,,,0::18||1::18||2::18||3::19||4::15||5::17,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Teen 12-17||5::Teen 12-17,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,"0::Chauncey ""Trey"" Boulevard, Jr.||1::Jumarco Daniel||2::Leonard Williams||3::Ricky Sanders||5::Ravion Alford",,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.ksla.com/story/21442631/1-dead-3-injured-in-shreveport-shooting||http://www.ksla.com/story/21535475/police-arrest-second-suspect-in-deadly-cedar-grove-shooting||http://theinquisitor.com/article-549-suspect-wanted-in-connection-with-burlingame-slaying-surrenders-to-authorities.html||http://www.shreveportla.gov/DocumentCenter/View/1193,3,39
481198,2013-03-03,Georgia,Moultrie,224 Second Street Northwest,2,2,http://www.gunviolencearchive.org/incident/481198,http://www.moultrieobserver.com/news/jury-says-not-guilty/article_013dc4e6-6ad4-11e4-a86b-ef334c46f871.html,False,8,0::Unknown,0::7.62 [AK-47],"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",31.1824,,-83.7912,1,Williams later acquitted on his charges,0::50||1::42||4::24||5::25,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Female||3::Male||4::Male||5::Male,0::James L. Key||1::Eric Debruce||2::Margaret White-Tuff||3::Elijah Daniels||4::Derek Lamar Rushing||5::Antonio Dewayne Williams,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.moultrieobserver.com/news/local_news/murder-trial-set-to-start-tuesday/article_e47c8fc4-2b2f-11e4-a7af-001a4bcf887a.html||http://www.wctv.tv/news/georgianews/headlines/Quadruple-Shooting-in-Moultrie-194924631.html||http://www.walb.com/story/28864045/moultrie-vigil-honors-victims-of-crimes||http://www.moultrieobserver.com/news/jury-says-not-guilty/article_013dc4e6-6ad4-11e4-a86b-ef334c46f871.html,172,11
481208,2013-03-03,Michigan,Saginaw (county),4030 Dixie Hwy,0,4,http://www.gunviolencearchive.org/incident/481208,http://www.mlive.com/news/saginaw/index.ssf/2013/03/police_gang-related_shootout_a.html,False,5,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Gang involvement",43.3944,Better Dayz Bar and Grill,-83.9082,,Vics appear to be bystanders caught in crossfire among gang members' gun-based dispute,0::23||1::34||2::17||3::25,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Adult 18+,0::Male||1::Male||2::Female||3::Female,1::Edgar G. Jones,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wfxg.com/story/21447002/four-people-shot-outside-bar-in-buena-vista-township||http://www.mlive.com/saginaw-river/index.ssf/2013/03/victim_from_buena_vista_shooto.html||http://www.wnem.com/story/21447002/four-people-shot-outside-bar-in-buena-vista-township||http://www.mlive.com/news/saginaw/index.ssf/2013/03/police_gang-related_shootout_a.html,95,32
481213,2013-03-04,California,Los Banos,800 block of La Mesa Lane,1,3,http://www.gunviolencearchive.org/incident/481213,http://www.mercedsunstar.com/news/local/article3286805.html,False,16,0::Unknown,0::45 Auto,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",37.0857,,-120.828,1,Ruger P89 pistol used.,3::18||4::17||5::15,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Teen 12-17||5::Teen 12-17,3::Male||4::Male||5::Male,3::Shane Thomas Moore||4::Albert Hernandez||5::Christopher Aguayo,,"0::Injured||1::Injured||2::Injured||3::Killed||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.losbanosenterprise.com/2013/04/03/205615/teens-in-los-banos-homicide-case.html||http://www.mercedsunstar.com/news/local/article3288744.html||http://www.mercedsunstar.com/news/local/article3286805.html,21,12
481220,2013-03-05,Indiana,Indianapolis,1800 block of Edinburge Square,1,3,http://www.gunviolencearchive.org/incident/481220,http://www.wthr.com/story/21528147/multiple-people-shot-at-east-indianapolis-residence,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.7927,Wellington Village apartments,-86.0328,,,0::19||1::19||2::19||3::25,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Markell Kelly||1::DeJour Martin||2::Christian Smith||3::Michael Baker,,0::Injured||1::Injured||2::Injured||3::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wndu.com/news/indiana/headlines/Victims-of-apartment-complex-shooting-identified-195682521.html||https://usgunviolence.wordpress.com/2013/03/05/killed-michael-baker-indianapolis-in/||http://www.wthr.com/story/21528147/multiple-people-shot-at-east-indianapolis-residence,100,28
481229,2013-03-07,Mississippi,Jackson,2900 block of Greenwood Avenue,2,2,http://www.gunviolencearchive.org/incident/481229,http://www.wapt.com/news/central-mississippi/jackson/sentencing-set-for-man-convicted-in-quadruple-shooting/28088370,False,2,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",32.2649,,-90.2141,1,,0::33||1::28||2::29||3::21||4::25,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Female||2::Male||3::Male||4::Male,0::Ronald Williams||1::Kendra Hill||2::Jason Kimble||3::Laquintin Carter||4::Joshua Hurst,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wapt.com/news/central-mississippi/jackson/Police-arrest-man-in-quadruple-shooting/19231618||http://www.wapt.com/news/central-mississippi/jackson/sentencing-set-for-man-convicted-in-quadruple-shooting/28088370,71,29
481237,2013-03-10,Missouri,Kansas City,9331 Hillcrest Rd,0,5,http://www.gunviolencearchive.org/incident/481237,http://m.columbiatribune.com/news/five-shot-during-kansas-city-concert/article_44d12a66-8a77-11e2-af1d-10604b9f6eda.html,False,5,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Institution/Group/Business||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.955,Tropical Palms Restaurant Club,-94.5211,1,"Tropical Palms reported permanently closed as of (4/14/17);
38.955007, -94.521106",0::20||1::20||2::17||3::20||4::15,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Adult 18+||4::Teen 12-17,0::Female||1::Male||2::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.kctv5.com/story/21566401/gunfire-erupts-at-southeast-kc-banquet-hall-5-injured||http://www.ozarksfirst.com/news/5-shot-at-teen-concert-in-kansas-city||http://m.columbiatribune.com/news/five-shot-during-kansas-city-concert/article_44d12a66-8a77-11e2-af1d-10604b9f6eda.html,27,9
482771,2013-03-11,District of Columbia,Washington,1200 North Capitol Street,0,13,http://www.gunviolencearchive.org/incident/482771,https://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,False,1,0::Unknown||1::Unknown||2::Unknown||3::Unknown,0::9mm||1::9mm||2::40 SW||3::40 SW,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.9062,Tyler House,-77.0099,4,Two .40 caliber weapons used may have been the result of someone firing at perps.,0::19||1::19||2::17||15::21,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+||10::Adult 18+||11::Adult 18+||12::Adult 18+||13::Adult 18+||14::Adult 18+||15::Adult 18+||16::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male||8::Male||9::Female||10::Female||11::Female||12::Female||13::Female||14::Female||15::Male||16::Male,0::Craig Steven Wilson||1::Andrew Davon Allen||15::Keith Deangelo Bobb,,"0::Unharmed, Arrested||1::Unharmed, Arrested||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Injured||9::Injured||10::Injured||11::Injured||12::Injured||13::Injured||14::Injured||15::Unharmed||16::Unharmed",0::Subject-Suspect||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Victim||10::Victim||11::Victim||12::Victim||13::Victim||14::Victim||15::Victim||16::Victim,http://www.washingtontimes.com/news/2013/may/23/dc-police-make-second-arrest-north-capitol-street-/||http://www.washingtontimes.com/news/2013/mar/17/suspect-dc-drive-shooting-was-wearing-gps-device/||https://www.washingtonpost.com/local/crime/up-to-11-people-shot-on-dc-street-corner-overnight/2013/03/11/d7c5197e-8a39-11e2-a051-6810d606108d_print.html||https://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,,
482801,2013-03-13,California,Oceanside,504 Calle Montecito,2,2,http://www.gunviolencearchive.org/incident/482801,http://www.sandiegouniontribune.com/news/2014/dec/16/libby-lake-gang-shootings-death-penalty/,False,49,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",33.2498,Libby Lake Park,-117.309,,Prosecutors argue this was motivated by gang relations.,0::16||1::13||4::23||5::20||6::20||7::18,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Teen 12-17||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+,0::Male||1::Male||4::Male||5::Male||6::Male||7::Male,0::Edgar Sanchez Rios||1::Melanie Virgen||2::David Garcia||4::Martin Melendrez||5::Santa Diaz||6::Michael Zurita||7::Kevin Brizuela,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested||6::Unharmed, Arrested||7::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect,http://www.cbs8.com/story/21637042/2-teens-killed-2-injured-in-barrage-of-bullets-at-oceanside-park||http://www.nbcsandiego.com/news/local/oceanside-libby-lake-park-197917021.html||http://www.nbcsandiego.com/news/local/Libby-Lake-Park-Celebration-of-Life-David-Garcia-Oceanside-296329091.html||http://www.nbcsandiego.com/news/local/Charges-Dismissed-Against-Libby-Lake-Shooting-Suspect-Bodden-263031651.html||http://fox5sandiego.com/2013/03/30/four-people-arrested-in-libby-lake-park-shooting/||http://www.sandiegouniontribune.com/news/2014/dec/16/libby-lake-gang-shootings-death-penalty/,76,36
482856,2013-03-13,New York,Mohawk,17 W Main St,6,2,http://www.gunviolencearchive.org/incident/482856,http://www.syracuse.com/news/index.ssf/2013/03/herkimer_county_fatal_shooting.html,False,22,0::Unknown,0::Shotgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - Officer killed||Officer Involved Shooting - subject/suspect/perpetrator killed||Spree Shooting (multiple victims, multiple locations)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Animal shot/killed",43.011,John's Barber Shop,-75.0058,1,"4 victims in Mohawk, 2 more in Herkimer- Gaffey's Fast Lube. Wed. K9 officer killed outside Glory Days restaurant before perp shot by police Thurs., May 14.",0::68||1::57||2::66||3::67||4::62||5::51||6::2||7::64,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||7::Adult 18+,0::Male||1::Male||2::Male||4::Male||5::Male||6::Male||7::Male,0::Harry Montgomery||1::Michael Ransear||2::John Seymour||3::Daniel A. Haslauer||4::Thomas Stefka||5::Michael L. Renshaw||6::K9 Ape||7::Kurt Myers,7::Aquaintance,0::Killed||1::Killed||2::Injured||3::Injured||4::Killed||5::Killed||6::Killed||7::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Subject-Suspect,http://www.cbsnews.com/news/upstate-new-york-shooting-update-suspected-gunman-idd-as-kurt-myers-police-say/||http://www.huffingtonpost.com/2013/03/18/kurt-myers-shootout-suspect-penniless_n_2903413.html||http://www.usatoday.com/story/news/2013/03/14/upstate-new-york-herkimer-mohawk-suspect-surrounded/1986913/||http://www.syracuse.com/news/index.ssf/2013/03/herkimer_county_fatal_shooting.html,101,51
482838,2013-03-14,California,Modesto,1400 block of Western Way,0,4,http://www.gunviolencearchive.org/incident/482838,https://www.youtube.com/watch?v=3JHY2dsaqrI,False,10,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",37.626,,-121.011,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Female,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.kcra.com/news/Police-4-hurt-in-Modesto-drive-by-shooting/19326254||http://sacramento.cbslocal.com/2013/03/14/modesto-police-4-injured-in-drive-by-shooting/||https://www.youtube.com/watch?v=3JHY2dsaqrI,21,12
482926,2013-03-16,California,Galt,Dover Drive,0,7,http://www.gunviolencearchive.org/incident/482926,http://fox40.com/2013/03/16/mass-casualty-incident-declared-in-galt-after-reported-shooting/,False,9,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.2436,,-121.312,,,,,,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim,http://www.kcra.com/news/local-news/news-sacramento/7-injured-in-Galt-drive-by-shooting/19349066||http://fox40.com/2013/03/16/mass-casualty-incident-declared-in-galt-after-reported-shooting/,9,5
482934,2013-03-17,California,Stockton,1800 block of East Sonora Street,2,3,http://www.gunviolencearchive.org/incident/482934,http://archive.news10.net/rss/article/237015/479/Police-continue-to-investigate-Stockton-shooting-after-suspect-cleared,False,9,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",37.9531,,-121.266,,,0::21||1::36,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Female||2::Female,"0::Juan ""Junior"" Sarrarez||1::Juanita Maldonado||2::Reyna Perez",,0::Killed||1::Killed||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.kcra.com/news/5-hit-2-killed-in-Stockton-shooting/19354876||http://www.recordnet.com/apps/pbcs.dll/article?AID=/20130318/A_NEWS/130319881||http://www.mercurynews.com/breaking-news/ci_22816323/police-2-dead-stockton-fatal-shooting||http://archive.news10.net/rss/article/237015/479/Police-continue-to-investigate-Stockton-shooting-after-suspect-cleared,13,5
482942,2013-03-17,Florida,Belle Glade,Northwest 16th Street and Northwest Avenue L,0,5,http://www.gunviolencearchive.org/incident/482942,http://www.wpbf.com/news/south-florida/palm-beach-county-news/5-wounded-in-shooting-at-Club-21-in-Belle-Glade/19350878,False,20,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Gang involvement",26.6968,Club 21,-80.6837,,,,,,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.palmbeachpost.com/news/news/crime-law/one-dead-three-others-wounded-in-shooting-at-belle/nWthJ/||http://www.wptv.com/news/region-the-glades/belle-glade/four-shot-at-club-21-in-belle-glade-no-suspect-arrrested||http://www.wpbf.com/news/south-florida/palm-beach-county-news/5-wounded-in-shooting-at-Club-21-in-Belle-Glade/19350878,81,25
483737,2013-03-21,Illinois,Chicago,West 87th Street and Ashland Avenue,0,7,http://www.gunviolencearchive.org/incident/483737,http://www.dnainfo.com/chicago/20130321/auburn-gresham/shooting-at-record-release-party-leaves-seven-wounded,False,1,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Gang involvement",41.7358,Mr. G's Supper Club and Entertainment Center,-87.6631,,,0::19||1::21||2::23||3::20||4::26||5::21||6::36,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male||8::Male||9::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Unharmed||8::Unharmed||9::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Subject-Suspect||8::Subject-Suspect||9::Subject-Suspect,http://www.huffingtonpost.com/2013/03/21/mr-gs-supperclub-shooting_n_2923906.html||http://abc7chicago.com/archive/9035531/||http://www.reuters.com/article/us-usa-chicago-shooting-idUSBRE92K0QY20130321||http://chicago.cbslocal.com/2013/03/21/7-shot-during-rap-video-release-party-at-gresham-nightclub/||http://www.dnainfo.com/chicago/20130321/auburn-gresham/shooting-at-record-release-party-leaves-seven-wounded,35,18
483765,2013-03-21,Missouri,Kansas City,4900 block of Brookside Blvd,1,3,http://www.gunviolencearchive.org/incident/483765,http://www.kmbc.com/news/1-dead-in-Brookside-Boulevard-quadruple-shooting/19423270,False,5,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident killed||Home Invasion - Resident injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Drug involvement||Armed robbery with injury/death and/or evidence of DGU found",39.0383,,-94.5849,1,"39.038296, -94.585120",0::23||4::21||5::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Female||3::Female||4::Male||5::Male,0::Aaron Markarian||4::Anthony J. Williams||5::Alonzo D. Ruff,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.kansascity.com/news/local/article316539/Four-shot-one-dead-in-home-invasion-near-Plaza.html||http://www.kansascity.com/news/local/article316555/Lethal-invasion-happened-at-home-of-college-students-KC-police-say.html||http://www.kctv5.com/story/21807435/2-men-charged-in-umkc-students-murder||http://www.kmbc.com/news/1-dead-in-Brookside-Boulevard-quadruple-shooting/19423270,25,7
483788,2013-03-22,New York,Brooklyn,2703 W. 33rd Street,1,3,http://www.gunviolencearchive.org/incident/483788,http://www.nytimes.com/2013/03/23/nyregion/man-killed-in-coney-island-shooting-three-are-wounded.html?_r=0,False,8,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident killed||Home Invasion - Resident injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.5803,Gravesend Houses,-74.0005,,"Brown later released, charges dropped. 3rd time he has been arrested and charged for crime he didn't commit.",0::62||1::24||3::40||4::29,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male,4::Joseph Brown,,"0::Injured||1::Injured||2::Killed||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.usatoday.com/story/news/nation/2013/03/22/coney-island-shooting/2011859/||http://www.nydailynews.com/new-york/brooklyn/b-klyn-man-released-false-arrest-article-1.1303558||http://www.nbcnewyork.com/news/local/Suspect-Shooting-4-Coney-Island-Brooklyn-Released-Custody-Jospeph-Brown-200782171.html||http://newyork.cbslocal.com/2013/03/23/police-search-for-suspect-in-deadly-shooting-at-coney-island-housing-project/||http://www.nytimes.com/2013/03/23/nyregion/man-killed-in-coney-island-shooting-three-are-wounded.html?_r=0,46,23
483835,2013-03-30,California,Merced (county),9200 block of Westside Boulevard,3,2,http://www.gunviolencearchive.org/incident/483835,http://www.sacbee.com/news/article2604101.html,False,16,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",37.3603,,-120.654,,"Hernandez killed in incident allegedly by Ethan Morse and Jacob Tellez, but the latter two were found innocent after prelim hearing.",0::18||1::19||2::16||3::16||4::21||5::19||6::20,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Teen 12-17||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Female||3::Male||4::Male||5::Male||6::Male,0::Bernabed Hernandez-Canela||1::Matthew Fisher||2::Samantha Parreira||5::Jose Luis Botello||6::Jose M. Carballido,5::Gang vs Gang||6::Gang vs Gang,"0::Killed||1::Killed||2::Killed||3::Injured||4::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect,http://www.modbee.com/news/local/crime/article3150494.html||http://abc30.com/archive/9046338/||http://abclocal.go.com/story?section=news/local&id=9046328||http://www.mercedsunstar.com/news/local/crime/article23150256.html||http://abc30.com/news/men-arrested-for-gunning-down-3-teens-in-merced-county/196944/||http://www.sacbee.com/news/article2604101.html,21,12
483817,2013-03-31,Washington,Auburn,2802 Auburn Way North,3,2,http://www.gunviolencearchive.org/incident/483817,http://www.auburn-reporter.com/news/299950811.html,False,8,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",47.3149,Sports Page Tavern,-122.224,,"""Five shooters in all"" involved in incident, but it seems that only one person has been charged for those victims",0::23||1::21||2::25||4::29,0::Adult 18+||1::Adult 18+||2::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Lorenzo Duncan||1::Antuan Greer||2::Nicholas Lindsay||4::Cleanthony Baby Ray Jimerson,,"0::Killed||1::Killed||2::Killed||3::Injured||4::Injured, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://catchwmw.com/2014/04/19/murder-mystery-cell-phone-video-catches-fight-outside-bar-and-gunfire-that-leaves-three-dead/||http://www.king5.com/story/news/2014/08/04/13236862/||http://q13fox.com/2013/03/31/three-people-fatally-shot-outside-auburn-tavern/||http://www.seattletimes.com/seattle-news/3-who-died-in-shooting-at-auburn-tavern-were-friends/||http://komonews.com/archive/3-killed-1-critically-injured-in-gunfight-outside-auburn-bar-11-22-2015||http://www.seattlepi.com/local/article/Charge-Auburn-bar-fight-ended-in-6197876.php||http://www.auburn-reporter.com/news/299950811.html,47,47
483861,2013-04-06,South Carolina,Greenwood,Tabor Street,1,4,http://www.gunviolencearchive.org/incident/483861,http://gwdtoday.com/main.asp?SectionID=2&SubSectionID=27&ArticleID=24847,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",34.1868,,-82.1638,,"Jason Aiken (26, M) arrested, but charges later dropped. Charges against White still pending.",4::15||5::17,4::Teen 12-17||5::Teen 12-17,4::Male||5::Male,4::Malik Rashap Padgett||5::Dayterrius White,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Killed||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://raycomgroup.worldnow.com/story/26293250/solicitor-murder-charge-dropped-in-greenwood-teens-homicide||https://usgunviolence.wordpress.com/2013/04/06/mass-shooting-killed-male-teen-malik-padgett-greenwood-sc/||http://www.wyff4.com/news/local-news/abbeville-greenwood-news/Police-Teen-charged-in-fatal-birthday-party-shooting/19651374||http://gwdtoday.com/main.asp?SectionID=2&SubSectionID=27&ArticleID=24847,12,10
483872,2013-04-07,New York,New York (Manhattan),900 Garden Way,1,3,http://www.gunviolencearchive.org/incident/483872,http://www.jcpost.com/2013/04/08/riley-county-police-make-arrest-in-fatal-shooting-investigation/,False,16,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.9018,,-73.8511,,,0::22||1::23||2::23||3::22||4::43,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Female||2::Female||3::Male||4::Male,0::Michael T. Lowery||1::Christine Kim||2::Alexya Mailea||3::Dustin Ferguson||4::Matthew Dennis Wilson,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wibw.com/home/localnews/headlines/One-Person-Dead-Three-Others-Wounded-In-Shooting-201829531.html||http://themercury.com/articles/manhattan-man-sentenced-in-april-shooting||http://1350kman.com/plea-in-university-garden-murder/||http://cjonline.com/news/2013-04-07/one-dead-three-injured-manhattan-shooting||http://www.jcpost.com/2013/04/08/riley-county-police-make-arrest-in-fatal-shooting-investigation/,81,36
483878,2013-04-07,California,Long Beach,300 block of East Home Street,1,3,http://www.gunviolencearchive.org/incident/483878,http://patch.com/california/longbeach-ca/man-dies-from-gunshot-wound,False,47,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.8479,,-118.19,,,0::23,0::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Randy Demieko Chapman,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://articles.latimes.com/2013/apr/07/local/la-me-ln-long-beach-shooting-one-killed-20130407||http://homicide.latimes.com/post/randy-demieko-chapman/||http://www.dailybulletin.com/20130407/four-shot-in-north-long-beach-one-dead||http://patch.com/california/longbeach-ca/man-dies-from-gunshot-wound,63,33
484268,2013-04-09,Pennsylvania,Philadelphia,Somerset Street and Lee Street,1,3,http://www.gunviolencearchive.org/incident/484268,http://guncrisis.org/2013/04/10/quadruple-shooting-sets-off-violent-night-in-philadelphia/,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.9924,,-75.13,,,0::21||1::18||2::22||3::33,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male,"0::Amanda Martinez||1::Larry Robinson||2::Jose Torres||3::Carl Walden||4::Luis ""Bebe"" Soto",,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.philly.com/philly/blogs/dncrime/Four-shot-one-killed-in-North-Philly.html||http://articles.philly.com/2015-09-02/news/66112423_1_street-brawl-third-degree-murder-testimony||http://articles.philly.com/2015-08-28/news/65933760_1_witness-courtroom-parked-car||http://articles.philly.com/2013-04-10/news/38437317_1_fights-somerset-street-shooting||http://guncrisis.org/2013/04/10/quadruple-shooting-sets-off-violent-night-in-philadelphia/,,
484279,2013-04-10,California,Vallejo,1800 block of Mini Drive,0,4,http://www.gunviolencearchive.org/incident/484279,http://abclocal.go.com/story?section=news/local/north_bay&id=9061192,False,5,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.1519,,-122.261,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Female,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://abc7news.com/archive/9061192/||http://sanfrancisco.cbslocal.com/2013/04/11/rolling-attack-shooting-in-vallejo-injures-4-suspects-sought/||http://abclocal.go.com/story?section=news/local/north_bay&id=9061192,14,3
484307,2013-04-14,Arizona,Phoenix,12400 North 25th Avenue,2,4,http://www.gunviolencearchive.org/incident/484307,http://ktar.com/story/71788/2-dead-4-wounded-in-drive-by-shooting-in-north-phoenix/,False,6,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.5985,,-112.113,,,0::18||1::16||2::16||3::17||4::18||5::21||6::22,0::Adult 18+||1::Teen 12-17||2::Teen 12-17||3::Teen 12-17||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male,0::Jason Jonathan Acosta-Ramos||1::Elliseo O. Cantu||6::Carlos Rodriguez-Espinoza,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Injured||5::Injured||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,http://www.cbs5az.com/story/21973950/2-dead-4-others-wounded-in-drive-by-shooting||http://archive.azcentral.com/community/phoenix/articles/20130414phoenix-party-four-shot-abrk.html||http://www.abc15.com/news/region-phoenix-metro/central-phoenix/four-hospitalized-after-gunfire-erupts-at-phoenix-party||http://ktar.com/story/71788/2-dead-4-wounded-in-drive-by-shooting-in-north-phoenix/,28,28
484287,2013-04-14,Kentucky,Lexington,750 East New Circle Rd,1,4,http://www.gunviolencearchive.org/incident/484287,http://www.wlky.com/news/local-news/kentucky-news/police-make-arrest-in-bowling-alley-shooting/20644068,False,6,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.0485,Eastland bowling alley,-84.453,,,0::22||2::20||3::24||4::23||5::22,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,0::Steven Reynolds||1::Malcolm Williams||2::Jeffery Holland||3::Dominique Mason||4::Vincenzo Happy||5::Devonte Laval Webb,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.wkyt.com/news/headlines/One-dead-four-injured-in-shooting-at-Eastland-Bowling-Center-overnight-202983501.html||http://www.kentucky.com/news/local/crime/article44418864.html||http://www.kentucky.com/news/local/crime/article44419155.html||http://www.kentucky.com/news/local/crime/article44430186.html||http://www.wlky.com/news/local-news/kentucky-news/police-make-arrest-in-bowling-alley-shooting/20644068,,
484317,2013-04-18,Ohio,Akron,Kimlyn Circle,4,0,http://www.gunviolencearchive.org/incident/484317,http://www.huffingtonpost.com/2013/04/19/ohio-basement-murders-cop_n_3114243.html,False,13,0::Unknown,0::Handgun,"Shot - Dead (murder, accidental, suicide)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Drug involvement||Armed robbery with injury/death and/or evidence of DGU found",41.1102,,-81.4771,1,,0::19||1::19||2::23||3::24||4::22,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Female||2::Female||3::Male||4::Male,0::Kiana Welch||1::Maria Nash||2::Kem Delaney||3::Ronald Roberts||4::Derrick Brantley,,"0::Killed||1::Killed||2::Killed||3::Killed||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.newsnet5.com/news/local-news/oh-summit/akron-police-four-people-shot-in-the-head-killed-bodies-found-in-basement||http://www.cleveland.com/metro/index.ssf/2014/07/man_sentenced_to_four_consecut.html||http://www.ohio.com/news/break-news/four-people-found-shot-to-death-at-north-akron-apartment-complex-1.390771||http://www.huffingtonpost.com/2013/04/19/ohio-basement-murders-cop_n_3114243.html,34,28
484333,2013-04-21,Washington,Federal Way,33300 block of 18th Lane South,5,0,http://www.gunviolencearchive.org/incident/484333,http://blogs.seattletimes.com/today/2013/04/5-dead-in-federal-way-shooting/,False,9,0::Not-stolen||1::Unknown,0::40 SW||1::Shotgun,"Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident killed||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence||Concealed Carry License - Perpetrator",47.303,Pinewood Village Apartments,-122.31,2,,0::62||1::25||2::46||3::23||4::28,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Female||2::Male||3::Male||4::Male,0::Roland Scobee||1::Justine Baez||3::Ceasar Valdovinos||4::Dennis Clark III,,0::Killed||1::Killed||2::Killed||3::Killed||4::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://q13fox.com/2013/04/22/gunshots-injure-at-least-3-at-federal-way-apartment-complex/||http://www.kirotv.com/news/news/five-dead-bloody-shootout-federal-way-apartments/nXSkN/||http://www.federalwaymirror.com/news/204381321.html||http://www.seattletimes.com/seattle-news/witnesses-among-5-dead-in-federal-way/||http://blogs.seattletimes.com/today/2013/04/5-dead-in-federal-way-shooting/,30,30
484351,2013-04-22,Illinois,Chicago (Englewood),5700 block of South Lowe Avenue,0,4,http://www.gunviolencearchive.org/incident/484351,http://www.dnainfo.com/chicago/20130422/englewood/four-wounded-afternoon-shooting-englewood,False,7,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.7906,,-87.6418,,,0::19||1::30||2::32||3::34,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,2::Vincent Ford,4::Gang vs Gang,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://chicago.cbslocal.com/2013/04/23/seven-wounded-in-shootings-on-south-west-sides/||http://www.dnainfo.com/chicago/20130422/englewood/four-wounded-afternoon-shooting-englewood,6,3
485746,2013-04-22,Louisiana,Harvey,2300 block of Lapalco Boulevard,0,5,http://www.gunviolencearchive.org/incident/485746,http://theadvocate.com/news/neworleans/13833714-148/high-profile-harvey-hustlers-trial-underway,False,2,0::Unknown||1::Unknown||2::Unknown,0::7.62 [AK-47]||1::40 SW||2::9mm,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Possession (gun(s) found during commission of other crimes)||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",29.8736,,-90.0568,3,1yo girl paralyzed. Williams leader of the Harvey Hustlers gang alleged to have orchestrated botched hit on rival gang member.,0::2||1::1||2::3||3::67||4::63||5::19||6::18||7::21||8::20,0::Child 0-11||1::Child 0-11||2::Child 0-11||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+,0::Male||1::Female||2::Female||3::Female||4::Female||5::Male||6::Male||7::Male||8::Male||9::Male,5::Davante Robertson||6::Charlie A. Gumms||7::Frankie Hookfin||8::Lashawn Davis||9::Robert “Little Rob” Williams,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested||7::Unharmed, Arrested||8::Unharmed, Arrested||9::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect||8::Subject-Suspect||9::Subject-Suspect,http://www.wdsu.com/news/local-news/new-orleans/Sheriff-Cold-blooded-killers-shot-at-children-women-in-Harvey-incident/19841056||http://www.nola.com/crime/index.ssf/2013/04/3_arrested_in_quintuple_shooti.html||http://www.nola.com/crime/index.ssf/2013/04/harvey_quintuple_shooting_vict.html||http://www.nola.com/crime/index.ssf/2013/05/jefferson_parish_detectives_co.html||http://www.nola.com/crime/index.ssf/2013/04/relatives_1-year-old_injured_i.html||http://www.nola.com/crime/index.ssf/2015/09/harvey_hustlers_members_plead.html||http://theadvocate.com/news/neworleans/13833714-148/high-profile-harvey-hustlers-trial-underway,87,7
485811,2013-04-24,Illinois,Manchester,East Street,6,1,http://www.gunviolencearchive.org/incident/485811,http://fox2now.com/2013/04/25/family-needs-help-to-bury-manchester-il-shooting-victims/,False,18,0::Unknown||1::Unknown,0::Unknown||1::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident killed||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence||Possession (gun(s) found during commission of other crimes)",39.5417,,-90.3301,2,Shotgun was murder weapon. Custody dispute over 3yo child not present. Brittney was five months pregnant.,0::64||1::22||2::29||3::5||4::1,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Child 0-11||4::Child 0-11,0::Female||1::Female||2::Male||3::Male||4::Male||5::Female||6::Male,0::Joanne Sinclaire||1::Brittany Luark||2::Roy Ralston||3::Nolan Ralston||4::Brantley Ralston||5::Kassidy||6::Rick Odell Smith,6::Significant others - current or former,0::Killed||1::Killed||2::Killed||3::Killed||4::Killed||5::Injured||6::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,http://fox2now.com/2013/04/24/possible-shooting-in-manchester-il-2-nearby-school-districts-closed/||http://stlouis.cbslocal.com/2013/05/03/illinois-state-police-release-report-on-manchester-mass-shooting/||http://fox2now.com/2013/04/25/family-needs-help-to-bury-manchester-il-shooting-victims/,100,50
489185,2013-04-25,Ohio,Oberlin,500 block of West College Street,0,4,http://www.gunviolencearchive.org/incident/489185,http://chronicle.northcoastnow.com/2013/11/08/jury-refuses-indictment-in-oberlin-shooting-case/,False,4,0::Unknown,0::9mm,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.2927,,-82.2347,1,"ms; 4 inj. Sean Woodings, 25, had been charged with four counts of felonious assault but was not indicted, claiming self-defense.",0::17||1::22||2::23||3::26,0::Teen 12-17||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Isiah Richardson||1::Anthony Lee||2::Quan Jackson||3::Emilio Hernandez,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://chronicle.northcoastnow.com/2013/04/26/four-people-shot-in-oberlin/||http://www.newsnet5.com/news/local-news/oh-lorain/four-shot-at-an-apartment-in-oberlin-suspect-in-custody||http://chronicle.northcoastnow.com/2013/11/08/jury-refuses-indictment-in-oberlin-shooting-case/,56,13
485821,2013-04-27,Florida,Williston,County Road 318,1,3,http://www.gunviolencearchive.org/incident/485821,https://www.youtube.com/watch?v=AzC_jFR7k6c,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",29.4035,,-82.3647,,Incident took place at annual crab festival. Perp pleads guilty; sentenced on 9/25/15.,0::36||5::19,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Female||5::Male,0::Barry Barney||1::Kristopher Brumfield||2::Nikeria Solomon||3::Daryl Rehm||4::Ariana Brown||5::Devonte T. Ocasio,,"0::Killed||1::Injured||2::Injured||3::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.gainesville.com/article/20130428/ARTICLES/130429609/1002/news?p=1&tc=pg||http://www.gainesville.com/article/20130429/ARTICLES/130429549?p=1&tc=pg||http://www.wcjb.com/local-news/2013/10/judge-declares-mistrial-williston-crab-fest-shooting||http://www.ocala.com/article/20150925/ARTICLES/150929859||http://www.upi.com/blog/2013/05/01/5-shot-1-dead-at-Crab-Festival-in-Williston-Florida/1631367424262/||https://www.youtube.com/watch?v=AzC_jFR7k6c,20,5
485874,2013-04-28,North Carolina,Charlotte,William Reynolds Drive,0,5,http://www.gunviolencearchive.org/incident/485874,http://www.wcnc.com/story/news/local/2014/07/02/10993474/,False,12,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.2479,,-80.726,,5 wounded at house party. No arrest made.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.wcnc.com/story/news/local/2014/07/02/10993474/,99,40
485885,2013-04-28,Pennsylvania,Chester,Rose and Upland Street,1,3,http://www.gunviolencearchive.org/incident/485885,http://several%20men%20inside%20the%20vehicle%20pointed%20weapons%20out%20of%20the%20window%20and%20opened%20fire%2C/,False,1,0::Unknown||1::Unknown,0::Unknown||1::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.8564,,-75.3587,2,17yo shot dead. Several men inside the vehicle pointed weapons out of the window and opened fire.,0::17||1::16||2::18||3::40,0::Teen 12-17||1::Teen 12-17||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||3::Male||4::Male||5::Male||6::Male,0::Darren Burton||1::Jay Latham,,0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed||5::Unharmed||6::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect,http://www.nbcphiladelphia.com/news/local/4-Men-Struck-in-Drive-By-Shooting-205031621.html,,
485979,2013-04-28,Tennessee,Jackson,438 East Main Street,2,2,http://www.gunviolencearchive.org/incident/485979,https://www.wbbjtv.com/2014/02/19/jury-returns-with-verdict-in-downtown-double-homicide/,False,8,0::Unknown||1::Unknown,0::9mm||1::45 Auto,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",35.6141,Wolfe Enterprises,-88.815,2,2killed; 2 inj. Parking lot of nightclub. Both perps found guilty and sentenced.,0::31||1::31||2::32||3::22||5::31||6::27,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Male||5::Male||6::Male,0::Brian Jontez Banes||1::Delandis Cortez Clark||2::Dartalin Pharmer||3::Tashonda Davis||5::Anthony Montrell Swift||6::Travontay Berry,,"0::Killed||1::Killed||2::Injured||3::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect,http://www.examiner.com/article/two-dead-two-wounded-at-shooting-at-private-party||http://www.examiner.com/article/two-men-indicted-on-charges-double-murder-at-wolfe-enterprises||https://www.wbbjtv.com/2014/03/31/man-sentenced-for-charges-connected-to-double-murder/||https://www.wbbjtv.com/2014/02/19/jury-returns-with-verdict-in-downtown-double-homicide/,80,27
984353,2013-05-02,Maryland,Baltimore,600 block of Cokesbury Ave,1,0,http://www.gunviolencearchive.org/incident/984353,http://abcnews.go.com/US/wireStory/baltimore-gang-member-admits-killing-witness-2013-51040451,False,7,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Gang involvement||Drug involvement",39.3167,,-76.6085,1,Black Guerilla Family gang,0::22||1::25,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Moses Malone||1::Wesley Jamal Brown,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://articles.baltimoresun.com/2013-05-06/news/bs-md-ci-triple-shooting-20130506_1_multiple-gunshot-wounds-baltimore-police-three-suspects||http://abcnews.go.com/US/wireStory/baltimore-gang-member-admits-killing-witness-2013-51040451,43,43
486005,2013-05-02,New Jersey,Newark,804 S. 16th St,0,5,http://www.gunviolencearchive.org/incident/486005,http://www.nj.com/essex/index.ssf/2013/05/five_shot_in_newark_after_mour.html,False,10,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.7268,,-74.2116,,5 Mourners at a vigil wounded. Minor injuries. Man exits car shoots and drives away.,0::10||1::22||2::25||3::46||4::48,0::Child 0-11||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Female||2::Male||3::Female||4::Male||5::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://patch.com/new-jersey/newarknj/five-shot-in-newark-thursday-night||http://www.nytimes.com/2013/05/03/nyregion/five-are-shot-at-a-home-in-newark.html?_r=1||http://www.nj.com/essex/index.ssf/2013/05/five_shot_in_newark_after_mour.html,28,28
486027,2013-05-04,North Carolina,Smithfield,150 South Equity Drive,0,4,http://www.gunviolencearchive.org/incident/486027,http://www.wxii12.com/news/local-news/north-carolina/4-bystanders-injured-in-smithfield-bar-shooting/20015078,False,7,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",35.5076,N&N Sports Bar & Grill,-78.3221,1,4 inj . Bar argument. Woman gets gun from car and shoots 4 patrons. All minor inj.,4::29,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Female||2::Male||3::Female,0::Elias Sanders||1::Charnise Jones||2::Cedric Mcerchrin||3::Felicia Jones||4::Krystal Olymica David,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wral.com/four-injured-in-shooting-at-smithfield-sports-bar/12411515/||http://myfox8.com/2013/05/04/four-injured-in-smithfield-bar-shooting/||http://www.wxii12.com/news/local-news/north-carolina/4-bystanders-injured-in-smithfield-bar-shooting/20015078,28,11
486056,2013-05-05,California,Palo Alto,Bay Road and University Avenue,0,5,http://www.gunviolencearchive.org/incident/486056,http://paloaltoonline.com/news/2013/05/05/six-people-injured-in-east-palo-alto-shooting,False,14,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",37.4717,,-122.14,,Woman and child bystanders. Child wasn't hit by gunfire. All non life-threatening.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,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://12160.info/forum/topics/6-injured-from-shooting-near-university-ave-mcdonalds-in-east-pal||http://paloaltoonline.com/news/2013/05/05/six-people-injured-in-east-palo-alto-shooting,24,13
486068,2013-05-06,Pennsylvania,Johnstown,Horner and Messenger streets,0,4,http://www.gunviolencearchive.org/incident/486068,http://www.tribdem.com/news/local_news/police-question-men-wounded-in-shooting/article_30bc352d-dba2-5075-887b-4c1d3665cbcf.html,False,12,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.3091,,-78.9124,,4 men inj. It’s not clear if they were shooting at each other or were targeted by another person. non life-threatening inj.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.fox8tv.com/News/NewsDetails.asp?NewsID=11188||http://www.tribdem.com/news/local_news/police-question-men-wounded-in-shooting/article_30bc352d-dba2-5075-887b-4c1d3665cbcf.html,,
486109,2013-05-10,California,Los Angeles,1600 block of West 205th Street,3,1,http://www.gunviolencearchive.org/incident/486109,http://articles.latimes.com/2013/may/10/local/la-me-0511-triple-murder-20130511,False,43,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Drug involvement",33.8447,,-118.307,,3 killed; 1 inj. 2 cars seen leaving the scene. 4th vi critical.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,,,0::Killed||1::Killed||2::Killed||3::Injured||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://ktla.com/2013/05/10/police-3-dead-in-shooting-in-harbor-gateway/||http://www.latimes.com/local/lanow/la-me-ln-harbor-gateway-shooting-20130510-story.html||http://articles.latimes.com/2013/may/10/local/la-me-0511-triple-murder-20130511,64,35
486142,2013-05-11,Indiana,Columbus,E Main Cross St,5,0,http://www.gunviolencearchive.org/incident/486142,http://article.wn.com/view/2015/02/25/Samuel_Sallee_found_guilty_in_Waynesville_quadruple_murder/,False,6,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Drug involvement",39.1149,,-85.8929,1,"mm; ms 4 killed. Drug activity. Perp guilty/sentenced.;
39.115044, -85.892496",0::41||1::41||2::53||3::39||4::55,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Female||3::Male||4::Male,0::Shawn L. Burton||1::Aaron T. Cross||2::Kathryn Burton||3::Thomas W. Smith||4::Samuel Earl Sallee,,"0::Killed||1::Killed||2::Killed||3::Killed||4::Killed, Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wdrb.com/story/22227360/police-over-night-quadruple-homcide-in-waynesville||http://www.nydailynews.com/news/crime/indiana-cops-hold-suspect-drug-related-quadruple-murder-article-1.1375677||http://article.wn.com/view/2015/02/25/Samuel_Sallee_found_guilty_in_Waynesville_quadruple_murder/,59,44
486121,2013-05-11,Pennsylvania,Philadelphia,21st Street and Medary Avenue,0,4,http://www.gunviolencearchive.org/incident/486121,http://articles.philly.com/2013-05-14/news/39230986_1_apparent-drive-by-shooting-three-teenagers-stop-sign,False,2,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.0505,,-75.1554,,MS 4 injured. All stable cond.,0::15||1::16||2::17||3::20,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.philly.com/philly/blogs/dncrime/Four-shot-outside-corner-store-in-East-Germantown.html||http://articles.philly.com/2013-05-14/news/39230986_1_apparent-drive-by-shooting-three-teenagers-stop-sign,,
486244,2013-05-11,New Jersey,Jersey City,Fremont Street,0,4,http://www.gunviolencearchive.org/incident/486244,http://newyork.cbslocal.com/2013/05/11/4-shot-wounded-in-jersey-city-public-housing-development/,False,10,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.7207,,-74.0593,1,non-life threatening injuries,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.nj.com/hudson/index.ssf/2013/05/4_shot_outside_jersey_city_hou.html||http://newyork.cbslocal.com/2013/05/11/4-shot-wounded-in-jersey-city-public-housing-development/,31,31
486153,2013-05-12,Arizona,Apache Junction,3600 block of East Apache Trail,0,5,http://www.gunviolencearchive.org/incident/486153,http://www.cbs5az.com/story/22228993/trial-set-for-az-man-in-motorcycle-gang-shootout,False,4,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Gang involvement||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",33.4473,Loose Cannons Motorcycle Club,-111.503,,ms; 4 inj. 1 crit; 1 stable.,4::47,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male,4::Kenneth Barnett,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured, Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://ktar.com/story/72736/four-shot-overnight-at-party-in-apache-junction/||http://www.eastvalleytribune.com/local/apache_junction/article_cc94a64c-bc06-11e2-b40f-001a4bcf887a.html||http://www.cbs5az.com/story/22228993/trial-set-for-az-man-in-motorcycle-gang-shootout,16,16
486209,2013-05-12,Louisiana,New Orleans,Frenchmen Street,0,19,http://www.gunviolencearchive.org/incident/486209,http://www.nola.com/crime/index.ssf/2015/09/mothers_day_shooting_suspects_4.html,False,2,0::Unknown,0::7.62 [AK-47],"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Drug involvement",29.9861,,-90.0595,1,ms; 19 inj. Rival gang members retaliation effort. Akein and Shawn Scott were shooters. Stanley Scott ordered hit. 3 brothers sentenced.,17::10||18::10||19::19||20::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+||10::Adult 18+||11::Teen 12-17||12::Adult 18+||13::Adult 18+||14::Adult 18+||15::Adult 18+||16::Adult 18+||17::Child 0-11||18::Child 0-11||19::Adult 18+||20::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male||8::Male||9::Male||10::Female||11::Female||12::Female||13::Female||14::Female||15::Female||16::Female||17::Male||18::Female||19::Male||20::Male||21::Male,0::JT||19::Akein Scott||20::Shawn Scott||21::Stanley Scott,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Injured||9::Injured||10::Injured||11::Injured||12::Injured||13::Injured||14::Injured||15::Injured||16::Injured||17::Injured||18::Injured||19::Unharmed, Arrested||20::Unharmed, Arrested||21::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Victim||10::Victim||11::Victim||12::Victim||13::Victim||14::Victim||15::Victim||16::Victim||17::Victim||18::Victim||19::Subject-Suspect||20::Subject-Suspect||21::Subject-Suspect,http://www.upi.com/Top_News/US/2013/05/12/About-19-wounded-in-New-Orleans-Mothers-Day-parade-shooting/UPI-65901368404258/||http://usnews.nbcnews.com/_news/2013/05/12/18213691-at-least-19-injured-in-new-orleans-mothers-day-shooting?lite||https://www.youtube.com/watch?v=c0HFWmgb6Ks||http://www.wdsu.com/news/local-news/new-orleans/nopd-seeks-mothers-day-shooting-suspect-seen-in-surveillance-video/20120216||http://www.usatoday.com/story/news/nation/2013/05/13/new-orleans-parade-mothers-day-shooting-suspect-video/2154823/||http://www.nola.com/crime/index.ssf/2015/09/mothers_day_shooting_suspects_4.html,97,4
486316,2013-05-13,Ohio,Cincinnati,Kings Run Road,0,4,http://www.gunviolencearchive.org/incident/486316,http://www.wlwt.com/news/local-news/cincinnati/four-wounded-in-winton-hills-shootings/20125324,False,1,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.1788,,-84.5124,1,ms. 2vics found on 100 block of Craft Street. Shooting occurred at a market on Kings Run Road. 1 shooter. Winton Hills.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wlwt.com/news/local-news/cincinnati/four-wounded-in-winton-hills-shootings/20125324,33,9
1007785,2013-05-14,New Jersey,Delanco,Delaware Ave,0,2,http://www.gunviolencearchive.org/incident/1007785,http://www.burlingtoncountytimes.com/news/20171214/man-charged-in-shooting-incident-with-delanco-cop-not-guilty-by-reason-of-insanity,False,3,0::Unknown,0::Unknown,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - Officer shot||Officer Involved Shooting - subject/suspect/perpetrator shot,40.0521,,-74.9578,1,scuffle during arrest led to suspect being shot 4 times and officer being shot once with his own gun,1::22,1::Adult 18+,0::Male||1::Male,0::Officer||1::Eugene Taylor,,0::Injured||1::Injured,0::Victim||1::Subject-Suspect,http://www.burlingtoncountytimes.com/news/20171214/man-charged-in-shooting-incident-with-delanco-cop-not-guilty-by-reason-of-insanity,7,7
486327,2013-05-15,Michigan,Detroit,9000 block of Carlin,1,4,http://www.gunviolencearchive.org/incident/486327,http://detroit.cbslocal.com/2013/05/16/4-shot-1-killed-during-argument-in-detroit/,False,13,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.3613,,-83.1787,,"ms 1 dead, 4 wounded. 2 families arguing leads to gunfire.",0::60||1::58||2::15||3::24||4::32||5::24,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Male||2::Female||3::Female||4::Female||5::Male,,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.wxyz.com/news/1-dead-4-injured-in-detroit-shooting||http://detroit.cbslocal.com/2013/05/16/4-shot-1-killed-during-argument-in-detroit/,11,3
486334,2013-05-16,Pennsylvania,Philadelphia,2600 block of Daggett Street,0,4,http://www.gunviolencearchive.org/incident/486334,http://articles.philly.com/2013-05-17/news/39312815_1_graze-wound-stray-bullet-stable-condition,False,1,0::Unknown,0::44 Mag,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.9204,,-75.2296,1,ms Argument lead to shooting. Possibly 2 shooters. 4 injured. 3 critical; 1 stable.,0::41||1::21||2::26,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Female||3::Male||4::Male||5::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.nbcphiladelphia.com/news/local/4-People-Shot-in-Southwest-Philly-207645221.html||http://articles.philly.com/2013-05-17/news/39312815_1_graze-wound-stray-bullet-stable-condition,,
873575,2013-05-18,New York,Jamaica,Sutphin Blvd and Rockaway Blvd,1,0,http://www.gunviolencearchive.org/incident/873575,http://qns.com/story/2017/06/22/second-shooter-convicted-fatally-shooting-jamaica-teenager-riding-bus/,False,5,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Gang involvement||Possession of gun by felon or prohibited person",40.673,,-73.7881,1,"Girl shot dead while riding MTA Q6 Bus; vic was unintended target of gang related shooting;
40.673074, -73.787983 ;",0::14||1::15||2::21,0::Teen 12-17||1::Teen 12-17||2::Adult 18+,0::Female||1::Male||2::Male,0::D'aja Robinson||1::Shamel Capers||2::Kevin McClinton,,0::Killed||1::Arrested||2::Arrested,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://newyork.cbslocal.com/2014/07/30/second-suspect-charged-in-queens-shooting-that-killed-girl-14-on-bus-last-year/||http://qns.com/story/2017/06/22/second-shooter-convicted-fatally-shooting-jamaica-teenager-riding-bus/,32,10
486611,2013-05-18,Virginia,Victoria,2073 Pleasant Oak Rd,0,4,http://www.gunviolencearchive.org/incident/486611,http://southsidemessenger.com/shooter-accepts-25-year-prison-sentence-for-wounding-4-men-in-lunenburg-county/,False,5,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",37.0177,,-78.1562,1,ms; 4 inj; critical but stable condition. Fight occurred during a social gathering. Perps convicted and sentenced.,4::22,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,0::Stan Woods||1::Dequan Jones||2::Treyvious Ghee||3::Standrekas “Stan” Woods||4::Codarrell Lee Yates||5::Robert “Chuckie” Fields,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.nbc12.com/story/22291717/man-wanted-in-lunenburg-quadruple-shooting||https://www.facebook.com/NBC12News/posts/606943665983405||http://southsidemessenger.com/shooter-accepts-25-year-prison-sentence-for-wounding-4-men-in-lunenburg-county/,75,15
486586,2013-05-19,Tennessee,Memphis,2281 Ketchum Rd,2,2,http://www.gunviolencearchive.org/incident/486586,http://wreg.com/2013/05/19/4-shot-2-killed-in-south-memphis-apartment-complex/,False,9,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.079,,-89.988,,2 killed; 2 injured. 2 women fighting over man.,0::18||1::14||2::28,0::Adult 18+||1::Teen 12-17||2::Adult 18+||4::Adult 18+,2::Male||3::Female||4::Female,0::Brandon Chaffin||2::Chris Watts||3::Illya Benson,,0::Killed||1::Injured||2::Injured||3::Killed||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wmcactionnews5.com/story/22294063/four-shot||http://wreg.com/2013/05/19/4-shot-2-killed-in-south-memphis-apartment-complex/,91,29
486605,2013-05-19,Michigan,Detroit,,0,4,http://www.gunviolencearchive.org/incident/486605,http://detroit.cbslocal.com/tag/drive-by-shooting/feed/,False,13,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.3481,,-83.0613,1,"ms; 4 inj. Drive by shooting. 1 critical, 3 serious but stable. Suspect used a high-powered assault rifle.",0::18||1::22||2::27||3::30,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://wjbk.dua1.worldnow.com/story/22293913/four-shot-in-drive-by-shooting-on-detroits-east-side||http://www.freep.com/article/20130519/NEWS05/305190159/Four-shot-outside-party-in-Detroit||http://detroit.cbslocal.com/tag/drive-by-shooting/feed/,6,1
486617,2013-05-20,Illinois,Chicago,5200 block of West Iowa Street,0,4,http://www.gunviolencearchive.org/incident/486617,http://www.chicagotribune.com/news/local/breaking/chi-man-shot-in-the-head-on-the-south-side-20130520-story.html,False,7,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.8968,,-87.7556,,ms; 4 inj; stable. West Side's South Austin neighborhood.,0::14||1::17||2::18||3::19,0::Teen 12-17||1::Teen 12-17||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Female||2::Female||3::Female||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.chicagotribune.com/news/local/breaking/chi-man-shot-in-the-head-on-the-south-side-20130520-story.html,8,4
486623,2013-05-23,Tennessee,Bean Station,1034 Main Street,2,2,http://www.gunviolencearchive.org/incident/486623,http://legacy.wbir.com/story/news/local/hamblen-jefferson-cocke-greene/2014/10/01/developing-pharmacy-shooting-suspect-to-make-plea-deal/16526831/,False,2,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Armed robbery with injury/death and/or evidence of DGU found",36.3474,Down Home Pharmacy,-83.2849,1,ms; 2 dead; 2 wounded. Pharmacy robbery by ex cop. He was sentenced to life in prison without the possibility of parole.,1::72||2::45||4::37,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Female||3::Female||4::Male,0::Stephen Lovell||1::Richard Alexander Sommerville||2::Alexia Gail Wilson||3::Janet Cliff||4::Jason Brian Holt,4::Armed Robbery,"0::Killed||1::Killed||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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://legacy.wbir.com/story/news/local/hamblen-jefferson-cocke-greene/2014/10/01/developing-pharmacy-shooting-suspect-to-make-plea-deal/16526831/,35,8
486971,2013-05-24,California,Bakersfield,3700 block of Columbus Street,2,2,http://www.gunviolencearchive.org/incident/486971,http://bakersfieldnow.com/news/local/man-in-court-for-2013-double-homicide,False,23,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.3998,,-118.952,,"ms; 2killed, 2inj. Alleged perp arrested June 2015 and extradited from Mexico.",0::20||1::17||4::21,0::Adult 18+||1::Teen 12-17||4::Adult 18+,0::Male||1::Male||4::Male,0::Jose Garcia III||1::Feliberto Ponce||4::Julio Jesus Romero,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://bakersfieldnow.com/news/local/4-shot-on-columbus-street-2-die||http://bakersfieldnow.com/news/local/police-name-suspect-in-weekend-party-shooting-that-killed-2||http://bakersfieldnow.com/news/local/man-arrested-in-connection-with-2013-house-party-murders||http://bakersfieldnow.com/news/local/man-in-court-for-2013-double-homicide,34,16
486977,2013-05-25,Michigan,Flint,1100 block of Paterson,1,3,http://www.gunviolencearchive.org/incident/486977,http://www.mlive.com/news/flint/index.ssf/2015/03/flint_man_not_guilty_of_murder.html,False,5,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",43.034,,-83.7182,1,"ms; 1 killed, 3 inj. Group of women arguing, 2 men exit vehicle and fire on them. Perp found guilty to
lesser charges.",0::20,0::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Female||2::Female||3::Male||4::Male,0::Darnisha Oaks||4::Antonio King Green,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.mlive.com/news/flint/index.ssf/2013/05/four_people_injured_during_sho.html||http://www.wnem.com/story/22423822/three-women-shot-in-flint||http://www.mlive.com/news/flint/index.ssf/2013/05/antonio_king_green_charged_wit.html#incart_river_default||http://www.mlive.com/news/flint/index.ssf/2013/05/woman_slain_in_flint_quadruple.html||http://www.mlive.com/news/flint/index.ssf/2013/05/one_woman_dead_in_flint_after.html||http://www.mlive.com/news/flint/index.ssf/2015/03/flint_man_not_guilty_of_murder.html,34,27
486998,2013-05-25,Virginia,Hampton,1900 block of Coliseum Drive,1,4,http://www.gunviolencearchive.org/incident/486998,http://wavy.com/2014/04/15/charges-could-be-dropped-in-hampton-carnival-shooting/,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",37.0377,,-76.3859,,"ms; 1 killed, 4inj. Hampton Coliseum Spring Carnival goers shot. Charges nolle prosequi.",0::16||1::14||2::16||3::17||4::18||5::15||6::17,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Teen 12-17||4::Adult 18+||5::Teen 12-17||6::Teen 12-17,0::Male||5::Male||6::Male,0::Ralphael Davis Jr||5::Ryan Taybron||6::Eric Nixon,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect,http://articles.dailypress.com/2013-05-28/news/dp-nws-hampton-shooting-vigil-20130528_1_gunshot-wound-hampton-commonwealth-monday-evening||http://articles.dailypress.com/2013-07-30/news/dp-nws-hampton-shooting-hearing-20130730_1_hampton-coliseum-spring-carnival-ralphael-davis-jr-one-teen||http://wavy.com/2014/04/15/charges-could-be-dropped-in-hampton-carnival-shooting/,92,2
487052,2013-05-28,Tennessee,Memphis,2850 Brewer Avenue,1,3,http://www.gunviolencearchive.org/incident/487052,http://www.wmcactionnews5.com/story/22444072/gunfire-rocks-neighborhood-four-people-shot,False,9,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.0848,,-89.9678,,"ms; 1 killed, 3 inj. Disagreement occurred from a dice game and gunfire was exchanged.",0::17||1::18||2::19||3::20,0::Teen 12-17||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Female||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Killed||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wmcactionnews5.com/story/22444072/gunfire-rocks-neighborhood-four-people-shot||http://www.wmcactionnews5.com/story/22444072/gunfire-rocks-neighborhood-four-people-shot,91,33
487082,2013-05-29,Illinois,Chicago,,0,4,http://www.gunviolencearchive.org/incident/487082,http://www.dnainfo.com/chicago/20130521/bronzeville/one-killed-four-wounded-overnight-shootings,False,7,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",41.8859,Austin,-87.6251,,ms; 4 inj. Crowd gathered as drive by occurs. Possibly gang related. No serious injuries.,0::19||1::18||2::17||3::14,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Teen 12-17||4::Adult 18+,0::Female||1::Female||2::Female||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.chicagotribune.com/news/local/breaking/chi-chicago-shootings-violence-2-shot-on-far-south-side-20130529-story.html||http://homicides.suntimes.com/2013/05/29/3-dead-5-hurt-in-south-side-shootings/||http://www.dnainfo.com/chicago/20130521/bronzeville/one-killed-four-wounded-overnight-shootings,5,3
487088,2013-05-31,Georgia,Atlanta,1000 block of Fair Street,0,4,http://www.gunviolencearchive.org/incident/487088,,False,5,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.749,,-84.4211,,"ms; 4 inj, non life-threatening. Drive by possibly stemmed from ongoing disagreement on social media.",,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Female||2::Female||3::Female||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.11alive.com/news/article/294952/1/4-people-shot-on-their-porch-during-neighborhood-dispute,56,39
487261,2013-06-01,Wisconsin,Milwaukee,4126 N Teutonia Ave,0,4,http://www.gunviolencearchive.org/incident/487261,http://www.jsonline.com/news/regional-news-briefs-b9924216z1-209817861.html,False,4,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",43.092,Zarkos nightclub,-87.94,,The four victims have been hospitalized for non-life threatening injuries. Bar goes out of business after shootings.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.jsonline.com/news/crime/milwaukee-club-where-four-were-shot-has-drawn-police-attention-in-past-b9925195z1-209951451.html||http://www.jsonline.com/blogs/news/210573051.html||http://fox6now.com/2013/06/01/4-shot-outside-milwaukee-nightclub/||http://www.jsonline.com/news/regional-news-briefs-b9924216z1-209817861.html,10,4
489314,2013-06-01,California,Vallejo,1st block of Linfield Drive,2,2,http://www.gunviolencearchive.org/incident/489314,http://www.sfgate.com/crime/article/2-killed-2-hurt-in-Vallejo-shooting-4569496.php,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.1472,,-122.24,,ms; 2killed;2 inj. 4 shot at party.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Killed||1::Killed||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.dailyrepublic.com/news/crimecourts/2-dead-2-hurt-during-vallejo-party-shooting/||http://www.sfgate.com/crime/article/2-killed-2-hurt-in-Vallejo-shooting-4569496.php||http://www.sfgate.com/crime/article/2-killed-2-hurt-in-Vallejo-shooting-4569496.php,14,3
487266,2013-06-02,Indiana,Indianapolis,1913 East 46th Street,0,4,http://www.gunviolencearchive.org/incident/487266,http://www.indystar.com/article/20130602/NEWS02/306020016/4-shot-when-violence-breaks-out-at-large-Northside-teen-party,False,7,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.8401,,-86.1289,,ms; 4inj. non life-threatening. Bday party for 16 yo at a social club.,,,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,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,96,33
487271,2013-06-02,Virginia,Virginia Beach,4000 block of Roebling Lane,0,7,http://www.gunviolencearchive.org/incident/487271,http://articles.dailypress.com/2013-06-02/news/dp-nws-virginia-beach-shooting_1_virginia-beach-shooting-sentara-leigh,False,2,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",36.8459,,-76.1171,,ms stalking party ay social club. 4 with non life-threatening inj.,,3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+,3::Male||4::Male||5::Male||6::Male||8::Male||9::Male,,,"0::Injured||1::Injured||2::Injured||3::Injured, Unharmed||4::Unharmed||5::Injured, Unharmed||6::Unharmed||7::Unharmed||8::Injured, Unharmed||9::Injured",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect||8::Subject-Suspect||9::Subject-Suspect,http://articles.dailypress.com/2013-06-02/news/dp-nws-virginia-beach-shooting_1_virginia-beach-shooting-sentara-leigh||http://www.indystar.com/article/20130602/NEWS02/306020016/4-shot-when-violence-breaks-out-at-large-Northside-teen-party||http://articles.dailypress.com/2013-06-02/news/dp-nws-virginia-beach-shooting_1_virginia-beach-shooting-sentara-leigh,82,7
487435,2013-06-02,Georgia,Lagrange,Union Street,0,7,http://www.gunviolencearchive.org/incident/487435,https://www.facebook.com/permalink.php?id=313979908643128&story_fbid=540014446039672,False,3,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",33.0354,Union Street Park,-85.0244,,"7 inj. Large crowd at Park. Injured non life-threatening inj. 3 suspects, 2 named.",,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male||8::Male||9::Male,0::Rockella Moore||1::Chancey Bradford||2::Leroy Hall||3::Demetris Harris||4::Raphel Shells||5::Rodzennske Tucker||6::Emmanuel Roberts||7::Lewis Antonio Shells||8::Xavier Edmondson,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Unharmed||8::Unharmed||9::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Subject-Suspect||8::Subject-Suspect||9::Subject-Suspect,https://www.facebook.com/permalink.php?id=313979908643128&story_fbid=540014446039672||https://www.facebook.com/permalink.php?id=313979908643128&story_fbid=540014446039672,132,29
489581,2013-06-07,California,Santa Monica,2036 Yorkshire Ave,6,1,http://www.gunviolencearchive.org/incident/489581,http://www.huffingtonpost.com/2013/06/07/santa-monica-college-shooting_n_3404689.html,False,33,0::Not-stolen||1::Unknown,0::223 Rem [AR-15]||1::44 Mag,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||School Incident||School Shooting - university/college||Drive-by (car to street, car to car)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence||Kidnapping/abductions/hostage||Car-jacking||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",34.026,Santa Monica College,-118.461,2,"ms; 1 inj, 6 killed, including shooter. Incident started at perps home and ended at Santa Monica College. Domestic dispute believed to have triggered the event.",0::55||1::25||2::68||3::26||4::68||5::50||6::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Female||5::Female||6::Male,"0::Samir ""Sam"" Zawahri||1::Chris Zawahri||2::Carlos Navarro Franco||3::Marcela Franco||4::MARGARITA GOMEZ||5::DEBRA FINE||6::John Zawahri",,0::Killed||1::Killed||2::Killed||3::Killed||4::Killed||5::Injured||6::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,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||https://en.wikipedia.org/wiki/2013_Santa_Monica_shooting||http://www.nydailynews.com/news/national/short-article-1.1372515||http://www.huffingtonpost.com/2013/06/10/santa-monica-shooting-victims_n_3414710.html||http://thinkprogress.org/politics/2013/06/10/2127671/santa-monica-mass-shooter-stockpil/||http://abcnews.go.com/GMA/video/president-obama-discusses-malias-upcoming-graduation-36417486||http://www.huffingtonpost.com/2013/06/11/john-zawahri-father-abusive_n_3420563.html||http://www.huffingtonpost.com/2013/06/07/santa-monica-college-shooting_n_3404689.html,50,26
487645,2013-06-09,Pennsylvania,York,600 block of West Princess Street,0,4,http://www.gunviolencearchive.org/incident/487645,http://fox43.com/2013/06/11/4-injured-in-late-night-york-city-shooting/,False,4,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.955,,-76.7412,,4 inj; non-life threatening.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17,0::Male||1::Male||2::Male||3::Female,0::Daquez Palmer||1::Joseph Ramos||2::Que’sean Brown,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.pennlive.com/midstate/index.ssf/2013/06/york_city_police_report_four_i.html||http://fox43.com/2013/06/11/4-injured-in-late-night-york-city-shooting/,,
487659,2013-06-10,Missouri,Saint Louis,4700 block of Highland Ave,0,6,http://www.gunviolencearchive.org/incident/487659,http://fox2now.com/2013/06/12/man-charged-with-shooting-6-people-monday-night/,False,1,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.6647,,-90.2506,1,"4inj; non life-threatening. Kingsway East neighborhood. Perp arrested and charged.;
38.664689, -90.250555",0::13||1::14||2::15||3::17||4::22||5::34||6::21,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Teen 12-17||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Female||3::Male||4::Female||5::Female||6::Male,,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,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||http://fox2now.com/2013/06/12/man-charged-with-shooting-6-people-monday-night/,76,4
487670,2013-06-10,Illinois,Chicago,5700 block of South Sangamon Street,1,4,http://www.gunviolencearchive.org/incident/487670,http://abc7chicago.com/archive/9134576/,False,7,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.7904,,-87.649,1,1 killed; 4 inj. Drive by multiple perps. The Jeep used in the shooting was found burning in an alley a few hours after the shooting.,0::18||1::15||2::18||3::21||4::20,0::Adult 18+||1::Teen 12-17||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Female||1::Male||5::Male||6::Male,0::April McDaniel||1::Charles Drane,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed||6::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect,http://abc7chicago.com/archive/9134275/||http://www.chicagotribune.com/news/local/breaking/chi-paramedics-on-scene-of-multiple-shooting-on-south-side-20130610-story.html||http://abc7chicago.com/archive/9134576/,6,3
487715,2013-06-14,North Carolina,High Point,2201 Little Avenue,0,5,http://www.gunviolencearchive.org/incident/487715,http://www.hpenews.com/news/shooting-leaves-five-injured/article_492d2492-3656-5c9a-96ed-58de798d82fd.html,False,12,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.9689,,-79.9787,,"5 inj, non-life threatening injuries. Outside Sellers Grocery store. Perp arrested and charged.",0::20||1::20||2::43||3::49||4::21||5::18,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||2::Male||3::Male||4::Male||5::Male,0::Johnny Owens||1::William Michael Breeden Jr||2::Simon Breeden||3::Michael Breeden Sr||4::Darion Deshawn Breeden||5::Kenneth Malik Wise,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://myfox8.com/2013/06/18/5-wounded-in-high-point-shooting-18-year-old-arrested/||http://www.hpenews.com/news/shooting-leaves-five-injured/article_492d2492-3656-5c9a-96ed-58de798d82fd.html,60,28
488992,2013-06-15,Rhode Island,Providence,256 Hartford Ave,1,3,http://www.gunviolencearchive.org/incident/488992,http://wpri.com/2014/12/19/luis-fat-boy-gonzalez-to-learn-punishment/,False,2,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Possession of gun by felon or prohibited person",41.8173,,-71.4516,1,"ms; 1 killed, 3 inj at graduation party by rival gang. All 5 perps guilty and sentenced.",0::12||1::44||2::23||3::33||4::21||5::20||6::23||7::19||8::17,0::Teen 12-17||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Teen 12-17,0::Female||1::Female||3::Female||4::Male||5::Male||6::Male||7::Male,0::Aynis Vargas||1::Vilma Tineo||2::Elaine Devargas||3::Eugelyn Cabera-Martinez||4::Branden Castro||5::Ricardo Vasquez||6::Luis Gonzales||7::Angel Valerio,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested||6::Unharmed, Arrested||7::Unharmed, Arrested||8::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect||8::Subject-Suspect,http://turnto10.com/archive/shooting-in-providence-leaves-3-injured-and-a-12-year-old-girl-dead||http://www.providencejournal.com/article/20141118/News/311189975||http://patch.com/rhode-island/cranston/5-indicted-for-killing-of-former-nk-girl-cranston||http://wpri.com/2014/12/19/luis-fat-boy-gonzalez-to-learn-punishment/,9,7
487833,2013-06-15,Tennessee,Nashville,135 Brinkhaven Ave,0,4,http://www.gunviolencearchive.org/incident/487833,http://www.timesfreepress.com/news/local/story/2013/jun/16/man-wanted-shooting-nashville-family-surrenders/110980/,False,5,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence||Possession of gun by felon or prohibited person",36.1646,Brinkhaven Apartments,-86.7771,1,dv; 4 inj; non life-threatening injuries. Perp surrenders after man hunt. Perp charged.,0::34||1::14||2::14||3::15||4::39,0::Adult 18+||1::Teen 12-17||2::Teen 12-17||3::Teen 12-17||4::Adult 18+,0::Female||1::Female||2::Female||3::Female||4::Male,0::Nicole Luke||1::Keona Luke||2::Deona Luke||3::Kierra Smith||4::Earnest Woodley (Earnest Moore),4::Significant others - current or former,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.usatoday.com/story/news/nation/2013/06/14/mother-daughters-shot-nashville/2425615/||http://www.usatoday.com/story/news/nation/2013/06/14/mother-daughters-shot-nashville/2425615/||http://www.timesfreepress.com/news/local/story/2013/jun/16/man-wanted-shooting-nashville-family-surrenders/110980/,51,19
487891,2013-06-15,Texas,Houston,9780 Bissonnet,1,3,http://www.gunviolencearchive.org/incident/487891,http://www.houstontx.gov/police/nr/2013/jun/nr061713-6.htm,False,9,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Gang involvement",29.6754,Manny's Place,-95.5499,,1 killed; 3 inj. Parking lot of after hrs strip club. 2 of the club's security were shot. 3 inj expected to make a full recovery.,0::43||1::24||2::27||3::28,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Female||3::Female||4::Male,,,0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://abc13.com/archive/9140359/||http://www.chron.com/news/houston-texas/houston/article/1-dead-3-injured-in-SW-Houston-night-club-4602574.php||http://www.houstontx.gov/police/nr/2013/jun/nr061713-6.htm,146,13
488134,2013-06-16,Illinois,Chicago,900block of East 79th Street,1,3,http://www.gunviolencearchive.org/incident/488134,http://wgntv.com/2013/06/16/shooting-in-chatham-club-kills-one-injures-three/,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",41.7513,,-87.6027,,1 killed 3 inj. Bar disagreement turns deadly. Chatham neighborhood nightclub.,0::40||1::40||2::35||3::35,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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/,5,3
488426,2013-06-21,Illinois,Chicago,2900 block of North Kilpatrick Avenue,1,3,http://www.gunviolencearchive.org/incident/488426,http://chicago.cbslocal.com/tag/miguel-vazquez/,False,4,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.9335,,-87.7445,,1 killed; 3 inj.,0::21||1::30||2::28||3::17||4::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17||4::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Male,0::Rene Segundo Soto||4::Miguel Vazquez,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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://articles.chicagotribune.com/2013-08-14/news/chi-man-charged-in-fatal-june-shooting-wounding-of-3-others-20130814_1_3-others-fatal-june-shooting-20-year-old-man||http://chicago.cbslocal.com/tag/miguel-vazquez/,39,20
488505,2013-06-21,Virginia,Norfolk,1225 Tidewater Drive,0,6,http://www.gunviolencearchive.org/incident/488505,http://www.13newsnow.com/story/news/2014/09/09/14816936/,False,3,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",36.8571,,-76.2735,,6 inj by gunfire at a graduation party.,0::16||1::17||6::25||7::20||8::20||9::24,0::Teen 12-17||1::Teen 12-17||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+,6::Male||7::Male||8::Male||9::Male,6::Kyle Edward Thornton||7::Darren Lamont Roberts||8::Curtis Leon Williams||9::Montrel Antonio Beasley,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Unharmed||7::Unharmed, Arrested||8::Unharmed, Arrested||9::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect||7::Subject-Suspect||8::Subject-Suspect||9::Subject-Suspect,http://pilotonline.com/news/local/crime/police-charge-two-in-norfolk-shooting-that-injured-six/article_2c6b6d64-128c-5793-9db3-4eb9c5d76b38.html||http://wtkr.com/2013/06/21/dispatch-shooting-reported-on-tidewater-drive-in-norfolk/||http://www.13newsnow.com/story/news/2014/09/09/14816936/,89,5
488547,2013-06-21,North Carolina,Greenville,205 Greenville Blvd SW,0,5,http://www.gunviolencearchive.org/incident/488547,http://www.wcti12.com/news/suspect-in-walmart-shooting-expected-to-make-plea/29380176,False,1,0::Unknown,0::Other,"Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Hate crime||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",35.5744,,-77.3873,1,"ms; hc. 6 inj. victims shot because of their ""race, color, religion, nationality, or country of origin."" Perp sentenced to 97 yrs.",0::70||1::69||2::50||3::64||4::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,"0::Carroll Oakes||1::Vernon Leggett||2::Haywood Whichard, Jr||3::Timothy Edwards||4::Lakim Anthony Faust",,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.hendersondispatch.com/homepage/five-including-gunman-shot-in-greenville/article_999efd6c-1691-5294-805e-458a3afa3773.html||http://www.cbsnews.com/news/north-carolina-shooting-update-lakim-anthony-faust-23-to-be-charged-with-4-counts-of-attempted-murder-police-say/||http://www.wcti12.com/news/police-chief-multiple-people-shot-in-greenville/20663354||http://www.wcti12.com/news/suspect-in-walmart-shooting-expected-to-make-plea/29380176,24,5
488833,2013-06-22,Maryland,Baltimore,700 block of N. Kenwood Avenue,1,4,http://www.gunviolencearchive.org/incident/488833,https://www.baltimorebrew.com/2013/06/26/police-chief-defends-himself-in-wake-of-murder-spike/,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",39.2991,,-76.5783,,"1 killed; 4 inj-non life-threatening. Madison-Eastend neighborhood ""three gangs, the Bloods, Black Guerrilla Family and DJ Boys"" fighting for territory.",0::18,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Female||2::Female||3::Female||4::Male,0::Donyae Jones,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,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/news/crime-checker/baltimore-city-crime/four-shot-1-dead-in-east-baltimore-shooting||http://chamspage.blogspot.com/2013/01/2013-baltimore-city-homicides.html||https://www.baltimorebrew.com/2013/06/26/police-chief-defends-himself-in-wake-of-murder-spike/,45,45
488970,2013-06-22,Rhode Island,Providence,55 Curtis,0,4,http://www.gunviolencearchive.org/incident/488970,http://turnto10.com/archive/four-people-shot-overnight-in-providence,False,2,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.8217,,-71.4496,,4 inj at birthday party; drive by. Non life-threatening injuries.,0::39||1::26,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Teen 12-17||4::Adult 18+,0::Male||1::Male||4::Male,0::Sombun Chet||1::Oeun Sak,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.providencejournal.com/article/20130623/News/306239984||http://www.abc6.com/story/22665832/providence-weekend-violence||http://turnto10.com/archive/four-people-shot-overnight-in-providence,9,5
489061,2013-06-23,Tennessee,Chattanooga,1501 Dodds Ave,1,4,http://www.gunviolencearchive.org/incident/489061,http://www.wrcbtv.com/story/29392336/crime-stoppers-two-years-since-demetrius-davis-was-murdered,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",35.0221,,-85.2697,,ms; 1 k; 3 inj. Two of the injured 126 Athens Park Blood gang members. Emotion Event Hall club fight earlier.,0::19||1::21||2::30,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17||4::Adult 18+,0::Male||2::Male||3::Male||4::Male,0::Demetrius Davis||1::Dominique King||2::Jimmy McCane||3::Ladarrel Bradley,,"0::Killed, Injured||1::Injured||2::Injured||3::Injured||4::Unharmed",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.timesfreepress.com/news/local/story/2013/jul/15/regulate-event-halls-say-critics/113281/||http://www.wrcbtv.com/story/22664154/one-dead-in-chattanooga-shooting||http://www.timesfreepress.com/news/local/story/2013/jun/25/625-b1-gang-members-among-victims-of-shooting/111638/||https://www.youtube.com/watch?v=R5tRDXUub5U||http://www.wrcbtv.com/story/29392336/crime-stoppers-two-years-since-demetrius-davis-was-murdered,28,10
489096,2013-06-23,California,Sacramento,Sea Drift Way,1,3,http://www.gunviolencearchive.org/incident/489096,http://sacda.org/media/2015-archives/9915-gang-member-convicted-1st-degree-murder-shooting-occupied-vehicle/,False,6,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Possession of gun by felon or prohibited person||Stolen/Illegally owned gun{s} recovered during arrest/warrant",38.4655,,-121.459,,"ms;1 killed, 3 injured at Valley Hi house party. Conviction.",0::19||1::15||2::17||3::18||4::19,0::Adult 18+||1::Teen 12-17||2::Teen 12-17||3::Adult 18+||4::Adult 18+||5::Teen 12-17,0::Male||1::Female||2::Male||3::Male||4::Male||5::Male,0::Alvin Saivon Valentine||4::Elijah Rodgers,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,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||http://www.sacbee.com/mobile/bees-best/article2578319.html||http://sacda.org/media/2015-archives/9915-gang-member-convicted-1st-degree-murder-shooting-occupied-vehicle/,9,6
489105,2013-06-23,Missouri,Kansas City,1917 Prospect Ave,1,8,http://www.gunviolencearchive.org/incident/489105,http://fox4kc.com/2013/06/23/prospect-shooting-spree-puts-nine-in-hospital-two-critically-hurt/,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",39.0891,Redline Motorcycle Club,-94.5518,,"ms; 1 killed, 8 inj. Shooting at motorcycle club.",0::23||1::17,0::Adult 18+||1::Teen 12-17||9::Adult 18+,0::Male||1::Female||2::Male||9::Male,0::Marlon E. Randolph,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Injured||9::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Subject-Suspect,http://www.kshb.com/news/crime/nine-people-shot-at-club-in-kansas-city-at-least-three-in-critical-condition||http://www.kmbc.com/news/police-9-injured-3-critically-in-kc-shooting/20680600||http://www.kshb.com/news/crime/motorcycle-club-scene-of-weekend-shooting-had-no-permits-for-events-alcohol-sales||http://www.kansascity.com/news/local/article322158/Officials-shut-down-KC-motorcycle-club-the-site-of-a-fatal-shooting.html||http://www.kctv5.com/story/22698637/family-of-girl-clinging-to-life-after-shooting-seeks-answers||http://fox4kc.com/2013/06/23/prospect-shooting-spree-puts-nine-in-hospital-two-critically-hurt/,23,9
489121,2013-06-23,Louisiana,New Orleans,5700 block of Wickfield Drive,0,4,http://www.gunviolencearchive.org/incident/489121,http://www.wwltv.com/story/news/crime/2014/09/03/14595744/,False,2,0::Unknown,0::40 SW,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",30.0165,,-90.0689,1,ms. 4 inj at going away party for a soldier in Gentilly.,0::18||1::20||2::18||3::18,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Female||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.nola.com/crime/index.ssf/2013/06/four_shot_at_a_gentilly_house.html||http://www.wwltv.com/story/news/crime/2014/09/03/14595744/,97,3
489129,2013-06-23,Virginia,Virginia Beach,4600 block of Columbus Street,1,4,http://www.gunviolencearchive.org/incident/489129,http://www.13newsnow.com/story/news/2014/09/09/14817524/,False,2,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",36.841,,-76.1371,,"ms:;1 killed, 4 inj. Shooting at Town Center near Dick’s Sporting Goods and Guadalajara Restaurant/Night Club.",0::25,0::Adult 18+,0::Male,0::Rashawn R. Dukes,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.13newsnow.com/story/news/2014/09/09/14817048/||http://wtkr.com/2013/06/23/one-dead-several-wounded-in-early-morning-shooting-in-virginia-beach/||https://www.highbeam.com/doc/1G1-335125323.html||http://localusnews.com/2013/06/26/violence-is-not-ok-in-beach-at-town-center-or-anywhere-else/||http://www.13newsnow.com/story/news/2014/09/09/14817524/,85,7
489934,2013-06-24,Missouri,Kansas City,1711 Kansas Avenue,1,3,http://www.gunviolencearchive.org/incident/489934,http://fox4kc.com/2013/06/24/1-dead-2-injured-in-kc-shooting/,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.0914,Sycamore Grove Apartments,-94.5484,,"Gunman on foot. One woman passenger shot in neck, woman driver shot in the arm. Two men were talking to the women in the car.",0::27,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Female||3::Female,0::Carlton L. Lewis,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,https://usgunviolence.wordpress.com/2013/06/24/mass-shooting-killed-carlton-lewis-kansas-city-mo/||http://fox4kc.com/2013/06/24/1-dead-2-injured-in-kc-shooting/,23,9
489987,2013-06-25,Illinois,Chicago,73rd Street and King Drive,1,4,http://www.gunviolencearchive.org/incident/489987,http://www.chicagotribune.com/news/local/breaking/chi-mother-of-slain-teen-asks-what-happened-to-my-baby-20130710-story.html,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.7621,,-87.6152,,,0::19||1::20||2::20||3::19||4::18,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Male||3::Female||4::Male,0::Marissa Boyd-Stangley,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.chicagotribune.com/news/local/breaking/chi-1-dead-4-wounded-in-south-side-shooting-20130625-story.html||http://www.chicagotribune.com/news/local/breaking/chi-mother-of-slain-teen-asks-what-happened-to-my-baby-20130710-story.html,32,16
490048,2013-06-27,California,Three Rivers,39553-39833 Sierra Dr,2,2,http://www.gunviolencearchive.org/incident/490048,http://fsg.stparchive.com/Archive/FSG/FSG07032013p01.php,False,23,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",36.4144,Cobble Knoll Recreation Area,-118.925,1,,0::28||1::29||2::20||3::28||4::21||5::17,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Teen 12-17,0::Male||1::Female||2::Male||3::Male||4::Male||5::Male,0::Manuel Anthony Talamantez||1::Christina Martinez||2::Samuel Talamantez||3::Santos Valdavinsos||4::Pablo Gonzales,0::Family,"0::Unharmed, Arrested||1::Unharmed, Arrested||2::Killed||3::Killed||4::Injured||5::Injured",0::Subject-Suspect||1::Subject-Suspect||2::Victim||3::Victim||4::Victim||5::Victim,http://abc30.com/archive/9156398/||http://www.kaweahcommonwealth.com/news/deputies-mobilize-three-rivers-just-case||http://fsg.stparchive.com/Archive/FSG/FSG07032013p01.php,23,8
490115,2013-06-28,Illinois,Chicago,4800 block of North Sheridan Road,0,6,http://www.gunviolencearchive.org/incident/490115,http://www.huffingtonpost.com/2013/06/29/uptown-driveby-shooting-6_n_3521906.html?utm_hp_ref=chicago,False,9,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.9691,JJ Peppers Food Store,-87.6548,,,0::24||1::23||2::24||3::30||4::33||5::22,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Female||2::Male||3::Male||4::Male||5::Female,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim,https://www.dnainfo.com/chicago/20130628/uptown/five-shot-uptown||http://www.huffingtonpost.com/2013/06/29/uptown-driveby-shooting-6_n_3521906.html?utm_hp_ref=chicago,13,7
490150,2013-06-29,South Carolina,North Charleston,4400 Dorchester Road; Suite 115,3,1,http://www.gunviolencearchive.org/incident/490150,http://www.ksla.com/story/23146180/attorneys-for-cycle-gear-murder-suspect-request-bond-hearing,False,6,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",32.8549,Cycle Gear,-80.0122,,"Melee outside the shop between two rival motorcycle clubs, the Columbia-based Real Kingz and the Wheels of Soul.",0::41||1::39||2::36||4::43||5::32,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,0::Maurice Lamark Horry||1::Carlos Davis||2::Theodore Waymeyers Jr||4::Ronald Reid||5::Barry Stinson,4::Gang vs Gang||5::Gang vs Gang,"0::Killed||1::Killed||2::Killed||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.wistv.com/story/22722475/police-responding-to-shooting-in-brentwood-plaza||http://www.ksla.com/story/23146180/attorneys-for-cycle-gear-murder-suspect-request-bond-hearing,109,42
490226,2013-06-30,New York,Brooklyn,616 E. 52nd Street,0,9,http://www.gunviolencearchive.org/incident/490226,http://www.wptv.com/news/national/brooklyn-shooting-tyrone-brown-arrested-in-connection-with-crime-in-east-flatbush-neighborhood,False,9,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",40.6452,,-73.928,,,,,0::Male||1::Male||2::Male||3::Male||4::Female||5::Female||6::Female||7::Female||9::Female,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||9::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Subject-Suspect,http://rogersparkbench.blogspot.com/2013/06/seven-people-shot-in-brooklyn-at-bbq.htmly||http://www.wptv.com/news/national/brooklyn-shooting-tyrone-brown-arrested-in-connection-with-crime-in-east-flatbush-neighborhood,58,21
490166,2013-06-30,Colorado,Aurora,2300 block of Paris St,0,4,http://www.gunviolencearchive.org/incident/490166,,False,6,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",39.7512,,-104.848,,Four juveniles of unknown age are the victims in this crime. Possible gang involvement.,,,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://kdvr.com/2013/06/30/police-4-shot-at-aurora-house-party/,30,25
893251,2013-07-01,New York,Locust Valley,99 Horse Hollow Rd,0,1,http://www.gunviolencearchive.org/incident/893251,https://patch.com/new-york/glencove/drug-suspect-shot-by-police-idd,False,3,0::Unknown,0::Unknown,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Drug involvement,40.888,,-73.5899,1,"Traffic stop; backed car into approaching officer, knocked him to ground",0::22,0::Adult 18+,0::Male,0::Leo Duchnowski,,0::Injured,0::Subject-Suspect,https://patch.com/new-york/glencove/update-police-shoot-drug-suspect-in-locust-valley||https://patch.com/new-york/glencove/drug-suspect-shot-by-police-idd,13,5
490245,2013-07-01,Texas,Fort Worth,2900 block of Pate Drive,4,0,http://www.gunviolencearchive.org/incident/490245,http://crimeblog.dallasnews.com/2013/07/man-arrested-in-connection-with-three-shooting-deaths-in-fort-worth.html/,False,33,,,"Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",32.7157,,-97.2597,,Unborn child killed by shot to the mother's abdomen.,0::39||1::22||2::10||3::0||4::22,0::Adult 18+||1::Adult 18+||2::Child 0-11||3::Child 0-11||4::Adult 18+,0::Female||1::Female||2::Male||4::Male,0::Annette Carroll Reed||1::Chanice Renee Reed||2::Eddie McCuin||3::unborn child||4::Amos Wells,4::Family,"0::Killed||1::Killed||2::Killed||3::Killed||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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://crimeblog.dallasnews.com/2013/07/man-arrested-in-connection-with-three-shooting-deaths-in-fort-worth.html/,95,10
1023908,2013-07-02,New Jersey,Jersey City,Dwight St,1,0,http://www.gunviolencearchive.org/incident/1023908,http://www.nj.com/hudson/index.ssf/2018/01/murder_trial_of_man_killed_outside_jersey_city_par.html#incart_river_index,False,10,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||House party",40.7037,,-74.084,1,,0::21||1::19,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Anthony Smith Jr||1::Mulijah Smart,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.nj.com/hudson/index.ssf/2018/01/murder_trial_of_man_killed_outside_jersey_city_par.html#incart_river_index,31,31
490335,2013-07-04,Illinois,Chicago,6000 block of South Cottage Grove Avenue,0,4,http://www.gunviolencearchive.org/incident/490335,http://www.chicagotribune.com/news/local/breaking/chi-man-wounded-in-south-side-shooting-20130704-story.html,False,1,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.7858,,-87.6061,,,0::14||1::35||2::54||3::37,0::Teen 12-17||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Female||2::Female||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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-story.html,5,3
490351,2013-07-04,Michigan,Pontiac,441 N Perry St,1,6,http://www.gunviolencearchive.org/incident/490351,http://www.theoaklandpress.com/article/OP/20130821/NEWS/308219897,False,14,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",42.6482,Perry Palace Party Store,-83.2871,,,0::35||1::6||2::12||3::22||4::22||5::28||6::23||7::35,0::Adult 18+||1::Child 0-11||2::Teen 12-17||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+,0::Male||1::Male||3::Female||4::Female||5::Male||6::Male||7::Male,0::Wilfred Lee Donalson||7::Robert Marion Naylor,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Subject-Suspect,http://www.wxyz.com/news/1-dead-6-injured-in-pontiac-shooting||http://www.theoaklandpress.com/general-news/20130705/six-injured-one-dead-in-independence-day-shooting-in-front-of-pontiac-party-store||http://www.theoaklandpress.com/article/OP/20130821/NEWS/308219897,29,12
490750,2013-07-06,New York,Brooklyn,472 Marcy Avenue,1,3,http://www.gunviolencearchive.org/incident/490750,http://brooklynda.org/2015/03/18/brooklyn-man-sentenced-to-47-years-to-life-in-prison-for-quadruple-shooting-in-gang-dispute-at-basketball-tournament/,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",40.6987,,-73.95,,Perpetratror sentenced 47 years to life for shooting of four individuals in gang-related dispute.,0::18||1::13||2::14||3::15||4::21,0::Adult 18+||1::Teen 12-17||2::Teen 12-17||3::Teen 12-17||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Mario Lopez||4::Brandon Reese,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://patch.com/new-york/bed-stuy/four-people-shot-one-dead-at-marcy-housesu||http://www.nytimes.com/2013/07/08/nyregion/four-teenagers-shot-one-fatally-at-housing-complex.html||http://brooklynda.org/2015/03/18/brooklyn-man-sentenced-to-47-years-to-life-in-prison-for-quadruple-shooting-in-gang-dispute-at-basketball-tournament/,56,18
490395,2013-07-06,Alabama,Florence,West Mobile Street,0,4,http://www.gunviolencearchive.org/incident/490395,http://www.waff.com/story/22766314/4-taken-to-hospital-after-shooting-in-florence,False,5,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",34.7982,,-87.6854,,,4::22,4::Adult 18+,4::Female,4::Chauncey Laray Mitchell,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://blog.al.com/breaking/2013/07/early_morning_shooting_leaves_1.html||http://www.waff.com/story/22766314/4-taken-to-hospital-after-shooting-in-florence,1,6
490772,2013-07-07,Illinois,Chicago,11300 block of South Forest Avenue,0,5,http://www.gunviolencearchive.org/incident/490772,https://www.dnainfo.com/chicago/20130711/roseland/man-claims-self-defense-after-shooting-five-people-at-his-home,False,2,0::Unknown,0::38 Spl,"Shot - Wounded/Injured||Defensive Use||Defensive Use - Crime occurs, victim shoots subject/suspect/perpetrator||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.689,,-87.6157,1,Landlord-resident eviction dispute; landlord shot the 5 people he was evicting when they threatened him with a large pipe.,0::40||1::49||2::20||3::16||4::17||5::43,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17||4::Teen 12-17||5::Adult 18+,0::Male||1::Female||2::Male||3::Male||4::Male||5::Male,5::Jarvis Garrett,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.chicagotribune.com/news/local/breaking/chi-chicago-crime-shooting-gun-violence-sunday-story.html||https://www.dnainfo.com/chicago/20130711/roseland/man-claims-self-defense-after-shooting-five-people-at-his-home,34,17
490767,2013-07-07,Mississippi,Meridian,2500 block of 5th Street,0,4,http://www.gunviolencearchive.org/incident/490767,http://www.wtok.com/news/headlines/MPD-Investigating-Quadruple-Shooting--214541691.html?ref=691u,False,3,0::Unknown||1::Unknown||2::Unknown,0::Handgun||1::Handgun||2::Handgun,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",32.3625,,-88.7022,3,Three handguns were used and between 10 and 15 rounds were fired.,,,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wtok.com/news/headlines/MPD-Investigating-Quadruple-Shooting--214541691.html?ref=691u,82,32
490893,2013-07-07,California,Stockton,2600 block of Connecticut Avenue,1,4,http://www.gunviolencearchive.org/incident/490893,http://www.stocktongov.com/files/020314_VIC_POSADA.pdf,False,9,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",37.9218,,-121.298,,,0::19||1::40||2::18||3::23||4::18,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Female||2::Female||3::Male||4::Male,0::Mahelani Josiemarie Posada,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.recordnet.com/apps/pbcs.dll/article?AID=/20130709/A_NEWS/307090313||http://www.stocktongov.com/files/020314_VIC_POSADA.pdf,13,5
490793,2013-07-07,Florida,Pompano Beach,1600 block of Northwest 7th Lane,1,3,http://www.gunviolencearchive.org/incident/490793,http://miami.cbslocal.com/2013/07/07/pompano-beach-robbery-attempt-turns-deadly/,False,20,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Armed robbery with injury/death and/or evidence of DGU found",26.2489,,-80.1352,,Armed robbery of individuals playing dominos.,0::23||1::54||2::35||3::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male,0::Joshua Childs||1::Alphonso Wright||2::Christopher Singleton||3::Rashaad Payne,4::Armed Robbery||5::Armed Robbery||6::Armed Robbery||7::Armed Robbery,0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed||5::Unharmed||6::Unharmed||7::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect,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/,92,31
490909,2013-07-09,Maryland,Baltimore,600 block of N. Carrollton Ave,0,4,http://www.gunviolencearchive.org/incident/490909,http://www.wbaltv.com/news/maryland/baltimore-city/man-faces-35-charges-in-quadruple-shooting/21001854,False,7,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.2956,,-76.6374,,,4::29,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,4::Lamont Jones,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,https://www.baltimorebrew.com/2013/07/09/mayor-to-go-on-safety-walk-as-city-shootings-escalate/||http://www.afro.com/suspect-arrested-in-baltimores-harlem-park-shooting-spree/||http://www.wbaltv.com/news/maryland/baltimore-city/man-faces-35-charges-in-quadruple-shooting/21001854,40,40
490917,2013-07-09,Illinois,Rockford,600 block of Woodlawn Avenue,2,2,http://www.gunviolencearchive.org/incident/490917,http://www.saukvalley.com/2013/07/11/police-2-dead-2-injured-in-shootings/avpv0zm/,False,17,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.2783,,-89.0953,,,0::17||1::33||2::38,0::Teen 12-17||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::Daemoan Patterson||1::Charles Groom,,0::Killed||1::Killed||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wifr.com/home/headlines/Shooting-on-Woodlawn-Ave-in-Rockford-214845821.html||http://www.saukvalley.com/2013/07/11/police-2-dead-2-injured-in-shootings/avpv0zm/,67,34
490922,2013-07-11,North Carolina,Charlotte,6300 block of Reagan Drive,2,2,http://www.gunviolencearchive.org/incident/490922,http://qcitymetro.com/2013/07/19/man_arrested_in_suspected_driveby_shooting123927915/,False,12,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.2837,,-80.7742,,,0::21||1::22||4::23,0::Adult 18+||1::Adult 18+||4::Adult 18+,0::Male||4::Male,0::Inna Xiomara Gonzalez||1::Davion Najee Funderburk||4::Levi Johnson Jr.,,0::Killed||1::Killed||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wbtv.com/story/22817634/police-one-dead-3||http://www.rrstar.com/article/20130710/NEWS/307109904||http://qcitymetro.com/2013/07/19/man_arrested_in_suspected_driveby_shooting123927915/,106,40
490943,2013-07-12,California,San Francisco,3192 16th St,1,3,http://www.gunviolencearchive.org/incident/490943,http://sanfrancisco.cbslocal.com/2013/07/08/man-dies-from-injuries-suffered-in-sf-mission-district-shooting/,False,12,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",37.7649,Double Dutch,-122.423,1,,0::24||1::22||2::23||3::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Keith Smith,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,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/,17,11
490954,2013-07-12,Kentucky,Greensburg,194 C Mays Rd,2,2,http://www.gunviolencearchive.org/incident/490954,,False,2,0::Unknown,0::22 LR,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence",37.1948,,-85.5219,1,,0::40||1::43||3::22,0::Adult 18+||1::Adult 18+||3::Adult 18+,0::Male||1::Female||3::Female,0::Barry Moore||1::Pamela Moore||2::Barbara Wright||3::Ashley Wright,,0::Killed||1::Killed||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wave3.com/story/22826584/1-dead-3-wounded-in-green-co-shooting||http://www.wdrb.com/story/22826901/four-shot-two-fatalities-in-green-county-ky,,
491162,2013-07-13,Ohio,Campbell,Seventh Street,0,4,http://www.gunviolencearchive.org/incident/491162,http://www.vindy.com/news/2013/jul/22/campbell/?nw,False,13,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.0738,,-80.5997,,,0::62||1::43||2::29||3::24||4::33,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Female||2::Male||3::Female||4::Male,0::Roland Avis||1::Mary Lynette Spann||2::Gerald Robinson||3::Carmen Figueroa||4::Devin Spann,4::Family,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.vindy.com/news/2013/jul/22/campbell/?nw||http://www.vindy.com/news/2013/jul/22/campbell/?nw,58,33
490979,2013-07-13,District of Columbia,Washington,2700 block of Stanton Road,0,4,http://www.gunviolencearchive.org/incident/490979,http://www.nbcwashington.com/news/local/PD-Men-Enter-and-Exit-Metrobus-Shoot-at-Pedestrians-215573571.html,False,1,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.8583,,-76.9883,,,,,,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,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,,
490963,2013-07-13,Oklahoma,Oklahoma City,5405 N. Lincoln Blvd,1,3,http://www.gunviolencearchive.org/incident/490963,http://www.news9.com/story/22842674/okc-police-identify-victims-of-fatal-quadruple-shooting,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",35.5263,Lincoln Inn Express Hotel & Suites / Oak Room Bar,-97.504,,,0::42||1::22||2::41||3::33,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Kevin Miller||1::Aaron Wayne Brown||2::Joe Brown||3::Michael Hogue,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,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,99,48
490932,2013-07-13,New Jersey,Trenton (Hamilton Township),1100 block of Deutz Ave,1,4,http://www.gunviolencearchive.org/incident/490932,http://philadelphia.cbslocal.com/2013/07/13/1-dead-4-injured-in-hamilton-twp-birthday-party-shooting/,False,4,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.1981,,-74.7491,1,"40.198133, -74.749092",0::17||1::17||2::18||3::17||4::17,0::Teen 12-17||1::Teen 12-17||2::Adult 18+||3::Teen 12-17||4::Teen 12-17,0::Male||1::Male,0::Shakir Williams,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://6abc.com/archive/9166536/||http://philadelphia.cbslocal.com/2013/07/13/1-dead-4-injured-in-hamilton-twp-birthday-party-shooting/,14,14
491037,2013-07-14,Michigan,Grand Rapids (Kentwood),Farmview Ct SE,0,5,http://www.gunviolencearchive.org/incident/491037,,False,2,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Possession of gun by felon or prohibited person",42.874,,-85.6052,1,"Gang pushes its way into high school graduation party.;
42.873987, -85.605178",5::18,5::Adult 18+,0::Male||1::Male||2::Female||5::Male,0::Mark Armstrong||5::Billie McKinney,5::Gang vs Gang,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.mlive.com/news/grand-rapids/index.ssf/2013/10/a_punch_to_the_mouth_leads_to.html||http://www.mlive.com/news/grand-rapids/index.ssf/2014/03/teen_found_guilty_of_attempted.html,72,26
491001,2013-07-14,Kansas,Wichita,11th Street and Mead,1,4,http://www.gunviolencearchive.org/incident/491001,http://www.kansas.com/news/local/crime/article6655236.html,False,4,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",37.7044,,-97.3289,,Dispute between two rival gangs.,0::27||1::26||2::33||5::28||6::32,0::Adult 18+||1::Adult 18+||2::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Female||5::Male||6::Male,0::James Gary||5::Marquel Dean||6::Shane Landrum,5::Gang vs Gang||6::Gang vs Gang,"0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect,http://ksn.com/2013/07/14/one-dead-several-injured-in-central-wichita-shooting/||http://www.kake.com/home/headlines/One-Dead-Four-Injured-In-Shooting-Near-Downtown-Wichita-215429551.html||http://www.kansas.com/news/local/crime/article6655236.html,103,29
491046,2013-07-17,California,Oakland,3400 block of Wilson Avenue,1,3,http://www.gunviolencearchive.org/incident/491046,http://www.contracostatimes.com/news/ci_24214195/oakland-two-arrested-july-slaying-8-year-old,False,13,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",37.7976,,-122.212,,"Incident was in revenge for previous killing. Perpetrators knocked on the door, then sprayed the room with bullets.",0::8||1::4||2::7||3::64||4::22||5::27,0::Child 0-11||1::Child 0-11||2::Child 0-11||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Male||2::Female||3::Female||4::Male||5::Male,0::Alaysha Carradine||1::Antoine York||2::Amara York||3::Clara Field||4::Darnell Williams||5::Joe Carroll,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,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,18,9
491073,2013-07-19,California,Madera,Yosemite Avenue and Cleveland,0,4,http://www.gunviolencearchive.org/incident/491073,http://abc30.com/archive/9176737/,False,16,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",36.9613,,-120.061,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://abc30.com/archive/9176737/,5,12
491082,2013-07-19,Connecticut,Hartford,3155 Main St,0,4,http://www.gunviolencearchive.org/incident/491082,http://articles.courant.com/2013-07-19/community/hc-hartford-shooting-vibes-club-0720-20130719_1_graze-wound-18-year-old-man-10-gunshots,False,1,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.7957,Club Vibz,-72.6635,,,0::17||1::19||2::19||3::18,0::Teen 12-17||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Female||1::Female||2::Female||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://articles.courant.com/2013-07-19/community/hc-hartford-shooting-vibes-club-0720-20130719_1_graze-wound-18-year-old-man-10-gunshots,5,2
491181,2013-07-20,New York,Brooklyn,Grove Street,0,5,http://www.gunviolencearchive.org/incident/491181,http://www.latinospost.com/articles/24297/20130724/5-shot-revenge-shooting-brooklyn-park-suspect-police-custody-massachusetts.htm,False,7,0::Unknown,0::9mm,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.6962,Hope Ballfield,-73.9178,1,Shooting was in revenge for Rolando Pizarro filing a police report detailing the harrassment of his daughter at her McDonald's job.,0::45||1::37||2::22||3::52||4::62||5::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Female||2::Male||3::Female||4::Male||5::Male,0::Rolando Pizarro||1::Melody Amil||2::Rolando Pizarro Jr.||3::Wanda Espinoza||4::Manuel Rivera||5::Curtis Peterson,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://nypost.com/2013/07/21/5-people-shot-in-revenge-violence-at-brooklyn-park/||http://www.inquisitr.com/862001/five-family-members-shot-in-brooklyn-after-calling-police-about-abuse-in-mcdonalds/||http://www.latinospost.com/articles/24297/20130724/5-shot-revenge-shooting-brooklyn-park-suspect-police-custody-massachusetts.htm,53,18
491214,2013-07-21,New York,Brooklyn,1445 Lincoln Place,0,4,http://www.gunviolencearchive.org/incident/491214,http://brooklyn.news12.com/news/3-men-1-woman-wounded-in-quadruple-shooting-on-lincoln-place-in-crown-heights-1.5740597,False,9,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.6699,,-73.9293,,,0::25,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||2::Male||3::Male||4::Male||5::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://brooklyn.news12.com/news/3-men-1-woman-wounded-in-quadruple-shooting-on-lincoln-place-in-crown-heights-1.5740597,55,20
491226,2013-07-24,Kansas,Topeka,221 SE Lawrence St,0,4,http://www.gunviolencearchive.org/incident/491226,http://www.kake.com/home/headlines/4-Injured-In-Drive-By-Shooting-In-Topeka-216914861.html,False,2,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.0527,,-95.6546,,,0::21||1::20||2::17||3::16,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Teen 12-17,0::Male||1::Male||2::Male||3::Male,0::Tjuan Dean||1::Demarcus Henderson,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wibw.com/home/headlines/Drive-by-Reported-On-SE-Topeka-Street-For-2nd-Time-In-One-Week-216878511.html||http://www.kake.com/home/headlines/4-Injured-In-Drive-By-Shooting-In-Topeka-216914861.html,57,19
491243,2013-07-25,Michigan,Inkster,Oakwood Street,0,4,http://www.gunviolencearchive.org/incident/491243,http://detroit.cbslocal.com/2013/07/26/4-injured-in-apparent-drive-by-shooting-in-inkster/http://detroit.cbslocal.com/2013/07/26/4-injured-in-apparent-drive-by-shooting-in-inkster/,False,13,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.3031,,-83.3301,,Targeted drive-by.,,3::Child 0-11,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://detroit.cbslocal.com/2013/07/26/4-injured-in-apparent-drive-by-shooting-in-inkster/http://detroit.cbslocal.com/2013/07/26/4-injured-in-apparent-drive-by-shooting-in-inkster/,16,5
491253,2013-07-26,West Virginia,Clarksburg,743 Locust Avenue,4,0,http://www.gunviolencearchive.org/incident/491253,http://www.wboy.com/story/22937993/3-dead-and-one-transported-to-the-hosptal,False,1,0::Unknown,0::Handgun,"Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Drug involvement",39.2832,,-80.3488,1,Perpetrator attempted to collect a $10K drug debt from two youngest victims.,0::70||1::47||2::29||3::26||4::27,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||2::Male||3::Male||4::Male,0::Freddy Donald Swiger||1::Fred Swiger||2::Todd Russell Amos||3::Christopher A. Hart||4::Sidney A. Muller,4::Mass shooting - Random victims,"0::Killed||1::Killed||2::Killed||3::Killed||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wvgazettemail.com/News/201307260012||http://www.wboy.com/story/22937993/3-dead-and-one-transported-to-the-hosptal,48,12
491265,2013-07-26,Florida,Hialeah,1485 W 46th St,7,0,http://www.gunviolencearchive.org/incident/491265,https://en.wikipedia.org/wiki/2013_Hialeah_shooting,False,25,0::Unknown,0::9mm,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Concealed Carry License - Perpetrator",25.864,Todel Apartments,-80.3122,1,,0::79||1::69||2::33||3::64||4::51||5::17||6::42,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Teen 12-17||6::Adult 18+,0::Male||1::Female||2::Male||3::Male||4::Female||5::Female||6::Male,0::Italo Pisciotti||1::Samira Pisciotti||2::Carlos Javier Gavilanes||3::Patricio Simono||4::Merly S. Niebles||5::Priscilla Perez||6::Pedro Alberto Vargas,6::Mass shooting - Perp Knows Victims,0::Killed||1::Killed||2::Killed||3::Killed||4::Killed||5::Killed||6::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,http://www.miamiherald.com/news/special-reports/hialeah-mass-shooting/article1953794.html||http://www.slate.com/blogs/the_slatest/2013/07/27/pedro_alberto_vargas_florida_gunman_kills_six_people.html||https://en.wikipedia.org/wiki/2013_Hialeah_shooting,110,38
491287,2013-07-28,Texas,Dallas,2400 block of Royal Lane,0,4,http://www.gunviolencearchive.org/incident/491287,http://www.nbcdfw.com/news/local/Four-Wounded-In-McDonalds-Parking-Lot-Gunfire-217316361.html,False,24,,,"Shot - Wounded/Injured||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)",32.8958,McDonald's,-96.8986,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wfaa.com/story/news/crime/2014/08/19/14074888/||http://www.nbcdfw.com/news/local/Four-Wounded-In-McDonalds-Parking-Lot-Gunfire-217316361.html,103,16
491281,2013-07-29,Washington,Granger,300 block of S. Outlook Rd.,0,4,http://www.gunviolencearchive.org/incident/491281,http://www.tri-cityherald.com/news/local/crime/article32135625.html,False,4,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",46.3421,,-120.187,,,0::14||1::16||2::17||3::19,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,4::Mass shooting - Random victims,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.seattletimes.com/seattle-news/4-teens-wounded-in-granger-shooting/||http://www.tri-cityherald.com/news/local/crime/article32135625.html,15,15
491292,2013-07-30,New Mexico,Hobbs,2000 block of North Bensing Rd,0,4,http://www.gunviolencearchive.org/incident/491292,http://www.newswest9.com/story/22981254/four-people-hurt-after-shooting-in-lea-county-officials-searching-for-suspect,False,2,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",32.7222,,-103.179,1,,0::29||1::24||2::23||3::18||4::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male,0::Karen Teel||1::Jerry Teel||2::Omar Gutierrez||3::Joe David Delao||4::Parrish Chee,4::Mass shooting - Random victims,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.oaoa.com/news/crime_justice/law_enforcement/article_1fe3fb70-fa39-11e2-920e-0019bb30f31a.html||http://www.newswest9.com/story/22981254/four-people-hurt-after-shooting-in-lea-county-officials-searching-for-suspect,62,41
491438,2013-08-02,Indiana,Indianapolis,62nd and College Ave,0,4,http://www.gunviolencearchive.org/incident/491438,http://www.wthr.com/story/23025888/2013/08/02/multiple-people-shot-in-broad-ripple,False,5,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Defensive Use||Defensive Use - Victim stops crime||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",39.8679,,-86.1461,1,Fight in nightclub moved to street. Perpetrator shot others whom he perceived to be assaulting a friend and were about to assault him.,4::28,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||3::Male,0::Andrew Allen||1::Gabriel Daniels||2::Raymond Williams||3::Samuel Wade||4::Tristan Crayton,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://fox59.com/2013/08/02/four-people-shot-in-broadripple/||http://www.wthr.com/story/23025888/2013/08/02/multiple-people-shot-in-broad-ripple,86,30
491416,2013-08-02,New Jersey,Newark,Livingston St. and 18th Avenue,2,3,http://www.gunviolencearchive.org/incident/491416,http://abc7ny.com/archive/9194102/,False,10,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.7291,,-74.1915,,Targeted shooting of at least one of the victims.,0::36||1::37||2::34||3::39||4::45,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male,0::Clifton Purkett||1::Rashid Pryor,,0::Killed||1::Killed||2::Injured||3::Injured||4::Injured||5::Unharmed||6::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect,http://www.nj.com/news/index.ssf/2013/08/at_least_one_dead_four_shot_in_newarks_central_ward.html||http://abc7ny.com/archive/9194102/,29,29
491461,2013-08-03,Michigan,Detroit,Murray Hill St,0,5,http://www.gunviolencearchive.org/incident/491461,http://www.clickondetroit.com/news/local/detroit/5-shot-including-2-children-outside-detroit-home,False,13,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.423,,-83.2082,,,0::8||1::16,0::Child 0-11||1::Teen 12-17||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Female,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.clickondetroit.com/news/local/detroit/5-shot-including-2-children-outside-detroit-home,8,4
491473,2013-08-04,California,Salinas,624 Williams Road,3,4,http://www.gunviolencearchive.org/incident/491473,http://www.montereyherald.com/article/ZZ/20140530/NEWS/140539692,False,20,0::Unknown,0::45 Auto,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",36.6799,Tacos Choice,-121.606,1,,0::22||1::25||2::28||7::21,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Female||7::Male,0::Victor Andrade Ortiz||1::Alejandro Lorenzo Hernandez||2::Edgar Garcia Salinas||7::Giovanni Pacheco,,"0::Killed||1::Killed||2::Killed||3::Injured||4::Injured||5::Injured||6::Injured||7::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Subject-Suspect,http://www.ksbw.com/news/central-california/salinas/double-homicide-in-salinas/21334240||http://www.montereyherald.com/article/ZZ/20140530/NEWS/140539692,30,12
491546,2013-08-04,Missouri,Kansas City,2400 block of Park Avenue,1,3,http://www.gunviolencearchive.org/incident/491546,http://www.kctv5.com/story/23040380/teen-killed-in-quadruple-shooting-in-east-kc,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.083,,-94.5557,,,0::19,0::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Marcus Lyman,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.kshb.com/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,23,9
964573,2013-08-05,Pennsylvania,Philadelphia,5100 Parrish St,1,0,http://www.gunviolencearchive.org/incident/964573,http://www.philly.com/philly/news/crime/feds-charge-13-in-w-philly-drug-gang-war-20171019.html,False,2,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Gang involvement||Drug involvement",39.9669,West Mill Creek Playground,-75.2229,1,Grounds gang vic selling crack on rival gang (Pit) territory,1::30,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Brian Littles||1::Bryant Calloway,,0::Killed||1::Arrested,0::Victim||1::Subject-Suspect,http://www.philly.com/philly/news/crime/feds-charge-13-in-w-philly-drug-gang-war-20171019.html,190,7
491609,2013-08-06,Pennsylvania,Saylorsburg,1000 Ross Municipal Dr,3,4,http://www.gunviolencearchive.org/incident/491609,http://www.mcall.com/news/breaking/mc-pa-rockne-newell-ross-township-shooting-guilty-20150529-story.html,False,17,0::Unknown||1::Unknown,0::223 Rem [AR-15]||1::44 Mag,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.8959,,-75.323,2,Dispute over upkeep of perpetrator's land and property.,0::62||1::53||2::64||6::59,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Female||6::Male,"0::David Fleetwood||1::Gerard Kozic||2::James ""Vinny"" LaGuardia||3::Howard Beers||4::Frank Pirano||5::Linda Kozic||6::Rockne Warren Newell",,"0::Killed||1::Killed||2::Killed||3::Injured||4::Injured||5::Injured||6::Injured, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,http://articles.mcall.com/2013-08-06/news/mc-monroe-ross-township-municipal-building-shootin-20130805_1_township-official-hamilton-township-state-police||http://www.mcall.com/news/breaking/mc-pa-rockne-newell-ross-township-shooting-guilty-20150529-story.html,,
491630,2013-08-06,New Jersey,Montclair,Mission Street,0,4,http://www.gunviolencearchive.org/incident/491630,http://www.northjersey.com/news/mayhem-on-montclair-s-mission-street-1.617723?page=allu,False,10,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.8057,,-74.2128,,Appears to be a targeted shooting of four people as they walked down the street.,0::18||1::20||2::17||3::18,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Male,0::Timear Haley||1::Terrill Vaxter||3::Naji Love,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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://www.northjersey.com/news/mayhem-on-montclair-s-mission-street-1.617723?page=allu,34,34
491698,2013-08-07,Texas,Dallas,7100 block of Long Canyon Trail,4,4,http://www.gunviolencearchive.org/incident/491698,http://crimeblog.dallasnews.com/2013/08/desoto-police-10-year-old-son-of-slain-shooting-victim-identified-erbie-lee-bowser-as-gunman.html/,False,30,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Spree Shooting (multiple victims, multiple locations)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence",32.6412,,-96.9481,,"Address #1 as shown above, address #2 is 141 Galleria Drive, Desoto, TXu",0::47||1::28||2::11||3::13||4::43||5::17||6::14||7::17||8::44,0::Adult 18+||1::Adult 18+||2::Child 0-11||3::Teen 12-17||4::Adult 18+||5::Teen 12-17||6::Teen 12-17||7::Teen 12-17||8::Adult 18+,0::Female||1::Female||2::Male||3::Male||4::Female||6::Male||7::Male||8::Male,0::Zina Bowser||1::Neima Williams||2::Myles||3::Chris||4::Toya Smith||5::Tasmia Allen||6::Storm Malone||7::Dasmine Mitchell||8::Erbie Lee Bowser,8::Significant others - current or former,"0::Killed||1::Killed||2::Injured||3::Injured||4::Killed||5::Killed||6::Injured||7::Injured||8::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Subject-Suspect,http://www.dallasnews.com/news/crime/headlines/20130808-dallas-area-man-arrested-in-killings-of-four-women-had-his-record-wiped-clean.ece||http://crimeblog.dallasnews.com/2013/08/desoto-police-10-year-old-son-of-slain-shooting-victim-identified-erbie-lee-bowser-as-gunman.html/,111,23
491734,2013-08-09,Missouri,Saint Louis,4200 block of Kossuth Ave,2,2,http://www.gunviolencearchive.org/incident/491734,http://stlouis.cbslocal.com/2013/08/10/north-st-louis-shooting-leaves-two-dead-two-wounded/,False,1,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.6706,,-90.228,1,"38.670617, -90.227972",0::26||1::27||2::22||3::29,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Female||1::Male||2::Female||3::Male,0::Franchelle Harris||1::Brian Jermon,,0::Killed||1::Killed||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://fox2now.com/2013/08/09/multiple-people-shot-in-north-st-louis-2/||http://stlouis.cbslocal.com/2013/08/10/north-st-louis-shooting-leaves-two-dead-two-wounded/,77,5
491729,2013-08-10,Delaware,Wilmington,1200 block of Second Street,0,4,http://www.gunviolencearchive.org/incident/491729,http://6abc.com/archive/9202915/,False,1,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.7435,,-75.5641,,,0::16||1::17||2::20||3::20,0::Teen 12-17||1::Teen 12-17||2::Adult 18+||3::Adult 18+,0::Female||1::Female||2::Female||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.delawareonline.com/article/20130812/NEWS01/308120084/4-wounded-in-Wilmington-shooting||http://6abc.com/archive/9202915/,3,3
491710,2013-08-11,New York,Brooklyn,395 East 48th Street,0,4,http://www.gunviolencearchive.org/incident/491710,http://www.nbcnewyork.com/news/local/4-Men-Shot-Wounded-Shooting-East-Flatbush-Brooklyn-House-Party-219170081.html,False,9,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.6524,,-73.9321,,All victims shot in torso.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://abc7ny.com/archive/9202495/||http://newyork.cbslocal.com/2013/08/11/police-searching-for-suspect-who-opened-fire-at-e-flatbush-house-party/http://newyork.cbslocal.com/2013/08/11/police-searching-for-suspect-who-opened-fire-at-e-flatbush-house-party/||http://www.nbcnewyork.com/news/local/4-Men-Shot-Wounded-Shooting-East-Flatbush-Brooklyn-House-Party-219170081.html,58,20
491749,2013-08-11,Virginia,Portsmouth,1100 block of Mt. Vernon Ave,1,4,http://www.gunviolencearchive.org/incident/491749,http://www.13newsnow.com/story/news/local/mycity/portsmouth/2014/09/09/14824608/,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",36.8364,London Oaks Apartments,-76.3361,,,0::31,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Aron Turner,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://wtkr.com/2013/08/12/one-dead-three-wounded-in-portsmouth-shooting/||http://www.13newsnow.com/story/news/local/mycity/portsmouth/2014/09/09/14824608/,80,18
491770,2013-08-13,Pennsylvania,Philadelphia,1100 block of Divinity Street,0,4,http://www.gunviolencearchive.org/incident/491770,http://www.westphillylocal.com/2013/08/13/four-men-shot-near-kingsessing-park/,False,2,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.9439,,-75.2195,,Men shot in park; no suspects identified or apprehended.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://philadelphia.cbslocal.com/2013/08/13/breaking-police-investigate-shooting-in-kingsessing/||http://www.westphillylocal.com/2013/08/13/four-men-shot-near-kingsessing-park/,,
492001,2013-08-14,Oklahoma,Oklahoma City,4601 SE 79,4,0,http://www.gunviolencearchive.org/incident/492001,http://www.koco.com/news/oklahomanews/okc/father-daniel-green-capable-of-killing-his-family/21560934,False,5,0::Unknown,0::380 Auto,"Shot - Dead (murder, accidental, suicide)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.3867,,-97.4356,1,Daniel Green was diagnosed as being schizophrenic and had a violent past.,0::53||1::34||2::16||3::0||4::40,0::Adult 18+||1::Adult 18+||2::Teen 12-17||3::Child 0-11||4::Adult 18+,0::Female||1::Female||2::Female||3::Male||4::Male,0::Sallie Green||1::Rebecca Cizek||2::Katherine Cizek||3::Amario Dominguez III||4::Daniel Livingston Green,4::Family,"0::Killed||1::Killed||2::Killed||3::Killed||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://newsok.com/oklahoma-city-man-charged-with-killing-four-family-members/article/3874045||http://www.koco.com/news/oklahomanews/okc/father-daniel-green-capable-of-killing-his-family/21560934,94,15
1074613,2013-08-17,Pennsylvania,York,376 Walnut St,1,0,http://www.gunviolencearchive.org/incident/1074613,https://www.ydr.com/story/news/local/2018/03/21/york-county-jury-delivers-million-dollar-verdict-against-georges-tavern-security-negligence-murder/444774002/,False,4,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Institution/Group/Business||Bar/club incident - in or around establishment",39.9672,George's Tavern,-76.7206,1,vic shot in back while breaking up a bar fight,1::25,0::Adult 18+||1::Adult 18+,0::Male||1::Male,"0::Jaime ""Butter"" Sanabria||1::Halim ""Buddha"" Bowen",,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,https://www.ydr.com/story/news/local/2018/03/21/york-county-jury-delivers-million-dollar-verdict-against-georges-tavern-security-negligence-murder/444774002/,95,28
491819,2013-08-17,California,San Francisco,1738 Telegraph Avenue,0,4,http://www.gunviolencearchive.org/incident/491819,http://www.contracostatimes.com/news/ci_23893647/oakland-police-arrest-suspect-uptown-salon-shooting,False,12,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",37.7767,Badd Boyz Hair and Barber Salon,-122.419,,Shooting the result of a purse stolen from a car that was burglarized.,4::20,0::Adult 18+||4::Adult 18+,0::Male||1::Female||4::Male,4::Demetrius Ward,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.contracostatimes.com/news/ci_23885411/oakland-four-shot-telegraph-avenue||http://abc7news.com/archive/9210450/||http://www.contracostatimes.com/news/ci_23893647/oakland-police-arrest-suspect-uptown-salon-shooting,17,11
491948,2013-08-18,New Jersey,Port Norris,1600 block of North Avenue,0,4,http://www.gunviolencearchive.org/incident/491948,http://www.nbcphiladelphia.com/news/local/4-Struck-in-Port-Norris-Shooting-220097981.html,False,2,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.2649,,-75.024,,Shooting in a wooded area behind a house where a party was in progress.,,,0::Female||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.nj.com/cumberland/index.ssf/2013/08/four_shot_at_port_norris_woods_party_suspect_remains_at_large.html||http://www.nbcphiladelphia.com/news/local/4-Struck-in-Port-Norris-Shooting-220097981.html,1,1
491937,2013-08-18,Ohio,Toledo,2272 Scottwood Ave,0,4,http://www.gunviolencearchive.org/incident/491937,http://www.toledoblade.com/Police-Fire/2013/08/20/Residentssay-policeresponsetoo-slow.html,False,9,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.6651,,-83.5591,,Shooting at a house party.,0::19||1::17||2::22||3::18,0::Adult 18+||1::Teen 12-17||2::Adult 18+||3::Adult 18+,0::Male||1::Female||2::Male||3::Male,0::Taylor McCormick||1::Sidresha Lamb||2::Ronald Smith||3::Jamil Bolden,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.toledoblade.com/Police-Fire/2013/08/19/Six-injured-in-violent-weekend-in-Toledo.html||http://www.toledoblade.com/Police-Fire/2013/08/20/Residentssay-policeresponsetoo-slow.html,44,11
491898,2013-08-18,South Carolina,Chesterfield,3217 Center Point Rd,1,4,http://www.gunviolencearchive.org/incident/491898,http://www.theexpressnewspaper.com/files/Editions/Pages/09-11-2013/09102013EJAEA01.pdf,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Possession (gun(s) found during commission of other crimes)",34.7104,Twisted Rooster Saloon,-80.1421,,,1::15||2::17||4::19||5::17||6::23||7::25||8::21||9::24,0::Adult 18+||1::Teen 12-17||2::Teen 12-17||3::Adult 18+||4::Adult 18+||5::Teen 12-17||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male||8::Male,"0::Jefferson ""Rex"" Rivers||3::Malcolm Staton||4::Nigel Bivens||5::Dontrel Shyhee Blakeney||6::Lee Jernard Burns||7::Lee Jernard Burns||8::Demetry Rayshawn Reid||9::Reginald Aldel Rei",,"0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested||7::Unharmed, Arrested||8::Unharmed, Arrested||9::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect||8::Subject-Suspect||9::Subject-Suspect,http://myfox8.com/2013/08/18/5-shot-1-killed-in-sc-shooting-suspects-sought-in-nc/||https://usgunviolence.wordpress.com/2013/08/18/mass-shooting-killed-jefferson-rex-rivers-chesterfield-county-sc/||http://www.theexpressnewspaper.com/files/Editions/Pages/09-11-2013/09102013EJAEA01.pdf,53,27
491840,2013-08-18,Illinois,Chicago,100 block of South Springfield,1,3,http://www.gunviolencearchive.org/incident/491840,http://chicago.cbslocal.com/2013/08/19/6-dead-27-wounded-in-weekend-shootings/,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.8798,,-87.7232,,,0::24||1::21||2::23||3::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Female||2::Female||3::Female,,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,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/,10,5
491965,2013-08-19,Illinois,Chicago,1011 W. Wilson,1,4,http://www.gunviolencearchive.org/incident/491965,https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0ahUKEwjyibiagcTKAhULNz4KHbQ5DUQQFgglMAE&url=http%3A%2F%2Fhomicides.suntimes.com%2F2013%2F11%2F14%2Fupdate-kelsky-patterson-held-on-1m-bond-for-alleged-murder-outside-uptow,False,9,0::Unknown,0::7.62 [AK-47],"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",41.9653,Uptown Baptist Church,-87.6557,1,Three gang members and two other individuals shot in suspected gang war in front of church on night of homeless retreat at the church.,5::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,0::Darius Oliver||5::Kelsky Patterson,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://chicago.cbslocal.com/2013/08/19/breaking-5-shot-one-fatally-in-uptown/||http://articles.chicagotribune.com/2013-08-20/news/chi-cops-5-shot-in-uptown-20130819_1_bang-shooting-uptown-baptist-church||https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0ahUKEwjyibiagcTKAhULNz4KHbQ5DUQQFgglMAE&url=http%3A%2F%2Fhomicides.suntimes.com%2F2013%2F11%2F14%2Fupdate-kelsky-patterson-held-on-1m-bond-for-alleged-murder-outside-uptow,13,7
491992,2013-08-20,Maryland,Baltimore,1200 block of S. Carey St,2,2,http://www.gunviolencearchive.org/incident/491992,http://www.baltimoresun.com/news/maryland/crime/bs-md-ci-mason-double-murder-plea-20150203-story.html,False,3,0::Unknown,0::9mm,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.2806,,-76.6354,1,Shooting occurred over a $10 debt deceased victims allegedly owed the perpetrator.,0::22||1::21||4::35,0::Adult 18+||1::Adult 18+||2::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Female||3::Female||4::Male,0::Meghan Kerrigan||1::William Monroe||2::Rhonda Monroe||4::Melville Mason,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.abc2news.com/news/crime-checker/baltimore-city-crime/three-people-shot-on-n-carey-street-in-west-baltimore||http://www.baltimoresun.com/news/maryland/crime/bs-md-pigtown-shooting-20130820-story.html||http://www.baltimoresun.com/news/maryland/crime/bs-md-ci-mason-double-murder-plea-20150203-story.html,40,40
958032,2013-08-23,New Jersey,Trenton,Middle Rose St and Brunswick Ave,1,0,http://www.gunviolencearchive.org/incident/958032,http://trenton.homicidewatch.org/2017/10/12/gunman-who-killed-trenton-rapper-young-farr-pleads-guilty/,False,,0::Unknown,0::Handgun,"Shot - Dead (murder, accidental, suicide)",40.2281,,-74.7611,1,vic shot twice in head,0::26||1::39,0::Adult 18+||1::Adult 18+,0::Male||1::Male,"0::Jafar ""Young Farr"" Lewis||1::Wayne Bush",,0::Killed||1::Arrested,0::Victim||1::Subject-Suspect,http://trenton.homicidewatch.org/2017/10/12/gunman-who-killed-trenton-rapper-young-farr-pleads-guilty/,,
492260,2013-08-25,South Carolina,Latta,214 Willis St,1,3,http://www.gunviolencearchive.org/incident/492260,http://wbtw.com/2013/08/24/one-killed-four-injured-in-dillon-county-shooting/,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",34.3305,Legion Club,-79.4333,,,0::21||5::21||6::19,0::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||5::Male||6::Male,0::Damien Simpson||5::Devante Mcneil||6::Benjamin Bethea,,"0::Killed||1::Injured||2::Injured||4::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect,http://wpde.com/news/local/four-shot-one-killed-at-dillon-county-club?id=938146||http://wbtw.com/2013/08/24/one-killed-four-injured-in-dillon-county-shooting/,57,30
492270,2013-08-25,Minnesota,Minneapolis,2600 block of Cedar and 2600 block of 18th Avenue South,2,2,http://www.gunviolencearchive.org/incident/492270,http://www.hennepinattorney.org/~/media/Attorney/NEWS/2013/sanders-dijoncplt.pdf?la=en,False,5,0::Unknown||1::Unknown,0::9mm||1::40 SW,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",44.9553,,-93.2489,2,Perpetrator was acquitted of this crime due to lack of evidence in June 2015 after a week's deliberation.,0::18||1::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17,0::Male||1::Male||2::Female||3::Female,0::De'Von Burt||1::Keondray Q. Wilson||4::Dijon Cordell Sanders,,0::Killed||1::Killed||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.mprnews.org/story/2013/08/26/news/2-shot-dead-2-injured-in-minneapolis||http://www.startribune.com/2-men-shot-to-death-2-women-wounded-in-minneapolis-alley/221113551/||http://www.hennepinattorney.org/~/media/Attorney/NEWS/2013/sanders-dijoncplt.pdf?la=en,,62
492276,2013-08-25,Florida,Lake Butler,1050 Southeast 6th Street,4,1,http://www.gunviolencearchive.org/incident/492276,http://www.usatoday.com/story/news/nation/2013/08/28/workplace-shooting-florida/2712227/,False,3,0::Unknown||1::Unknown||2::Unknown,0::22 LR||1::410 gauge||2::32 Auto,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Workplace shooting (disgruntled employee)",30.0194,Pritchett Trucking Inc,-82.3278,3,"Suspect had either been fired or had retired a few weeks previous to the incident.
Deputies recovered a .22-caliber rifle, a .410-small-bore shotgun and an unfi",0::28||1::80||2::66||3::44||4::72,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Rolando Gonzalez-Delgado||1::Marvin Pritchett||2::Lewis Mabrey Jr.||3::David Griffis||4::Hubert Allen Jr.,4::Co-worker,0::Killed||1::Killed||2::Injured||3::Killed||4::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.cbsnews.com/news/motive-a-mystery-in-lake-butler-fla-shooting-spree/||http://www.usatoday.com/story/news/nation/2013/08/28/workplace-shooting-florida/2712227/,19,5
479646,2013-08-25,California,Oakland,1300 block of 104th Avenue,0,4,http://www.gunviolencearchive.org/incident/479646,http://www.contracostatimes.com/news/ci_23939970/four-people-including-two-girls-wounded-oakland-shooting,False,13,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",37.7389,,-122.169,,17 year old male was intended target.,0::8||1::12||2::17||3::44,0::Child 0-11||1::Teen 12-17||2::Teen 12-17||3::Adult 18+,0::Female||1::Female||2::Male||3::Female,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://sanfrancisco.cbslocal.com/2013/08/25/4-injured-oakland-shooting/||http://www.contracostatimes.com/news/ci_23939970/four-people-including-two-girls-wounded-oakland-shooting,18,9
479682,2013-09-05,North Carolina,Charlotte,2500 block of Pinckney Avenue,0,4,http://www.gunviolencearchive.org/incident/479682,http://www.crimeincharlotte.com/arrest-made-in-drive-by-shooting-during-anti-violence-vigil/#.Vo1uZlIYFuo,False,12,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",35.2406,,-80.8095,,Shooting occurred during cleanup for Mothers of Murdered Offspring rally.,0::11||1::18||2::19||3::22||4::22,0::Child 0-11||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,4::Louie Raymond Forney,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.wsoctv.com/news/news/local/police-investigate-multiple-calls-shots-fired-outs/nZn7z/||http://www.crimeincharlotte.com/arrest-made-in-drive-by-shooting-during-anti-violence-vigil/#.Vo1uZlIYFuo,107,37
479727,2013-09-07,Missouri,Saint Louis,5000 block of Durant Ave,1,3,http://www.gunviolencearchive.org/incident/479727,http://www.stltoday.com/news/local/crime-and-courts/st-louis-man-charged-with-shooting-from-car-killing-man/article_5ed149cc-789e-5187-befc-50288eca5f61.html,False,1,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",38.688,,-90.2456,1,"male, 21: shot in the abdomen; male, 49: shot in the buttocks; male, 38: shot in the ankle;
38.687968, -90.245635",0::36||1::21||2::38||3::49||4::21,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||4::Male,0::Carnez Winslett||4::Darnell Hollings,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.stltoday.com/news/local/crime-and-courts/st-louis-man-charged-with-shooting-from-car-killing-man/article_5ed149cc-789e-5187-befc-50288eca5f61.html,76,5
479709,2013-09-07,Indiana,Gary,9300 block of Sunrise Boulevard,2,4,http://www.gunviolencearchive.org/incident/479709,https://usgunviolence.wordpress.com/2013/09/07/mass-shooting-killed-davaughn-pitts-gary-in/,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.5971,,-87.2256,,"Incident result of earlier disturbance between two groups at Murphy’s Tavern, 5425 U.S. 12",0::32||1::18,0::Adult 18+||1::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Female||5::Female,0::Vincent Wainwright||1::Da’Vaughn Pitts,,0::Killed||1::Killed||2::Injured||3::Injured||4::Injured||5::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim,http://abc7chicago.com/archive/9239958/||http://www.nbcchicago.com/news/local/2-Dead-4-Injured-in-Gary-Shooting-222823091.html||https://usgunviolence.wordpress.com/2013/09/07/mass-shooting-killed-davaughn-pitts-gary-in/,3,3
479734,2013-09-10,Connecticut,Bridgeport,Reservoir Ave and Grandview Ave,1,4,http://www.gunviolencearchive.org/incident/479734,http://www.nbcconnecticut.com/news/local/bridgeport-murder-homicide-fatal-shooting-arrest-police-249316381.html,False,4,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.2205,T Mart,-73.1929,,Deceased victim not considered target. David Anderson was driver.,0::26||1::15||2::15||3::19||4::19||5::23||6::19||7::20,0::Adult 18+||1::Teen 12-17||2::Teen 12-17||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male,0::LaChristopher Pettway||1::Juwan Edwards||2::Leroy Shaw||3::Aijaholn Tisdale||4::Tamir Hamilton||5::Raashon Jackson||6::Roderick “Riki” Rogers||7::David Anderson,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested||7::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect,http://www.nbcconnecticut.com/news/local/bridgeport-murder-homicide-fatal-shooting-arrest-police-249316381.html,126,22
479774,2013-09-11,New York,New York,204 Varick St,0,4,http://www.gunviolencearchive.org/incident/479774,http://gothamist.com/2013/09/13/fat_trels_manager_says_shooting_at.php,False,10,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Gang involvement",40.7283,Sounds of Brazil,-74.0048,1,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Female,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.nbcnewyork.com/news/local/SOB-Nightclub-Shootings-Four-Wounded-Lower-Manhattan-Suspect-Photo-235650451.html||http://gothamist.com/2013/09/13/fat_trels_manager_says_shooting_at.php,66,27
479747,2013-09-12,Tennessee,Crab Orchard,,4,0,http://www.gunviolencearchive.org/incident/479747,http://www.wsmv.com/story/23415177/4-people-found-dead-inside-car-in-cumberland-county,False,6,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Drug involvement",35.9576,,-84.8407,,,0::22||1::17||2::17||3::16||4::26||5::25,0::Adult 18+||1::Teen 12-17||2::Teen 12-17||3::Teen 12-17||4::Adult 18+||5::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male||5::Female,0::Danielle Jacobson||1::Steven Presley||2::Dominic Davis||3::John Lajeunesse||4::Jacob Allen Bennett||5::uBrittany Lina Yvonn Moser,,"0::Killed||1::Killed||2::Killed||3::Killed||4::Unharmed, Arrested||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.wsmv.com/story/23415177/4-people-found-dead-inside-car-in-cumberland-county,25,15
479757,2013-09-12,District of Columbia,Washington,First Street and Pierce Street NW,1,3,http://www.gunviolencearchive.org/incident/479757,http://homicidewatch.org/category/victims/page/72/,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.9047,,-77.0122,,"One victim was shot in the lower body, another in the leg, and a third in the arm. Police believe incident grew out of dice game.",0::32,0::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Delonta Hendrix,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://washington.cbslocal.com/2013/09/12/one-dead-three-injured-in-overnight-d-c-shooting/||http://homicidewatch.org/category/victims/page/72/,,
479821,2013-09-14,North Carolina,Marion,80 Finley Road,0,4,http://www.gunviolencearchive.org/incident/479821,http://www.mcdowellnews.com/news/police-vortex-gunman-in-custody/article_6294315c-1f1d-11e3-9e10-0019bb30f31a.html,False,11,0::Unknown,0::40 SW,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Possession of gun by felon or prohibited person",35.6864,Vortex Marion,-82.0201,1,,4::35,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,4::Male,4::Earl Spencer Boyce Jr.,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.mcdowellnews.com/news/article_1476be3e-1d6c-11e3-8698-001a4bcf6878.html||http://www.mcdowellnews.com/news/police-vortex-gunman-in-custody/article_6294315c-1f1d-11e3-9e10-0019bb30f31a.html,85,47
480104,2013-09-15,Colorado,Colorado Springs,1609 South Nevada,0,5,http://www.gunviolencearchive.org/incident/480104,http://gazette.com/5-people-wounded-in-colorado-springs-shootings/article/1506251,False,5,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Gang involvement",38.8111,Leyalina Hookah bar,-104.822,,,,,,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://gazette.com/5-people-wounded-in-colorado-springs-shootings/article/1506251,18,11
480058,2013-09-15,Georgia,Snellville,4630 Anderson Livsey Lane,3,1,http://www.gunviolencearchive.org/incident/480058,http://www.gwinnettdailypost.com/archive/snellville-triple-murder-suspect-arrested-in-new-orleans/article_764d0ba7-3ec5-50f7-8e9e-acf354999c99.html,False,4,0::Unknown,0::Other,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.7709,,-84.05,1,,0::34||1::23||2::19||3::12||4::33,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17||4::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male,0::Angelina Benton||1::Justin Cato||2::Raynord Daniel||3::Joseph McDonald||4::Robert E. Bell,,"0::Killed||1::Injured||2::Killed||3::Killed||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.11alive.com/story/news/crime/2014/03/06/1948018/||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.gwinnettdailypost.com/archive/snellville-triple-murder-suspect-arrested-in-new-orleans/article_764d0ba7-3ec5-50f7-8e9e-acf354999c99.html,93,55
480071,2013-09-15,Washington,Yakima,2209 W Nob Hill Blvd,0,6,http://www.gunviolencearchive.org/incident/480071,http://www.kapptv.com/article/2013/sep/15/six-people-injured-shooting-outside-yakima-hookah-/,False,4,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Gang involvement",46.5854,Aladdin's Hookah Lounge,-120.538,,"Incident occurred in parking lot of hookah lounge, which is a private smoking club.",0::31||1::20||2::28||3::29||4::22||5::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Female||5::Female,0::Anthony D. Bradley,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim,http://www.tri-cityherald.com/news/local/crime/article32141907.html||http://kimatv.com/news/local/police-shooting-leaves-6-people-hurt-1-in-critical-condition||http://www.kapptv.com/article/2013/sep/15/six-people-injured-shooting-outside-yakima-hookah-/,14,14
480366,2013-09-16,District of Columbia,Washington Navy Yard,1336 Isaac Hull Ave,11,3,http://www.gunviolencearchive.org/incident/480366,https://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,False,1,0::Unknown||1::Unknown,0::9mm||1::Shotgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.873,NAVSEA Building 197,-76.9977,2,"Male victim shot in the leg, first female victim shot in the shoulder, second female shot in head (bullet did not pierce her skull) and hand.",0::59||1::53||2::51||3::53||4::62||5::73||6::51||7::50||8::61||9::46||10::58||11::52||15::34,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+||10::Adult 18+||11::Adult 18+||12::Adult 18+||13::Adult 18+||14::Adult 18+||15::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Female||5::Male||6::Female||7::Male||8::Male||9::Male||10::Male||11::Male||12::Male||13::Female||14::Female||15::Male,0::Michael Arnold||1::Martin Bodrog||2::Arthur Daniels||3::Sylvia Frasier||4::Kathy Gaarde||5::John Roger Johnson||6::Mary Francis Knight||7::Frank Kohler||8::Vishnu Pandit||9::Kenneth Bernard Proctor||10::Gerald Read||11::Richard Michael Ridgell||12::Officer Scott Williams||15::Aaron Alexis,15::Co-worker,0::Killed||1::Killed||2::Killed||3::Killed||4::Killed||5::Killed||6::Killed||7::Killed||9::Killed||10::Killed||12::Injured||13::Injured||14::Injured||15::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Victim||10::Victim||11::Victim||12::Victim||13::Victim||14::Victim||15::Subject-Suspect,http://www.nbcwashington.com/news/local/Confirmed-Shooter-at-Navy-Yard-One-Person-Shot-223897891.html||https://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,,
480394,2013-09-17,California,Stockton,700 block of North Airport Way,2,3,http://www.gunviolencearchive.org/incident/480394,http://www.kcra.com/news/local-news/news-stockton/multiple-victims-reported-in-stockton-market-shooting/21992392,False,9,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",37.9625,Danny's Market,-121.276,,Five men in market parking lot shot by one of a group of four individuals that walked up to them.,0::26||1::22||2::23||3::30||4::34,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Antoine Martis Kelly||1::Charles Edwards Jr,,0::Killed||1::Killed||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,https://usgunviolence.wordpress.com/category/where/california/page/64/||http://www.recordnet.com/apps/pbcs.dll/article?AID=/20130917/A_NEWS/130919885/-1/A_NEWS02||http://www.recordnet.com/article/20130919/A_NEWS/309190322||http://www.kcra.com/news/local-news/news-stockton/multiple-victims-reported-in-stockton-market-shooting/21992392,13,5
480415,2013-09-17,Michigan,Lansing,1500 block of Ottawa Street,0,4,http://www.gunviolencearchive.org/incident/480415,http://www.lansingstatejournal.com/story/news/local/2014/08/12/lansing-teen-charged-in-13-shooting-near-sexton-high-school/13963509/,False,8,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.7349,,-84.573,,Perpetrators ambushed 3 of the 4 victims. The two perpetrators are being tried as adults.,0::17||1::14||2::15||3::15||4::17||5::16,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Teen 12-17||4::Teen 12-17||5::Teen 12-17,0::Female||1::Male||2::Male||3::Male||5::Male,4::Timothy Minor III,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.mlive.com/lansing-news/index.ssf/2013/09/sexton_shooting_rocks_quiet_ne.html||http://www.lansingstatejournal.com/story/news/local/2014/09/04/lansing-teen-stand-trial-shooting-near-sexton/15099107/||http://www.lansingstatejournal.com/story/news/local/2014/08/12/lansing-teen-charged-in-13-shooting-near-sexton-high-school/13963509/,68,23
480453,2013-09-17,Nevada,Las Vegas,1300 block of Bartlett Avenue,0,4,http://www.gunviolencearchive.org/incident/480453,https://www.reviewjournal.com/news/crime-courts/las-vegas-police-seek-information-drive-shooting,False,4,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",36.2003,,-115.159,,,3::11,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Child 0-11,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,https://www.reviewjournal.com/news/crime-courts/las-vegas-police-seek-information-drive-shooting,6,4
480462,2013-09-17,Florida,Kissimmee,Flying Fortress Avenue,0,5,http://www.gunviolencearchive.org/incident/480462,http://articles.orlandosentinel.com/2013-09-19/news/os-kissimmee-shooting-victims-mum-20130919_1_gunshot-victims-stray-bullet-mum,False,9,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",28.3107,,-81.4488,,,,,,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://articles.orlandosentinel.com/2013-09-19/news/os-kissimmee-shooting-victims-mum-20130919_1_gunshot-victims-stray-bullet-mum,43,14
480470,2013-09-18,Tennessee,Memphis,1033 Whitaker,1,4,http://www.gunviolencearchive.org/incident/480470,http://www.14news.com/story/23886911/mother-calls-for-justice-after-son-dies-in-shooting-spree,False,9,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.0411,Birch Leaf Apartments,-90.0292,,,0::22,0::Adult 18+,0::Male,0::Deonte Wiggins,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://wreg.com/2013/09/18/one-dead-three-injured-in-whitehaven-shooting/||http://www.crimestopmem.org/open_invest_new.html||http://www.14news.com/story/23886911/mother-calls-for-justice-after-son-dies-in-shooting-spree,91,29
480521,2013-09-19,Illinois,Chicago,1809 W 50th St,0,12,http://www.gunviolencearchive.org/incident/480521,http://www.nydailynews.com/news/national/chicago-toddler-smiling-shot-face-article-1.1472401,False,3,0::Unknown,0::7.62 [AK-47],"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",41.803,Cornell Square Park,-87.6699,1,"Sources said the ""Brick Squad"" gang faction, a South Side band of the Vice Lords, Black P Stones and Gangster Disciples, was involved in the shooting.",0::3||1::17||2::15||3::27||4::24||5::21||6::41||7::33||8::31||9::23||10::37||11::25||12::33||13::20||14::21||15::22||16::28||17::22||18::20||19::22,0::Child 0-11||1::Teen 12-17||2::Teen 12-17||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+||10::Adult 18+||11::Adult 18+||12::Adult 18+||13::Adult 18+||14::Adult 18+||15::Adult 18+||16::Adult 18+||17::Adult 18+||18::Adult 18+||19::Adult 18+,0::Male||1::Female||2::Male||3::Male||4::Male||5::Male||6::Male||7::Female||8::Male||9::Female||10::Male||11::Male||12::Male||13::Male||14::Male||15::Male||16::Male||17::Male,0::Deonta Howard||13::Quinton M. Humphries||14::Bryon Champ||15::David Logan||16::Darren Curtis||17::Brad Jett||18::Kewane Gatewood||19::Tabari Young,13::Gang vs Gang||14::Gang vs Gang||15::Gang vs Gang||16::Gang vs Gang||17::Gang vs Gang||18::Gang vs Gang||19::Gang vs Gang,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||9::Injured||10::Injured||11::Injured||12::Injured||13::Unharmed, Arrested||14::Unharmed, Arrested||15::Unharmed, Arrested||16::Unharmed||17::Unharmed, Arrested||18::Unharmed, Arrested||19::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Victim||10::Victim||11::Victim||12::Victim||13::Subject-Suspect||14::Subject-Suspect||15::Subject-Suspect||16::Subject-Suspect||17::Subject-Suspect||18::Subject-Suspect||19::Subject-Suspect,http://www.chicagotribune.com/news/local/breaking/chi-multiple-people-including-3yearold-shot-in-south-side-attack-20130919-story.html||http://www.dnainfo.com/chicago/20131113/back-of-yards/seventh-suspect-charged-back-of-yards-shooting-of-13||http://www.nydailynews.com/news/national/chicago-toddler-smiling-shot-face-article-1.1472401,2,1
480582,2013-09-20,California,Long Beach,6500 block of Rose Avenue,2,2,http://www.gunviolencearchive.org/incident/480582,http://losangeles.cbslocal.com/2013/09/21/2-men-dead-2-women-wounded-in-long-beach-shooting/,False,44,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.8728,,-118.171,,Single perpetrator walked up to group and shot each of the group members.,0::26||1::24,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Female||3::Female,0::Sophon Kao||1::Jerry Chim,,0::Killed||1::Killed||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.lbreport.com/news/sep13/187nlbros.htm||http://losangeles.cbslocal.com/2013/09/21/2-men-dead-2-women-wounded-in-long-beach-shooting/,63,33
480605,2013-09-20,Texas,Rice,700 block of NW 0149,5,0,http://www.gunviolencearchive.org/incident/480605,http://www.corsicanadailysun.com/news/local_news/update-rice-deaths-suspected-as-murder-suicide/article_250814e0-365b-5ed2-ac59-d5502b76dafa.html,False,6,0::Unknown,0::22 LR,"Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence",32.2337,,-96.4661,1,,0::33||1::10||2::8||3::4||4::33,0::Adult 18+||1::Child 0-11||2::Child 0-11||3::Child 0-11||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Female,"0::Israel Chairez Alvarez||1::Misael Alvarez||2::Cain Alvarez||3::Israel Alvarez, Jr||4::Guadalupe Ronquillo-Ovalle",4::Family,0::Killed||1::Killed||2::Killed||3::Killed||4::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.nbcdfw.com/news/local/Five-Family-Members-Found-Dead-In-Navarro-County-224807262.html||http://www.dallasnews.com/news/crime/headlines/20130924-sheriff-navarro-county-mother-killed-husband-children-before-shooting-herself.ece||http://www.nbcdfw.com/news/local/Authorities-Try-to-Reconstruct-Scene-of-Familys-Murder-Suicide-225030912.html||http://www.corsicanadailysun.com/news/local_news/update-rice-deaths-suspected-as-murder-suicide/article_250814e0-365b-5ed2-ac59-d5502b76dafa.html,,22
480632,2013-09-21,Florida,Palm Beach,2600 block of Forest Hill Boulevard,0,4,http://www.gunviolencearchive.org/incident/480632,http://www.wptv.com/news/region-c-palm-beach-county/west-palm-beach/envy-nightclub-shooting-4-shot-in-palm-springs-club-on-forest-hill-blvd#ixzz2fdVoWi4r,False,20,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",26.6552,Envy,-80.062,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wptv.com/news/region-c-palm-beach-county/west-palm-beach/envy-nightclub-shooting-4-shot-in-palm-springs-club-on-forest-hill-blvd#ixzz2fdVoWi4r,87,27
480661,2013-09-22,Missouri,Saint Louis,3916 North Florissant Road,1,3,http://www.gunviolencearchive.org/incident/480661,http://www.riverfronttimes.com/newsblog/2013/09/23/randy-lee-jones-21-killed-three-injured-in-north-st-louis-shooting-homicide-no-75,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.662,,-90.2062,,,0::21||1::36||2::33||3::22,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Female,"0::Randy Lee ""Champ"" Jones III",,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.stltoday.com/news/local/crime-and-courts/shot-one-fatally-on-st-louis-street/article_e2cdfd83-17c9-550a-91e1-7afb3a809b9c.html||http://www.riverfronttimes.com/newsblog/2013/09/23/randy-lee-jones-21-killed-three-injured-in-north-st-louis-shooting-homicide-no-75,79,5
480669,2013-09-22,Michigan,Muskegon,149 Ottawa Ave,2,4,http://www.gunviolencearchive.org/incident/480669,http://www.mlive.com/news/muskegon/index.ssf/2013/10/prosecutor_car_not_bullet_kill.html,False,2,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",43.2489,Elks Lodge,-86.2368,1,"Jalisa Love was shot and injured, but died of injuries sustained when a car ran over her as she fled the shooting scene.;
43.249780, -86.236475",0::20||1::20||2::20||5::20||6::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+,0::Male||1::Male||2::Female||6::Male||7::Male,0::Dupree Johnson||1::Ja'Colby Brown||2::Jalisa Love||5::Jamel Kawon Quinney||6::Antonio Keshawn Raglin,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested||7::Injured",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect||7::Victim,http://www.mlive.com/news/muskegon/index.ssf/2013/09/police_release_names_of_2_dead.html||http://www.mlive.com/news/muskegon/index.ssf/2015/06/double_murder_charges_filed_in.html||http://www.mlive.com/news/muskegon/index.ssf/2013/10/prosecutor_car_not_bullet_kill.html,92,34
480646,2013-09-22,Kansas,Wichita,100 block of N. Mead,1,6,http://www.gunviolencearchive.org/incident/480646,http://www.kake.com/home/headlines/224750592.html,False,4,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",37.6861,,-97.3288,,,0::25||1::25||2::26||3::26||4::27||5::28||6::35,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male,0::Kolby Hopkins,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim,http://ksn.com/2013/09/22/53088-autosave/||http://www.kansas.com/news/article1123866.html||http://www.kake.com/home/headlines/224750592.html,103,29
480691,2013-09-24,West Virginia,Huntington,300 W 7th Ave,0,6,http://www.gunviolencearchive.org/incident/480691,http://www.wvnstv.com/story/23520830/update-suspect-in-huntington-wv-shooting-which-injured-6-apprehended-in-ny,False,3,0::Stolen||1::Stolen,0::Handgun||1::Handgun,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",38.4136,Northcott Court,-82.4609,2,,0::21||1::36||2::22||3::23||4::19||5::23||6::31,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male,"0::Jamal R. Tubbs||1::Andre Maurice Branch||2::Semaj Markes Leondre Figg||3::Dwight McVernon Green||4::Jayron Antonio Washington||5::Maurice LaVelle Miller, Jr||6::Antonio Smith",,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,http://www.theepochtimes.com/n3/298606-huntington-shooting-6-people-shot-in-west-virginia/||http://www.wvnstv.com/story/23520830/update-suspect-in-huntington-wv-shooting-which-injured-6-apprehended-in-ny,17,5
480700,2013-09-25,North Carolina,Haw River,1003 W. Main St,0,4,http://www.gunviolencearchive.org/incident/480700,http://www.thetimesnews.com/article/20140604/news/306049850,False,4,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",36.0934,Jet Sports Bar,-79.3526,,,4::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Jaheem Watson||1::Germine Johnson||2::Kaqunna S. Woods||3::Alphonso Macer||4::Avery Clay Parker II,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.thetimesnews.com/20130925/four-shot-at-haw-river-sports-bar/309259888||http://www.thetimesnews.com/article/20130930/News/309309885||http://www.thetimesnews.com/article/20140604/news/306049850,63,24
480720,2013-09-27,Ohio,Zanesville,753 Putnam Ave,0,4,http://www.gunviolencearchive.org/incident/480720,http://www.zanesvilletimesrecorder.com/story/news/local/2015/03/30/wilson-gets-years-life-shootings/70687002/,False,12,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",39.9272,Hoppy's Bar,-82.0073,1,,4::26,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Female||3::Female||4::Male,4::Anthony Wilson,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.10tv.com/content/stories/2013/09/30/zanesville-hoppys-bar-shooting-4-injured.html||http://www.zanesvilletimesrecorder.com/story/news/local/2014/11/24/man-admits-murder-zanesville-shootings/70047886/||http://www.zanesvilletimesrecorder.com/story/news/local/2015/03/30/wilson-gets-years-life-shootings/70687002/,97,20
480730,2013-09-29,Illinois,Chicago,6000 block of South Indiana Avenue,0,4,http://www.gunviolencearchive.org/incident/480730,http://chicago.cbslocal.com/2013/09/28/four-hurt-in-washington-park-shooting/,False,1,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.7854,,-87.6209,,,0::22||1::21||2::18||3::16,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://chicago.cbslocal.com/2013/09/28/four-hurt-in-washington-park-shooting/,5,3
480747,2013-10-02,Nebraska,Omaha,North 42nd and Browne streets,0,4,http://www.gunviolencearchive.org/incident/480747,http://www.wowt.com/news/headlines/Seven-Injured-In-Overnight-Shootings-226275981.html,False,2,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",41.305,,-95.9758,,,0::19||1::16||2::16||3::2,0::Adult 18+||1::Teen 12-17||2::Teen 12-17||3::Child 0-11,0::Female||1::Female||2::Female||3::Male,0::Keirra Johnson||1::Ennisha Devers||2::Danielle Ross||3::Da' Marion Devers,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.omaha.com/news/police-id-overnight-shooting-victims/article_e1a077aa-94f0-506c-9d83-ce5c4c27ff1c.html||http://www.wowt.com/news/headlines/Seven-Injured-In-Overnight-Shootings-226275981.html,,11
670964,2013-10-05,Indiana,Fort Wayne,2020 Hobson Rd,1,1,http://www.gunviolencearchive.org/incident/670964,http://www.21alive.com/news/local/Hobson-Rd-Shooting-Victim-In-Critical-Condition-226489941.html,False,3,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",41.0951,Baldwin Creek Apartment Complex,-85.0984,1,"Victim climbed out window, fell to ground after being shot; died at hospital; 2nd victim probable bystander;",0::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Johnny Lee Upshaw,,0::Killed||1::Injured,0::Victim||1::Victim,http://www.21alive.com/news/local/Hobson-Rd-Shooting-Victim-In-Critical-Condition-226489941.html,85,15
480765,2013-10-05,California,Fresno,3883 E. Calwa #114,1,12,http://www.gunviolencearchive.org/incident/480765,http://sanfrancisco.cbslocal.com/2013/10/06/gunfight-fresno-motorcycle-club/,False,16,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",36.7054,Soul Brothers Clubhouse,-119.76,,,0::18,0::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+||9::Adult 18+||10::Adult 18+||11::Adult 18+||12::Adult 18+,0::Male,0::Dejuan Gladney,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Injured||9::Injured||10::Injured||11::Injured||12::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Victim||10::Victim||11::Victim||12::Victim,http://sanfrancisco.cbslocal.com/2013/10/06/gunfight-fresno-motorcycle-club/,31,14
480882,2013-10-05,New York,Buffalo,102 Zelmer Street,0,4,http://www.gunviolencearchive.org/incident/480882,http://www.buffalonews.com/city-region/police-blotter/four-shot-outside-zelmer-street-party-20131006,False,26,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.9114,,-78.8075,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Steven Wilson||1::Brandon Fryer||2::John Price||3::Wade Prise,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.buffalonews.com/city-region/police-blotter/four-shot-outside-zelmer-street-party-20131006,141,63
480897,2013-10-06,Arizona,Avondale,11120 W Van Buren St,0,4,http://www.gunviolencearchive.org/incident/480897,http://www.cbs5az.com/story/23622666/pd-4-shot-during-party-at-avondale-apartment,False,3,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.451,Versante Luxury Apartments,-112.301,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.abc15.com/news/region-west-valley/avondale/avondale-pd-4-people-shot-during-party-at-versante-luxury-apartments||http://www.cbs5az.com/story/23622666/pd-4-shot-during-party-at-avondale-apartment,19,19
480961,2013-10-06,Pennsylvania,Philadelphia,54th St. and Florence Ave,1,5,http://www.gunviolencearchive.org/incident/480961,,False,2,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.943,Los Papi Deli and Grocery,-75.2268,,Potential gang violence,0::23||1::23||2::21||3::18||4::18||5::18,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,0::Devin Hatch,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim,http://6abc.com/archive/9277166/||http://philadelphia.cbslocal.com/2013/10/06/6-shot-1-dead-1-critical-in-kingsessing-shooting/,,
984965,2013-10-07,New Jersey,Tabernacle,US 206,1,0,http://www.gunviolencearchive.org/incident/984965,http://www.burlingtoncountytimes.com/news/20171109/trenton-man-resentenced-to-life-for-tabernacle-murder,False,3,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Kidnapping/abductions/hostage",39.8461,,-74.7348,1,vic kidnapped and shot twice,0::47||1::37,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Lisa Armstrong||1::Terrance Patterson,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.burlingtoncountytimes.com/news/20171109/trenton-man-resentenced-to-life-for-tabernacle-murder,9,9
480981,2013-10-09,Texas,Paris,400 block of NE 6th Street,4,0,http://www.gunviolencearchive.org/incident/480981,http://dfw.cbslocal.com/2013/10/10/witness-comes-forward-in-quadruple-homicide-in-paris-texas/,False,4,,,"Shot - Dead (murder, accidental, suicide)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.6652,,-95.5505,,Murder/suicide has been ruled out.,0::18||1::21||2::24||3::32,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Romello Dewain Steward||1::Devante Larry Adkins||2::Brijonne Rashad Woods||3::Billy Charles Carey,,0::Killed||1::Killed||2::Killed||3::Killed,0::Victim||1::Victim||2::Victim||3::Victim,http://www.nbcdfw.com/news/local/Paris-Police-Investigating-Quadruple-Homicide-227221721.html||http://www.foxnews.com/us/2013/10/10/police-say-4-men-found-fatally-shot-at-ne-texas-house-no-details-on-suspects.html||http://dfw.cbslocal.com/2013/10/10/witness-comes-forward-in-quadruple-homicide-in-paris-texas/,1,1
481029,2013-10-12,Oklahoma,Tulsa,12000 E 31st St,0,5,http://www.gunviolencearchive.org/incident/481029,http://www.tulsaworld.com/news/courts/victims-in-hmong-festival-shooting-suing-event-center-alleging-negligent/article_63f3c896-f0e2-59ff-ba59-5f37432cacbf.html,False,1,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Possession of gun by felon or prohibited person",36.1189,Green Country Event Center,-95.8429,1,,5::21||6::19,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,5::Male||6::Male,0::Tong Lee||1::Toua Xiong||2::Naocha Xiong||3::Boua Xiong||4::Pao Vue||5::Boonmlee Lee||6::Meng Lee,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Unharmed, Arrested||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect,http://www.tulsaworld.com/news/two-jailed-in-tulsa-hmong-shooting/article_865e04e9-1b34-5cc3-b09e-65e59c9f7ff9.html||http://www.yourhoustonnews.com/courier/news/two-in-custody-for-shooting-of-at-tulsa-event/article_b02e84a3-94a9-5153-83e0-979849c8d2c8.htmlu||http://www.tulsaworld.com/news/courts/victims-in-hmong-festival-shooting-suing-event-center-alleging-negligent/article_63f3c896-f0e2-59ff-ba59-5f37432cacbf.html,75,36
1007851,2013-10-13,Pennsylvania,Wilkes Barre,650 S Main St,1,0,http://www.gunviolencearchive.org/incident/1007851,http://www.timesleader.com/news/685608/prosecutors-show-video-of-shooting-in-dj-mo-homicide-case,False,17,0::Unknown,0::9mm,"Shot - Dead (murder, accidental, suicide)||Institution/Group/Business||Drive-by (car to street, car to car)",41.235,Outsider's Saloon (now closed),-75.9011,1,"41.235054, -75.901243 ;",0::34||1::24,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Michael “DJ Mo” Onley||1::Roberto Battle,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.timesleader.com/news/685608/prosecutors-show-video-of-shooting-in-dj-mo-homicide-case,121,14
481043,2013-10-13,Pennsylvania,Harrisburg,1524 Walnut St,0,8,http://www.gunviolencearchive.org/incident/481043,http://www.pennlive.com/midstate/index.ssf/2013/10/police_confirm_eight_people_sh.html,False,4,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.2692,Central Allison Hill Community Center,-76.8681,,,8::15,8::Teen 12-17,,8::Darrell L. Henderson,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Subject-Suspect,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/police_say_15-year-old_fired_g.html||http://www.pennlive.com/midstate/index.ssf/2013/10/police_confirm_eight_people_sh.html,,
481254,2013-10-20,Florida,Margate,7400 block of Santa Monica Drive,0,4,http://www.gunviolencearchive.org/incident/481254,http://www.margatenews.net/3909/123772/a/shooting-in-margate-retaliation-for-murder-of-gang-leaders-mom,False,21,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",26.2503,,-80.2237,,Related to Jamaican lottery scam and retaliation for the death of another individual in Jamaica. Occurred in gated community called Cypress Cove.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Female,0::Imron Barett||1::Christopher Currie||2::Anthony Dewayne Clarke||3::Chelcher,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,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://articles.sun-sentinel.com/2013-11-14/news/fl-margate-shootings-folo-20131114_1_shootout-quadruple-shooting-zettek||http://www.margatenews.net/3909/123772/a/shooting-in-margate-retaliation-for-murder-of-gang-leaders-mom,96,29
481263,2013-10-20,Florida,Miami,19600 block of Southwest 168th Street,2,2,http://www.gunviolencearchive.org/incident/481263,http://www.local10.com/news/local/2-killed-2-injured-in-shooting-at-cock-fighting-event_20151127211045545,False,26,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",25.6087,,-80.5096,,,0::67||2::40||3::49,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Agustin Figueredo||2::Rafael Garcia||3::Angel Rivera,,0::Killed||1::Killed||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.miamiherald.com/news/local/community/miami-dade/article1956541.html||http://www.local10.com/news/local/2-killed-2-injured-in-shooting-at-cock-fighting-event_20151127211045545,120,39
481268,2013-10-21,Pennsylvania,Pittsburgh (Homewood),7200 block of Kelly Street,2,5,http://www.gunviolencearchive.org/incident/481268,http://www.wtae.com/news/local/allegheny/two-people-shot-at-homewood-club/22532992u,False,14,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",40.4555,Diverse Banquet Hall,-79.897,,,0::21||1::27,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Female||1::Male||2::Female||3::Female,0::Jasmine Morris||1::Demetrius Broadnax,,0::Killed||1::Killed||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim,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/u||http://www.wtae.com/news/local/allegheny/two-people-shot-at-homewood-club/22532992u,,
492366,2013-10-26,Connecticut,New Haven,85 Saint John St,1,5,http://www.gunviolencearchive.org/incident/492366,http://www.nhregister.com/article/NH/20151110/NEWS/151119975,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",41.3067,Key Club Cabaret,-72.9118,,"According to perpetrator, Jahad Brumsey was the intended target.",0::26||1::19||2::29||3::24||4::34||5::25||6::29,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Female||1::Female||2::Male||3::Female||4::Male||6::Male,0::Erica Robinson||1::Amanda John||2::Jahad Brumsey||3::Nijia Ward||4::Albert Dickerson||5::Ivette Sterling||6::Adrian Bennett,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect,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/||http://www.nhregister.com/article/NH/20151110/NEWS/151119975,95,11
481419,2013-10-26,Florida,Miami Gardens,NW 187 Street and 30 Avenue,0,4,http://www.gunviolencearchive.org/incident/481419,http://miami.cbslocal.com/2013/10/27/four-injured-in-miami-gardens-shooting/,False,24,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",25.9443,,-80.2519,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://miami.cbslocal.com/2013/10/27/four-injured-in-miami-gardens-shooting/,102,36
492325,2013-10-26,Arizona,Phoenix,17th Avenue and Hazelwood Street,5,0,http://www.gunviolencearchive.org/incident/492325,http://www.usatoday.com/story/news/nation/2013/10/28/phoenix-quadruple-shooting/3292871/,False,7,0::Unknown,0::Shotgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Home Invasion||Home Invasion - Resident killed",33.5042,,-112.096,1,"Suspect was bothered by barking of neighbors dogs and 'snapped', killing the neighbors as well as the dogs before killing himself.",0::66||1::42||2::36||3::17||4::56,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17||4::Adult 18+,0::Male||1::Male||2::Female||3::Male||4::Male,0::Bruce Moore||1::Michael Moore||2::Renee Moore||3::Shannon Moore||4::Michael Dante Guzzo,4::Neighbor,0::Killed||1::Killed||2::Killed||3::Killed||4::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://articles.chicagotribune.com/2013-10-27/news/sns-rt-usa-phoenixshooting-20131026_1_barking-dogs-self-inflicted-gunshot-wound-townhouse||http://www.usatoday.com/story/news/nation/2013/10/27/phoenix-5-people-2-dogs-dead/3281087/||http://www.usatoday.com/story/news/nation/2013/10/28/phoenix-quadruple-shooting/3292871/,24,24
492427,2013-10-27,Texas,Beaumont,500 block of Edgemore Drive,0,4,http://www.gunviolencearchive.org/incident/492427,http://www.12newsnow.com/story/23799456/four-injured-in-beaumont-shooting,False,14,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",30.0716,,-94.1485,,Homeowner arrived to burglarized house. Crowd gathered. Homeowner approaches suspicious looking individual who shoots 4 and flees the scene.,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.12newsnow.com/story/23799456/four-injured-in-beaumont-shooting,22,4
492699,2013-10-27,California,Roseville,6th Street and Hampton,0,4,http://www.gunviolencearchive.org/incident/492699,http://www.capradio.org/articles/2013/10/25/roseville-manhunt-for-suspect-in-officer-involved-shooting/,False,4,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - Officer shot||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Assault weapon (AR-15, AK-47, and ALL variants defined by law enforcement)",38.7354,,-121.226,1,,4::32,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::ICE Agent||1::Officer||2::Officer||3::Officer||4::Samuel Nathan Duran,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.latimes.com/local/lanow/la-me-ln-roseville-shooting-suspect-20131025-story.html#axzz2j22H29vy||http://www.latimes.com/local/lanow/la-me-ln-roseville-shooting-suspect-20131025-story.html#axzz2j22H29vy||http://www.capradio.org/articles/2013/10/25/roseville-manhunt-for-suspect-in-officer-involved-shooting/,6,4
492393,2013-10-27,North Carolina,Southern Pines,115 Turner St,1,4,http://www.gunviolencearchive.org/incident/492393,http://abclocal.go.com/wtvd/story?section=news/local&id=9308137,False,2,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",35.163,Leather Pockets Billiards,-79.4233,,,0::31||1::22||2::38||3::22||4::28,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Maurice Donnell White||1::Curtis Lee Stubbs Jr||2::Derrikes Lamonte McRae||3::Jacore Rayshad McKoy||4::Lee Marvin Harris Jr,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.wral.com/five-shot-at-southern-pines-billiards-bar/13043219/||http://abclocal.go.com/wtvd/story?section=news/local&id=9302794||http://abclocal.go.com/wtvd/story?section=news/local&id=9308137,52,29
492570,2013-10-27,California,Vallejo,200 block of Princeton Avenue,1,6,http://www.gunviolencearchive.org/incident/492570,http://www.dailyrepublic.com/news/crimecourts/police-1-dead-after-8-shot-while-changing-flat-tire/,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.1517,,-122.25,,"Individuals were changing flat tire when drive-by occurred, injuring them.",0::19,0::Adult 18+,0::Male,0::Jose Rodriguez,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured||6::Injured||7::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim,http://fox40.com/2013/10/27/police-8-people-shot-in-vallejo-after-getting-flat-tire/||http://abc7news.com/archive/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/,14,3
492914,2013-10-29,South Carolina,Bradley (Callison),Callison Highway,5,0,http://www.gunviolencearchive.org/incident/492914,http://www.nbcnews.com/news/other/six-people-found-shot-death-south-carolina-home-f8C11494274,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence",33.9881,,-82.2888,,Perpetrator laid in wait to kill victims; actions result of his perception that he was being denied time with his newborn child.,0::26||1::49||2::51||3::11||4::9||5::27,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Child 0-11||4::Child 0-11||5::Adult 18+,0::Female||1::Female||2::Male||3::Male||4::Male||5::Male,0::Chandra Marie Fields||1::Melissa Kay Fields||2::Richard Allen Fields||3::Tariq Kenyon Robinson||4::William Asa Robinson||5::Bryan Swett,5::Significant others - current or former,0::Killed||1::Killed||3::Killed||4::Killed||5::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.wyff4.com/news/local-news/abbeville-greenwood-news/sheriff-multiple-dead-in-upstate-home/22702972||http://www.nbcnews.com/news/other/six-people-found-shot-death-south-carolina-home-f8C11494274,12,10
492933,2013-11-02,Kentucky,Radcliff,355 Shelby Avenue,1,3,http://www.gunviolencearchive.org/incident/492933,http://www.wdrb.com/story/23911589/residents-hoping-for-an-arrest-in-deadly-radcliff-shooting,False,2,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",37.8133,,-85.9224,,,0::47,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Darren Johnson,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.wave3.com/story/23858405/early-morning-shooting-leaves-one-dead-3-injured||http://www.wdrb.com/story/23911589/residents-hoping-for-an-arrest-in-deadly-radcliff-shooting,,
492985,2013-11-03,California,Perris,2900 block of Perris Boulevard,0,5,http://www.gunviolencearchive.org/incident/492985,http://www.menifee247.com/2013/11/suspect-vehicle-in-driveby-shooting-located-in-menifee.html,False,41,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.8249,,-117.227,,,4::36,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,4::Jose Luis Avalos,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Injured, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,https://www.facebook.com/permalink.php?story_fbid=746128825401697&id=549999621681286||http://patch.com/california/lakeelsinore-wildomar/5-people-wounded-in-driveby-shooting-at-local-restaurant||http://www.menifee247.com/2013/11/suspect-vehicle-in-driveby-shooting-located-in-menifee.html,61,31
492950,2013-11-03,California,Los Angeles,1 World Way,1,3,http://www.gunviolencearchive.org/incident/492950,https://www.lawa.org/uploadedFiles/LAX/LAWA%20T3%20After%20Action%20Report%20March%2018%202014.pdf,False,43,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.9454,Los Angeles Airport (LAX),-118.399,,Perpetrator on record as saying he wished to kill all TSA agents.,0::39||1::29||2::54||3::36,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::TSA Officer Gerardo I. Hernandez||1::Brian Ludmer||2::TSA Officer James Speer||3::TSA Officer Tony Grigsby,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.nbclosangeles.com/news/local/SoCal-Teacher-Survives-LAX-Shooting-Rampage-230385911.html||http://www.latimes.com/local/lanow/la-me-ln-death-penalty-sought-in-lax-shooting-spree-20150102-story.html||https://www.lawa.org/uploadedFiles/LAX/LAWA%20T3%20After%20Action%20Report%20March%2018%202014.pdf,62,26
492999,2013-11-05,District of Columbia,Washington,3900 block of Minnesota Ave,0,4,http://www.gunviolencearchive.org/incident/492999,http://www.nbcwashington.com/news/local/Four-Reportedly-Shot-in-Northeast-DC-230848981.html,False,1,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",38.8934,,-76.9508,,,0::60||4::51,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male,4::Victor Leon Coley,,"0::Injured||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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,,
493109,2013-11-05,Florida,Jacksonville,1100 block of Randolph,4,0,http://www.gunviolencearchive.org/incident/493109,http://jacksonville.com/breaking-news/2013-11-08/story/surveillance-footage-may-have-hints-about-vehicle-involved,False,5,,,"Shot - Dead (murder, accidental, suicide)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",30.3068,,-81.7298,,,0::25||1::27||2::21||3::22,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Female||3::Female,0::Derek L. Williams||1::Gontrell M. Hagans||2::Keshell L. Brown||3::Keyonna S. Brown,,0::Killed||1::Killed||2::Killed||3::Killed,0::Victim||1::Victim||2::Victim||3::Victim,http://jacksonville.com/breaking-news/2013-11-08/story/surveillance-footage-may-have-hints-about-vehicle-involved,14,9
493035,2013-11-07,Michigan,Detroit,Conley and 7 Mile,3,7,http://www.gunviolencearchive.org/incident/493035,http://www.usatoday.com/story/news/nation/2013/11/07/detroit-barber-shop-shooting/3463983/,False,14,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.4334,Al’s Barber Shop,-83.0523,,Suspect was arrested wearing body armor. Barber shop is known for gambling in the back. 20-30 people were present when shooting occurred.,0::61||1::29||2::40,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male||8::Male||9::Male,0::Joezell Williams||1::Bryan Williams||2::Kevin Perryman||10::Larry Wilson,,0::Killed||1::Killed||2::Killed||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Injured||9::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Victim||10::Subject-Suspect,http://www.usatoday.com/story/news/nation/2013/11/07/detroit-barber-shop-shooting/3463983/||http://nbc25news.com/news/local/slaying-victims-in-barbershop-shooting-identified?id=968889||http://www.usatoday.com/story/news/nation/2013/11/07/detroit-barber-shop-shooting/3463983/,5,4
493842,2013-11-09,Texas,Cypress,7300 block of Enchanted Creek Drive,2,16,http://www.gunviolencearchive.org/incident/493842,http://www.dailymail.co.uk/news/article-2500592/Teen-killed-Texas-party-shootings-Queric-Richardson-pictured.html,False,10,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",29.884,,-95.7187,,Birthday party in home advertised on social media. Two attendees arrived with guns; problems started when gun was fired in the air in celebration.,0::17||1::16||2::16||18::21||19::18,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||18::Adult 18+||19::Adult 18+,0::Male||1::Female||2::Male||18::Male||19::Male,0::Queric Richardson||1::Arielle Shepherd||2::Kenneth Guidry||18::Willie Young||19::Randy Stewart,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Injured||9::Injured||10::Injured||11::Injured||12::Injured||13::Injured||14::Injured||15::Injured||16::Injured||17::Injured||18::Unharmed, Arrested||19::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Victim||9::Victim||10::Victim||11::Victim||12::Victim||13::Victim||14::Victim||15::Victim||16::Victim||17::Victim||18::Subject-Suspect||19::Subject-Suspect,http://www.cbsnews.com/pictures/victims-of-the-texas-birthday-party-shooting/||http://abc13.com/archive/9320227/||http://www.dailymail.co.uk/news/article-2500592/Teen-killed-Texas-party-shootings-Queric-Richardson-pictured.html,132,18
493893,2013-11-10,Ohio,Canton,1215 Tuscarawas St W,1,3,http://www.gunviolencearchive.org/incident/493893,http://fox8.com/2013/11/10/1-killed-3-injured-in-canton-bar-shooting/,False,7,0::Unknown,0::Handgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment||Concealed Carry License - Perpetrator",40.8007,Whistle Stop Bar,-81.3868,1,,0::45||1::26||2::27||3::24||4::45,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Female||3::Female||4::Male,0::Juantina Despasquale||1::Terrell L. Skinner||2::Amanda Depasquale||3::Vanessa Van Almen||4::Dwight Ellis,,"0::Injured||1::Killed||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.newsnet5.com/news/local-news/oh-stark/man-arrested-for-shooting-four-in-canton-bar-parking-lot||http://www.cantonrep.com/article/20131110/NEWS/131119993||http://fox8.com/2013/11/10/1-killed-3-injured-in-canton-bar-shooting/,49,29
493863,2013-11-10,Arizona,Phoenix,5800 South 53rd Glen,1,3,http://www.gunviolencearchive.org/incident/493863,http://www.abc15.com/news/region-phoenix-metro/south-phoenix/phoenix-pd-deadly-shooting-involved-rival-gang-members,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",33.3933,,-112.174,,Victims shot at a large house party.,0::19||1::18||2::21||3::22||4::15||5::18||6::18||7::18||8::21,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Teen 12-17||5::Adult 18+||6::Adult 18+||7::Adult 18+||8::Adult 18+,0::Female||1::Female||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male,0::Nora Osman||4::Abraham Ntiamoah||5::Theodore Montgomery||6::D'Drique Price||7::Marquis Young||8::Jacorian White,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested||5::Unharmed, Arrested||6::Unharmed, Arrested||7::Unharmed, Arrested||8::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect||8::Subject-Suspect,http://www.abc15.com/news/region-phoenix-metro/south-phoenix/pd-2-shot-at-large-house-party-in-phoenix||http://www.cbs5az.com/story/23928754/pd-1-dead-3-wounded-in-phoenix-party-shooting||http://www.abc15.com/news/region-phoenix-metro/south-phoenix/phoenix-pd-deadly-shooting-involved-rival-gang-members,19,19
493882,2013-11-11,New York,Brooklyn,318 Maujer St,4,1,http://www.gunviolencearchive.org/incident/493882,http://nypost.com/2013/11/11/gunman-three-others-dead-in-brooklyn-bloodshed/,False,7,0::Unknown,0::308 Win,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.7122,,-73.9359,1,Perpetrator used a Century Sporter .308-caliber semi-automatic weapon with a 20-round magazine to kill his former bandmates and injure another individual.,0::28||1::27||2::35||3::22||4::29,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Arash Farazmand||1::Soroush Farazmand||2::Ali Eskandarian||3::Sasan Sadeghpourosko||4::Ali Akbar Mohammed Rafie,4::Friends,0::Killed||1::Killed||2::Killed||3::Injured||4::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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://nypost.com/2013/11/11/gunman-three-others-dead-in-brooklyn-bloodshed/,53,18
494033,2013-11-15,Texas,Houston,4400 block of Tiffany,1,3,http://www.gunviolencearchive.org/incident/494033,http://english.cntv.cn/20131117/100728.shtml,False,9,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",29.6168,,-95.4428,,Drive-by shooting occurred at large house party.,0::17,0::Teen 12-17,0::Male,0::Braveon Terry,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://abc13.com/archive/9319503/||http://english.cntv.cn/20131117/100728.shtml,131,13
494072,2013-11-20,Texas,Houston,8200 block of Sunbury,3,2,http://www.gunviolencearchive.org/incident/494072,http://abc13.com/archive/9337822/,False,18,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",29.8222,Sunbury Downs Apartments,-95.2761,,,0::17||1::17||2::21||5::25,0::Teen 12-17||1::Teen 12-17||2::Adult 18+||5::Adult 18+,0::Female||1::Female||2::Male||5::Male,"0::Veronica Hernandez||1::Daniel Munoz||2::Yosselyn Alfaro||5::Johnathan ""J Boi"" Sanchez",,"0::Killed||1::Killed||2::Killed||3::Injured||4::Injured||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,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://abc13.com/archive/9334256/||http://abc13.com/archive/9337822/,142,13
494116,2013-11-21,Pennsylvania,Philadelphia,1400 block of N. 60th Street,0,4,http://www.gunviolencearchive.org/incident/494116,http://philadelphia.cbslocal.com/2013/11/21/polcie-investigate-quadruple-shooting-in-west-philadelphia/,False,1,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.9728,,-75.2399,,,0::24||1::24||2::26||3::27,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://philadelphia.cbslocal.com/2013/11/21/polcie-investigate-quadruple-shooting-in-west-philadelphia/,,
964582,2013-11-22,Pennsylvania,Philadelphia,Westminster Ave and Paxson St,0,1,http://www.gunviolencearchive.org/incident/964582,http://www.philly.com/philly/news/crime/feds-charge-13-in-w-philly-drug-gang-war-20171019.html,False,2,0::Unknown,0::Unknown,Shot - Wounded/Injured||Gang involvement,39.9683,,-75.2238,1,"Pit gang suspect fired into rival Grounds territory, hit bystander",1::24,1::Adult 18+,1::Male,1::Sean Wilson,,0::Injured||1::Arrested,0::Victim||1::Subject-Suspect,http://www.philly.com/philly/news/crime/feds-charge-13-in-w-philly-drug-gang-war-20171019.html,190,7
964576,2013-11-22,Pennsylvania,Philadelphia,5100 Parrish St,0,1,http://www.gunviolencearchive.org/incident/964576,http://www.philly.com/philly/news/crime/feds-charge-13-in-w-philly-drug-gang-war-20171019.html,False,2,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Gang involvement",39.9669,West Mill Creek Playground,-75.2229,1,"Pit gang vic shot 10 times, inj, suspect in Grounds gang, retaliation for 8/5/13 rival gang shooting",0::30||1::27,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Bryant Calloway||1::James Wilson,,0::Injured||1::Arrested,0::Victim||1::Subject-Suspect,http://www.philly.com/philly/news/crime/feds-charge-13-in-w-philly-drug-gang-war-20171019.html,190,7
494155,2013-11-23,Oklahoma,Tulsa,Pine Street and Harvard Avenue,4,1,http://www.gunviolencearchive.org/incident/494155,http://www.tulsaworld.com/news/crimewatch/leads-are-few-in-nov-quadruple-homicide-tulsa-police-say/article_2b1f879d-639e-53cd-9b2d-fb2c931bd46e.html,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Murder (4+ deceased victims excluding the subject/suspect/perpetrator , one location)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Drug involvement",36.1771,,-95.9403,,,0::34||1::35||2::46||3::54||4::55,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Female||2::Female||3::Female||4::Male,0::Charlie Dean Dake Jr.||1::Melissa Lynn Dake||2::Tammy Brunson||3::Glenda Ellen Harper||4::Randy Ethridge,,0::Killed||1::Killed||2::Killed||3::Killed||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://www.reuters.com/article/us-usa-shooting-tulsa-idUSBRE9AO02F20131125||http://www.muskogeephoenix.com/news/oklahoma_news/four-killed-in-tulsa-shooting/article_f15e0a54-7eaf-5cbe-b86c-33e842849440.html||http://www.newson6.com/story/24067125/new-details-uncovered-in-quadruple||http://www.tulsaworld.com/news/crimewatch/leads-are-few-in-nov-quadruple-homicide-tulsa-police-say/article_2b1f879d-639e-53cd-9b2d-fb2c931bd46e.html,72,11
495145,2013-11-25,California,Oakland,96th Avenue and Olive Street,0,7,http://www.gunviolencearchive.org/incident/495145,http://abc7news.com/archive/9339708/,False,13,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",37.7488,,-122.165,,Incident occurred across three blocks of Oakland. Victims aged between 23 and 31.,0::23||1::27||2::28||3::29||4::29||5::29||6::31,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||7::Male||8::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Unharmed||8::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Subject-Suspect||8::Subject-Suspect,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||http://abc7news.com/archive/9339708/,18,9
494215,2013-11-25,Minnesota,Minneapolis,1611 E Lake St,1,3,http://www.gunviolencearchive.org/incident/494215,http://blogs.mprnews.org/cities/2014/01/no-one-wished-him-happy-birthday-2013-gun-crime-in-hennepin-county/,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",44.9481,La Que Buena,-93.2505,,,0::32||1::19||2::22||3::30,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Luis Alejandro Torres-Sanchez,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.twincities.com/2013/11/24/minneapolis-shots-fired-into-lake-street-restaurant-killing-1-wounding-3/||http://blogs.mprnews.org/cities/2014/01/no-one-wished-him-happy-birthday-2013-gun-crime-in-hennepin-county/,,62
495171,2013-11-28,New York,Rochester,St. Paul Boulevard and Andrews Street,0,4,http://www.gunviolencearchive.org/incident/495171,http://www.democratandchronicle.com/story/news/local/2013/12/02/4-identified-in-st-paul-shooting/3821037/,False,25,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",43.1595,,-77.61,1,Shootings were the result of a fight.,0::23||1::23||2::25||3::25,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Norman Simmons Jr.||1::Theodore Robertson||2::Andrell George||3::Sohn Travis,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.democratandchronicle.com/story/news/local/2013/12/02/4-identified-in-st-paul-shooting/3821037/,137,56
495178,2013-11-29,Indiana,Indianapolis,3400 block of East 34th Street,0,4,http://www.gunviolencearchive.org/incident/495178,http://fox59.com/2013/11/30/three-teens-shot-after-east-side-house-party-gets-out-of-control/,False,7,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.8182,,-86.1082,,,0::16||1::18||2::16||3::17,0::Teen 12-17||1::Adult 18+||2::Teen 12-17||3::Teen 12-17,0::Male||1::Male||2::Female||3::Female,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.indystar.com/story/news/2013/11/30/four-teens-shot-at-eastside-party-friday/3791085/||http://fox59.com/2013/11/30/three-teens-shot-after-east-side-house-party-gets-out-of-control/,96,34
495195,2013-11-29,California,Fresno,Oleander and Modoc,0,4,http://www.gunviolencearchive.org/incident/495195,http://abc30.com/archive/9344154/,False,16,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement",36.7297,,-119.81,,,0::15,0::Teen 12-17||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Female,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://abc30.com/archive/9344154/,31,14
495268,2013-11-30,Georgia,Valdosta,Gordon Street and North Ashley Street,0,4,http://www.gunviolencearchive.org/incident/495268,http://www.wctv.tv/home/headlines/233942891.html,False,8,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",30.8405,,-83.2801,,,,0::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Female||3::Male,0::Ralph Robinson||1::Shekirrah Thomas||2::Demereay Doe||3::Bryant Turner,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,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,177,8
495323,2013-11-30,Michigan,Lansing,,0,5,http://www.gunviolencearchive.org/incident/495323,http://www.wilx.com/home/headlines/Police-5-Shot-during-fight-at-Lansing-house-party-233939131.html,False,8,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",42.7326,,-84.5557,,,,,,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Arrested||6::Arrested||7::Arrested,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect||6::Subject-Suspect||7::Subject-Suspect,http://www.wilx.com/home/headlines/Police-5-Shot-during-fight-at-Lansing-house-party-233939131.html,68,23
495347,2013-12-01,Florida,Miami,NW 64th Street and 12th Avenue,2,2,http://www.gunviolencearchive.org/incident/495347,http://www.nbcmiami.com/news/4-Women-Shot-2-Dead-in-Liberty-City-Shooting-Police-234002001.html,False,24,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Drug involvement",25.8336,,-80.2167,,Man that drove victims to purchase drugs was the intended target of the shooting.,0::18||1::22||2::23,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Female||2::Female||3::Female,0::Tiarra Ashonda Grant||1::Shalaunda Williams,,0::Killed||1::Killed||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://miami.cbslocal.com/2013/12/02/liberty-city-shooting-leaves-two-women-dead-two-injured/||http://www.nbcmiami.com/news/4-Women-Shot-2-Dead-in-Liberty-City-Shooting-Police-234002001.html,108,39
972570,2013-12-01,Pennsylvania,Derry,,1,0,http://www.gunviolencearchive.org/incident/972570,http://wccsradio.com/whitfield-denied-motion-for-relief-in-murder-case/,False,,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Domestic Violence",,,,1,suspect shot exGF in her home,0::36||1::51,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Holly Slone George||1::Arthur Whitfield,1::Significant others - current or former,0::Killed||1::Arrested,0::Victim||1::Subject-Suspect,http://wccsradio.com/whitfield-denied-motion-for-relief-in-murder-case/,,
495332,2013-12-01,Kansas,Topeka,1629 SW Central Park,4,0,http://www.gunviolencearchive.org/incident/495332,http://www.kake.com/home/headlines/Three-dead-one-injured-in-Topeka-shooting-234030831.html?ref=831,False,2,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",39.0379,,-95.6905,1,,0::43||1::56||2::45||3::34,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Female||3::Female,0::Eric Christopher||1::Marvin Louis Woods||2::Carla Jean Avery||3::Tamesha Lee,,0::Killed||1::Killed||2::Killed||3::Killed,0::Victim||1::Victim||2::Victim||3::Victim,http://www.kake.com/home/headlines/Three-dead-one-injured-in-Topeka-shooting-234030831.html?ref=831,58,18
495374,2013-12-07,Delaware,Wilmington,3421 Kirkwood Hwy,0,4,http://www.gunviolencearchive.org/incident/495374,http://www.philly.com/philly/news/Police_Four_shot_outside_Meek_Mill_concert.html,False,1,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",39.7361,Moodswing Nightclub,-75.6309,,Incident occurred when gunfire erupted after an event hosted by Philly rapper Meek Mill.,0::21||1::22||2::24||3::33,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Female,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,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,19,7
979523,2013-12-07,Pennsylvania,York,N George St and North St,1,0,http://www.gunviolencearchive.org/incident/979523,http://www.pennlive.com/news/2017/11/pas_most_wanted_murder_suspect_1.html#incart_river_index,False,4,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)",39.9665,,-76.7298,1,suspect shot vic for not withdrawing tsetimony in another murder case,0::36||1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Danny Steele||1::Tobias Bethune-Banks,,0::Killed||1::Arrested,0::Victim||1::Subject-Suspect,http://www.pennlive.com/news/2017/11/pas_most_wanted_murder_suspect_1.html#incart_river_index,95,28
495506,2013-12-14,North Carolina,Statesville,167 Wallace Springs,0,4,http://www.gunviolencearchive.org/incident/495506,http://www.wsoctv.com/news/news/local/police-4-teens-shot-statesville-birthday-party/ncMY7/,False,5,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.7603,,-80.8937,,"Fight began during large birthday party, leading to shots fired.",0::15||1::17||2::17||3::19,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Adult 18+,3::Male,3::Christopher Campbell,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.statesville.com/news/article_85907f20-65ff-11e3-aa76-001a4bcf6878.html||http://www.wsoctv.com/news/news/local/police-4-teens-shot-statesville-birthday-party/ncMY7/,84,44
495530,2013-12-15,Texas,Channelview,900 block of Ashland Boulevard,0,5,http://www.gunviolencearchive.org/incident/495530,http://www.wfaa.com/story/news/crime/2014/08/20/14141842/,False,36,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",29.7908,,-95.1355,,,0::17,0::Teen 12-17,0::Male||1::Male||2::Male||3::Male||4::Male,,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,http://abclocal.go.com/story?section=news/local&id=9361435||http://www.wfaa.com/story/news/crime/2014/08/20/14141842/,143,6
495543,2013-12-15,Florida,Homestead (Florida City),7th Avenue and 13th Terrace,1,3,http://www.gunviolencearchive.org/incident/495543,http://miami.cbslocal.com/2013/12/14/florida-city-shooting-leaves-four-in-the-hospital/,False,26,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",25.4631,,-80.4572,,,,,,,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,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/,120,39
495548,2013-12-21,New Jersey,Trenton,Jersey Street and Home Avenue,1,4,http://www.gunviolencearchive.org/incident/495548,http://newjersey.news12.com/news/brandon-varlow-killed-4-others-hurt-in-trenton-drive-by-shooting-1.6660970,False,12,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.205,Community Food Market,-74.7517,,,0::24,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Female,0::Brandon Varlow,,0::Killed||1::Injured||2::Injured||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim,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,15,15
495557,2013-12-21,North Carolina,Shelby,Jose Street,0,4,http://www.gunviolencearchive.org/incident/495557,http://www.shelbystar.com/20131223/police-4-hit-in-shooting-suspects-sought/312239900,False,10,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",35.2875,,-81.546,,,,,0::Male||1::Male||2::Male||3::Female,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.shelbystar.com/20131223/police-4-hit-in-shooting-suspects-sought/312239900,111,46
495566,2013-12-22,Michigan,Muskegon,2300 block of W McMillan Rd,1,3,http://www.gunviolencearchive.org/incident/495566,http://www.mlive.com/news/muskegon/index.ssf/2013/12/armed_and_dangerous_deontay_de.html,False,2,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",43.3115,,-86.2997,1,"Individual turned away from party shoots and wounds 3, kills another.;
43.311513, -86.299701",0::21||4::22,0::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Gary Lee Ogreen||1::Nicholas Aaron Gifford||2::Julius Scott Pamer||3::Cody James Sharlow||4::Deontay Demarco Black-Wickliffe,4::Mass shooting - Random victims,0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.mlive.com/news/muskegon/index.ssf/2013/12/muskegon_county_sheriff_workin.html||http://www.mlive.com/news/muskegon/index.ssf/2013/12/armed_and_dangerous_deontay_de.html,92,34
495577,2013-12-25,New York,Medford,33A Cedarhurst Ave,1,3,http://www.gunviolencearchive.org/incident/495577,http://patch.com/new-york/patchogue/four-shot-one-fatally-at-medford-engine-shop,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Armed robbery with injury/death and/or evidence of DGU found",40.8463,Ray’s Engine Installation,-72.9919,,,0::19||4::19,0::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Male,0::Taleik Bristel||4::Brandon Davis,,"0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,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://patch.com/new-york/patchogue/four-shot-one-fatally-at-medford-engine-shop,3,2
1012298,2013-12-25,New Jersey,Plainfield,Park Ave and E 9th St,1,0,http://www.gunviolencearchive.org/incident/1012298,http://www.nj.com/news/index.ssf/2017/12/police_call_on_publics_help_to_solve_2013_christma.html#incart_river_index,False,12,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)",40.6132,,-74.4143,1,,0::25,0::Adult 18+,0::Male,0::Rashad Daye,,0::Killed,0::Victim,http://www.nj.com/news/index.ssf/2017/12/police_call_on_publics_help_to_solve_2013_christma.html#incart_river_index,22,22
495588,2013-12-25,New Jersey,Irvington,Nye Avenue and 21st Street,3,2,http://www.gunviolencearchive.org/incident/495588,http://www.nj.com/essex/index.ssf/2013/12/third_victim_identified_in_christmas_morning_shooting_at_an_irvington_go-go_bar.html,False,10,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",40.7217,Slick’s GoGo Bar,-74.2217,,"Armed individual denied entrance to a club shoots and kills three, wounds two.",0::34||1::32||2::27||3::27||4::34,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,0::Pierre Clervoyant Jr||1::Woodley Daniel||2::Mushir Cureton,,0::Killed||1::Killed||2::Killed||3::Injured||4::Injured,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,http://www.nydailynews.com/news/national/n-strip-club-shooting-leaves-3-dead-christmas-article-1.1558062#ixzz2obWQVd00||http://www.nj.com/essex/index.ssf/2013/12/third_victim_identified_in_christmas_morning_shooting_at_an_irvington_go-go_bar.html,28,28
496584,2013-12-26,Louisiana,Lockport,313 Tenth St,3,3,http://www.gunviolencearchive.org/incident/496584,http://www.houmatimes.com/news/article_72f25834-77e3-11e3-ab19-0019bb2963f4.html,False,1,0::Unknown,0::Shotgun,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Domestic Violence",29.6456,,-90.5388,1,,0::61||1::61||2::40||3::67||4::51||5::38,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Female||2::Female||3::Male||4::Female||5::Male,"0::Phillip Gouaux||1::Susan ""Pixie"" Gouaux||2::Andrea Gouaux||3::Milton Bourgeois||4::Ann Bourgeois||5::Ben Freeman",5::Significant others - current or former,0::Injured||1::Killed||2::Injured||3::Killed||4::Injured||5::Killed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Subject-Suspect,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||http://theadvocate.com/news/7957993-123/photos-gunman-targeted-wife-former||http://www.houmatimes.com/news/article_72f25834-77e3-11e3-ab19-0019bb2963f4.html,54,20
496634,2013-12-26,Louisiana,Slidell,2144 First St,2,6,http://www.gunviolencearchive.org/incident/496634,http://www.nola.com/crime/index.ssf/2013/12/arrest_made_in_old_towne_bar_s.html,False,1,0::Unknown,0::40 SW,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",30.2743,Shooters Socialbar,-89.7826,1,,0::22||1::23||8::22,0::Adult 18+||1::Adult 18+||8::Adult 18+,0::Male||1::Male||2::Male||8::Male,0::Errol Scott||1::Mark Womack||2::Quinterol Jackson||8::Jamieon Chatman,,"0::Killed||1::Killed||2::Injured||3::Injured||4::Injured||5::Injured||6::Injured||7::Injured||8::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Subject-Suspect,http://www.nola.com/crime/index.ssf/2013/12/two_dead_six_injured_after_ear.html||http://www.wwltv.com/story/news/local/northshore/2014/09/04/14650350/||http://www.nola.com/crime/index.ssf/2013/12/arrest_made_in_old_towne_bar_s.html,76,1
496668,2013-12-28,Alabama,Montgomery,954 Highland Ave,3,5,http://www.gunviolencearchive.org/incident/496668,http://www.montgomeryadvertiser.com/story/news/crime/2014/12/04/doe-lawsuit-city-heading-trial/19908277/,False,2,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Bar/club incident - in or around establishment",32.3719,Centennial Hill Bar and Grill,-86.2952,,"Club security allegedly bribed to allow individuals with guns into the club, which led to a shooting as a result of a dispute.",0::21||1::22||2::20||3::20||4::23||5::20||6::24||8::25||9::25,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+||6::Adult 18+||8::Adult 18+||9::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male||5::Male||6::Male||8::Male||9::Male,"0::Kimberle Johnson||1::Glenn ""Doe B"" Thomas||2::Clarence Young Jr||3::Ferro Bennett||4::Keldric Landon||5::Timnorius Hamilton||6::Richard Davis||8::Jason Quan McWilliams||9::Darius Thomas",9::Mass shooting - Random victims,"0::Killed||1::Killed||2::Injured||3::Injured||4::Injured||5::Killed||6::Injured||7::Injured||8::Unharmed, Arrested||9::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Victim||7::Victim||8::Subject-Suspect||9::Subject-Suspect,http://www.cbs46.com/story/24318554/mpd-investigating-citys-47th-and-48th-homicide||http://www.usatoday.com/story/news/nation/2013/12/30/alabama-nightclub-shooting/4248753/||http://raycomgroup.worldnow.com/story/24385909/2nd-lawsuit-filed-in-deadly-centennial-hill-bar-grill-shooting||http://www.montgomeryadvertiser.com/story/news/crime/2014/12/04/doe-lawsuit-city-heading-trial/19908277/,77,26
93832,2013-12-29,California,Duarte,2400 block of El Toro Rd,0,2,http://www.gunviolencearchive.org/incident/93832,http://www.sgvtribune.com/general-news/20131229/two-men-wounded-in-duarte-deputy-involved-shooting,False,32,,,"Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Drive-by (car to street, car to car)||Possession (gun(s) found during commission of other crimes)",34.1204,,-117.992,,,0::24||1::36,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured,0::Subject-Suspect||1::Subject-Suspect,http://www.sgvtribune.com/general-news/20131229/two-men-wounded-in-duarte-deputy-involved-shooting,48,22
520496,2013-12-29,New Jersey,Lodi,,1,0,http://www.gunviolencearchive.org/incident/520496,http://www.northjersey.com/news/lodi-man-found-not-guilty-by-reason-of-insanity-in-grandmother-s-fatal-shooting-1.1526116,False,5,,,"Shot - Dead (murder, accidental, suicide)",40.8739,,-74.0845,,,0::85||1::30,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Olga Bariso||1::Joseph Bariso,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.northjersey.com/news/lodi-man-found-not-guilty-by-reason-of-insanity-in-grandmother-s-fatal-shooting-1.1526116,38,38
496703,2013-12-31,Ohio,Barberton,300 block of Seventh Street Northeast,3,1,http://www.gunviolencearchive.org/incident/496703,http://www.wtol.com/story/24627406/prosecutors-get-confession-from-suspect-in-barberton-triple-murder,False,13,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident killed||Home Invasion - Resident injured||Armed robbery with injury/death and/or evidence of DGU found",41.0186,,-81.585,,Perpetrators forced their way into the home with intent of obtaining money and drugs. Both have been sentenced to life in prison.,0::18||1::14||2::42||3::38||4::22||5::30,0::Adult 18+||1::Teen 12-17||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Female||1::Male||2::Male||3::Female||4::Male||5::Male,0::Ashley Carpenter||1::David John Kohler-Carpenter||2::John Kohler||3::Ronda Blankenship||4::Michael Hendon||5::Eric Hendon,,"0::Killed||1::Killed||2::Killed||3::Injured||4::Unharmed||5::Unharmed, Arrested",0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.ohio.com/news/break-news/two-teens-killed-two-injured-in-barberton-robbery-shooting-1.456428||http://www.wtol.com/story/24627406/prosecutors-get-confession-from-suspect-in-barberton-triple-murder,35,28
496684,2013-12-31,New York,Brooklyn,60 Glenmore Ave,0,6,http://www.gunviolencearchive.org/incident/496684,http://www.nydailynews.com/new-york/brooklyn/5-shot-1-pistol-whipped-brooklyn-party-article-1.1562264,False,8,,,"Shot - Wounded/Injured||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)||Gang involvement||Pistol-whipping",40.6712,Howard Houses complex,-73.9088,,Five men shot and injured; one woman pistol-whipped in a gang - related shooting.,0::16||1::18||2::18||3::19||4::16||5::17,0::Teen 12-17||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Teen 12-17||5::Teen 12-17,0::Male||1::Male||2::Male||3::Male||5::Female,0::William Holmes||1::Giovanie Mayo||2::Devon James||3::Sharise Randall||4::Jayquan Williams,,0::Injured||1::Injured||2::Injured||3::Injured||4::Injured||5::Injured||6::Unharmed||7::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Victim||5::Victim||6::Subject-Suspect||7::Subject-Suspect,http://www.nbcnewyork.com/news/politics/Shooting-Party-Brooklyn--238202211.html||http://www.nydailynews.com/new-york/brooklyn/5-shot-1-pistol-whipped-brooklyn-party-article-1.1562264,55,20
935147,2013-12-31,California,Oakland,104th Ave and Walnut St,1,0,http://www.gunviolencearchive.org/incident/935147,http://www.eastbaytimes.com/2017/07/27/police-release-sketch-linked-to-unsolved-oakland-homicides/,False,,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)",,,,1,shot while walking home from party at Boys and Girls Club 930pm and died later at hospital; linked to murder of brother on Jan 19,0::13,0::Teen 12-17,0::Male,0::Lee Weathersby III,,0::Killed,0::Victim,http://hinterlandgazette.com/2014/01/lee-weathersby-iii-idd-13-year-old-killed-new-years-eve-oakland-ca.html||http://www.sfgate.com/crime/article/Oakland-woman-loses-2-sons-to-homicide-in-3-weeks-5160049.php||http://www.eastbaytimes.com/2017/07/27/police-release-sketch-linked-to-unsolved-oakland-homicides/,,
95289,2014-01-01,Michigan,Muskegon,300 block of Monroe Avenue ,0,0,http://www.gunviolencearchive.org/incident/95289,http://www.mlive.com/news/muskegon/index.ssf/2014/01/police_celebratory_gunfire_in.html,False,2,,,Shots Fired - No Injuries,43.2301,,-86.2514,,bullets entered home,,0::Adult 18+,0::Female,,,0::Unharmed,0::Victim,http://www.mlive.com/news/muskegon/index.ssf/2014/01/police_celebratory_gunfire_in.html,92,34
92401,2014-01-01,New Jersey,Newark,Central Avenue,0,0,http://www.gunviolencearchive.org/incident/92401,http://www.nj.com/essex/index.ssf/2014/01/newark_police_open_fire_after_suspect_threatened_officers_with_gun.html#incart_river_d,False,10,,,Officer Involved Incident,40.7417,,-74.1695,,"Multiple detectives shot at once from vehicle with unknown number of perpetrators, detectives returned fire.",,,,,,,,http://www.nj.com/essex/index.ssf/2014/01/newark_police_open_fire_after_suspect_threatened_officers_with_gun.html#incart_river_d,29,29
92383,2014-01-01,New York,Queens,113th Avenue,1,0,http://www.gunviolencearchive.org/incident/92383,http://www.timesledger.com/stories/2014/2/firstmurderupdate_web_2014_01_02_q.html,False,5,,,"Shot - Dead (murder, accidental, suicide)",40.7034,,-73.7474,,Perpetrator is being sought by police.,0::22||1::26,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Julio Mora||1::Sheldon Smith,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.timesledger.com/stories/2014/2/firstmurderupdate_web_2014_01_02_q.html,33,14
92142,2014-01-01,New York,Brooklyn,St. Johns Place,0,1,http://www.gunviolencearchive.org/incident/92142,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,False,9,,,Shot - Wounded/Injured,40.6715,,-73.9476,,,0::34,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured,0::Victim||1::Subject-Suspect,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,43,20
95261,2014-01-01,Missouri,Springfield,Beverly Hills and Temple,0,1,http://www.gunviolencearchive.org/incident/95261,http://www.ozarksfirst.com/story/deputies-6-year-old-child-shot-rushed-to-hospital/d/story/uzJ0SAO98UyiZK6kmlUNYw,False,7,,,Shot - Wounded/Injured,37.2646,,-93.3007,,,0::6||1::12,0::Child 0-11||1::Teen 12-17,0::Female,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.ozarksfirst.com/story/deputies-6-year-old-child-shot-rushed-to-hospital/d/story/uzJ0SAO98UyiZK6kmlUNYw,131,30
92272,2014-01-01,Georgia,Columbus,1327 23rd Street,0,1,http://www.gunviolencearchive.org/incident/92272,http://www.ledger-enquirer.com/2014/08/25/3264788/attempted-murder-suspect-in-new.html,False,2,,,Shot - Wounded/Injured,32.4848,,-84.9727,,,0::27||1::25,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Jakevious Corderro Luckey,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.ledger-enquirer.com/2014/01/02/2881510/police-investigating-shooting.html||http://www.ledger-enquirer.com/2014/08/25/3264788/attempted-murder-suspect-in-new.html,135,15
92428,2014-01-01,New York,Syracuse,200 block of Ballard Avenue,0,1,http://www.gunviolencearchive.org/incident/92428,http://www.syracuse.com/news/index.ssf/2014/01/syracuse_police_investigate_shooting_on_south_side.html#incart_river_default,False,24,,,Shot - Wounded/Injured,43.0308,,-76.1562,,,0::20,0::Adult 18+,0::Male,0::Shaquille Breland,,0::Injured,0::Victim,http://www.syracuse.com/news/index.ssf/2014/01/syracuse_police_investigate_shooting_on_south_side.html#incart_river_default,128,53
94205,2014-01-01,Kentucky,Lexington,Kenton and Fourth streets,0,0,http://www.gunviolencearchive.org/incident/94205,http://www.lex18.com/news/police-searching-for-suspect-who-fired-shots-at-home/,False,6,,,"Shots Fired - No Injuries||Drive-by (car to street, car to car)",38.053,,-84.4928,,,,,,,,,,http://www.lex18.com/news/police-searching-for-suspect-who-fired-shots-at-home/,,
92218,2014-01-01,Georgia,Bibb County,,0,1,http://www.gunviolencearchive.org/incident/92218,http://www.macon.com/2014/01/01/2858327/haddock-man-shot-in-bibb.html,False,2,,,Shot - Wounded/Injured,32.7866,,-83.7199,,,0::24||1::35,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Bryan Collins||1::Savalles Emory,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.macon.com/2014/01/01/2858327/haddock-man-shot-in-bibb.html,142,26
104905,2014-01-01,Virginia,Prince William County,10100 block of Shiloh Ct,0,1,http://www.gunviolencearchive.org/incident/104905,http://potomaclocal.com/2014/01/02/north-carolina-man-wanted-new-years-shooting-near-manassas/,False,1,,,Shot - Wounded/Injured,38.7765,,-77.4996,,,0::31||1::25,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::David Jamar Moore,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://potomaclocal.com/2014/01/02/north-carolina-man-wanted-new-years-shooting-near-manassas/,50,29
92423,2014-01-01,Pennsylvania,Philadelphia,34th Street and Haverford Avenue,0,1,http://www.gunviolencearchive.org/incident/92423,http://www.philly.com/philly/blogs/dncrime/Man-18-hospitalized-after-shooting-in-Mantua.html,False,2,,,Shot - Wounded/Injured,39.9641,,-75.1916,,,0::18,0::Adult 18+,0::Male,,,0::Injured,0::Victim||1::Subject-Suspect,http://www.philly.com/philly/blogs/dncrime/Man-18-hospitalized-after-shooting-in-Mantua.html,,
94154,2014-01-01,Virginia,Hampton,West Queen Street and Stewart Street,0,0,http://www.gunviolencearchive.org/incident/94154,"http://www.dailypress.com/news/crime/dp-hampton-man-arrested-in-new-years-day-robbery-20140107,0,517155.story",False,3,,,Armed robbery with injury/death and/or evidence of DGU found,37.0258,,-76.3534,,,0::19||1::19,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Michael Davonta Tucker Jr.,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.dailypress.com/news/crime/dp-hampton-man-arrested-in-new-years-day-robbery-20140107,0,517155.story",92,2
92215,2014-01-01,South Carolina,North Charleston,Niagara Street,1,0,http://www.gunviolencearchive.org/incident/92215,/www.thestate.com/2014/01/03/3188515/cops-name-sc-women-shot-to-death.html,False,6,,,"Shot - Dead (murder, accidental, suicide)",32.8548,,-79.9977,,,0::52,0::Adult 18+,0::Female,0::Janet Royal,,0::Killed,0::Victim,http://www.postandcourier.com/article/20140101/PC16/140109957/1180/new-year-begins-in-north-charleston-with-two-shootings-at-lea,109,42
104022,2014-01-01,Maryland,Baltimore,2100 block of Tucker Lane,0,0,http://www.gunviolencearchive.org/incident/104022,http://www.wbaltv.com/news/maryland/baltimore-city/mta-seeks-help-in-armed-robbery-case/-/10131532/24290890/-/36axx8z/-/index.ht,False,7,,,Armed robbery with injury/death and/or evidence of DGU found,39.3106,,-76.7022,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+,1::Male||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.wbaltv.com/news/maryland/baltimore-city/mta-seeks-help-in-armed-robbery-case/-/10131532/24290890/-/36axx8z/-/index.ht,41,41
92357,2014-01-01,Delaware,Wilmington,1400 block of West 3rd,1,0,http://www.gunviolencearchive.org/incident/92357,http://abclocal.go.com/wpvi/story,False,1,,,"Shot - Dead (murder, accidental, suicide)",39.7457,,-75.5668,,"""Investigators believe Whitt was shot two blocks away, in the 1400 block of West 3rd, and was able to drive to the 1200 block before he expired.""",0::28,0::Adult 18+,0::Male,0::Allen Whitt,,0::Killed,0::Victim,http://abclocal.go.com/wpvi/story,3,3
92790,2014-01-01,Colorado,Grand Junction, 2846 Unaweep Ave,1,0,http://www.gunviolencearchive.org/incident/92790,http://www.nbc11news.com/home/headlines/law-enforcement-investigates-orchard-mesa-death-238355081.html,False,3,,,"Shot - Dead (murder, accidental, suicide)",39.0496,,-108.525,,,0::47,0::Adult 18+,0::Male,0::Randy Cook,,0::Killed,0::Victim,http://www.nbc11news.com/home/headlines/Randy-Cook-47-Identified-as-Homicide-Victim-from-New-Years-Incident-238482631.html||http://www.nbc11news.com/home/headlines/law-enforcement-investigates-orchard-mesa-death-238355081.html,54,7
92213,2014-01-01,South Carolina,North Charleston,Aintree Street,0,1,http://www.gunviolencearchive.org/incident/92213,http://www.postandcourier.com/article/20140101/PC16/140109957/1180/new-year-begins-in-north-charleston-with-two-shootings-at-lea,False,6,,,Shot - Wounded/Injured,32.8461,,-79.9813,,,,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://www.postandcourier.com/article/20140101/PC16/140109957/1180/new-year-begins-in-north-charleston-with-two-shootings-at-lea,111,42
102729,2014-01-01,Missouri,Springfield,Mexican Villa restaurant on South National Avenue ,0,0,http://www.gunviolencearchive.org/incident/102729,http://www.kspr.com/news/local/police-make-arrests-in-mexican-villa-robbery-in-springfield/-/21051620/24221750/-/104ioto/-/index,False,7,,,Armed robbery with injury/death and/or evidence of DGU found||Implied Weapon,37.1536,,-93.2778,,Armed robbery of restaurant.,0::26||1::19,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Donald B. Sethman||1::Jacob Aguilar,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.kspr.com/news/local/police-make-arrests-in-mexican-villa-robbery-in-springfield/-/21051620/24221750/-/104ioto/-/index,136,30
92342,2014-01-01,Alabama,Huntsville,2700 block of Bridge Road,1,0,http://www.gunviolencearchive.org/incident/92342,http://www.waff.com/story/24445797/police-make-arrest-in-fatal-new-years-day-shooting,False,5,,,"Shot - Dead (murder, accidental, suicide)",34.7663,,-86.6028,,Several perpetrators approached and began shooting.,0::21||1::24,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Mercedes Morris||1::Lopez Marittia Rice,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wsfa.com/story/24344374/police-respond-to-shooting||http://www.waff.com/story/24445797/police-make-arrest-in-fatal-new-years-day-shooting,19,7
92747,2014-01-01,New Jersey,Camden,,0,1,http://www.gunviolencearchive.org/incident/92747,http://www.courierpostonline.com/article/20140103/NEWS21/301030056/Two-sought-Camden-home-invasion,False,1,,,Home Invasion||Home Invasion - Resident injured||Pistol-whipping,39.8952,,-75.1241,,,,0::Adult 18+,,,,0::Injured,0::Victim||1::Subject-Suspect,http://www.courierpostonline.com/article/20140103/NEWS21/301030056/Two-sought-Camden-home-invasion,5,5
92153,2014-01-01,Louisiana,New Orleans,2300 block of North Prieur Street,1,0,http://www.gunviolencearchive.org/incident/92153,http://www.wwltv.com/news/crime/NOPD-reports-shooting-death-on-N-Prieur-238361391.html,False,2,,,"Shot - Dead (murder, accidental, suicide)",29.9768,,-90.055,,,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.wwltv.com/news/crime/NOPD-reports-shooting-death-on-N-Prieur-238361391.html,93,4
95266,2014-01-01,Utah,Hurricane,2500 S. 3900 W.,0,1,http://www.gunviolencearchive.org/incident/95266,http://www.stgeorgeutah.com/news/archive/2014/01/01/elh-accidental-shooting-sends-hurricane-man-hospital/,False,2,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Cleaning gun,37.1302,,-113.416,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.stgeorgeutah.com/news/archive/2014/01/01/elh-accidental-shooting-sends-hurricane-man-hospital/,71,29
92284,2014-01-01,Indiana,Fort Wayne,3700 block of Trace Cir,0,1,http://www.gunviolencearchive.org/incident/92284,http://journalgazette.net/article/20140102/LOCAL07/140109898,False,3,,,Shot - Wounded/Injured,41.049,,-85.0909,,"Knock at door, woman opened it to a barrage of bullets",0::60,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://journalgazette.net/article/20140102/LOCAL07/140109898,80,14
92578,2014-01-01,Louisiana,Marrero,6100 block of Ray Street,1,0,http://www.gunviolencearchive.org/incident/92578,http://www.wwltv.com/news/crime/Man-dies-in-Marrero-homicide-238396951.html,False,2,,,"Shot - Dead (murder, accidental, suicide)",29.8863,,-90.1087,,,0::31,0::Adult 18+,0::Male,0::Joseph Anderson,,0::Killed,0::Victim,http://www.wwltv.com/news/crime/Man-dies-in-Marrero-homicide-238396951.html,87,3
92623,2014-01-01,Illinois,Pinckneyville,13 S Walnut St,0,0,http://www.gunviolencearchive.org/incident/92623,http://thesouthern.com/news/local/pinckneyville-mayor-s-son-arrested-on-gun-charge/article_36184c24-74a1-11e3-96a7-0019bb2963f4.,False,12,0::Unknown,0::Unknown,Brandishing/flourishing/open carry/lost/found,38.0795,Eagles Lodge,-89.383,1,"Perp and victim at Eagles Lodge, perp pointed gun at vic. Will use 2nd amendment defense.",,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Bobby Hubert||1::Nathan Kellerman,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://thesouthern.com/news/local/pinckneyville-mayor-s-son-arrested-on-gun-charge/article_36184c24-74a1-11e3-96a7-0019bb2963f4.,116,58
92131,2014-01-01,New York,Bronx,Soundview Ave,0,1,http://www.gunviolencearchive.org/incident/92131,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,False,15,,,Pistol-whipping,40.8179,,-73.8628,,,0::23,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,85,34
92614,2014-01-01,Colorado,Canon City,205 Tunnel Drive,0,1,http://www.gunviolencearchive.org/incident/92614,http://www.canoncitydailyrecord.com/ci_24921627/john-freyta-involved-shooting-incident-charged,False,5,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot,38.434,,-105.264,,,0::46,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::John Freyta||1::Police Officer Timothy Bell||2::Fremont County Sheriff's Deputy Christopher Pape,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://gazette.com/fremont-county-man-injured-in-officer-involved-shooting-deputy-police-officer-on-leave/article/1511933||http://www.canoncitydailyrecord.com/ci_24921627/john-freyta-involved-shooting-incident-charged,60,2
92144,2014-01-01,New York,Bronx,Valentine Ave.,0,1,http://www.gunviolencearchive.org/incident/92144,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,False,13,,,Shot - Wounded/Injured,40.8623,,-73.8959,,,0::19,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,78,33
92734,2014-01-01,Texas,Lubbock, 1704 East 4th Street.,0,2,http://www.gunviolencearchive.org/incident/92734,http://www.kcbd.com/story/24340523/1-killed-2-injured-in-shooting-outside-east-lubbock-nightclub,False,19,,,Shot - Wounded/Injured,33.5922,,-101.818,,"two shootings at this address, this is inside the Skool House club",0::24||1::25||2::23,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::Frank Jobrodrick Anderson||1::Nicole Lee Gocher||2::Marcus Carroll,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.kcbd.com/story/24350978/police-skool-house-shooting-was-actually-two-incidents||http://www.kcbd.com/story/24340523/1-killed-2-injured-in-shooting-outside-east-lubbock-nightclub,84,28
96019,2014-01-01,Nebraska,North Platte,1500 block of N. Sherman,0,0,http://www.gunviolencearchive.org/incident/96019,http://www.northplattebulletin.com/index.asp,False,3,,,Possession (gun(s) found during commission of other crimes),41.1508,,-100.78,,Shotgun theft,0::35,0::Adult 18+,0::Female,0::Jennifer Noffsinger,,0::Unharmed,0::Subject-Suspect,http://www.northplattebulletin.com/index.asp,,42
92252,2014-01-01,South Carolina,Johns Island,3579 Savannah Highway,0,0,http://www.gunviolencearchive.org/incident/92252,http://www.postandcourier.com/article/20140102/PC16/140109932/1177/johns-island-burger-king-held-up-at-gunpoint,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,32.7187,,-80.1029,,,,,,,,,,http://www.postandcourier.com/article/20140102/PC16/140109932/1177/johns-island-burger-king-held-up-at-gunpoint,116,45
92725,2014-01-01,Texas,Houston,,0,0,http://www.gunviolencearchive.org/incident/92725,http://www.khou.com/news/crime/Familys-home-hit-by-bullets-two-months-after-deadly-Cypress-mass-shooting--238544921.html,False,18,,,"Drive-by (car to street, car to car)",29.7654,,-95.3663,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+,,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.khou.com/news/crime/Familys-home-hit-by-bullets-two-months-after-deadly-Cypress-mass-shooting--238544921.html,145,13
95622,2014-01-01,Massachusetts,Lynn,Linwood Street,0,1,http://www.gunviolencearchive.org/incident/95622,http://www.itemlive.com/news/police-investigating-shooting-on-curwin-circle-lynn/article_ce72d9aa-7bd4-11e3-b9a6-001a4bcf887a.ht,False,6,,,Shot - Wounded/Injured,42.4751,,-70.9697,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.itemlive.com/news/police-investigating-shooting-on-curwin-circle-lynn/article_ce72d9aa-7bd4-11e3-b9a6-001a4bcf887a.ht,,
92204,2014-01-01,Virginia,Newport News,Circuit and Deputy Lane,0,0,http://www.gunviolencearchive.org/incident/92204,"http://www.dailypress.com/news/breaking/dp-newport-news-two-wounded-by-gunfire-in-early-hours-of-2014-20140101,0,7297458.story",False,3,,,Shots Fired - No Injuries,37.1422,,-76.5355,,marked patrol car was hit by a single gunshot,,0::Adult 18+,0::Male,,,0::Unharmed,0::Victim,"http://www.dailypress.com/news/breaking/dp-newport-news-two-wounded-by-gunfire-in-early-hours-of-2014-20140101,0,7297458.story",95,1
854799,2014-01-01,Florida,Milton,,0,0,http://www.gunviolencearchive.org/incident/854799,https://www.atf.gov/news/pr/texas-man-sentenced-353-months-prison-federal-drug-and-firearms-charges,False,1,0::Unknown,0::Unknown,Non-Shooting Incident||Drug involvement||ATF/LE Confiscation/Raid/Arrest||Possession (gun(s) found during commission of other crimes)||Unlawful purchase/sale,30.6884,,-87.048,1,Approximate crime date,0::31||1::32,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Silvano Zaragoza-Ambriz||1::Kyle James Corbi,,"0::Unharmed, Arrested||1::Unharmed, Arrested",0::Subject-Suspect||1::Subject-Suspect,https://www.atf.gov/news/pr/texas-man-sentenced-353-months-prison-federal-drug-and-firearms-charges,3,2
92497,2014-01-01,Florida,Fort Myers,2600 block of Edison Avenue,0,0,http://www.gunviolencearchive.org/incident/92497,http://www.naplesnews.com/news/2014/jan/01/fort-myers-police-investigating-new-years-day-shoo/,False,19,,,"Shots Fired - No Injuries||Drive-by (car to street, car to car)",26.6336,,-81.8601,,,,,,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.naplesnews.com/news/2014/jan/01/fort-myers-police-investigating-new-years-day-shoo/,78,30
98134,2014-01-01,Louisiana,Marrero,6100 block of Ray St,1,0,http://www.gunviolencearchive.org/incident/98134,http://www.nola.com/crime/index.ssf/2014/06/new_orleans_man_to_stand_trial.html,False,2,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Car-jacking",29.8862,,-90.1087,1,"29.886252, -90.108745",0::31||1::24,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Sgt. Joseph Anderson||1::Darwin Bethune,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nola.com/crime/index.ssf/2014/06/new_orleans_man_to_stand_trial.html,87,3
94194,2014-01-01,Alabama,Tuscaloosa,2823 Hunter Creek Road,0,3,http://www.gunviolencearchive.org/incident/94194,http://www.myfoxal.com/story/24399996/teenager-charged-as-an-adult-in-connection-to-northport-home-invasion,False,4,,,Home Invasion||Home Invasion - Resident injured||Pistol-whipping,33.2482,,-87.567,,Willowbrook Trailer Park,3::17||4::19||5::19||6::19,3::Teen 12-17||4::Adult 18+||5::Adult 18+||6::Adult 18+,0::Male||1::Male||2::Female||3::Male||4::Male||5::Male||6::Male,3::Kevin Rice||4::Christopher Terze Childs||5::Andrew Bryant||6::James Bostic,,0::Injured||1::Injured||2::Injured||3::Unharmed||4::Unharmed||5::Unharmed||6::Unharmed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect,http://www.myfoxal.com/story/24399996/teenager-charged-as-an-adult-in-connection-to-northport-home-invasion,61,21
92563,2014-01-01,Mississippi,Bogue Chitto,1347 Brumfield Rd SW,1,0,http://www.gunviolencearchive.org/incident/92563,http://www.wapt.com/news/central-mississippi/jackson/Girl-shot-killed-with-pellet-gun/23747080,False,3,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Accidental Shooting||Accidental Shooting - Death||BB/Pellet/Replica gun",31.3762,,-90.5601,1,Brother accidently shoots and kills sister,0::6||1::13,0::Child 0-11||1::Teen 12-17,0::Female||1::Male,0::Karlianna Celeste Brumfield,1::Family,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wapt.com/news/central-mississippi/jackson/Girl-shot-killed-with-pellet-gun/23747080,53,39
92418,2014-01-01,New Jersey,Clementon,Blue Jay Drive,0,0,http://www.gunviolencearchive.org/incident/92418,http://www.courierpostonline.com/story/news/2014/01/01/two-16-year-olds-among-4-arrested-in-glo-twp-robbery-spree/4280643/,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,39.7981,,-75.0288,,Follow-up robbery by 1/1/14 Chestnut Avenue group.,0::16||1::16||2::18||3::30,0::Teen 12-17||1::Teen 12-17||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,2::Damir Fleming||3::Melvin Cave,,"0::Unharmed, Arrested||1::Unharmed, Arrested||2::Unharmed, Arrested||3::Unharmed, Arrested",0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.courierpostonline.com/story/news/2014/01/01/two-16-year-olds-among-4-arrested-in-glo-twp-robbery-spree/4280643/,4,4
92282,2014-01-01,South Carolina,Olanta,Highway 301,0,1,http://www.gunviolencearchive.org/incident/92282,http://www.carolinalive.com/news/story.aspx,False,6,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Hunting accident,33.9354,,-79.9326,,,0::8,0::Child 0-11||1::Adult 18+,0::Male||1::Male,,1::Family,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.carolinalive.com/news/story.aspx,61,36
92315,2014-01-01,Wisconsin,Janesville,Beltline from Stoughton Road,0,0,http://www.gunviolencearchive.org/incident/92315,http://host.madison.com/news/local/crime_and_courts/janseville-man-arrested-allegedly-pointed-handgun-at-driver-on-beltline/article_28a6315e-79a2-5e4c-a0bb-236868c75f69.html,False,1,,,Non-Shooting Incident||Road rage||Brandishing/flourishing/open carry/lost/found,42.6828,,-89.0187,,"Merging onto the Beltline - Weil threw change at victim, who pulled alongside, then Richards pointed a gun at victim.",0::19||1::42||2::51,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,1::Bernard Richards||2::Leslie Weil,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://host.madison.com/news/local/crime_and_courts/janseville-man-arrested-allegedly-pointed-handgun-at-driver-on-beltline/article_28a6315e-79a2-5e4c-a0bb-236868c75f69.html,44,15
92337,2014-01-01,Alabama,Crenshaw,Campground Church Road,1,0,http://www.gunviolencearchive.org/incident/92337,http://www.greenvilleadvocate.com/2014/01/01/one-dead-one-charged-with-manslaughter/,False,2,,,"Shot - Dead (murder, accidental, suicide)",31.7839,,-86.1926,,Both victim and perpetrator were Troy University students.,0::18||1::19,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Kristin Danielle Fuller||1::Taylor Striklin Driggers,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.waka.com/home/top-stories/Shooting-Leaves-A-Troy-Student-Dead-238384951.html||http://www.greenvilleadvocate.com/2014/01/01/one-dead-one-charged-with-manslaughter/,90,25
92328,2014-01-01,Arizona,Tolleson,92nd and Jefferson,3,0,http://www.gunviolencearchive.org/incident/92328,http://archive.azcentral.com/community/phoenix/articles/20140101phoenix-tolleson-killings-new-year.html,False,7,,,"Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide",33.4464,,-112.258,,,0::45||1::8||2::6,0::Adult 18+||1::Child 0-11||2::Child 0-11,0::Male||1::Female||2::Female,0::Alejandro Gallardo,,0::Killed||1::Killed||2::Killed,0::Victim||1::Victim||2::Victim,http://archive.azcentral.com/community/phoenix/articles/20140101phoenix-tolleson-killings-new-year.html,19,19
97976,2014-01-01,Hawaii,Lihue,,1,0,http://www.gunviolencearchive.org/incident/97976,http://www.hawaiinewsnow.com/story/24420836/police-88-year-old-kauai-man-died-of-gunshot-wound-to-head,False,2,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)",21.9986,,-159.356,1,,0::88||1::41,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Amby Cruz||1::Giovani Corpuz,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.hawaiinewsnow.com/story/24420836/police-88-year-old-kauai-man-died-of-gunshot-wound-to-head,15,8
92345,2014-01-01,Washington,Georgetown,957 South Doris St,0,1,http://www.gunviolencearchive.org/incident/92345,http://www.seattlepi.com/local/article/Charge-Seattle-man-beat-woman-man-during-biker-5124962.php,False,7,,,Shot - Wounded/Injured,47.5498,Magic Wheels Motorcycle Club,-122.318,,four others wounded; outside Magic Wheels Motorcycle Club,1::30,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Patrick Lee Gillum,,"0::Injured||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://blogs.seattletimes.com/today/2014/01/melee-at-seattle-motorcycle-club-leaves-five-hurt-one-arrested/||http://www.seattlepi.com/local/article/Charge-Seattle-man-beat-woman-man-during-biker-5124962.php,11,11
92479,2014-01-01,Florida,Homestead,13416 Southwest 270th Terrace,0,3,http://www.gunviolencearchive.org/incident/92479,http://www.nbcmiami.com/news/3-Shot-During-Robbery-at-New-Years-Party-in-Southwest-Miami-Dade-238356631.html,False,27,,,Shot - Wounded/Injured||Home Invasion||Home Invasion - Resident injured||Armed robbery with injury/death and/or evidence of DGU found,25.5155,,-80.4089,,,0::62||1::38||2::37,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||2::Male||3::Male||4::Male||5::Male,"0::Nereda Morera||1::Jayeski Placencia||2::Sergio Cardenas, Jr.",,0::Injured||1::Injured||2::Injured||3::Unharmed||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect||4::Subject-Suspect||5::Subject-Suspect,http://www.nbcmiami.com/news/3-Shot-During-Robbery-at-New-Years-Party-in-Southwest-Miami-Dade-238356631.html,117,39
92490,2014-01-01,Florida,Orlando,Sun Dew Drive,1,0,http://www.gunviolencearchive.org/incident/92490,"http://www.orlandosentinel.com/news/local/breakingnews/os-son-shoots-kills-father-avalon-park-20140101,0,3738688.story",False,9,,,"Shot - Dead (murder, accidental, suicide)||Domestic Violence",28.5064,,-81.1511,,Child shot and killed father in domestic violence incident,0::34||1::15,0::Adult 18+||1::Teen 12-17,0::Male||1::Male,0::Christopher Albano,1::Family,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,"http://www.orlandosentinel.com/news/local/breakingnews/os-son-shoots-kills-father-avalon-park-20140101,0,3738688.story",50,13
92501,2014-01-01,Florida,Orlando,5200 block of Via Alizar,0,0,http://www.gunviolencearchive.org/incident/92501,"http://www.orlandosentinel.com/news/local/breakingnews/os-green-gables-apartment-home-invasion-20140102,0,4773467.story",False,5,,,Non-Shooting Incident||Home Invasion||Home Invasion - No death or injury||Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,28.4907,,-81.4077,,Gables Apartments,,,,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,"http://www.orlandosentinel.com/news/local/breakingnews/os-green-gables-apartment-home-invasion-20140102,0,4773467.story",46,12
92117,2014-01-01,Kentucky,Cynthiana,,0,1,http://www.gunviolencearchive.org/incident/92117,https://www.wtvq.com/2014/01/01/harrison-sheriff-gunplay-in-car-results-in-serious-injury/,False,4,0::Unknown,0::Unknown,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury,38.4333,,-84.3542,1,US-62 east of Cynthiana,1::22,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Dustin Mullins||1::Timothy Turner,1::Friends,"0::Injured||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.lex18.com/news/man-arrested-in-connection-with-harrison-county-shooting/||https://www.wtvq.com/2014/01/01/harrison-sheriff-gunplay-in-car-results-in-serious-injury/,78,27
92540,2014-01-01,Florida,Orlando,Sky Lake Circle,1,1,http://www.gunviolencearchive.org/incident/92540,http://articles.orlandosentinel.com/2014-05-15/news/os-fatal-shooting-arrest-new-year-fight-20140515_1_day-shooting-fatal-new-year-first-degree-murder,False,10,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",28.4532,Las Palmas Apartments,-81.389,,,0::18||1::20||2::25,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Male||2::Male,"0::Alliyah Rivera||1::Kristopher Mora||2::Daniel ""Beba"" Junior Rosa Andino",,"0::Killed||1::Injured||2::Unharmed, Arrested",0::Victim||1::Victim||2::Subject-Suspect,"http://www.orlandosentinel.com/news/local/breakingnews/os-fatal-shooting-alliyah-rivera-20140102,0,1971690.story||http://articles.orlandosentinel.com/2014-05-15/news/os-fatal-shooting-arrest-new-year-fight-20140515_1_day-shooting-fatal-new-year-first-degree-murder",48,12
92180,2014-01-01,Ohio,Toledo,East Oakland Street,0,1,http://www.gunviolencearchive.org/incident/92180,http://www.toledoblade.com/frontpage/2014/01/01/1-reportedly-shot-in-North-Toledo.html,False,9,,,Shot - Wounded/Injured,41.6824,,-83.5364,,Shot self in leg,,0::Adult 18+,0::Male,0::Jerome Benton,,0::Injured,0::Victim||1::Subject-Suspect,http://www.toledoblade.com/frontpage/2014/01/01/1-reportedly-shot-in-North-Toledo.html,44,11
95264,2014-01-01,Kansas,Wichita,near I-135 and Pawnee ,0,1,http://www.gunviolencearchive.org/incident/95264,http://www.kake.com/home/headlines/Man-critically-hurt-in-accidental-shooting-238368411.html,False,4,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Accidental/Negligent Discharge,37.6498,,-97.3086,,,0::34||1::32,0::Adult 18+||1::Adult 18+,0::Male||1::Female,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kake.com/home/headlines/Man-critically-hurt-in-accidental-shooting-238368411.html,98,28
92279,2014-01-01,Indiana,Fort Wayne,3600 block of Logan Av,1,0,http://www.gunviolencearchive.org/incident/92279,http://www.journalgazette.net/article/20140101/LOCAL07/140109968/-1/LOCAL11,False,3,,,"Shot - Dead (murder, accidental, suicide)",41.0679,,-85.0921,,Man found dead inside home/circumstances under investigation,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.journalgazette.net/article/20140101/LOCAL07/140109968/-1/LOCAL11,80,15
92576,2014-01-01,Louisiana,New Orleans,7600 block of Symmes Avenue,0,2,http://www.gunviolencearchive.org/incident/92576,http://www.fox8live.com/story/24343961/nopd-working-a-double-shooting-in-no-east,False,2,,,Shot - Wounded/Injured,30.0454,,-89.9837,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.fox8live.com/story/24343961/nopd-working-a-double-shooting-in-no-east,100,4
92660,2014-01-01,Maryland,Clinton,9100 block of Goldfield Place,1,0,http://www.gunviolencearchive.org/incident/92660,http://www.washingtonpost.com/local/crime/man-fatally-shot-step-father-to-be-on-new-years-day-in-clinton-prince-georges-police-s,False,5,,,"Shot - Dead (murder, accidental, suicide)",38.7649,,-76.8712,,,0::52||1::38,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Raymond Quattlebaum||1::D’Juan Renay Hunter,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.washingtonpost.com/local/crime/man-fatally-shot-step-father-to-be-on-new-years-day-in-clinton-prince-georges-police-s,,27
95209,2014-01-01,District of Columbia,Washington,300 blo k of N. Capitol Street NW,0,0,http://www.gunviolencearchive.org/incident/95209,https://twitter.com/DCPoliceDept/status/418529411936165888,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.9275,,-77.0089,,,,,0::Male,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/418529411936165888,,
92305,2014-01-01,West Virginia,Princeton,,0,0,http://www.gunviolencearchive.org/incident/92305,http://www.wvnstv.com/story/24342666/mercer-county-man-faces-attempted-murder-charges,False,3,,,Shots Fired - No Injuries,37.3691,,-81.0813,,,,0::Adult 18+,0::Male,0::Christopher Persiani ,,0::Unharmed,0::Subject-Suspect,http://www.wvnstv.com/story/24342666/mercer-county-man-faces-attempted-murder-charges,27,6
151443,2014-01-01,Massachusetts,Springfield,Franklin and Genesee Streets,0,0,http://www.gunviolencearchive.org/incident/151443,http://www.masslive.com/news/index.ssf/2014/01/multiple_shots_fired_in_lower.html,False,1,,,"Shots fired, no action (reported, no evidence found)",42.1165,,-72.586,,,,,,,,,,http://www.masslive.com/news/index.ssf/2014/01/multiple_shots_fired_in_lower.html,,
92506,2014-01-01,Georgia,Warner Robins,2715 Watson Blvd,0,0,http://www.gunviolencearchive.org/incident/92506,http://www.wsbtv.com/ap/ap/georgia/georgia-man-misfires-gun-in-cafe-no-one-hurt/ncbdt/,False,8,,,Shots Fired - No Injuries,32.6184,,-83.6728,,accidental discharge of weapon in Fatz cafe,0::22,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.wsbtv.com/ap/ap/georgia/georgia-man-misfires-gun-in-cafe-no-one-hurt/ncbdt/,147,18
93194,2014-01-01,Texas,Borger,,1,0,http://www.gunviolencearchive.org/incident/93194,http://www.myfoxhouston.com/story/24362027/texas-panhandle-man-charged-with-killing-father,False,13,,,"Shot - Dead (murder, accidental, suicide)||Domestic Violence",35.663,,-101.404,,Son killed father during argument.,0::47||1::23,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Herschel Bryan Moffitt||1::Brendan Kai Moffitt ,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.myfoxhouston.com/story/24362027/texas-panhandle-man-charged-with-killing-father,87,31
92303,2014-01-01,Wisconsin,Milwaukee,Locust and Humboldt Blvd,0,0,http://www.gunviolencearchive.org/incident/92303,http://fox6now.com/2014/01/02/officer-arrests-intoxicated-suspect-for-pointing-aiming-gun/,False,4,,,,43.0711,,-87.8977,,"Perp, drinking for 17 hours, waved and pointed gun at officer, who disarmed him. Blew a .22 No shots fired or injuries.",,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://fox6now.com/2014/01/02/officer-arrests-intoxicated-suspect-for-pointing-aiming-gun/,19,7
150404,2014-01-01,New Hampshire,Manchester,Laurel and Beech streets,0,0,http://www.gunviolencearchive.org/incident/150404,http://www.unionleader.com/article/20140102/NEWS03/140109844/1006/news03,False,1,,,"Shots fired, no action (reported, no evidence found)",42.9887,,-71.4554,,,,,,,,,,http://www.unionleader.com/article/20140102/NEWS03/140109844/1006/news03,,18
92504,2014-01-01,Florida,Deltona,1300 block of W. Hartley Circle,0,1,http://www.gunviolencearchive.org/incident/92504,"http://www.orlandosentinel.com/news/local/breakingnews/os-deltona-man-shoots-visitor-rifle-20140102,0,7810084.story",False,7,,,Shot - Wounded/Injured,28.899,,-81.2615,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.orlandosentinel.com/news/local/breakingnews/os-deltona-man-shoots-visitor-rifle-20140102,0,7810084.story",27,8
93182,2014-01-01,Rhode Island,Providence,,0,2,http://www.gunviolencearchive.org/incident/93182,http://www.wpri.com/news/local/providence/two-hurt-in-citys-first-shooting-of-2014,False,2,,,Shot - Wounded/Injured,41.8253,,-71.4143,,,0::25||1::22,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Jose Paulino||1::Francis Rodriguez,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.wpri.com/news/local/providence/two-hurt-in-citys-first-shooting-of-2014,2,6
92238,2014-01-01,North Carolina,Duplin County,Highway 24/50 towards Kenansville,0,1,http://www.gunviolencearchive.org/incident/92238,http://www.witn.com/home/headlines/Man-Shot-While-Walking-Down-Highway-In-Duplin-County-238357301.html,False,7,,,Shot - Wounded/Injured,34.9624,,-77.9622,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.witn.com/home/headlines/Man-Shot-While-Walking-Down-Highway-In-Duplin-County-238357301.html,4,10
95287,2014-01-01,Arizona,Rio Rico,Yave Court,0,0,http://www.gunviolencearchive.org/incident/95287,http://www.nogalesinternational.com/news/nye-produces-unsafe-air-and-gunfire-but-little-dui/article_38c26014-7491-11e3-af9a-001a,False,3,,,Shots Fired - No Injuries,31.4674,,-110.974,,bullets entered home,,,,,,,,http://www.nogalesinternational.com/news/nye-produces-unsafe-air-and-gunfire-but-little-dui/article_38c26014-7491-11e3-af9a-001a,2,2
92487,2014-01-01,Florida,Tampa,2408 W. Kennedy Blvd.,0,2,http://www.gunviolencearchive.org/incident/92487,http://tbo.com/news/crime/two-men-shot-at-tampa-bar-on-kennedy-20140101/,False,14,,,Shot - Wounded/Injured,27.9447,,-82.4842,,,0::27||1::35,0::Adult 18+||1::Adult 18+,0::Male||1::Male||2::Male,0::Calvin Cooper||1::Theodore P. Newman,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://tbo.com/news/crime/two-men-shot-at-tampa-bar-on-kennedy-20140101/,60,22
93067,2014-01-01,Ohio,Toledo,2125 S. Byrne Rd,0,0,http://www.gunviolencearchive.org/incident/93067,http://www.toledoblade.com/Police-Fire/2014/01/15/Bond-set-at-50-000-for-suspect-in-store-robbery.html,False,9,,,Armed robbery with injury/death and/or evidence of DGU found||Implied Weapon,41.6011,,-83.6245,,"In-and-Out Mart - Held up convenience store at gunpoint, suspected in 12/31/13 robbery, also 1/3/14. Getaway driver arraigned 1/15/14. Inside man at large.",1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::James Ladosky,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.toledoblade.com/Police-Fire/2014/01/04/Same-robber-suspected-in-S-Toledo-holdups.html||http://www.toledoblade.com/Police-Fire/2014/01/15/Bond-set-at-50-000-for-suspect-in-store-robbery.html,44,11
92236,2014-01-01,North Carolina,Raleigh,Rock Quarry Road and Martin Luther King Jr. Boulevard,0,1,http://www.gunviolencearchive.org/incident/92236,http://www.wral.com/one-injured-in-shooting-near-downtown-raleigh/13261683/,False,4,,,Shot - Wounded/Injured||Officer Involved Incident,35.7688,,-78.6173,,"Officer witnessed incident and fired on perp, but missed and perp escaped",0::22||1::22,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Darrell Anthony Bobbitt||1::Joshua Earl Holloman,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wral.com/one-injured-in-shooting-near-downtown-raleigh/13261683/,33,14
95284,2014-01-01,Pennsylvania,Hazleton,Hazleton Apartments,0,0,http://www.gunviolencearchive.org/incident/95284,http://standardspeaker.com/news/police-jan-3-1.1610881,False,11,,,Shots Fired - No Injuries,40.9752,,-75.9845,,bullets entered home,,,,,,,,http://standardspeaker.com/news/police-jan-3-1.1610881,,
92395,2014-01-01,New York,Buffalo,Michigan Avenue and Genesee Street,1,0,http://www.gunviolencearchive.org/incident/92395,http://www.bpdny.org/Home/Statistics/2014Homicides,False,26,,,"Shot - Dead (murder, accidental, suicide)",42.8913,,-78.8659,,Woman shot in vehicle while stopped at a red light. Gunfire came from another vehicle.,0::25,0::Adult 18+,0::Female,0::Yolanda Singletary,,0::Killed,0::Victim,http://www.wkbw.com/news/local/Buffalo-Police-Investigate-First-Homicide-of-2014--238391911.html||http://www.bpdny.org/Home/Statistics/2014Homicides,141,63
92670,2014-01-01,Maryland,Baltimore,900 block of South Canton Avenue,0,1,http://www.gunviolencearchive.org/incident/92670,"http://www.baltimoresun.com/news/maryland/crime/blog/bal-woman-shot-at-in-st-agnes-hospital-parking-lot-20140101,0,4038072.story",False,3,,,Shot - Wounded/Injured,39.2857,,-76.5682,,,,0::Adult 18+,0::Female,,,0::Injured,0::Victim,"http://www.baltimoresun.com/news/maryland/crime/blog/bal-woman-shot-at-in-st-agnes-hospital-parking-lot-20140101,0,4038072.story",46,46
92194,2014-01-01,Virginia,Norfolk,Rockingham Street and Berkley Avenue Extended,2,2,http://www.gunviolencearchive.org/incident/92194,"http://www.dailypress.com/news/crime/dp-norfolk-two-men-fatally-shot-third-person-injured-20140101,0,1049430.story",False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",36.8508,,-76.2859,,,0::22||1::32,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Marcus Deering||1::Melvin Alston,,0::Killed||1::Killed||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,"http://www.dailypress.com/news/crime/dp-norfolk-two-men-fatally-shot-third-person-injured-20140101,0,1049430.story",80,6
95234,2014-01-01,Texas,Port Arthur,,0,1,http://www.gunviolencearchive.org/incident/95234,http://www.fox4beaumont.com/news/features/top-stories/stories/port-arthur-man-recovering-after-accidentally-shooting-himself-201,False,14,,,Accidental Shooting||Accidental Shooting - Injury,29.8877,,-93.9602,,shot himself,0::39,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.fox4beaumont.com/news/features/top-stories/stories/port-arthur-man-recovering-after-accidentally-shooting-himself-201,22,4
92393,2014-01-01,California,Merced,1300 block of Derby Court,1,0,http://www.gunviolencearchive.org/incident/92393,http://www.mercedsunstar.com/2014/01/01/3419894/man-shot-to-death-in-merced-countys.html,False,16,,,"Shot - Dead (murder, accidental, suicide)||Gang involvement",37.3389,,-120.497,,,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.mercedsunstar.com/2014/01/01/3419894/man-shot-to-death-in-merced-countys.html,21,12
92662,2014-01-01,Maryland,New Carrollton,5500 block of Karen Elaine Drive,1,0,http://www.gunviolencearchive.org/incident/92662,http://www.washingtonpost.com/local/crime/man-fatally-shot-step-father-to-be-on-new-years-day-in-clinton-prince-georges-police-s,False,4,,,"Shot - Dead (murder, accidental, suicide)",38.9554,,-76.8782,,,0::28,0::Adult 18+,0::Male,0::Vondrell Smith,,0::Killed,0::Victim,http://www.washingtonpost.com/local/crime/man-fatally-shot-step-father-to-be-on-new-years-day-in-clinton-prince-georges-police-s,22,22
92189,2014-01-01,Kentucky,Boston,11600 Old Boston Rd,0,0,http://www.gunviolencearchive.org/incident/92189,http://www.wlky.com/news/local-news/kentucky-news/police-search-for-men-after-dollar-general-robbery/-/9718420/23725456/-/apq8xr,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,37.7953,,-85.6381,,Dollar General Store,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.wlky.com/news/local-news/kentucky-news/police-search-for-men-after-dollar-general-robbery/-/9718420/23725456/-/apq8xr,,
92389,2014-01-01,California,Fresno,Mono Avenue and First Street,2,0,http://www.gunviolencearchive.org/incident/92389,http://www.fresnobee.com/2014/01/02/3695228/man-wounded-in-new-years-shooting.html,False,16,,,"Shot - Dead (murder, accidental, suicide)||Gang involvement",36.737,,-119.773,,,0::33,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Killed||1::Killed,0::Victim||1::Victim,http://www.fresnobee.com/2014/01/02/3695228/man-wounded-in-new-years-shooting.html,31,14
95232,2014-01-01,California,Glendale,2600 block of Sleepy Hollow Drive,0,1,http://www.gunviolencearchive.org/incident/95232,"http://www.glendalenewspress.com/news/tn-gnp-glendale-resident-accidentally-shoots-wife-in-gun-mishap-20140102,0,3398026.story",False,28,,,Accidental Shooting||Accidental Shooting - Injury,34.1481,,-118.209,,,0::43||1::48,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.glendalenewspress.com/news/tn-gnp-glendale-resident-accidentally-shoots-wife-in-gun-mishap-20140102,0,3398026.story",43,25
92736,2014-01-01,Texas,Lubbock,1704 East 4th Street,1,1,http://www.gunviolencearchive.org/incident/92736,http://www.kcbd.com/story/28954070/lubbock-man-charged-with-manslaughter-in-deadly-shooting-at-the-skool-house,False,19,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",33.5922,,-101.818,,Shooting out side Skool House club,0::21||1::25,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Abraham Cleaver||1::Frank Anderson,,"0::Killed||1::Injured, Arrested",0::Victim||1::Subject-Suspect,http://www.kcbd.com/story/24350978/police-skool-house-shooting-was-actually-two-incidents||http://www.kcbd.com/story/28954070/lubbock-man-charged-with-manslaughter-in-deadly-shooting-at-the-skool-house,84,28
95281,2014-01-01,Washington,Tulalip,Warm Beach,0,1,http://www.gunviolencearchive.org/incident/95281,http://www.komonews.com/news/crime/Duck-hunter-shot-in-leg-possibly-with-high-powered-rifle-238461781.html,False,2,,,Shot - Wounded/Injured,48.098,,-122.322,,,0::47,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.komonews.com/news/crime/Duck-hunter-shot-in-leg-possibly-with-high-powered-rifle-238461781.html,38,38
92125,2014-01-01,Oklahoma,Lawton,Sheridan and Pollard,0,0,http://www.gunviolencearchive.org/incident/92125,http://www.kswo.com/story/24342150/lpd-investigates-nightclub-shooting,False,4,,,Shots Fired - No Injuries,34.6347,,-98.4222,,,,0::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kswo.com/story/24342150/lpd-investigates-nightclub-shooting,64,32
93854,2014-01-01,Illinois,Quincy,600 block of College Street,0,2,http://www.gunviolencearchive.org/incident/93854,http://www.connecttristates.com/news/story.aspx,False,18,,,Shot - Wounded/Injured,39.9394,,-91.4067,,2 men in their 20s,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.connecttristates.com/news/story.aspx,94,47
92209,2014-01-01,North Carolina,Greensboro,800 Reid Street ,0,0,http://www.gunviolencearchive.org/incident/92209,http://www.news-record.com/news/article_66a82b4a-72f1-11e3-9c16-001a4bcf6878.html,False,12,,,"Shots Fired - No Injuries||Drive-by (car to street, car to car)",36.0633,,-79.7785,,,,0::Adult 18+,0::Female,,,0::Unharmed,0::Victim,http://www.news-record.com/news/article_66a82b4a-72f1-11e3-9c16-001a4bcf6878.html,58,28
92413,2014-01-01,New Jersey,Gloucester Township,Chestnut Avenue,0,0,http://www.gunviolencearchive.org/incident/92413,http://www.courierpostonline.com/article/20140101/CRIME/301010056/Two-16-year-olds-among-4-arrested-Glo-Twp-robbery-spree,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,39.8258,,-75.0659,,Same group committed second robbery shortly after.,,,,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Victim,http://www.courierpostonline.com/article/20140101/CRIME/301010056/Two-16-year-olds-among-4-arrested-Glo-Twp-robbery-spree,4,4
92744,2014-01-01,New Jersey,Mount Laurel,500 block of Diemer Drive,0,2,http://www.gunviolencearchive.org/incident/92744,http://www.courierpostonline.com/article/20140103/CRIME/301030055/Willingboro-teen-accused-pistol-whipping-2-juveniles,False,3,,,Armed robbery with injury/death and/or evidence of DGU found||Pistol-whipping,39.9168,,-74.9485,,Victims are juveniles.,2::19,0::Teen 12-17||1::Teen 12-17||2::Adult 18+,2::Male,2::Michael D. Haskin,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.courierpostonline.com/article/20140103/CRIME/301030055/Willingboro-teen-accused-pistol-whipping-2-juveniles,7,7
96365,2014-01-01,New Jersey,Belleville,Union Avenue,0,0,http://www.gunviolencearchive.org/incident/96365,http://www.northjersey.com/news/240142721_Arrest_made_in_armed_robbery_of_Belleville_gas_station.html,False,8,,,Armed robbery with injury/death and/or evidence of DGU found||Implied Weapon,40.7951,,-74.1562,,,1::23,0::Adult 18+||1::Teen 12-17,1::Male,1::Trevor Williams,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.northjersey.com/news/240142721_Arrest_made_in_armed_robbery_of_Belleville_gas_station.html,29,29
92339,2014-01-01,Washington,Seattle,26th and East Yesler,0,1,http://www.gunviolencearchive.org/incident/92339,http://seattletimes.com/html/localnews/2022578534_newyearsviolencexml.html,False,9,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)",47.6017,,-122.299,,,0::21,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://seattletimes.com/html/localnews/2022578534_newyearsviolencexml.html,37,37
92740,2014-01-01,New Jersey,Dover,Lincoln Avenue and McDavitt Place,0,1,http://www.gunviolencearchive.org/incident/92740,http://www.nj.com/morris/index.ssf/2014/01/man_robbed_at_gunpoint_in_dover_on_new_years_day_cops_say.html#incart_river,False,7,,,Armed robbery with injury/death and/or evidence of DGU found,40.884,,-74.5621,,,0::28,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.nj.com/morris/index.ssf/2014/01/man_robbed_at_gunpoint_in_dover_on_new_years_day_cops_say.html#incart_river,25,25
92334,2014-01-01,Washington,Seattle,South Holden,0,0,http://www.gunviolencearchive.org/incident/92334,http://www.king5.com/news/crime/Burglar-breaks-in-and-demands-items-from-homeowner-at-gunpoint-238386851.html,False,7,,,Home Invasion||Home Invasion - No death or injury||Armed robbery with injury/death and/or evidence of DGU found,47.5337,,-122.372,,,0::61,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Maabt Weldu,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.king5.com/news/crime/Burglar-breaks-in-and-demands-items-from-homeowner-at-gunpoint-238386851.html,34,34
92269,2014-01-01,Georgia,Columbus,5th Avenue,0,0,http://www.gunviolencearchive.org/incident/92269,http://www.ledger-enquirer.com/2014/01/02/2881963/court-living-room-arson-leads.html,False,2,,,Possession (gun(s) found during commission of other crimes),32.4763,,-84.9861,,,,,,,,,,http://www.ledger-enquirer.com/2014/01/02/2881963/court-living-room-arson-leads.html,135,15
92568,2014-01-01,Mississippi,Franklin,,0,0,http://www.gunviolencearchive.org/incident/92568,http://www.clarionledger.com/article/20140101/NEWS01/140101005/High-speed-chase-shots-fired-Franklin-County,False,2,,,Shots Fired - No Injuries||Officer Involved Incident,33.0363,,-90.0028,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.clarionledger.com/article/20140101/NEWS01/140101005/High-speed-chase-shots-fired-Franklin-County,47,24
92331,2014-01-01,New York,Poughkeepsie,551 Main Street,0,2,http://www.gunviolencearchive.org/incident/92331,http://www.midhudsonnews.com/News/2014/January/02/PokPD_2shot-02Jan14.htm,False,18,,,Shot - Wounded/Injured,41.7001,,-73.9158,,"""A short time later, one victim, a 35-year-old city resident, was located in the area of 6 Hammersley Avenue. Shortly thereafter, a second victim, a 42-year-old city resident, walked in Vassar Brothers Medical Center, with a gunshot wound.""",0::35||1::42,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.midhudsonnews.com/News/2014/January/02/PokPD_2shot-02Jan14.htm,104,41
95255,2014-01-01,Missouri,Springfield,3200 block of West Highland Street,0,0,http://www.gunviolencearchive.org/incident/95255,http://www.news-leader.com/apps/pbcs.dll/artikkel,False,7,,,Shots Fired - No Injuries,37.1446,,-93.3448,,,0::33||1::35,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Marcus Andrews||1::Iver L. Anthony,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.news-leader.com/apps/pbcs.dll/artikkel,133,30
92566,2014-01-01,Mississippi,Tupelo,Briar Ridge,0,1,http://www.gunviolencearchive.org/incident/92566,http://djournal.com/news/gas-station-shooting-injures-one/,False,1,,,Shot - Wounded/Injured,34.2409,,-88.6754,,Sprint Mart gas station,,0::Adult 18+,0::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://djournal.com/news/gas-station-shooting-injures-one/,16,6
92122,2014-01-01,Virginia,Falls Church,North Washington Street,0,0,http://www.gunviolencearchive.org/incident/92122,http://www.nbcwashington.com/news/local/Two-Sought-in-State-Theater-Robbery-238354161.html,False,8,,,Armed robbery with injury/death and/or evidence of DGU found,38.8847,,-77.1672,,,,,,,,0::Unharmed,0::Victim||1::Subject-Suspect,http://www.nbcwashington.com/news/local/Two-Sought-in-State-Theater-Robbery-238354161.html,53,35
94111,2014-01-01,South Carolina,Bucksport,,0,1,http://www.gunviolencearchive.org/incident/94111,http://www.myhorrynews.com/news/crime/article_4c8c5a3a-73cb-11e3-a100-001a4bcf6878.html,False,7,,,Shot - Wounded/Injured,33.8158,,-79.1228,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.myhorrynews.com/news/crime/article_4c8c5a3a-73cb-11e3-a100-001a4bcf6878.html,58,28
92211,2014-01-01,South Carolina,North Charleston,Ventura Street,1,0,http://www.gunviolencearchive.org/incident/92211,/www.thestate.com/2014/01/03/3188515/cops-name-sc-women-shot-to-death.html,False,6,,,"Shot - Dead (murder, accidental, suicide)",32.8458,,-80.0293,,,0::49,0::Adult 18+,0::Female,0::Debra Martin,,0::Killed,0::Victim,http://www.postandcourier.com/article/20140101/PC16/140109957/1180/new-year-begins-in-north-charleston-with-two-shootings-at-lea,111,41
92420,2014-01-01,Connecticut,New Haven,La Quinta Inn on Sergeant Drive,0,1,http://www.gunviolencearchive.org/incident/92420,http://www.boston.com/news/local/connecticut/2014/01/01/person-shot-head-new-haven-hotel/dYXW6GX2TcGd6fYSPEMYRP/story.html,False,3,,,Shot - Wounded/Injured,41.3083,,-72.9279,,,0::20,0::Adult 18+,0::Male,"0::Lloyd Streeter, Jr.",,0::Injured,0::Victim,http://www.boston.com/news/local/connecticut/2014/01/01/person-shot-head-new-haven-hotel/dYXW6GX2TcGd6fYSPEMYRP/story.html,96,11
92119,2014-01-01,Kentucky,Louisville,38th and Broadway,0,1,http://www.gunviolencearchive.org/incident/92119,http://www.whas11.com/news/local/Person-injured-after-shooting-at-38th-Broadway-Wednesday-morning-238356581.html,False,3,,,Shot - Wounded/Injured,38.2501,,-85.815,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.whas11.com/news/local/Person-injured-after-shooting-at-38th-Broadway-Wednesday-morning-238356581.html,,
92174,2014-01-01,Illinois,Chicago,100 block of West 105th St,0,4,http://www.gunviolencearchive.org/incident/92174,"http://www.chicagotribune.com/news/local/breaking/chi-2-charged-in-policeinvolved-new-years-shooting-20140104,0,4471903.story",False,2,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Brandishing/flourishing/open carry/lost/found,41.7035,,-87.6259,,All shots fired by officer. Family claims another victim. Police say three. One perpinitially reported a victim. Police charge him and one other.,3::25,0::Adult 18+||1::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Female||3::Male||4::Male,1::Michael Williamson||2::Kierra Williamson||3::Princeton Williamson||4::Michael C. Williamson,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Subject-Suspect||4::Subject-Suspect,"http://abclocal.go.com/wls/story||http://www.chicagotribune.com/news/local/breaking/chi-2-charged-in-policeinvolved-new-years-shooting-20140104,0,4471903.story",28,14
92207,2014-01-01,North Carolina,Winston-Salem,200 block of Pine Tree Road,0,0,http://www.gunviolencearchive.org/incident/92207,http://www.news-record.com/news/article_da5f271e-730a-11e3-9005-001a4bcf6878.html,False,12,,,Shots Fired - No Injuries||Officer Involved Incident,36.1459,,-80.251,,"suspect pulled gun, officer fired shot, perp ran away",1::24,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Sgt. D.T. Lentz||1::Tristan Marcel Martin Jr.,,"0::Unharmed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.news-record.com/news/article_da5f271e-730a-11e3-9005-001a4bcf6878.html,72,32
92135,2014-01-01,New York,Brooklyn,1461 Bushwick Ave,1,0,http://www.gunviolencearchive.org/incident/92135,http://breaking911.com/18-brooklyn-gang-members-indicted-for-shooting-up-streets-during-hunting-expeditions/,False,8,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Gang involvement",40.6838,Borinquen Memorial Funeral Home,-73.9075,1,Sshot in the chest following a fight over a girl at a party he had attended.,0::17,0::Teen 12-17,0::Male,0::Malik Bhola,,0::Killed,0::Victim,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394||https://www.dnainfo.com/new-york/20140101/bushwick/teenager-shot-dead-front-of-funeral-parlor-bushwick||http://breaking911.com/18-brooklyn-gang-members-indicted-for-shooting-up-streets-during-hunting-expeditions/,54,18
92129,2014-01-01,Oklahoma,Okmulgee County,19700 block of Sharp Road,0,2,http://www.gunviolencearchive.org/incident/92129,http://www.newson6.com/story/24342194/okmulgee-county-sheriff-investigates-double-shooting,False,2,,,Shot - Wounded/Injured||Possession of gun by felon or prohibited person,35.5711,,-96.0152,,,2::24,2::Adult 18+,2::Male,2::Andrew Eversole,,"0::Injured||1::Injured||2::Unharmed, Arrested",0::Victim||1::Victim||2::Subject-Suspect,http://www.newson6.com/story/24342194/okmulgee-county-sheriff-investigates-double-shooting,24,8
95279,2014-01-01,Alabama,Gadsden,1400 block of Jackson Avenue,0,1,http://www.gunviolencearchive.org/incident/95279,http://blog.al.com/east-alabama/2014/01/gadsden_woman_wounded_in_home.html,False,4,,,Shot - Wounded/Injured,34.0027,,-86.0355,,shot through wall of house,0::73,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://blog.al.com/east-alabama/2014/01/gadsden_woman_wounded_in_home.html,28,10
92266,2014-01-01,Georgia,Columbus,988 Farr Road,0,1,http://www.gunviolencearchive.org/incident/92266,http://www.ledger-enquirer.com/2014/02/17/2958344/police-woman-shot-burned-raped.html,False,2,,,Shot - Wounded/Injured||Sex crime involving firearm,32.433,,-84.9255,,,0::36||1::28||2::23||3::23,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Female||1::Male||2::Male||3::Male,1::Joey Betrail Garron||2::Robert Carl Johnson||3::Ketorie Glover,,0::Injured,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.ledger-enquirer.com/2014/01/02/2881516/farr-road-woman-in-critical-condition.html||http://www.ledger-enquirer.com/2014/02/17/2958344/police-woman-shot-burned-raped.html,136,15
219530,2014-01-01,Pennsylvania,Philadelphia,Adams Avenue and Tabor Avenue,0,1,http://www.gunviolencearchive.org/incident/219530,http://guncrisis.org/2014/01/03/philadelphias-first-homicide-victims-of-2014-found-in-burning-home-both-shot-in-the-head/,False,13,,,Shot - Wounded/Injured,40.0331,,-75.1069,,Crescentville and Olney section/region of city,0::34,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://guncrisis.org/2014/01/03/philadelphias-first-homicide-victims-of-2014-found-in-burning-home-both-shot-in-the-head/,,
95286,2014-01-01,Iowa,Fort Dodge,648 Fourth Ave. N.,0,0,http://www.gunviolencearchive.org/incident/95286,http://www.messengernews.net/page/content.detail/id/572223/Police--shots-fired-on-New-Year-s-Day.html,False,4,0::Unknown,0::Unknown,Shots Fired - No Injuries,42.5085,,-94.1894,1,"bullets entered home, bullet strikes car",,0::Adult 18+,,,,0::Unharmed,0::Subject-Suspect,http://www.messengernews.net/page/content.detail/id/572223/Police--shots-fired-on-New-Year-s-Day.html,9,5
92405,2014-01-01,New Jersey,Toms River,"Route 9, Toms River Ramada Inn",0,3,http://www.gunviolencearchive.org/incident/92405,http://www.nj.com/ocean/index.ssf/2014/01/toms_river_police_investigate_shooting_at_ramada_inn_injured.html#incart_river_default,False,14,,,Shot - Wounded/Injured,34.2514,,-85.4531,,"Chaotic scene at large New Year's Eve party, little information available.",,0::Adult 18+||1::Adult 18+||2::Adult 18+,,,,0::Injured||1::Injured||2::Injured,0::Victim||1::Victim||2::Victim,http://www.nj.com/ocean/index.ssf/2014/01/toms_river_police_investigate_shooting_at_ramada_inn_injured.html#incart_river_default,12,52
92292,2014-01-01,Indiana,Fort Wayne,4815 block of Reed Street,0,3,http://www.gunviolencearchive.org/incident/92292,http://journalgazette.net/article/20140103/LOCAL07/301039980/1002/LOCAL,False,3,,,Shot - Wounded/Injured,41.04,,-85.1163,,Men at a party were shot when they stepped outside.,0::21||1::19||2::17,0::Adult 18+||1::Adult 18+||2::Teen 12-17,0::Male||1::Male||2::Male,,,0::Injured||1::Injured||2::Injured,0::Victim||1::Victim||2::Victim,http://journalgazette.net/article/20140102/LOCAL/301029973/0/FRONTPAGE||http://journalgazette.net/article/20140103/LOCAL07/301039980/1002/LOCAL,80,15
108870,2014-01-01,Alaska,Tanana,,0,0,http://www.gunviolencearchive.org/incident/108870,http://www.newsminer.com/news/local_news/internet-tv-lost-in-tanana-as-new-year-s-revelers/article_72cc4f80-79ab-11e3-b9da-001a4,False,1,,,"Shots fired, no action (reported, no evidence found)",65.3198,,-151.89,,,,,,,,,,http://www.newsminer.com/news/local_news/internet-tv-lost-in-tanana-as-new-year-s-revelers/article_72cc4f80-79ab-11e3-b9da-001a4,39,
92469,2014-01-01,Arkansas,Little Rock,1624 College Street,0,0,http://www.gunviolencearchive.org/incident/92469,http://www.arkansasonline.com/news/2014/jan/02/lr-man-hog-tied-robbed-wallet-and-cellphone-new-ye/,False,2,,,Home Invasion||Home Invasion - No death or injury||Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,34.7314,,-92.259,,,0::48,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::Gregory Dobbins,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.arkansasonline.com/news/2014/jan/02/lr-man-hog-tied-robbed-wallet-and-cellphone-new-ye/,36,30
92839,2014-01-01,Louisiana,New Orleans,2100 block of North Rampart,0,0,http://www.gunviolencearchive.org/incident/92839,http://www.nola.com/crime/index.ssf/2014/01/police_identify_suspect_in_mar.html#incart_river,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,29.9674,,-90.0581,,,0::24,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Michael Davis,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.wwltv.com/news/crime/NOPD-2-men-wanted-for-several-armed-robberies-in-Marigny-238603171.html||http://www.nola.com/crime/index.ssf/2014/01/police_identify_suspect_in_mar.html#incart_river,99,4
92288,2014-01-01,North Carolina,Greenville,2315 East 10th Street,0,1,http://www.gunviolencearchive.org/incident/92288,http://www.witn.com/home/headlines/One-Person-Injured-In-Greenville-Shooting-238391611.html,False,3,,,Shot - Wounded/Injured,35.6029,,-77.3481,,,0::25,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::Blake Shackelford,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.witn.com/home/headlines/One-Person-Injured-In-Greenville-Shooting-238391611.html,9,7
108869,2014-01-01,Arizona,Douglas,200 block of 10th,0,0,http://www.gunviolencearchive.org/incident/108869,http://www.douglasdispatch.com/news/article_3dc57804-788c-11e3-8cfe-0019bb2963f4.html,False,2,,,"Shots fired, no action (reported, no evidence found)",31.3445,,-109.557,,,,,,,,,,http://www.douglasdispatch.com/news/article_3dc57804-788c-11e3-8cfe-0019bb2963f4.html,14,14
92456,2014-01-01,Alabama,Huntsville,4170 University Drive,0,0,http://www.gunviolencearchive.org/incident/92456,http://blog.al.com/breaking/2014/01/huntsville_thrift_store_employ.html#incart_river,False,5,,,Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found||Defensive Use,34.735,,-86.6314,,Thrift Mart armed robbery attempt,,0::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://blog.al.com/breaking/2014/01/huntsville_thrift_store_employ.html#incart_river,53,2
92836,2014-01-01,Louisiana,New Orleans,1000 block of Frenchmen Street,0,0,http://www.gunviolencearchive.org/incident/92836,http://www.nola.com/crime/index.ssf/2014/01/police_identify_suspect_in_mar.html#incart_river,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,29.9861,,-90.0595,,,3::24,3::Adult 18+||4::Adult 18+,3::Male||4::Male,3::Michael Davis,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect||4::Subject-Suspect,http://www.wwltv.com/news/crime/NOPD-2-men-wanted-for-several-armed-robberies-in-Marigny-238603171.html||http://www.nola.com/crime/index.ssf/2014/01/police_identify_suspect_in_mar.html#incart_river,97,4
92225,2014-01-01,Alabama,Huntsville,3900 block of Neptune Drive,0,0,http://www.gunviolencearchive.org/incident/92225,http://blog.al.com/breaking/2014/01/huntsville_police_investigatin_102.html#incart_river_default,False,5,,,Home Invasion||Home Invasion - No death or injury,34.7954,,-86.6138,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Male||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://blog.al.com/breaking/2014/01/huntsville_police_investigatin_102.html#incart_river_default,19,1
95271,2014-01-01,Colorado,Denver,4200 block of Cook Street ,0,1,http://www.gunviolencearchive.org/incident/95271,http://www.denverpost.com/news/ci_24828566/denver-teen-age-girl-shot-hand-during-new,False,1,,,Shot - Wounded/Injured,39.7751,,-104.948,,,0::15||1::22,0::Teen 12-17||1::Adult 18+,0::Female||1::Male,1::Walter Moore,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.denverpost.com/news/ci_24828566/denver-teen-age-girl-shot-hand-during-new,5,34
92434,2014-01-01,Connecticut,Cromwell,Crowne Plaza Hotel on Berlin Road,0,1,http://www.gunviolencearchive.org/incident/92434,http://www.wfsb.com/story/24340324/cromwell-hotel-shooting-remains-under-investigation,False,1,,,Shot - Wounded/Injured,41.6024,,-72.6964,,,,,,,,0::Injured,0::Victim,http://www.wfsb.com/story/24340324/cromwell-hotel-shooting-remains-under-investigation,32,9
92828,2014-01-01,Mississippi,Newton,,1,0,http://www.gunviolencearchive.org/incident/92828,http://www.sunherald.com/2014/01/03/5231153/arrest-made-in-newton-county-death.html,False,3,,,"Shot - Dead (murder, accidental, suicide)",32.3157,,-89.1528,,,0::27||1::30,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Tyrone Walters||1::Robert Payne,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.sunherald.com/2014/01/03/5231153/arrest-made-in-newton-county-death.html,84,31
92221,2014-01-01,Alabama,Birmingham,3200 block of Wesley Avenue,1,0,http://www.gunviolencearchive.org/incident/92221,http://www.myfoxal.com/story/24341390/man-shot-killed-following-dispute-between-2-couples-in-birmingham,False,7,,,"Shot - Dead (murder, accidental, suicide)",33.4717,,-86.8846,,,0::36,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Desmond Bias,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.myfoxal.com/story/24341390/man-shot-killed-following-dispute-between-2-couples-in-birmingham,52,18
95268,2014-01-01,Ohio,Columbus,,0,0,http://www.gunviolencearchive.org/incident/95268,http://www.abc6onyourside.com/shared/news/features/top-stories/stories/wsyx_bullet-goes-through-columbus-home-during-celebratory,False,12,,,Shots Fired - No Injuries,40.1015,,-83.0127,,bullets entered home,,0::Adult 18+,0::Male,0::Dan Petty,,0::Unharmed,0::Victim,http://www.abc6onyourside.com/shared/news/features/top-stories/stories/wsyx_bullet-goes-through-columbus-home-during-celebratory,21,16
92373,2014-01-01,Maryland,Baltimore,900 block of Edmondson Ave.,2,0,http://www.gunviolencearchive.org/incident/92373,"http://www.baltimoresun.com/news/maryland/crime/blog/bal-two-men-shot-one-fatally-in-southwest-baltimore-20140101,0,5843202.stor",False,7,,,"Shot - Dead (murder, accidental, suicide)",39.2766,,-76.7403,,"Victims were father/son, perpetrator is unknown person.",0::48||1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Frank Anthony Turner||1::Anthony Dionne Turner,,0::Killed||1::Killed,0::Victim||1::Victim||2::Subject-Suspect,"http://www.baltimoresun.com/news/maryland/crime/blog/bal-two-men-shot-one-fatally-in-southwest-baltimore-20140101,0,5843202.stor",12,12
92607,2014-01-01,Michigan,Detroit,10500 block Wayburn ,0,1,http://www.gunviolencearchive.org/incident/92607,http://www.detroitnews.com/article/20140103/METRO01/301030073/1409/METRO/Detroit-starts-off-new-year-eight-killings-20-shootings,False,14,,,Shot - Wounded/Injured,42.4142,,-82.9582,,,,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://www.detroitnews.com/article/20140103/METRO01/301030073/1409/METRO/Detroit-starts-off-new-year-eight-killings-20-shootings,3,1
92162,2014-01-01,California,Los Angeles,6800 block of North Figueroa Street,0,1,http://www.gunviolencearchive.org/incident/92162,http://www.nbclosangeles.com/news/local/Man-Injured-by-New-Years-Eve-Gunfire-238351311.html ,False,34,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury,34.1259,,-118.186,,New Years celebratory gunfire,0::30,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://highlandpark-ca.patch.com/groups/police-and-fire/p/man-struck-by-bullets-during-new-years-celebration,51,24
94637,2014-01-01,Georgia,Atlanta,East Lake,0,0,http://www.gunviolencearchive.org/incident/94637,http://www.ajc.com/news/news/suspect-in-marta-station-armed-robbery-arrested/ncdkp/,False,5,,,Armed robbery with injury/death and/or evidence of DGU found,33.7475,,-84.3003,,,0::18,0::Adult 18+,0::Male,0::Clifton Spann,,0::Unharmed,0::Subject-Suspect,http://www.ajc.com/news/news/suspect-in-marta-station-armed-robbery-arrested/ncdkp/,83,42
92363,2014-01-01,Kansas,Saint Marys,,1,0,http://www.gunviolencearchive.org/incident/92363,http://www.ksn.com/news/kansas/man-shot-to-death-in-pottawatomie-county,False,1,,,"Shot - Dead (murder, accidental, suicide)",39.2056,,-96.068,,,0::24||1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Levi W. Bishop||1::Pablo Alberto Gonzalez,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.ksn.com/news/kansas/man-shot-to-death-in-pottawatomie-county,61,18
92602,2014-01-01,Michigan,Detroit,12000 block of St. Patrick ,2,2,http://www.gunviolencearchive.org/incident/92602,http://www.detroitnews.com/article/20140103/METRO01/301030073/1409/METRO/Detroit-starts-off-new-year-eight-killings-20-shootings,False,13,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Domestic Violence",42.3484,,-83.0597,,,0::37||1::42||2::37||3::42,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Female||2::Male||3::Female,,,0::Killed||1::Injured||2::Killed||3::Injured,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect,http://www.detroitnews.com/article/20140103/METRO01/301030073/1409/METRO/Detroit-starts-off-new-year-eight-killings-20-shootings,6,1
92156,2014-01-01,Louisiana,Shreveport,2600 block of Lillian Street,0,1,http://www.gunviolencearchive.org/incident/92156,http://www.shreveporttimes.com/article/20140101/NEWS05/301010038/Shreveport-Police-investigate-first-shooting-2014,False,4,,,Shot - Wounded/Injured,32.4921,,-93.7789,,,,0::Adult 18+,0::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.shreveporttimes.com/article/20140101/NEWS05/301010038/Shreveport-Police-investigate-first-shooting-2014,2,39
92139,2014-01-01,New York,Staten Island,Park Hill Ave.,0,1,http://www.gunviolencearchive.org/incident/92139,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,False,11,,,Shot - Wounded/Injured,40.6155,,-74.0816,,,0::21,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,61,23
92133,2014-01-01,New York,Brooklyn,Sumpter St.,0,1,http://www.gunviolencearchive.org/incident/92133,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,False,8,,,Shot - Wounded/Injured,40.6804,,-73.9167,,,0::32,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,55,25
94476,2014-01-01,New Jersey,Bridgeton,200 block of East Avenue,0,0,http://www.gunviolencearchive.org/incident/94476,http://www.pressofatlanticcity.com/news/breaking/police-seek-two-suspects-in-bridgeton-carjacking/article_01adcee6-73ed-11e3-8f4,False,2,,,Shots Fired - No Injuries||Car-jacking,39.4284,,-75.2254,,,0::36,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::Darryl Hubert,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.pressofatlanticcity.com/news/breaking/police-seek-two-suspects-in-bridgeton-carjacking/article_01adcee6-73ed-11e3-8f4,3,3
92587,2014-01-01,Illinois,Chicago,1100 block of West Ardmore Av,0,0,http://www.gunviolencearchive.org/incident/92587,"http://www.chicagotribune.com/news/local/breaking/chi-cops-man-hijacks-car-forces-woman-to-call-fianc-for-cash-20140102,0,498858",False,9,,,Car-jacking,41.9873,,-87.6582,,"'Indicated' he had a gun, carjacked/tried to rob victim, forced her to call fiance, ran from cops/apprehended.",0::18||1::18,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::Broderick Epps,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.chicagotribune.com/news/local/breaking/chi-cops-man-hijacks-car-forces-woman-to-call-fianc-for-cash-20140102,0,498858",14,7
92360,2014-01-01,Colorado,Colorado Springs,Michelle Court,1,0,http://www.gunviolencearchive.org/incident/92360,http://gazette.com/man-arrested-after-new-years-day-fatal-shooting-in-colorado-springs/article/1511890,False,5,,,"Shot - Dead (murder, accidental, suicide)",38.814,,-104.749,,,0::19||1::30,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Matthew John DeJong,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://gazette.com/man-arrested-after-new-years-day-fatal-shooting-in-colorado-springs/article/1511890,17,11
93431,2014-01-01,Texas,Hebbronville,,0,1,http://www.gunviolencearchive.org/incident/93431,http://www.kiiitv.com/story/24344562/stray-bullet-injuries-woman,False,15,,,Shot - Wounded/Injured,27.3034,,-98.6823,,Stray bullet injures woman.,0::48,0::Adult 18+,0::Female,0::Maria Eugenia Perez,,0::Injured,0::Victim,http://www.kiiitv.com/story/24344562/stray-bullet-injuries-woman,31,21
92307,2014-01-01,Wisconsin,Milwaukee,4700 block of N. 50th St,0,1,http://www.gunviolencearchive.org/incident/92307,http://www.jsonline.com/news/crime/fatal-shooting-brings-2013-c-homicide-tally-to-106-b99175576z1-238380301.html,False,4,,,Shot - Wounded/Injured,43.1027,,-87.9752,,"Victim shot by known perps/1 arrested, others at large.",0::28,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.jsonline.com/news/crime/fatal-shooting-brings-2013-c-homicide-tally-to-106-b99175576z1-238380301.html,17,6
92519,2014-01-01,Tennessee,Humboldt,,0,0,http://www.gunviolencearchive.org/incident/92519,http://www.wbbjtv.com/news/local/Shots-Fired-in-Humboldt-Man-Arrested-238604441.html,False,8,,,Shots Fired - No Injuries,35.8255,,-88.9093,,gunfire ringing in New Year,0::26,0::Adult 18+,0::Male,0::Justin David Glasper,,0::Unharmed,0::Subject-Suspect,http://www.wbbjtv.com/news/local/Shots-Fired-in-Humboldt-Man-Arrested-238604441.html,79,24
95244,2014-01-01,Virginia,Chesapeake,405 Shell Rd,0,0,http://www.gunviolencearchive.org/incident/95244,http://wtkr.com/2014/01/02/bullet-goes-through-chesapeake-church-on-new-years-day/,False,4,,,Shots Fired - No Injuries,36.7515,,-76.3443,,Rehoboth AME Church roof shot,,,,,,,0::Victim,http://wtkr.com/2014/01/02/bullet-goes-through-chesapeake-church-on-new-years-day/,81,14
92251,2014-01-01,Ohio,Cleveland,12108 Marne Av,0,1,http://www.gunviolencearchive.org/incident/92251,http://fox8.com/2014/01/01/police-landlord-arrested-for-shooting-tenant/,False,9,,,Shot - Wounded/Injured,41.4515,,-81.7724,,"Victim and his landlord went drinking together, got into a fight, the landlord shot the tenant.",0::50,0::Adult 18+||1::Adult 18+,0::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://fox8.com/2014/01/01/police-landlord-arrested-for-shooting-tenant/,13,23
217091,2014-01-01,Arizona,Phoenix,3400 E Sky Harbor Blvd,0,0,http://www.gunviolencearchive.org/incident/217091,http://blog.tsa.gov/2014_01_03_archive.html,False,7,,,TSA Action,33.4347,,-112.006,,Phoenix Sky Harbor International Airport,,,,,,,,http://blog.tsa.gov/2014_01_03_archive.html,27,27
92512,2014-01-01,Florida,Riviera Beach,1141 West 31st Street,1,1,http://www.gunviolencearchive.org/incident/92512,http://www.wptv.com/dpp/news/region_c_palm_beach_county/riviera_beach/riviera-beach-police-investigating-double-homicide-on-west,False,20,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Domestic Violence",26.7875,,-80.0714,,,0::27||1::29||2::25,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Female||2::Male,0::Kelvin Paulk||1::Rackelle Hutchins||2::Jared Govan,,0::Killed||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.wptv.com/dpp/news/region_c_palm_beach_county/riviera_beach/riviera-beach-police-investigating-double-homicide-on-west,88,27
95236,2014-01-01,Texas,San Antonio,9200 block of West Alametos,0,1,http://www.gunviolencearchive.org/incident/95236,http://www.woai.com/articles/woai-local-news-119078/girl-wounded-by-stray-bullet-a-11937703/,False,20,,,Shot - Wounded/Injured,29.4769,,-98.513,,,0::9,0::Child 0-11,0::Female,,,0::Injured,0::Victim,http://www.woai.com/articles/woai-local-news-119078/girl-wounded-by-stray-bullet-a-11937703/,123,26
92248,2014-01-01,Virginia,Russell County,Gravel Lick ,1,0,http://www.gunviolencearchive.org/incident/92248,http://www.wcyb.com/news/new-facts-suspect-charged-in-deadly-russell-county-shooting/-/14590844/23738496/-/gjpx0hz/-/index.html,False,9,,,"Shot - Dead (murder, accidental, suicide)",36.9303,,-82.2722,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Ricky Allen Holbrook ||1::Carlos Crabtree Junior,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wcyb.com/news/new-facts-suspect-charged-in-deadly-russell-county-shooting/-/14590844/23738496/-/gjpx0hz/-/index.html,4,38
165411,2014-01-01,Texas,Corpus Christi,4600 block of Valdez,0,1,http://www.gunviolencearchive.org/incident/165411,http://ccpdblotter.com/2014/01/01/new-years-day-aggravated-assault/,False,27,,,Shot - Wounded/Injured||Domestic Violence,27.7515,,-97.4432,,Corpus Christi police investigating this,0::42||1::27,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Ashley Howze,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://ccpdblotter.com/2014/01/01/new-years-day-aggravated-assault/,34,20
92400,2014-01-01,New Jersey,Jersey City,Monticello and Jewett Avenues,0,1,http://www.gunviolencearchive.org/incident/92400,http://www.nj.com/hudson/index.ssf/2014/01/retired_jersey_city_cops_charged_with_attempted_murder_in_bar_shooting.html#incart_m-,False,10,,,Shot - Wounded/Injured,40.7214,,-74.0701,,"Corley is the ""former chief of staff to ex-Jersey City Police Director Sam Jefferson.""",0::41||1::63,0::Adult 18+||1::Adult 18+,0::Male||1::Male,"1::James D. Corley, Jr.",,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nj.com/hudson/index.ssf/2014/01/retired_jersey_city_cops_charged_with_attempted_murder_in_bar_shooting.html#incart_m-,31,31
93422,2014-01-01,Texas,Harker Heights,300 block of East Central Texas Expressway,0,0,http://www.gunviolencearchive.org/incident/93422,http://kdhnews.com/news/crime/police-armed-man-robs-heights-smoke-shop/article_aad49b78-73c8-11e3-bd1b-0019bb30f31a.html,False,31,,,Armed robbery with injury/death and/or evidence of DGU found,31.0843,,-97.6373,,Local smokeshop robbed at gunpoint.,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://kdhnews.com/news/crime/police-armed-man-robs-heights-smoke-shop/article_aad49b78-73c8-11e3-bd1b-0019bb30f31a.html,54,24
289294,2014-01-01,New York,Niagara Falls,Memorial Parkway,0,0,http://www.gunviolencearchive.org/incident/289294,http://www.buffalonews.com/city-region/niagara-falls/falls-man-sentenced-to-five-years-for-two-shooting-attempts-20150205,False,26,,,Shots Fired - No Injuries||Non-Shooting Incident,43.0889,,-79.0488,,shooting occurred in alley,0::20,0::Adult 18+,0::Male,0::Lester M Streeter,,"0::Unharmed, Arrested",0::Subject-Suspect,http://www.buffalonews.com/city-region/niagara-falls/falls-man-sentenced-to-five-years-for-two-shooting-attempts-20150205,145,62
92243,2014-01-01,Virginia,Chesapeake,3800 block of Schooner Trail,0,1,http://www.gunviolencearchive.org/incident/92243,http://hamptonroads.com/2014/01/man-injured-chesapeake-shooting-police-say,False,4,,,Shot - Wounded/Injured,36.7987,,-76.3975,,,0::27,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://hamptonroads.com/2014/01/man-injured-chesapeake-shooting-police-say,77,5
92397,2014-01-01,Pennsylvania,Morrisville,Wellington Woods Apartments along Sweetbriar Road,0,1,http://www.gunviolencearchive.org/incident/92397,http://philadelphia.cbslocal.com/2014/01/01/man-critical-after-shooting-at-new-years-eve-party-in-bucks-county/,False,8,,,Shot - Wounded/Injured,40.2138,,-74.8426,,,0::23,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://philadelphia.cbslocal.com/2014/01/01/man-critical-after-shooting-at-new-years-eve-party-in-bucks-county/,,
93235,2014-01-01,Texas,Fort Worth,6800 block of the S. Freeway Service Road,0,1,http://www.gunviolencearchive.org/incident/93235,http://www.wfaa.com/news/local/Tow-truck-driver-shot-in-Fort-Worth-while-assisting-stranded-motorist-238375781.html,False,12,,,Shot - Wounded/Injured,32.8671,,-97.3165,,Tow truck driver shot while assisting stranded motorists,1::26,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Shane Crowson,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wfaa.com/news/local/Tow-truck-driver-shot-in-Fort-Worth-while-assisting-stranded-motorist-238375781.html,93,9
92202,2014-01-01,Virginia,Newport News,11975 Jefferson Avenue,0,1,http://www.gunviolencearchive.org/incident/92202,http://www.inquisitr.com/1080150/new-years-day-chaos-in-newport-news-fatal-crash-child-shot/,False,2,,,Shot - Wounded/Injured,37.0959,,-76.4894,,P.U.R. LUX club,0::20,0::Adult 18+,0::Male,,,0::Injured,0::Victim,"http://www.dailypress.com/news/breaking/dp-newport-news-two-wounded-by-gunfire-in-early-hours-of-2014-20140101,0,7297458.story||http://www.inquisitr.com/1080150/new-years-day-chaos-in-newport-news-fatal-crash-child-shot/",94,1
95620,2014-01-01,Massachusetts,Lynn, Congress Street,0,1,http://www.gunviolencearchive.org/incident/95620,http://www.itemlive.com/news/police-investigating-shooting-on-curwin-circle-lynn/article_ce72d9aa-7bd4-11e3-b9a6-001a4bcf887a.ht,False,6,,,Shot - Wounded/Injured,42.4684,,-70.9617,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.itemlive.com/news/police-investigating-shooting-on-curwin-circle-lynn/article_ce72d9aa-7bd4-11e3-b9a6-001a4bcf887a.ht,,
92311,2014-01-01,Wisconsin,West Allis,1100 block of S. 62nd St,0,0,http://www.gunviolencearchive.org/incident/92311,http://www.jsonline.com/newswatch/239266641.html,False,5,,,Domestic Violence||Possession (gun(s) found during commission of other crimes)||Brandishing/flourishing/open carry/lost/found,43.0199,,-87.9896,,Disturbance involving man with gun. Police talked down and disarmed him. Numerous charges including poss. firearm while intoxicated.,0::33,0::Adult 18+,0::Male,0::Joshua R. Jashinski,,0::Unharmed,0::Subject-Suspect,http://www.jsonline.com/news/west-allis-police-arrest-man-after-standoff-at-home-b99175790z1-238395401.html||http://www.jsonline.com/newswatch/239266641.html,7,3
92677,2014-01-01,Maryland,Baltimore,5100 block of Queensberry Avenue,0,1,http://www.gunviolencearchive.org/incident/92677,http://foxbaltimore.com/news/features/top-stories/stories/new-years-day-nonfatal-shooting-near-pimlico-race-course-24370.shtml#.,False,7,,,Shot - Wounded/Injured,39.3499,,-76.6721,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://foxbaltimore.com/news/features/top-stories/stories/new-years-day-nonfatal-shooting-near-pimlico-race-course-24370.shtml#.,41,41
92200,2014-01-01,Virginia,Newport News,1100 block of 27th Street,0,1,http://www.gunviolencearchive.org/incident/92200,http://hamptonroads.com/2014/01/man-charged-shooting-child-6-newport-news,False,3,,,Shot - Wounded/Injured||Accidental Shooting||Accidental/Negligent Discharge,36.9875,,-76.4097,,child injured by stray gunfire,0::6||1::21,0::Child 0-11||1::Adult 18+,1::Male,1::Dametrey Boone,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.dailypress.com/news/breaking/dp-newport-news-two-wounded-by-gunfire-in-early-hours-of-2014-20140101,0,7297458.story||http://hamptonroads.com/2014/01/man-charged-shooting-child-6-newport-news",95,2
95290,2014-01-01,Nevada,Las Vegas,N Las Vegas,0,0,http://www.gunviolencearchive.org/incident/95290,http://www.8newsnow.com/story/24352250/nlv-police-2-houses-hit-by-celebratory-gunfire,False,4,,,Shots Fired - No Injuries,36.1989,,-115.118,,bullets entered home,,,,,,,,http://www.8newsnow.com/story/24352250/nlv-police-2-houses-hit-by-celebratory-gunfire,6,4
92309,2014-01-01,Wisconsin,Milwaukee,1400 block of S. 11th St,0,1,http://www.gunviolencearchive.org/incident/92309,http://www.jsonline.com/news/crime/fatal-shooting-brings-2013-c-homicide-tally-to-106-b99175576z1-238380301.html,False,4,,,,43.0169,,-87.9252,,"Victim talking to known person, when shot by 'unknown person'.",0::33,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.jsonline.com/news/crime/fatal-shooting-brings-2013-c-homicide-tally-to-106-b99175576z1-238380301.html,8,3
92672,2014-01-01,Maryland,Baltimore,5900 block of Edna Avenue,0,1,http://www.gunviolencearchive.org/incident/92672,http://www.foxbaltimore.com/news/features/top-stories/stories/nonfatal-shooting-ne-baltimore-wednesday-night-24378.shtml#.UsdzMr,False,3,,,Shot - Wounded/Injured,39.3542,,-76.5553,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.foxbaltimore.com/news/features/top-stories/stories/nonfatal-shooting-ne-baltimore-wednesday-night-24378.shtml#.UsdzMr,45,45
92197,2014-01-01,Virginia,Newport News,32nd Street and Marshall Avenue,0,1,http://www.gunviolencearchive.org/incident/92197,"http://www.dailypress.com/news/breaking/dp-newport-news-two-wounded-by-gunfire-in-early-hours-of-2014-20140101,0,7297458.story",False,3,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found,36.9881,,-76.4185,,,0::24,0::Adult 18+,0::Male,,,0::Injured,0::Victim||1::Subject-Suspect,"http://www.dailypress.com/news/breaking/dp-newport-news-two-wounded-by-gunfire-in-early-hours-of-2014-20140101,0,7297458.story",95,2
165408,2014-01-01,Texas,Corpus Christi,5441 Everhart Rd.,0,0,http://www.gunviolencearchive.org/incident/165408,http://ccpdblotter.com/2014/01/02/patrol-report-january-2-2014/,False,27,,,Armed robbery with injury/death and/or evidence of DGU found||Implied Weapon||Institution/Group/Business,27.7097,,-97.3873,,"ar, Corpus Christi police investigating",0::36,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://ccpdblotter.com/2014/01/02/patrol-report-january-2-2014/,32,20
97866,2014-01-01,Louisiana,Walker,12178 Village Drive,1,0,http://www.gunviolencearchive.org/incident/97866,http://www.wafb.com/story/24490999/six-domestic-homicides-already-reported-in-2014,False,6,,,"Shot - Dead (murder, accidental, suicide)||Domestic Violence",30.4817,,-90.8615,,Boy shot and killed his mother.,0::34||1::17,0::Adult 18+||1::Teen 12-17,0::Female||1::Male,0::Tamila Wooley||1::Eddie Robert Islan,1::Family,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.wafb.com/story/24490999/six-domestic-homicides-already-reported-in-2014,95,13
94486,2014-01-01,New Jersey,Bridgeton,100 block of Irving Avenue,0,0,http://www.gunviolencearchive.org/incident/94486,http://www.pressofatlanticcity.com/news/breaking/police-investigate-two-more-home-invasions-in-bridgeton/article_1549755c-73ef-1,False,2,,,Home Invasion||Home Invasion - No death or injury||Armed robbery with injury/death and/or evidence of DGU found,39.4339,,-75.2276,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Subject-Suspect||1::Subject-Suspect||2::Subject-Suspect,http://www.pressofatlanticcity.com/news/breaking/police-investigate-two-more-home-invasions-in-bridgeton/article_1549755c-73ef-1,3,3
92160,2014-01-01,Oklahoma,Chelsea,13650 S. 425 Road,1,0,http://www.gunviolencearchive.org/incident/92160,http://www.ok.gov/osbi/Press_Room/2014_Press_Releases/PR-2014-01-01_POLICE-INVOLVED_SHOOTING_VICTIM_IDENTIFIED.html,False,4,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed",35.2517,,-97.495,,Mayes County,0::33,0::Adult 18+,,0::Shane Bridges,,0::Killed,0::Victim,"http://kfor.com/2014/01/01/officer-involved-shooting-leads-to-an-oklahoma-mans-death/||http://en.wikipedia.org/wiki/List_of_killings_by_law_enforcement_officers_in_the_United_States,_January_2014||http://www.ok.gov/osbi/Press_Room/2014_Press_Releases/PR-2014-01-01_POLICE-INVOLVED_SHOOTING_VICTIM_IDENTIFIED.html",46,15
92230,2014-01-01,Virginia,Richmond,4027 W. Broad St.,0,0,http://www.gunviolencearchive.org/incident/92230,http://www.timesdispatch.com/news/latest-news/police-looking-for-richmond-gas-station-robber/article_3715e2a2-726d-11e3-b75c-001,False,7,,,Armed robbery with injury/death and/or evidence of DGU found,37.5724,,-77.4825,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.timesdispatch.com/news/latest-news/police-looking-for-richmond-gas-station-robber/article_3715e2a2-726d-11e3-b75c-001,68,10
141405,2014-01-01,Indiana,Fort Wayne,800 Growth Avenue,0,1,http://www.gunviolencearchive.org/incident/141405,http://www.fortwayne.com/apps/pbcs.dll/article,False,3,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Possession (gun(s) found during commission of other crimes)||Brandishing/flourishing/open carry/lost/found,41.0799,,-85.1645,,"CORRECT JAN DATE UNKNOWN - Child left alone w/loaded gun. Dropped, shot/leg.",0::3||1::24,0::Child 0-11||1::Adult 18+,0::Female||1::Male,1::Rojelio Rubalcada,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.fortwayne.com/apps/pbcs.dll/article,81,16
92386,2014-01-01,California,Bakersfield,3510 Wible Rd,0,2,http://www.gunviolencearchive.org/incident/92386,http://www.turnto23.com/news/local-news/two-people-shot-inside-southwest-bakersfield-business,False,23,,,Shot - Wounded/Injured,35.3229,,-119.038,,,0::28||1::28,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Timothy Langston||1::Darryl Ford,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.turnto23.com/news/local-news/two-people-shot-inside-southwest-bakersfield-business,34,16
92924,2014-01-01,Illinois,Springfield,1801 S. 11th St,0,0,http://www.gunviolencearchive.org/incident/92924,http://www.sj-r.com/article/20140102/NEWS/140109979/10513/NEWS,False,13,,,Armed robbery with injury/death and/or evidence of DGU found,39.7827,,-89.6411,,Seven Brothers Grocery robbed by perp at gunpoint. At large,,0::Adult 18+||1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.sj-r.com/article/20140102/NEWS/140109979/10513/NEWS,96,48
92228,2014-01-01,Arkansas,Pine Bluff,2300 block of Port Road,0,1,http://www.gunviolencearchive.org/incident/92228,http://www.thv11.com/news/crime/293574/370/Man-wanted-in-New-Years-Day-shooting-in-Pine-Bluff,False,4,,,Shot - Wounded/Injured,34.2291,,-91.9779,,,1::26,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Ronald Maxwell Jr.,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.katv.com/story/24341851/pine-bluff-man-shot-in-leg-suspect-in-custody||http://www.thv11.com/news/crime/293574/370/Man-wanted-in-New-Years-Day-shooting-in-Pine-Bluff,16,25
121881,2014-01-01,Minnesota,Rochester,5032 25th Ave. N.W,0,0,http://www.gunviolencearchive.org/incident/121881,http://www.postbulletin.com/news/crime/rochester-man-charged-with-assault-threats-opts-for-trial/article_509f21b8-312a-53fe-ad9c,False,1,,,Domestic Violence||Brandishing/flourishing/open carry/lost/found,44.0737,,-92.5004,,"Man threatens g/f, her friend and 2 children with a gun.",4::37,2::Child 0-11||3::Child 0-11||4::Adult 18+,0::Female||1::Female,4::Brandon Wayne Murray,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.postbulletin.com/news/crime/rochester-man-charged-with-assault-threats-opts-for-trial/article_509f21b8-312a-53fe-ad9c,,25
92376,2014-01-01,Alaska,Anchorage,Woburn Circle ,0,1,http://www.gunviolencearchive.org/incident/92376,http://www.adn.com/2014/01/01/3254950/police-son-shoots-father-while.html,False,1,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Accidental/Negligent Discharge,61.154,,-149.924,,,1::23,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Ronald Vansickle ||1::Chad Andrew Vansickle ,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.adn.com/2014/01/01/3254950/police-son-shoots-father-while.html,19,
92908,2014-01-01,Missouri,Saint Louis,4300 block of McRee,0,2,http://www.gunviolencearchive.org/incident/92908,http://fox2now.com/2014/01/01/st-louis-police-investigate-first-shootings-of-the-new-year/,False,1,,,Shot - Wounded/Injured,38.6196,,-90.2558,,,0::36||1::41,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://fox2now.com/2014/01/01/st-louis-police-investigate-first-shootings-of-the-new-year/,80,5
92186,2014-01-01,Kentucky,Leslie County,,0,1,http://www.gunviolencearchive.org/incident/92186,http://www.wkyt.com/home/headlines/238325081.html,False,5,,,Pistol-whipping,37.0698,,-83.3789,,,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Susann Stacy||1::Donnie Stacy,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wkyt.com/home/headlines/238325081.html,,
95283,2014-01-01,Washington,Cape Horn,,0,1,http://www.gunviolencearchive.org/incident/95283,http://www.goskagit.com/news/crime/on-the-beat-jan/article_8a2b8abd-2847-50c2-af5b-980cacdd52cf.html,False,8,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury,47.6573,,-120.917,,accidentally shot herself,0::32,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://www.goskagit.com/news/crime/on-the-beat-jan/article_8a2b8abd-2847-50c2-af5b-980cacdd52cf.html,12,12
92620,2014-01-01,Michigan,Detroit,Melrose,0,2,http://www.gunviolencearchive.org/incident/92620,http://detroit.cbslocal.com/2014/01/02/19-year-old-man-arrested-in-new-years-party-double-shooting/,False,13,,,Shot - Wounded/Injured||Brandishing/flourishing/open carry/lost/found,42.3756,,-83.0643,,2 men shot by drunk perp @ party.,0::18||1::19||2::19,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://detroit.cbslocal.com/2014/01/02/19-year-old-man-arrested-in-new-years-party-double-shooting/,4,1
92183,2014-01-01,Kentucky,Lexington,Maple Avenue,0,1,http://www.gunviolencearchive.org/incident/92183,http://www.wkyt.com/home/headlines/Man-shot-on-Lexington-street-corner-238350511.html,False,6,,,Shot - Wounded/Injured,38.0534,,-84.4808,,Connected to police call about bullet striking home at 6th Street and and Elm Tree Lane,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wkyt.com/home/headlines/Man-shot-on-Lexington-street-corner-238350511.html,,
95277,2014-01-01,Georgia,Atlanta,Habershal Drive,0,0,http://www.gunviolencearchive.org/incident/95277,http://www.wsbtv.com/news/news/local/celebratory-gunfire-nearly-hits-man-new-years-eve/ncZsP/,False,5,,,Shots Fired - No Injuries,33.7892,,-84.4459,,shot went through wall of apartment,1::2,0::Adult 18+||1::Child 0-11||2::Adult 18+,0::Male||1::Female||2::Male,0::Alex Lilley,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Victim,http://www.wsbtv.com/news/news/local/celebratory-gunfire-nearly-hits-man-new-years-eve/ncZsP/,53,38
92296,2014-01-01,Illinois,Chicago,7th Street and Rhodes Av,0,1,http://www.gunviolencearchive.org/incident/92296,"http://www.chicagotribune.com/news/local/breaking/chi-charges-filed-in-new-years-day-policeinvolved-shooting-20140102,0,5718938.",False,1,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Brandishing/flourishing/open carry/lost/found,41.7402,,-87.6114,,Pointed gun at officers. Shot and wounded by a probationary police officer.,0::28,0::Adult 18+,0::Male,0::Charles Lemle,,0::Injured,0::Subject-Suspect,"http://www.chicagotribune.com/news/local/breaking/chi-charges-filed-in-new-years-day-policeinvolved-shooting-20140102,0,5718938.",34,17
92612,2014-01-01,Michigan,Detroit,11600 block of Robson,0,1,http://www.gunviolencearchive.org/incident/92612,http://www.detroitnews.com/article/20140103/METRO01/301030073/1409/METRO/Detroit-starts-off-new-year-eight-killings-20-shootings,False,13,,,Shot - Wounded/Injured,42.3727,,-83.1921,,,0::53,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.detroitnews.com/article/20140103/METRO01/301030073/1409/METRO/Detroit-starts-off-new-year-eight-killings-20-shootings,11,3
92165,2014-01-01,Kentucky,Elliott County,Dehart Road,0,1,http://www.gunviolencearchive.org/incident/92165,http://www.wowktv.com/story/24344225/shooting-in-elliott-county-ky-sends-one-to-the-hospital,False,5,,,Shot - Wounded/Injured,38.119,,-83.1214,,,0::22||1::58,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::William Reed||1::Galen Conley,,0::Injured,0::Victim||1::Subject-Suspect,http://www.wowktv.com/story/24344225/shooting-in-elliott-county-ky-sends-one-to-the-hospital,,
92560,2014-01-01,Florida,Sunrise,2100 block of 64th Avenue,0,1,http://www.gunviolencearchive.org/incident/92560,"http://www.sun-sentinel.com/news/local/crime/fl-sunrise-shooting-20140102,0,5209666.story",False,20,,,Shot - Wounded/Injured,26.1522,,-80.2348,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect||4::Subject-Suspect,"http://www.sun-sentinel.com/news/local/crime/fl-sunrise-shooting-20140102,0,5209666.story",95,31
95246,2014-01-01,Missouri,Saint Louis,Wyoming and Michigan,0,0,http://www.gunviolencearchive.org/incident/95246,http://www.ksdk.com/story/news/crime/2014/01/01/new-year-shooting-police-car-bullet/4276721/,False,1,,,"Shots Fired - No Injuries||Shots fired, no action (reported, no evidence found)",38.5982,,-90.235,,bullet lands on police car,,,,,,,,http://www.ksdk.com/story/news/crime/2014/01/01/new-year-shooting-police-car-bullet/4276721/,78,5
92522,2014-01-01,Florida,Pinellas Park,,2,0,http://www.gunviolencearchive.org/incident/92522,http://www.nbcmiami.com/news/local/Man-Shoots-Moms-Fiance-in-Florida-Hotel-238426661.html,False,13,,,"Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide",27.8428,,-82.7056,,TownePlace Suites by Marriott,0::29||1::48,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Anthony McClaney||1::Mitchell Arnold,,0::Killed||1::Killed,0::Victim||1::Victim,http://www.nbcmiami.com/news/local/Man-Shoots-Moms-Fiance-in-Florida-Hotel-238426661.html,68,22
95245,2014-01-01,Virginia,Richmond,3215 E Broad St,0,0,http://www.gunviolencearchive.org/incident/95245,http://www.nbc12.com/story/24352766/richmond-resident-records-gunfire-outside-home-on-new-years,False,3,,,Shots Fired - No Injuries,37.5266,,-77.4125,,bullet strikes car near Chimborazo Park ,,,,,,,,http://www.nbc12.com/story/24352766/richmond-resident-records-gunfire-outside-home-on-new-years,70,16
92409,2014-01-01,New Jersey,Trenton,800 block of Lamberton Street,1,0,http://www.gunviolencearchive.org/incident/92409,http://www.nj.com/mercer/index.ssf/2014/01/trenton_woman_shot_one_hour_into_2014_detectives_investigating_motive.html#incart_riv,False,12,,,"Shot - Dead (murder, accidental, suicide)",40.2051,,-74.7595,,,,,0::Female||1::Male,,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nj.com/mercer/index.ssf/2014/01/trenton_woman_shot_one_hour_into_2014_detectives_investigating_motive.html#incart_riv,15,15
93491,2014-01-01,Iowa,Iowa City,backseat of victim's car,0,1,http://www.gunviolencearchive.org/incident/93491,http://thegazette.com/2014/01/06/iowa-city-police-say-iowa-city-woman-hit-other-woman-with-gun/,False,2,,,Pistol-whipping,41.6611,,-91.5302,,Victim and perp argued in back of car and perp grabbed her gun and beat her up using it as a blunt object.,1::35,0::Adult 18+||1::Adult 18+,0::Female||1::Female,1::Laticia T. Robinson,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://thegazette.com/2014/01/06/iowa-city-police-say-iowa-city-woman-hit-other-woman-with-gun/,85,43
92453,2014-01-01,Alabama,Huntsville,4300 block of Patton Road,0,2,http://www.gunviolencearchive.org/incident/92453,http://www.wsfa.com/story/24343830/2-victims-arrive-at-hospital-with-gunshot-wounds,False,5,0::Unknown,0::Unknown,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury,34.6937,,-86.6275,1,"Unknown perpetrator shot one victim, the other victim shot himself while attempting to pull his own gun.",0::17,0::Teen 12-17||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured,0::Victim||1::Victim||2::Subject-Suspect,http://www.wsfa.com/story/24343830/2-victims-arrive-at-hospital-with-gunshot-wounds,10,2
94704,2014-01-01,Texas,Killeen,1100 block of 38th Street ,0,0,http://www.gunviolencearchive.org/incident/94704,http://kdhnews.com/news/crime/police-robbers-found-in-stolen-car-six-days-after-felony/article_d1edfa22-78f2-11e3-948c-0019bb30f,False,31,,,Armed robbery with injury/death and/or evidence of DGU found||Car-jacking,31.1192,,-97.6979,,Victim was robbed at gunpoint and carjacked.,1::18||2::17,1::Adult 18+||2::Teen 12-17,1::Male||2::Male,1::Jahquan Damine Nesbitt||2::Jaccari Devon Juan Toombs,,1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://kdhnews.com/news/crime/police-robbers-found-in-stolen-car-six-days-after-felony/article_d1edfa22-78f2-11e3-948c-0019bb30f,55,24
92472,2014-01-01,North Carolina,Davidson County,1224 Old N.C. 109,1,1,http://www.gunviolencearchive.org/incident/92472,http://www.news-record.com/news/article_9b0402fc-73a9-11e3-818c-0019bb30f31a.html,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",35.8689,,-80.2366,,,0::71||1::70,0::Adult 18+||1::Adult 18+,0::Male||1::Female,0::William Luther Hughes||1::Virgie Lambeth Hughes,,0::Killed||1::Injured,0::Victim||1::Victim,http://www.news-record.com/news/article_9b0402fc-73a9-11e3-818c-0019bb30f31a.html,81,33
92301,2014-01-01,Illinois,Rockford,Auburn and Central Streets,0,1,http://www.gunviolencearchive.org/incident/92301,http://www.nta.fm/LocalNews/story.aspx,False,17,,,Shot - Wounded/Injured,42.2884,,-89.116,,shot in back,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nta.fm/LocalNews/story.aspx,67,34
92233,2014-01-01,North Carolina,Erwin,Bunnlevel Erwin Road,0,1,http://www.gunviolencearchive.org/incident/92233,http://www.wral.com/harnett-authorities-searching-for-man-wanted-in-new-year-s-day-shooting/13262310/,False,4,,,Shot - Wounded/Injured,35.3182,,-78.7225,,,0::37||1::27,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Marcus McNeill||1::Derrick McNeill,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wral.com/harnett-authorities-searching-for-man-wanted-in-new-year-s-day-shooting/13262310/,53,12
261045,2014-01-01,New York,Niagara Falls,Seventh Street,0,0,http://www.gunviolencearchive.org/incident/261045,http://www.buffalonews.com/city-region/niagara-falls/prison-for-drunken-driver-who-had-illegal-guns-20141208,False,26,0::Unknown||1::Unknown,0::Other||1::Other,Non-Shooting Incident||Under the influence of alcohol or drugs (only applies to the subject/suspect/perpetrator )||ATF/LE Confiscation/Raid/Arrest||Possession (gun(s) found during commission of other crimes)||Possession of gun by felon or prohibited person,43.093,,-79.0543,2,DUI traffic stop; possession by felon; Uzi semiautomatic rifle & loaded handgun,0::25,0::Adult 18+,0::Male,0::Jackie R Berry,,"0::Unharmed, Arrested",0::Subject-Suspect,http://www.buffalonews.com/city-region/niagara-falls/prison-for-drunken-driver-who-had-illegal-guns-20141208,145,62
150401,2014-01-01,New York,Syracuse,800 block of North Alvord Street,0,0,http://www.gunviolencearchive.org/incident/150401,http://www.syracuse.com/news/index.ssf/2014/01/syracuse_police_16-year-old_fired_shotgun_on_n_alvord_street.html#incart_river,False,24,,,Accidental Shooting||Accidental/Negligent Discharge||Possession (gun(s) found during commission of other crimes),43.0664,,-76.1558,,,0::16,0::Teen 12-17,0::Male,0::Tyler Stewart,,0::Unharmed,0::Subject-Suspect,http://www.syracuse.com/news/index.ssf/2014/01/syracuse_police_16-year-old_fired_shotgun_on_n_alvord_street.html#incart_river,129,50
95211,2014-01-01,District of Columbia,Washington,5800 block of 5th Street NW,0,0,http://www.gunviolencearchive.org/incident/95211,https://twitter.com/DCPoliceDept/status/418561085696798720,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.9602,,-77.0199,,,,,,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/418561085696798720,,
95207,2014-01-01,District of Columbia,Washington,5100 block of Fitch Street SE,0,0,http://www.gunviolencearchive.org/incident/95207,https://twitter.com/DCPoliceDept/status/418522108231036928,False,1,,,Shot - Wounded/Injured,38.8807,,-76.9293,,,,,,,,,,https://twitter.com/DCPoliceDept/status/418522108231036928,,
95203,2014-01-01,District of Columbia,Washington,2700 block of Langston Place SE,0,0,http://www.gunviolencearchive.org/incident/95203,https://twitter.com/DCPoliceDept/status/418314150637367296,False,1,,,Shot - Wounded/Injured,38.8569,,-76.9718,,,,,,,,,,https://twitter.com/DCPoliceDept/status/418314150637367296,,
95212,2014-01-01,District of Columbia,Washington,4th and U Street NW,0,0,http://www.gunviolencearchive.org/incident/95212,https://twitter.com/DCPoliceDept/status/418569961099911168,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.917,,-77.0006,,,,,,,,,,https://twitter.com/DCPoliceDept/status/418569961099911168,,
95206,2014-01-01,District of Columbia,Washington,100 Main Street NW,0,0,http://www.gunviolencearchive.org/incident/95206,https://twitter.com/DCPoliceDept/status/418322028513337344,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.903,,-77.0504,,,,,,,,,,https://twitter.com/DCPoliceDept/status/418322028513337344,,
95202,2014-01-01,District of Columbia,Washington,Unit block of W. Street NW,0,0,http://www.gunviolencearchive.org/incident/95202,https://twitter.com/DCPoliceDept/status/418570564236607488,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.9192,,-76.9994,,,,,,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/418570564236607488,,
182940,2014-01-01,Michigan,Detroit (Redford Charter Township),Pickford and Beech Daly,1,2,http://www.gunviolencearchive.org/incident/182940,http://www.clickondetroit.com/news/carjacking-suspect-killed-while-running-from-police/23725548,False,13,0::Unknown,0::Unknown,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||Car-jacking",42.423,,-83.2968,1,ois after cj and shootings,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Injured||1::Injured||2::Killed,0::Victim||1::Victim||2::Subject-Suspect,http://www.clickondetroit.com/news/carjacking-suspect-killed-while-running-from-police/23725548,10,5
92859,2014-01-01,Louisiana,Richland Parish (county),,0,1,http://www.gunviolencearchive.org/incident/92859,http://www.myarklamiss.com/news/news/teen-in-critical-condition-after-accidental-shooting,False,5,0::Unknown,0::Unknown,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Accidental/Negligent Discharge,32.3887,,-91.7928,1,South of Bee Bayou,0::17,0::Teen 12-17||1::Teen 12-17,0::Male||1::Male,0::Bobby D. Rogers,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.myarklamiss.com/news/news/teen-in-critical-condition-after-accidental-shooting,19,34
92114,2014-01-01,Kentucky,Lexington,Sixth Street and Elm Tree Lane,0,1,http://www.gunviolencearchive.org/incident/92114,http://www.lex18.com/news/lexington-police-stay-busy-on-new-year-s-eve/,False,6,,,Shot - Wounded/Injured,38.0507,,-84.4829,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.lex18.com/news/lexington-police-stay-busy-on-new-year-s-eve/,,
92137,2014-01-01,New York,Bronx,E. 178th St. and Belmont Ave,0,1,http://www.gunviolencearchive.org/incident/92137,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,False,15,,,Shot - Wounded/Injured,40.8396,,-73.8758,,,0::25,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,87,32
95173,2014-01-01,District of Columbia,Washington,200 block of 8th Street SE,0,0,http://www.gunviolencearchive.org/incident/95173,https://twitter.com/DCPoliceDept/status/418576234994343936,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.8876,,-76.9949,,,,,0::Male,,,,0::Victim,https://twitter.com/DCPoliceDept/status/418576234994343936,,
95273,2014-01-01,Indiana,Indianapolis,East 38th Street and Franklin Road ,0,0,http://www.gunviolencearchive.org/incident/95273,http://fox59.com/2014/01/01/praying-woman-unhurt-by-stray-nye-bullet/#axzz2pBqrtmnA,False,7,,,Shots Fired - No Injuries,39.8258,,-86.027,,shot through wall of apartment,0::39,0::Adult 18+,0::Female,0::Rachel Stevenson,,0::Unharmed,0::Victim,http://fox59.com/2014/01/01/praying-woman-unhurt-by-stray-nye-bullet/#axzz2pBqrtmnA,98,34
92148,2014-01-01,New York,Brooklyn,2210 Church Ave,0,3,http://www.gunviolencearchive.org/incident/92148,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,False,9,,,Shot - Wounded/Injured,40.6505,Temptations Nightclub,-73.9573,,,0::28||1::30,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Female||2::Male,,,0::Injured||1::Injured||2::Injured,0::Victim||1::Victim||2::Victim,http://www.nydailynews.com/new-york/nyc-crime/2-die-spate-nyc-holiday-violence-article-1.1563394,42,21
92158,2014-01-01,Virginia,Castlewood,,1,0,http://www.gunviolencearchive.org/incident/92158,http://www.tricities.com/news/local/article_4a3641e4-7338-11e3-bcfc-0019bb30f31a.html,False,9,,,"Shot - Dead (murder, accidental, suicide)",36.8513,,-82.2958,,,,,,,,0::Killed,0::Victim,http://www.tricities.com/news/local/article_4a3641e4-7338-11e3-bcfc-0019bb30f31a.html,4,38
92245,2014-01-01,Ohio,Dayton,800 block of Lexington Ave,0,0,http://www.gunviolencearchive.org/incident/92245,http://www.whio.com/news/news/crime-law/dominos-pizza-delivery-man-carjacked-gunpoint/ncZnn/,False,10,,,Armed robbery with injury/death and/or evidence of DGU found||Car-jacking||Brandishing/flourishing/open carry/lost/found,39.7675,,-84.2269,,"Domino's Pizza delivery man robbed at gunpoint, car stolen, wrecked.",,0::Adult 18+,0::Male,,,0::Unharmed,0::Victim,http://www.whio.com/news/news/crime-law/dominos-pizza-delivery-man-carjacked-gunpoint/ncZnn/,39,5
92151,2014-01-01,West Virginia,Charleston,600 block of Virginia Street,0,1,http://www.gunviolencearchive.org/incident/92151,http://wvmetronews.com/2014/01/01/man-shot-in-new-years-morning-fight-in-charleston/,False,2,0::Unknown,0::Unknown,Shot - Wounded/Injured,38.356,,-81.644,1,Ramada Inn in Charleston and Recovery Sports Grill.,0::23||1::30,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::John Charles Scott||1::Michael Underwood,,"0::Injured||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://wvmetronews.com/2014/01/01/man-shot-in-new-years-morning-fight-in-charleston/,37,8
92432,2014-01-01,New York,Rochester,55 Lois Street,1,1,http://www.gunviolencearchive.org/incident/92432,http://13wham.com//news/features/local-news/stories/conviction-new-years-party-murder-2990.shtml,False,25,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",43.1657,,-77.6462,,recording studio party,0::23||1::27||2::17,0::Adult 18+||1::Adult 18+||2::Teen 12-17,0::Male||1::Male||2::Male,0::Terrance Beatty||1::Brandon Pearce||2::Anthony Ortiz,,"0::Killed||1::Injured||2::Unharmed, Arrested",0::Victim||1::Victim||2::Subject-Suspect,http://www.democratandchronicle.com/story/news/local/2014/01/01/rochester-registers-homicide-hours-into-new-year/4275969/||http://rocdocs.democratandchronicle.com/map/rochester-homicides||http://13wham.com//news/features/local-news/stories/conviction-new-years-party-murder-2990.shtml,136,56
100729,2014-01-01,Florida,Orlando,Sun Dew Drive,1,0,http://www.gunviolencearchive.org/incident/100729,http://www.myfoxorlando.com/story/24341549/deputies-investigate-fatal-shooting-in-avalon-park,False,9,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Domestic Violence",28.5064,,-81.1511,1,,0::35||1::15,0::Adult 18+||1::Teen 12-17,0::Male||1::Male,,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.myfoxorlando.com/story/24341549/deputies-investigate-fatal-shooting-in-avalon-park,50,13
92294,2014-01-01,North Carolina,Columbus County,Buffkin Road,1,0,http://www.gunviolencearchive.org/incident/92294,http://www.fayobserver.com/news/crime_courts/article_9f1c375d-ecb1-5a92-be7a-2f350b770677.html,False,7,,,"Shot - Dead (murder, accidental, suicide)",34.2022,,-78.9474,,,0::31,0::Adult 18+,0::Female,0::Keisha April Ward,,0::Killed,0::Victim,http://www.fayobserver.com/news/crime_courts/article_9f1c375d-ecb1-5a92-be7a-2f350b770677.html,46,13
92481,2014-01-01,Florida,Jacksonville,9009 Western Lake Drive,0,1,http://www.gunviolencearchive.org/incident/92481,http://jacksonville.com/breaking-news/2014-01-02/story/man-who-shot-himself-while-celebrating-new-year-jacksonville,False,4,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Thought gun was unloaded,30.2076,,-81.5532,,Bay Club apartments,0::46,0::Adult 18+,0::Male,0::Gregory Allen Amole,,0::Injured,0::Victim,http://jacksonville.com/breaking-news/2014-01-02/story/man-who-shot-himself-while-celebrating-new-year-jacksonville,16,4
92177,2014-01-01,Ohio,Miami Township,6600 block of Faversham Rd,0,0,http://www.gunviolencearchive.org/incident/92177,http://www.whio.com/news/news/crime-law/miami-twp-police-attempting-serve-warrant-call-99/ncZSg/,False,10,,,Shots Fired - No Injuries,39.6077,,-84.3014,,Perp thought cop was neighbor he's been fighting with. Officer jumped out of the way of the shot.,1::36,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Police Officer||1::Joey Lykins,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.whio.com/news/news/crime-law/miami-twp-police-attempting-serve-warrant-call-99/ncZSg/,42,6
95071,2014-01-01,Louisiana,Baton Rouge,,0,0,http://www.gunviolencearchive.org/incident/95071,/%20http%3A//www.redsticknow.com/2014/01/baton-rouge-crime-news/victim-in-new-years-day-family-brawl-dies-son-arrested/,False,6,,,Shots Fired - No Injuries,30.4491,,-91.1871,,,0::30,0::Adult 18+,0::Male,0::Michael Taylor II,,0::Unharmed,0::Subject-Suspect,,67,14
92679,2014-01-02,Maryland,Baltimore,Kavon and Shamrock Avenues,1,0,http://www.gunviolencearchive.org/incident/92679,http://www.foxbaltimore.com/news/features/top-stories/stories/surviving-victim-thursday-night-shooting-grave-condition-24419.sht,False,2,,,"Shot - Dead (murder, accidental, suicide)",39.327,,-76.5637,,,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.foxbaltimore.com/news/features/top-stories/stories/surviving-victim-thursday-night-shooting-grave-condition-24419.sht,45,45
213872,2014-01-02,Maryland,Prince George's County,Queens Chapel Road,0,0,http://www.gunviolencearchive.org/incident/213872,http://pgpolice.blogspot.com/2014_02_01_archive.html,False,4,,,Drug involvement||Possession (gun(s) found during commission of other crimes)||Gun(s) stolen from owner,38.9596,,-76.9571,,,,1::Adult 18+,1::Male,,,1::Unharmed,0::Victim||1::Subject-Suspect,http://pgpolice.blogspot.com/2014_02_01_archive.html,22,22
152090,2014-01-02,New Jersey,Fort Lee,420 Fairview Avenue Apartment 5-C,0,0,http://www.gunviolencearchive.org/incident/152090,http://www.nj.com/bergen/index.ssf/2014/01/police_seize_drugs_assault_weapons_from_fortified_fort_lee_apartment.html#incart_m-rp,False,9,,,Possession (gun(s) found during commission of other crimes),40.8634,,-73.9676,,,,0::Adult 18+,0::Male,0::Onn Rapeika,,0::Unharmed,0::Subject-Suspect,http://www.nj.com/bergen/index.ssf/2014/01/police_seize_drugs_assault_weapons_from_fortified_fort_lee_apartment.html#incart_m-rp,37,37
92524,2014-01-02,Florida,Saint Petersburg,1833 First Avenue South,0,1,http://www.gunviolencearchive.org/incident/92524,http://tbo.com/pinellas-county/man-seriously-injured-in-st-petersburg-nightclub-shooting-20140102/,False,14,,,Shot - Wounded/Injured,27.7703,,-82.6583,,Club 1 South,0::27,0::Adult 18+,0::Male,0::Alfred Whitehead,,0::Injured,0::Victim,http://tbo.com/pinellas-county/man-seriously-injured-in-st-petersburg-nightclub-shooting-20140102/,70,19
93429,2014-01-02,Texas,Killeen,5100 block of East Veterans Memorial Boulevard,0,0,http://www.gunviolencearchive.org/incident/93429,http://kdhnews.com/news/crime/blotter/police-blotter/article_779f0916-74fc-11e3-913f-001a4bcf6878.html,False,31,,,Armed robbery with injury/death and/or evidence of DGU found,31.0957,,-97.6892,,Aggravated robbery with a firearm,,,,,,,,http://kdhnews.com/news/crime/blotter/police-blotter/article_779f0916-74fc-11e3-913f-001a4bcf6878.html,54,24
92380,2014-01-02,California,Huntington,Lambert Drive ,0,1,http://www.gunviolencearchive.org/incident/92380,http://www.nbclosangeles.com/news/local/Huntington-Beach-Shooting-238435281.html,False,48,,,Shot - Wounded/Injured||Drug involvement||Armed robbery with injury/death and/or evidence of DGU found,33.7201,,-117.985,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nbclosangeles.com/news/local/Huntington-Beach-Shooting-238435281.html,72,34
92378,2014-01-02,California,San Jose,East San Antonio ,1,0,http://www.gunviolencearchive.org/incident/92378,http://abclocal.go.com/kgo/story,False,19,,,"Shot - Dead (murder, accidental, suicide)",37.333,,-121.888,,,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://abclocal.go.com/kgo/story,27,15
92668,2014-01-02,Maryland,Baltimore,1800 block of North Patterson Park Avenue,2,0,http://www.gunviolencearchive.org/incident/92668,"http://www.baltimoresun.com/news/maryland/baltimore-crime-beat/bs-md-ci-shooting-homicide-20140104,0,1370194.story",False,7,,,"Shot - Dead (murder, accidental, suicide)",39.311,,-76.5859,,,0::27||1::29,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Daries Williams||1::Nathanial Adams,,0::Killed||1::Killed,0::Victim||1::Victim,"http://www.baltimoresun.com/news/maryland/baltimore-crime-beat/bs-md-ci-shooting-homicide-20140104,0,1370194.story",45,45
92665,2014-01-02,Idaho,Nampa,11th Avenue North ,0,0,http://www.gunviolencearchive.org/incident/92665,http://www.idahostatesman.com/2014/01/03/2956005/nampa-police-seek-information.html,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,43.5848,,-116.554,,Beverage and tobacco store,,,,,,,,http://www.idahostatesman.com/2014/01/03/2956005/nampa-police-seek-information.html,12,12
92875,2014-01-02,Michigan,Davison,628 N State Rd,0,0,http://www.gunviolencearchive.org/incident/92875,http://www.mlive.com/news/flint/index.ssf/2014/01/flint_man_arrested_after_alleg_2.html#incart_river_default,False,5,,,Armed robbery with injury/death and/or evidence of DGU found||Possession (gun(s) found during commission of other crimes)||Brandishing/flourishing/open carry/lost/found,43.0557,,-83.5209,,Check-n-Go Store - Suspect arrested. also suspected in several other incidents in 4 towns.,0::22,0::Adult 18+,0::Male,0::Ervin Dale Allen,,0::Unharmed,0::Subject-Suspect,http://www.mlive.com/news/flint/index.ssf/2014/01/flint_man_arrested_after_alleg_2.html#incart_river_default,50,26
93509,2014-01-02,Mississippi,Oxford,Old Taylor Road,0,0,http://www.gunviolencearchive.org/incident/93509,http://djournal.com/news/oxford-armed-robbery-suspects-charged/,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,34.3401,,-89.5475,,,1::20||2::23,1::Adult 18+||2::Adult 18+,1::Male||2::Male,1::Shandon Coleman||2::Kiree Wilson,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://djournal.com/news/oxford-armed-robbery-suspects-charged/,12,9
212374,2014-01-02,Pennsylvania,Montgomery County,,0,0,http://www.gunviolencearchive.org/incident/212374,https://bankrobbers.fbi.gov/robbers-container/2014-08-07.9866331252,False,8,,,Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found||Institution/Group/Business,40.229,,-75.3879,,Blue Bell; Whitpain Township; bank,,1::Adult 18+,1::Male,,,1::Unharmed,0::Victim||1::Subject-Suspect,https://bankrobbers.fbi.gov/robbers-container/2014-08-07.9866331252,,
92687,2014-01-02,Maryland,Laurel,3400 block of Laurel Fort Meade Road,0,0,http://www.gunviolencearchive.org/incident/92687,http://www.wbaltv.com/news/maryland/anne-arundel-county/police-look-for-man-who-robbed-2-people-in-laurel/-/10137088/23737938/-/,False,3,,,Armed robbery with injury/death and/or evidence of DGU found,39.0999,,-76.8122,,Victims robbed at gunpoint while at bus stop.,0::49,0::Adult 18+||2::Adult 18+,0::Female||2::Male,,,0::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.wbaltv.com/news/maryland/anne-arundel-county/police-look-for-man-who-robbed-2-people-in-laurel/-/10137088/23737938/-/,32,32
92277,2014-01-02,Indiana,Indianapolis,S. Temple Ave. and Graydon St,1,0,http://www.gunviolencearchive.org/incident/92277,http://fox59.com/2016/05/04/man-sentenced-in-connection-with-teens-2014-homicide/,False,7,,,"Shot - Dead (murder, accidental, suicide)",39.763,,-86.1185,,"Approached by several perps, a fight ensued, victim shot; suspects charged, Watkins pleads, gets 18 years;",0::16||1::15||2::17||3::34,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Tyrell Alford||2::Ronell Watkins||3::Tomecka Carpenter,,"0::Killed||1::Unharmed, Arrested||2::Unharmed, Arrested||3::Unharmed, Arrested",0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://fox59.com/2014/01/02/person-shot-on-citys-near-east-side/#axzz2pHAe6VJ9||http://wishtv.com/2014/02/10/3-arrested-including-2-teens-after-jan-murder/||http://www.theindychannel.com/news/local-news/2-teens-arrested-in-jan-fatal-shooting||http://fox59.com/2016/05/04/man-sentenced-in-connection-with-teens-2014-homicide/,100,36
92528,2014-01-02,Tennessee,Brownsville,McLemore St,0,0,http://www.gunviolencearchive.org/incident/92528,http://www.wbbjtv.com/news/local/Haywood-County-Package-Store-Robbed-Twice-in-3-Months-238542891.html,False,8,,,Armed robbery with injury/death and/or evidence of DGU found,35.5919,,-89.2691,,Tibbs Package Store,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Male||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.wbbjtv.com/news/local/Haywood-County-Package-Store-Robbed-Twice-in-3-Months-238542891.html,82,26
93694,2014-01-02,Ohio,Elyria,Wilkes Villa-Bohannon Court and Hodge Court,0,0,http://www.gunviolencearchive.org/incident/93694,http://www.morningjournal.com/general-news/20140104/pizza-delivery-allegedly-ends-in-robbery-at-gunpoint,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,41.3434,,-82.1,,"Pizza deliveryman made two deliveries at apt. complex, was robbed at gunpoint.",,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Heath Webber,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.morningjournal.com/general-news/20140104/pizza-delivery-allegedly-ends-in-robbery-at-gunpoint,55,13
92819,2014-01-02,Alabama,Montgomery,1700 block of Court Street,0,1,http://www.gunviolencearchive.org/incident/92819,http://www.wsfa.com/story/24349373/1-person-shot-at-montgomery-apartment-complex,False,2,,,Shot - Wounded/Injured,32.3749,,-86.3094,,Tree Top Apartment complex,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.wsfa.com/story/24349373/1-person-shot-at-montgomery-apartment-complex,77,26
92530,2014-01-02,Florida,Tampa,Dale Mabry Highway at Spruce St.,0,0,http://www.gunviolencearchive.org/incident/92530,http://www.abcactionnews.com/dpp/news/region_tampa/tampa-officer-shoots-at-suspected-dealer-during-drug-sting,False,14,,,Shots Fired - No Injuries||Drug involvement||Officer Involved Incident,27.9594,,-82.5056,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.abcactionnews.com/dpp/news/region_tampa/tampa-officer-shoots-at-suspected-dealer-during-drug-sting,62,19
94400,2014-01-02,Missouri,Columbia,2000 block of Newton Drive,1,0,http://www.gunviolencearchive.org/incident/94400,http://www.columbiatribune.com/news/crime/third-suspect-in-fatal-january-shooting-arrested/article_1ee4376a-a706-11e3-9fb1-001a4,False,4,,,"Shot - Dead (murder, accidental, suicide)||Drug involvement",38.9734,,-92.3354,,Victim killed during a drug deal.,0::23||1::17||2::20||3::20,0::Adult 18+||1::Teen 12-17||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Dontay Tolston||1::Derrick Copelin||2::Jimiah A. Lambert||3::Martrell T. Smith,,0::Killed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.columbiatribune.com/news/crime/new-orleans-man-arrested-in-connection-to-columbia-slaying/article_96d7145c-78aa-11e3-||http://www.columbiatribune.com/news/crime/third-suspect-in-fatal-january-shooting-arrested/article_1ee4376a-a706-11e3-9fb1-001a4,45,19
95157,2014-01-02,District of Columbia,Washington,4900 8th Street NE,0,0,http://www.gunviolencearchive.org/incident/95157,https://twitter.com/DCPoliceDept/status/418933658343329792,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.9488,,-76.9952,,,,,,,,,,https://twitter.com/DCPoliceDept/status/418933658343329792,,
95160,2014-01-02,District of Columbia,Washington,2800 block of Shipley Terrace SE,0,0,http://www.gunviolencearchive.org/incident/95160,https://twitter.com/DCPoliceDept/status/418907002492825601,False,1,,,,38.855,,-76.9635,,,,,0::Male,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/418907002492825601,,
95165,2014-01-02,District of Columbia,Washington,1500 Good Hope Road SE,0,0,http://www.gunviolencearchive.org/incident/95165,https://twitter.com/DCPoliceDept/status/418905432925548544,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.8665,,-76.9837,,,,,,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/418905432925548544,,
92508,2014-01-02,Florida,Merritt Island,125 S Banana River Dr,0,1,http://www.gunviolencearchive.org/incident/92508,http://www.wesh.com/news/central-florida/brevard-county/girl-16-accidentally-shot-at-gun-range-in-merritt-island/-/11788124/2374,False,8,0::Unknown,0::Unknown,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Gun range/gun shop/gun show shooting,28.3552,The Gun Site Range,-80.6626,1,The Gun Site Range,0::14,0::Teen 12-17,0::Female,,,0::Injured,0::Victim,http://www.wesh.com/news/central-florida/brevard-county/girl-16-accidentally-shot-at-gun-range-in-merritt-island/-/11788124/2374,51,16
92883,2014-01-02,Florida,Crestview,462 N. Savage Street,1,2,http://www.gunviolencearchive.org/incident/92883,http://www.nwfdailynews.com/news/20160619/update-man-dies-in-fwbpd-officer-involved-shooting-early-sunday-morning,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - Officer shot||Officer Involved Shooting - subject/suspect/perpetrator killed||Defensive Use",30.7586,,-86.5752,,"shootout with officers, perp killed, 2 officers wounded",2::38||3::33,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Ofc. Beau Baier||1::Ofc. Shane Kriser||2::Aphrey Benjamin Collis||3::Rasheik Calhoun,,0::Injured||1::Injured||2::Unharmed||3::Killed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect,http://www.myfoxtampabay.com/story/24358178/suspect-killed-2-officer-wounded-in-shootout||http://www.nwfdailynews.com/local/suspect-killed-officers-shot-in-crestview-incident-1.257150||http://www.nwfdailynews.com/news/20160619/update-man-dies-in-fwbpd-officer-involved-shooting-early-sunday-morning,4,1
92867,2014-01-02,Florida,Davie,6100 block of Southwest 48th Street,1,1,http://www.gunviolencearchive.org/incident/92867,http://www.nbcmiami.com/news/Person-Shot-and-Killed-in-Davie-Home-Invasion-238597771.html,False,20,,,"Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident injured||Home Invasion - subject/suspect/perpetrator killed||Armed robbery with injury/death and/or evidence of DGU found||Pistol-whipping||Brandishing/flourishing/open carry/lost/found||Defensive Use",26.1272,,-80.2143,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Killed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.nbcmiami.com/news/local/Person-Shot-and-Killed-in-Davie-Home-Invasion-238597771.html||http://www.nbcmiami.com/news/Person-Shot-and-Killed-in-Davie-Home-Invasion-238597771.html,94,31
92771,2014-01-02,Texas,Taylor,610 Howard Street,0,1,http://www.gunviolencearchive.org/incident/92771,http://www.kvue.com/news/12-year-old-boy-shot-in-Taylor-238641531.html,False,31,0::Unknown,0::Unknown,Shot - Wounded/Injured||Accidental Shooting||Accidental/Negligent Discharge||Thought gun was unloaded,30.5715,,-97.4202,1,,0::12||1::22,0::Teen 12-17||1::Adult 18+,0::Male||1::Male,1::Ryan Reynaga,,"0::Injured||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.kvue.com/news/12-year-old-boy-shot-in-Taylor-238641531.html,,5
217092,2014-01-02,Texas,Austin,3600 Presidential Blvd,0,0,http://www.gunviolencearchive.org/incident/217092,http://blog.tsa.gov/2014_01_03_archive.html,False,35,,,TSA Action,30.2093,,-97.6529,,Austin-Bergstrom International Airport,,,,,,,,http://blog.tsa.gov/2014_01_03_archive.html,51,14
92369,2014-01-02,Alaska,Anchorage,Boniface Parkway,0,0,http://www.gunviolencearchive.org/incident/92369,http://www.adn.com/2014/01/02/3255521/apd-man-arrested-after-threatening.html,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,61.2034,,-149.778,,Riviera Terrace Mobile Home Park,1::23,0::Adult 18+||1::Adult 18+,0::Male||1::Female,1::Keng Lor,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.adn.com/2014/01/02/3255521/apd-man-arrested-after-threatening.html,14,
93426,2014-01-02,Texas,Killeen,3000 block of Old Farm-to-Market 440 Road,0,0,http://www.gunviolencearchive.org/incident/93426,http://kdhnews.com/news/crime/blotter/police-blotter/article_779f0916-74fc-11e3-913f-001a4bcf6878.html,False,31,,,Armed robbery with injury/death and/or evidence of DGU found,31.1108,,-97.7504,,Aggravated robbery with a firearm,,,,,,,,http://kdhnews.com/news/crime/blotter/police-blotter/article_779f0916-74fc-11e3-913f-001a4bcf6878.html,54,24
92534,2014-01-02,South Carolina,Rock Hill,Gladstone Court,0,0,http://www.gunviolencearchive.org/incident/92534,http://www.heraldonline.com/2014/01/03/5547756/report-woman-robbed-carjacked.html,False,5,,,Car-jacking,34.9226,,-81.0185,,,0::36,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Male||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.heraldonline.com/2014/01/03/5547756/report-woman-robbed-carjacked.html,49,15
92817,2014-01-02,Alabama,Union Grove,17 Gullion Road,1,0,http://www.gunviolencearchive.org/incident/92817,http://whnt.com/2014/01/03/deputies-investigate-deadly-shooting-in-morgan-county/,False,5,,,"Shot - Dead (murder, accidental, suicide)||Drug involvement",34.4576,,-86.5866,,,0::37||1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Jonathan Bowling||1::Cody Lee Compton,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://whnt.com/2014/01/03/deputies-investigate-deadly-shooting-in-morgan-county/,9,3
92322,2014-01-02,Indiana,Indianapolis,2236 E 10th St,1,0,http://www.gunviolencearchive.org/incident/92322,http://www.wthr.com/story/24350655/2014/01/02/person-shot-killed-in-east-indianapolis,False,7,,,"Shot - Dead (murder, accidental, suicide)",39.7814,,-86.1233,,Victim shot in back of head @ John H. Boner Community Center,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wthr.com/story/24350655/2014/01/02/person-shot-killed-in-east-indianapolis,96,34
92793,2014-01-02,North Carolina,Durham,1839 Liberty Street ,0,0,http://www.gunviolencearchive.org/incident/92793,http://www.heraldsun.com/news/x1401029609/Police-log,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,35.9904,,-78.8692,,,0::19||1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Paul Faison||1::Michael Alexander Overby,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.heraldsun.com/news/x1401029609/Police-log,29,20
92517,2014-01-02,South Carolina,Mullins,West Laurel Street,0,1,http://www.gunviolencearchive.org/incident/92517,http://www.carolinalive.com/news/story.aspx,False,7,,,Shot - Wounded/Injured,34.2034,,-79.258,,,,,0::Male,,,0::Injured,0::Victim,http://www.carolinalive.com/news/story.aspx,57,30
92324,2014-01-02,Arizona,Surprise,Reems and Greenway,0,1,http://www.gunviolencearchive.org/incident/92324,http://www.myfoxphoenix.com/story/24351492/2014/01/02/shooting-victim-walks-into-mcdonalds-asking-for-help,False,8,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Accidental/Negligent Discharge,33.6241,,-112.394,,shot in leg ,0::16,0::Teen 12-17,0::Male,,,0::Injured,0::Victim,http://www.azcentral.com/community/surprise/articles/20140102surprise-shooting-teenager-injured-abrk.html||http://www.myfoxphoenix.com/story/24351492/2014/01/02/shooting-victim-walks-into-mcdonalds-asking-for-help,22,22
92796,2014-01-02,North Carolina,Durham,3400 N. Roxboro St.,0,0,http://www.gunviolencearchive.org/incident/92796,http://www.heraldsun.com/news/x1401029609/Police-log,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,36.0351,,-78.8924,,Church's Chicken,0::19||1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Paul Faison||1::Michael Alexander Overby,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.heraldsun.com/news/x1401029609/Police-log,31,20
92591,2014-01-02,Arizona,Phoenix,Interstate 17 and Peoria,0,1,http://www.gunviolencearchive.org/incident/92591,http://www.azcentral.com/community/phoenix/articles/20140103phoenix-woman-wounded-when-shot-while-sleeping-abrk.html,False,6,,,Shot - Wounded/Injured,33.567,,-112.118,,,,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://www.azcentral.com/community/phoenix/articles/20140103phoenix-woman-wounded-when-shot-while-sleeping-abrk.html,30,30
109172,2014-01-02,Indiana,Indianapolis,East 10th St,1,0,http://www.gunviolencearchive.org/incident/109172,http://wishtv.com/2014/02/22/police-arrest-man-involved-in-jan-2-fatal-shooting/,False,7,,,"Shot - Dead (murder, accidental, suicide)",39.7807,,-86.1436,,Man involved in targeted fatal shooting apprehended 2/21/14,0::50,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::William Dulin||1::Glen Dillard,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://wishtv.com/2014/02/22/police-arrest-man-involved-in-jan-2-fatal-shooting/,96,34
92349,2014-01-02,Pennsylvania,Philadelphia,7th Street,0,1,http://www.gunviolencearchive.org/incident/92349,http://www.philly.com/philly/blogs/dncrime/S-Philly-duo-fights-off-armed-home-invader.html,False,1,,,Home Invasion||Home Invasion - subject/suspect/perpetrator injured,39.9421,,-75.1539,,"Perpetrator forced way into home, two people home fought him off.",,,2::Male,,,0::Unharmed||1::Unharmed||2::Injured,0::Victim||1::Victim||2::Subject-Suspect,http://www.philly.com/philly/blogs/dncrime/S-Philly-duo-fights-off-armed-home-invader.html,,
92798,2014-01-02,North Carolina,Durham,,0,0,http://www.gunviolencearchive.org/incident/92798,http://www.heraldsun.com/news/x1401029609/Police-log,False,1,,,Possession (gun(s) found during commission of other crimes),35.9975,,-78.8981,,,0::24,0::Adult 18+,0::Male,0::Donovan L. Sanders,,0::Unharmed,0::Subject-Suspect,http://www.heraldsun.com/news/x1401029609/Police-log,29,20
92605,2014-01-02,Michigan,Detroit,McNichols and Dresden,0,1,http://www.gunviolencearchive.org/incident/92605,http://www.detroitnews.com/article/20140103/METRO01/301030073/1409/METRO/Detroit-starts-off-new-year-eight-killings-20-shootings,False,14,,,Shot - Wounded/Injured,42.4217,,-82.999,,,0::20,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.detroitnews.com/article/20140103/METRO01/301030073/1409/METRO/Detroit-starts-off-new-year-eight-killings-20-shootings,2,2
120733,2014-01-02,Pennsylvania,Lancaster,100 Howard Avenue,0,0,http://www.gunviolencearchive.org/incident/120733,http://www.pennlive.com/midstate/index.ssf/2014/03/police_search_for_lancaster_ma_2.html,False,16,,,Home Invasion||Home Invasion - No death or injury,40.0374,,-76.2993,,3 p HI,1::20,0::Adult 18+||1::Adult 18+,1::Male,1::Alvaro Rodriguez-Santana,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.pennlive.com/midstate/index.ssf/2014/03/police_search_for_lancaster_ma_2.html,,
92351,2014-01-02,Oregon,Portland,Hasley St,0,0,http://www.gunviolencearchive.org/incident/92351,http://www.katu.com/news/local/Man-armed-with-handgun-robs-NE-Portland-convenience-store-police-say-238452621.html,False,3,,,Armed robbery with injury/death and/or evidence of DGU found,45.5335,,-122.542,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.katu.com/news/local/Man-armed-with-handgun-robs-NE-Portland-convenience-store-police-say-238452621.html,47,24
92803,2014-01-02,Colorado,Colorado Springs,1430 Michelle Court,1,0,http://www.gunviolencearchive.org/incident/92803,http://gazette.com/man-arrested-after-new-years-day-fatal-shooting-in-colorado-springs/article/1511890,False,5,,,"Shot - Dead (murder, accidental, suicide)",38.8138,,-104.748,,,0::19||1::30,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Matthew John DeJong,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://gazette.com/man-arrested-after-new-years-day-fatal-shooting-in-colorado-springs/article/1511890,17,11
92609,2014-01-02,Colorado,Thornton,East 88th ,1,0,http://www.gunviolencearchive.org/incident/92609,http://www.denverpost.com/news/ci_24838223/thornton-police-scene-reported-shootout-car-chase-suspect,False,7,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Officer Involved Shooting - subject/suspect/perpetrator killed||Possession (gun(s) found during commission of other crimes)",39.8562,,-104.963,,Renaissance 88 Apartments ,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.denverpost.com/news/ci_24838223/thornton-police-scene-reported-shootout-car-chase-suspect,31,25
149107,2014-01-02,Massachusetts,Worcester,Fay Street,0,0,http://www.gunviolencearchive.org/incident/149107,http://www.masslive.com/news/worcester/index.ssf/2014/01/worcester_police_dog_locates_gun.html#incart_river,False,2,,,Possession (gun(s) found during commission of other crimes),42.2567,,-71.7877,,,0::37,0::Adult 18+,0::Male,0::David Rosendahl,,0::Unharmed,0::Subject-Suspect,http://www.masslive.com/news/worcester/index.ssf/2014/01/worcester_police_dog_locates_gun.html#incart_river,,
92483,2014-01-02,South Carolina,Columbia,1400 block of Longcreek Drive,0,1,http://www.gunviolencearchive.org/incident/92483,http://www.thestate.com/2014/01/03/3188552/deputies-man-shot-after-giving.html,False,6,,,Shot - Wounded/Injured,34.0416,,-81.0837,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.thestate.com/2014/01/03/3188552/deputies-man-shot-after-giving.html,74,19
93348,2014-01-02,California,National City,East 18th and Grove ,1,0,http://www.gunviolencearchive.org/incident/93348,http://www.nbcsandiego.com/news/local/National-City-gunshot-death-238532531.html,False,51,,,"Shot - Dead (murder, accidental, suicide)",32.6733,,-117.082,,,,0::Adult 18+,,,,0::Killed,0::Victim,http://www.nbcsandiego.com/news/local/National-City-gunshot-death-238532531.html,80,40
92639,2014-01-02,Indiana,South Bend,2300 block of West Bergan St,0,1,http://www.gunviolencearchive.org/incident/92639,http://www.southbendtribune.com/news/crime/police-investigating-home-invasion-shooting/article_ffde0a20-7498-11e3-8b9a-001a4bcf6,False,2,,,Shot - Wounded/Injured||Home Invasion||Home Invasion - Resident injured||Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,41.7046,,-86.2828,,Home invasion by 2 masked perps who demanded money and shot homeowner in shoulder,0::32,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.southbendtribune.com/news/crime/police-investigating-home-invasion-shooting/article_ffde0a20-7498-11e3-8b9a-001a4bcf6,6,10
150396,2014-01-02,New Jersey,Hackensack,River Street,0,0,http://www.gunviolencearchive.org/incident/150396,http://www.northjersey.com/news/two-hackensack-police-officers-injured-in-chase-allendale-man-faces-assault-gun-charges-1.653260,False,5,,,Shot - Wounded/Injured,40.8877,,-74.0392,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.northjersey.com/news/two-hackensack-police-officers-injured-in-chase-allendale-man-faces-assault-gun-charges-1.653260,37,37
92492,2014-01-02,Alabama,Auburn,1530 E. Glenn Ave,0,0,http://www.gunviolencearchive.org/incident/92492,http://www.ledger-enquirer.com/2014/01/02/2881944/opelika-ala-man-charged-in-credit.html,False,3,,,Armed robbery with injury/death and/or evidence of DGU found,32.6088,,-85.4505,,,0::43,0::Adult 18+,0::Male,0::Michael J. Kugler-Cruz,,0::Unharmed,0::Subject-Suspect,http://www.ledger-enquirer.com/2014/01/02/2881944/opelika-ala-man-charged-in-credit.html,79,27
93401,2014-01-02,Texas,Conroe,La Quinta Inn at 28673 I-45 north,0,0,http://www.gunviolencearchive.org/incident/93401,http://www.khou.com/news/local/Police-search-for-robber-who-hit-2-hotels-in-Montgomery-County-238662841.html,False,8,,,Armed robbery with injury/death and/or evidence of DGU found,30.1978,,-95.4545,,Armed robbery of hotel/threatened desk clerk with handgun ,,0::Adult 18+||1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.khou.com/news/local/Police-search-for-robber-who-hit-2-hotels-in-Montgomery-County-238662841.html,15,4
92730,2014-01-02,New Jersey,Keansburg,,0,1,http://www.gunviolencearchive.org/incident/92730,http://www.nj.com/monmouth/index.ssf/2014/01/keansburg_police_seek_suspect_in_alleged_aggravated_sexual_assault.html#incart_rive,False,6,,,Brandishing/flourishing/open carry/lost/found,40.4444,,-74.1338,,Victim was sexually assaulted at gunpoint.,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nj.com/monmouth/index.ssf/2014/01/keansburg_police_seek_suspect_in_alleged_aggravated_sexual_assault.html#incart_rive,13,13
92494,2014-01-02,Georgia,Marietta,Windy Hill Road,1,0,http://www.gunviolencearchive.org/incident/92494,http://www.ajc.com/news/news/local/police-find-womans-body-in-car-at-marietta-apartme/ncYy2/,False,11,,,"Shot - Dead (murder, accidental, suicide)",33.8962,,-84.5781,,,0::37,0::Adult 18+,0::Female,0::Manju Gurung Poonmagar,,0::Killed,0::Victim,http://www.ajc.com/news/news/local/police-find-womans-body-in-car-at-marietta-apartme/ncYy2/,41,33
93404,2014-01-02,Texas,Shenandoah,Comfort Inn at 1115 League Line Road,0,0,http://www.gunviolencearchive.org/incident/93404,http://www.khou.com/news/local/Police-search-for-robber-who-hit-2-hotels-in-Montgomery-County-238662841.html,False,8,,,Armed robbery with injury/death and/or evidence of DGU found,30.1802,,-95.4558,,Armed robbery of hotel/threatened desk clerk with handgun.,,0::Adult 18+||1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.khou.com/news/local/Police-search-for-robber-who-hit-2-hotels-in-Montgomery-County-238662841.html,15,4
92366,2014-01-02,Wyoming,Cheyenne,1608 Prairie Ave,0,1,http://www.gunviolencearchive.org/incident/92366,http://www.highbeam.com/doc/1P2-35542313.html,False,1,,,Accidental Shooting||Accidental Shooting - Injury||Accidental/Negligent Discharge,41.1641,,-104.802,,at Lowe's in Cheyenne,0::22||1::58,0::Adult 18+||1::Adult 18+,0::Female||1::Female,0::Samantha Manago||1::Dianne Darling,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kgwn.tv/story/24350998/accidental-shooting-at-lowes-in-cheyenne||http://www.highbeam.com/doc/1P2-35542313.html,7,4
92846,2014-01-02,Louisiana,New Orleans,6300 block of Music Street,0,1,http://www.gunviolencearchive.org/incident/92846,http://www.nola.com/crime/index.ssf/2014/01/man_shot_in_gentilly_thursday.html#incart_river,False,2,,,Shot - Wounded/Injured,30.0235,,-90.0554,,,,0::Teen 12-17,0::Male,,,0::Injured,0::Victim,http://www.nola.com/crime/index.ssf/2014/01/man_shot_in_gentilly_thursday.html#incart_river,97,4
94411,2014-01-02,Delaware,Dover,460 South DuPont Highway,0,0,http://www.gunviolencearchive.org/incident/94411,http://www.delawareonline.com/article/20140109/NEWS01/301090087/Police-investigate-armed-robberies-Dover-liquor-store,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,39.1574,,-75.5124,,,,1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.delawareonline.com/article/20140109/NEWS01/301090087/Police-investigate-armed-robberies-Dover-liquor-store,32,17
92664,2014-01-02,Utah,Salt Lake City,1407 W. Indiana,0,0,http://www.gunviolencearchive.org/incident/92664,http://www.ksl.com/index.php,False,2,,,Shots Fired - No Injuries,40.751,,-111.932,,at an auto shop,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.ksl.com/index.php,26,1
92426,2014-01-02,Tennessee,Knoxville,Bonnie Roach Lane,2,0,http://www.gunviolencearchive.org/incident/92426,http://www.wbbjtv.com/news/regional/Sheriff-Husband-wife-dead-in-murder-suicide-238800191.html,False,2,,,"Shot - Dead (murder, accidental, suicide)||Murder/Suicide",35.8204,,-84.1769,,,0::59||1::49,0::Adult 18+||1::Adult 18+,0::Male||1::Female,0::Shirley Ingle||1::Chad Ingle,,0::Killed||1::Killed,0::Victim||1::Victim,http://www.wbir.com/story/news/local/2014/01/02/husband-wife-found-dead-in-apparent-murder-suicide/4300031/||http://www.wbbjtv.com/news/regional/Sheriff-Husband-wife-dead-in-murder-suicide-238800191.html,14,6
92536,2014-01-02,Florida,Orlando,6100 block of South Orange Avenue,1,0,http://www.gunviolencearchive.org/incident/92536,"http://www.orlandosentinel.com/news/local/breakingnews/os-suicide-oakridge-gun-range-20140102,0,7481410.story",False,10,,,"Shot - Dead (murder, accidental, suicide)||Suicide^||Gun range/gun shop/gun show shooting",28.4708,Oakridge Gun Range,-81.3692,,Oakridge Gun Range,0::58,0::Adult 18+,0::Male,0::Raouf Kelada,,0::Killed,0::Victim,"http://www.orlandosentinel.com/news/local/breakingnews/os-suicide-oakridge-gun-range-20140102,0,7481410.story",48,13
92904,2014-01-02,Arkansas,Little Rock,Colonel Glenn Road,0,1,http://www.gunviolencearchive.org/incident/92904,http://www.arkansasonline.com/news/2014/jan/03/robber-steals-money-inflicts-four-inch-cut-lr-mans/,False,2,,,Armed robbery with injury/death and/or evidence of DGU found||Pistol-whipping,34.7204,,-92.4523,,,0::60,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Steven Montgomery ,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.arkansasonline.com/news/2014/jan/03/robber-steals-money-inflicts-four-inch-cut-lr-mans/,32,33
92589,2014-01-02,Louisiana,New Orleans,2000 block of Pace Street,0,1,http://www.gunviolencearchive.org/incident/92589,http://www.fox8live.com/story/24351783/police-respond-to-separate-shootings-in-no-east-algiers,False,2,,,Shot - Wounded/Injured,29.9322,,-90.0272,,,0::20,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.fox8live.com/story/24351783/police-respond-to-separate-shootings-in-no-east-algiers,102,7
220357,2014-01-02,Pennsylvania,Philadelphia,34th and Haverford Avenue,0,1,http://www.gunviolencearchive.org/incident/220357,http://blog.phillypolice.com/2014/02/wanted-suspect-for-shooting-in-the-16th-district-video/,False,2,,,Shot - Wounded/Injured,39.9641,,-75.1916,,,0::18,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://blog.phillypolice.com/2014/02/wanted-suspect-for-shooting-in-the-16th-district-video/,,
92449,2014-01-02,Kentucky,Hopkinsville,24240 Coal Creek Road,0,0,http://www.gunviolencearchive.org/incident/92449,http://www.14news.com/story/24354417/hopkinsville-man-charged-with-cultivating-marijuana,False,1,,,Possession (gun(s) found during commission of other crimes),37.0899,,-87.303,,Convicted felon in possession of firearms,0::42,0::Adult 18+,0::Male,0::Anthony S. PPool,,0::Unharmed,0::Subject-Suspect,http://www.14news.com/story/24354417/hopkinsville-man-charged-with-cultivating-marijuana,,
93311,2014-01-02,South Carolina,Rock Hill,Cherry Road,0,0,http://www.gunviolencearchive.org/incident/93311,http://www.heraldonline.com/2014/01/04/5550052/gun-discharges-during-rock-hill.html,False,5,,,Shots Fired - No Injuries||Accidental Shooting||Accidental/Negligent Discharge||Armed robbery with injury/death and/or evidence of DGU found,34.9577,,-81.0184,,,0::18||1::18||2::18||3::19,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,3::Kenneth Graham,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect||4::Subject-Suspect||5::Subject-Suspect,http://www.heraldonline.com/2014/01/04/5550052/gun-discharges-during-rock-hill.html,46,15
92712,2014-01-02,Texas,Amarillo,3500 block of Mockingbird Lane,0,0,http://www.gunviolencearchive.org/incident/92712,http://amarillo.com/news/local-news/2014-01-03/amarillo-teens-charged-armed-robbery,False,13,,,Armed robbery with injury/death and/or evidence of DGU found,35.1829,,-101.878,,,0::16||2::17||3::16,0::Teen 12-17||1::Adult 18+||2::Teen 12-17||3::Teen 12-17,0::Male||1::Male||2::Male||3::Male,2::James Chambers,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect,http://amarillo.com/news/local-news/2014-01-03/amarillo-teens-charged-armed-robbery,87,31
92460,2014-01-02,Tennessee,Nashville,I-65,0,0,http://www.gunviolencearchive.org/incident/92460,http://www.wsmv.com/story/24353709/robbery-suspect-arrested-after-being-stopped-on-i-65,False,5,,,Armed robbery with injury/death and/or evidence of DGU found,36.1417,,-86.7766,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,2::Terry Chumbley,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.wsmv.com/story/24353709/robbery-suspect-arrested-after-being-stopped-on-i-65,58,19
93346,2014-01-02,California,Vista,827 S. Santa Fe ,0,0,http://www.gunviolencearchive.org/incident/93346,http://www.nbcsandiego.com/news/local/McDonalds-armed-robbery-Vista-238548401.html,False,49,,,Armed robbery with injury/death and/or evidence of DGU found,33.194,,-117.235,,at a McDonald's,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.nbcsandiego.com/news/local/McDonalds-armed-robbery-Vista-238548401.html,76,36
92391,2014-01-02,California,Chico,W. Sacremento Avenue,0,0,http://www.gunviolencearchive.org/incident/92391,http://www.krcrtv.com/news/local/armed-suspect-robs-subway-sandwich-shop-in-chico/-/14322302/23739174/-/7trwda/-/index.html,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,39.731,,-121.896,,at Subway,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.krcrtv.com/news/local/armed-suspect-robs-subway-sandwich-shop-in-chico/-/14322302/23739174/-/7trwda/-/index.html,3,4
95295,2014-01-02,Texas,Galveston,45th Street ,0,1,http://www.gunviolencearchive.org/incident/95295,http://www.galvestondailynews.com/news/police/article_76ed5168-7429-11e3-b243-001a4bcf6878.html,False,14,,,Shot - Wounded/Injured,29.2869,,-94.815,,shot himself,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.galvestondailynews.com/news/police/article_76ed5168-7429-11e3-b243-001a4bcf6878.html,23,11
92698,2014-01-02,Texas,El Paso,155 N. San Marcia,0,0,http://www.gunviolencearchive.org/incident/92698,http://www.ktsm.com/news/crimebeat/eppd-investigating-south-el-paso-drive-shooting,False,16,,,"Drive-by (car to street, car to car)",31.7901,,-106.522,,,,,,,,,,http://www.ktsm.com/news/crimebeat/eppd-investigating-south-el-paso-drive-shooting,77,29
95299,2014-01-02,Washington,Burien,Burien,0,1,http://www.gunviolencearchive.org/incident/95299,http://b-townblog.com/2014/01/06/accidental-shooting-injures-man-in-parking-lot-of-elmers-pub/,False,7,,,Shot - Wounded/Injured,47.4631,,-122.337,,shot himself,0::66,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://b-townblog.com/2014/01/06/accidental-shooting-injures-man-in-parking-lot-of-elmers-pub/,34,34
92707,2014-01-02,New York,Brooklyn,Sheffield Avenue,0,1,http://www.gunviolencearchive.org/incident/92707,http://www.nydailynews.com/blogs/theshack/2014/01/man-critical-following-brooklyn-shooting,False,8,,,Shot - Wounded/Injured,40.6623,,-73.8948,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nydailynews.com/blogs/theshack/2014/01/man-critical-following-brooklyn-shooting,60,19
92439,2014-01-02,Kentucky,Lexington,Eddie Street,0,1,http://www.gunviolencearchive.org/incident/92439,http://www.wkyt.com/home/headlines/238546091.html,False,6,,,Shot - Wounded/Injured,38.0551,,-84.4827,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wkyt.com/home/headlines/238546091.html,,
217093,2014-01-02,Texas,Austin,3600 Presidential Blvd,0,0,http://www.gunviolencearchive.org/incident/217093,http://blog.tsa.gov/2014_01_03_archive.html,False,35,,,TSA Action,30.2093,,-97.6529,,Austin-Bergstrom International Airport,,,,,,,,http://blog.tsa.gov/2014_01_03_archive.html,51,14
92878,2014-01-02,Florida,Saint Petersburg,4248 Fourth Avenue,0,1,http://www.gunviolencearchive.org/incident/92878,http://tbo.com/news/crime/bondsman-shoots-fugitive-who-was-driving-car-at-him-st-pete-police-say-20140102/,False,14,,,Shot - Wounded/Injured||Defensive Use,27.7673,,-82.6907,,Bail bondsman shoots fugitive,0::24||1::41,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Lorenzo Scott||1::Walter Kyles,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://tbo.com/news/crime/bondsman-shoots-fugitive-who-was-driving-car-at-him-st-pete-police-say-20140102/,70,19
92544,2014-01-02,Florida,Orlando,Landstreet Road,0,1,http://www.gunviolencearchive.org/incident/92544,http://articles.orlandosentinel.com/keyword/florida-mall/recent/3,False,9,,,Shot - Wounded/Injured,28.436,,-81.3928,,,1::20||2::27,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,1::Jean D. Germain||2::Nelson Velez Jr.,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,"http://www.orlandosentinel.com/news/local/breakingnews/os-shooting-landstreet-road-20140102,0,3401017.story||http://news.silobreaker.com/2-arrested-after-shooting-near-florida-mall-5_2267644149903654932||http://articles.orlandosentinel.com/keyword/florida-mall/recent/3",48,14
217095,2014-01-02,Oregon,Portland,7000 NE Airport Way,0,0,http://www.gunviolencearchive.org/incident/217095,http://blog.tsa.gov/2014_01_03_archive.html,False,3,,,TSA Action,45.5867,,-122.587,,Portland International Airport,,,,,,,,http://blog.tsa.gov/2014_01_03_archive.html,44,22
92885,2014-01-02,Florida,Greenacres,Dorchester Drive South,0,1,http://www.gunviolencearchive.org/incident/92885,http://www.wptv.com/dpp/news/region_c_palm_beach_county/greenacres/greenacres-man-shot-at-home-on-dorchester-drive-south,False,21,,,Shot - Wounded/Injured,26.6293,,-80.135,,,,,0::Male,,,0::Injured,0::Victim,http://www.wptv.com/dpp/news/region_c_palm_beach_county/greenacres/greenacres-man-shot-at-home-on-dorchester-drive-south,87,27
92546,2014-01-02,Florida,Lee,,0,0,http://www.gunviolencearchive.org/incident/92546,http://www.naplesnews.com/news/2014/jan/02/troopers-jaguar-driver-pointed-gun-threw-pop-can-c/,False,3,,,Brandishing/flourishing/open carry/lost/found,30.4191,,-83.2815,,,0::24,0::Adult 18+,0::Male,0::Alejandro Garcia Aguirre,,0::Unharmed,0::Subject-Suspect,http://www.naplesnews.com/news/2014/jan/02/troopers-jaguar-driver-pointed-gun-threw-pop-can-c/,7,3
217096,2014-01-02,Maine,Portland,1001 Westbrook St,0,0,http://www.gunviolencearchive.org/incident/217096,http://blog.tsa.gov/2014_01_03_archive.html,False,1,,,TSA Action,43.6539,,-70.3095,,Portland International Jetport,,,,,,,,http://blog.tsa.gov/2014_01_03_archive.html,117,8
92896,2014-01-02,Florida,Crestview,Bowers Street,0,1,http://www.gunviolencearchive.org/incident/92896,http://www.nwfdailynews.com/local/woman-tells-police-she-was-shot-in-alley-1.257121,False,1,,,Shot - Wounded/Injured,30.7525,,-86.5674,,,,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://www.nwfdailynews.com/local/woman-tells-police-she-was-shot-in-alley-1.257121,4,1
92549,2014-01-02,Florida,Jacksonville,8400 block of Herlong Road,0,1,http://www.gunviolencearchive.org/incident/92549,http://www.news4jax.com/news/jso-officer-shoots-kills-man-who-fought-arrest/29924248,False,5,,,Shot - Wounded/Injured||Shots Fired - No Injuries||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Domestic Violence||Brandishing/flourishing/open carry/lost/found,30.2842,,-81.7954,,OIS,1::45,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::Gary Robert Schiwart,,0::Unharmed||1::Injured,0::Victim||1::Subject-Suspect,http://members.jacksonville.com/news/crime/2014-01-02/story/man-fires-weapon-barricades-himself-jacksonville-standoff-ends-him||http://jacksonville.com/breaking-news/2014-01-03/story/jacksonville-standoff-suspect-critical-gunshot-head||http://www.news4jax.com/news/jso-officer-shoots-kills-man-who-fought-arrest/29924248,15,9
217097,2014-01-02,Arizona,Tucson,7250 S Tucson Blvd,0,0,http://www.gunviolencearchive.org/incident/217097,http://blog.tsa.gov/2014_01_03_archive.html,False,3,,,TSA Action,32.1217,,-110.935,,Tucson International Airport,,,,,,,,http://blog.tsa.gov/2014_01_03_archive.html,2,2
95176,2014-01-02,Mississippi,Columbus,Forrest Blvd. ,0,1,http://www.gunviolencearchive.org/incident/95176,http://www.wtva.com/news/local/story/Man-charged-in-Columbus-shooting/g_ow0aLQ20qot7mWDagF9A.cspx,False,1,,,Shot - Wounded/Injured,33.5011,,-88.377,,Juvenile shot in the leg,1::24,1::Adult 18+,1::Male,1::Cordell Deshaun Lewis,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wtva.com/news/local/story/Man-charged-in-Columbus-shooting/g_ow0aLQ20qot7mWDagF9A.cspx,41,17
92689,2014-01-02,California,San Diego,Camino De La Plaza,0,1,http://www.gunviolencearchive.org/incident/92689,http://www.cbs8.com/story/24353093/suspect-shot-near-border-during-dangerous-chase,False,51,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot,32.5453,,-117.045,,near San Ysidro border entry,0::30,0::Adult 18+,0::Male,0::Carlos Romero,,0::Injured,0::Victim,http://www.cbs8.com/story/24353093/suspect-shot-near-border-during-dangerous-chase,80,40
95694,2014-01-02,Mississippi,Vicksburg,3421 Washington Street,1,0,http://www.gunviolencearchive.org/incident/95694,http://www.wapt.com/news/central-mississippi/police-watchdog-shot-by-burglars/-/9156946/23756068/-/j4netqz/-/index.html,False,2,,,"Shot - Dead (murder, accidental, suicide)||Animal shot/killed",32.3262,,-90.891,,Top Dollar Pawn Shop,,,,,,0::Killed,0::Victim,http://www.wapt.com/news/central-mississippi/police-watchdog-shot-by-burglars/-/9156946/23756068/-/j4netqz/-/index.html,55,23
92447,2014-01-02,Kentucky,Louisville,Cannons Lane and Interstate 64,0,0,http://www.gunviolencearchive.org/incident/92447,http://www.wave3.com/story/24351258/chase-crash-leads-to-arrest-in-string-of-pharmacy-robberies,False,3,,,Possession (gun(s) found during commission of other crimes),38.2368,,-85.6594,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.wave3.com/story/24351258/chase-crash-leads-to-arrest-in-string-of-pharmacy-robberies,,
107101,2014-01-02,Kansas,Kansas City,Security Bank branch,0,0,http://www.gunviolencearchive.org/incident/107101,http://www.emporiagazette.com/news/state/article_3bcc6c28-516d-5599-a44e-d0098729ae4b.html,False,3,,,Implied Weapon,39.1141,,-94.6275,,"Suspect admitted handing a teller a note that said, ""I need $3,000 or I will start shooting."" Discovered later there was no gun.",0::29,0::Adult 18+,0::Male,0::Jamarr Dale,,0::Unharmed,0::Subject-Suspect,http://www.emporiagazette.com/news/state/article_3bcc6c28-516d-5599-a44e-d0098729ae4b.html,32,4
92406,2014-01-02,New Jersey,Burlington Township,2700 block of Mount Holly Road,0,0,http://www.gunviolencearchive.org/incident/92406,http://www.nj.com/mercer/index.ssf/2014/01/rooty_tooty_robbery_burlington_township_ihop_robbed_at_gunpoint_police_say.html#incar,False,3,,,Armed robbery with injury/death and/or evidence of DGU found,40.0356,,-74.8256,,"IHOP. Unknown number of robbers, at least one armed with handgun. Unknown number of employees/patrons.",,,,,,,,http://www.nj.com/mercer/index.ssf/2014/01/rooty_tooty_robbery_burlington_township_ihop_robbed_at_gunpoint_police_say.html#incar,7,7
92898,2014-01-02,Colorado,Fort Collins,Muir Lane,1,0,http://www.gunviolencearchive.org/incident/92898,http://www.coloradoan.com/article/20140103/NEWS01/301030055/Shooting-death-Fort-Collins-neighborhood-confirmed-suicide,False,2,,,"Shot - Dead (murder, accidental, suicide)||Suicide^",40.6181,,-105.036,,,0::30,0::Adult 18+,0::Male,0::Justin Berger,,0::Killed,0::Victim,http://www.coloradoan.com/article/20140103/NEWS01/301030055/Shooting-death-Fort-Collins-neighborhood-confirmed-suicide,52,14
92515,2014-01-02,Virginia,Richmond,,0,2,http://www.gunviolencearchive.org/incident/92515,http://www.richmond.com/news/latest-news/article_ddd298d8-7420-11e3-ab81-001a4bcf6878.html,False,7,,,Shot - Wounded/Injured,37.5738,,-77.5384,,,,0::Adult 18+||1::Adult 18+,0::Female,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.richmond.com/news/latest-news/article_ddd298d8-7420-11e3-ab81-001a4bcf6878.html,68,10
92584,2014-01-02,Louisiana,New Orleans,7800 block of Sand Street,0,1,http://www.gunviolencearchive.org/incident/92584,http://www.fox8live.com/story/24351783/police-respond-to-separate-shootings-in-no-east-algiers,False,2,,,Shot - Wounded/Injured,30.0711,,-89.9438,,,,0::Teen 12-17,0::Male,,,0::Injured,0::Victim,http://www.fox8live.com/story/24351783/police-respond-to-separate-shootings-in-no-east-algiers,100,4
92463,2014-01-02,Tennessee,Chattanooga,9042 Waconda Shore Drive,0,1,http://www.gunviolencearchive.org/incident/92463,http://www.timesfreepress.com/news/2014/jan/04/baker-faces-shooting-charges/,False,3,,,Shot - Wounded/Injured,35.1097,,-85.1536,,,0::25,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Fred Trey Cagle||1::Justin Charles Baker,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.timesfreepress.com/news/2014/jan/03/man-reportedly-shot-in-abdomen/||http://www.timesfreepress.com/news/2014/jan/04/baker-faces-shooting-charges/,26,11
92261,2014-01-02,Michigan,Saginaw,4100 block of Casey Drive,0,1,http://www.gunviolencearchive.org/incident/92261,http://www.abc12.com/story/24348259/spaulding-township-shooting-injures-1,False,5,,,Shot - Wounded/Injured,43.378,,-83.9454,,Unkown perp and/or source of gunshots,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.abc12.com/story/24348259/spaulding-township-shooting-injures-1,95,32
92168,2014-01-02,Ohio,Cincinnati (Evanston),1600 block of Potter Place,1,0,http://www.gunviolencearchive.org/incident/92168,http://www.local12.com//news/features/top-stories/stories/police-release-name-evanston-homicide-victim-6768.shtml#.UsR10nltflI,False,1,,,"Shot - Dead (murder, accidental, suicide)",39.1452,,-84.4743,,,0::37,0::Adult 18+,0::Male,0::Charles Foggie,,0::Killed,0::Victim,http://www.local12.com//news/features/top-stories/stories/police-release-name-evanston-homicide-victim-6768.shtml#.UsR10nltflI,31,9
95293,2014-01-02,Michigan,Richland,,0,1,http://www.gunviolencearchive.org/incident/95293,http://wwmt.com/shared/news/features/top-stories/stories/wwmt_richland-boy-shoots-himself-hunting-17075.shtml,False,6,,,Shot - Wounded/Injured||Accidental Shooting||Hunting accident||Child Involved Incident||Child injured self,42.3798,,-85.4515,,self inflicted,,0::Child 0-11,0::Male,,,0::Injured,0::Victim,http://wwmt.com/shared/news/features/top-stories/stories/wwmt_richland-boy-shoots-himself-hunting-17075.shtml,63,20
95297,2014-01-02,Oklahoma,Tahlequah,,0,1,http://www.gunviolencearchive.org/incident/95297,http://www.tahlequahdailypress.com/policeblotter/x2011609654/Accidental-shooting-reported,False,2,0::Unknown,0::Rifle,Shot - Wounded/Injured||Child Involved Incident||Child injured self,35.9283,,-94.9833,1,shot himself with rifle,0::5,0::Child 0-11,0::Male,,,0::Injured,0::Victim,http://www.tahlequahdailypress.com/policeblotter/x2011609654/Accidental-shooting-reported,4,9
92752,2014-01-02,Pennsylvania,Dunbar,200 block of Hustosky Road,1,0,http://www.gunviolencearchive.org/incident/92752,http://www.post-gazette.com/local/south/2014/01/03/Pennsylvania-State-Police-charge-17-year-old-as-an-adult-in-fatal-shooting/st,False,9,,,"Shot - Dead (murder, accidental, suicide)||Accidental Shooting||Accidental Shooting - Death||Thought gun was unloaded",39.9658,,-79.6671,,Hustosky will be tried as an adult.,0::22||1::17,0::Adult 18+||1::Teen 12-17,0::Male||1::Male,"0::William Oburn Little, IV||1::Andrew Thomas Hustosky",,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.post-gazette.com/local/south/2014/01/03/Pennsylvania-State-Police-charge-17-year-old-as-an-adult-in-fatal-shooting/st,,
217094,2014-01-02,Texas,Dallas,2375 International Pkwy,0,0,http://www.gunviolencearchive.org/incident/217094,http://blog.tsa.gov/2014_01_03_archive.html,False,24,0::Unknown,0::Unknown,TSA Action,32.8982,Dallas/Ft Worth Intl Airport (DFW),-97.0404,1,Dallas/Fort Worth International Airport,,,,,,,,http://blog.tsa.gov/2014_01_03_archive.html,98,12
92647,2014-01-02,Texas,Dallas,2728 McKinnon Street,1,0,http://www.gunviolencearchive.org/incident/92647,http://www.wfaa.com/news/crime/Police-Man-fatally-shot-by-officers-after-barricading-himself-shooting-at-police-238444381.html,False,30,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed",32.7938,,-96.8066,,,0::47,0::Adult 18+,0::Male,0::Michael Edward Schmidt,,0::Killed,0::Victim,http://www.wfaa.com/news/crime/Police-Man-fatally-shot-by-officers-after-barricading-himself-shooting-at-police-238444381.html,108,23
92241,2014-01-02,Virginia,Newport News,503 Harpersville Road,0,0,http://www.gunviolencearchive.org/incident/92241,"http://www.dailypress.com/news/crime/dp-newport-news-man-charged-brandishing-weapon-altercation,0,7140201.story",False,2,,,Brandishing/flourishing/open carry/lost/found,37.0638,,-76.4601,,,0::43||1::22,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.dailypress.com/news/crime/dp-newport-news-man-charged-brandishing-weapon-altercation,0,7140201.story",94,1
92554,2014-01-02,Florida,Lehigh Acres,Gunnery Road and Meadow Road,0,0,http://www.gunviolencearchive.org/incident/92554,http://www.winknews.com/Local-Florida/2014-01-02/Armed-men-rob-Lehigh-Acres-fireworks-stand#.UsYGZiqtMok,False,19,,,Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,26.5821,,-81.7123,,Armed robbery of a fireworks stand,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,1::Male||2::Male||3::Male,,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.winknews.com/Local-Florida/2014-01-02/Armed-men-rob-Lehigh-Acres-fireworks-stand#.UsYGZiqtMok,79,23
92441,2014-01-02,Kentucky,Richmond,Babylon Market and South Second Street,0,0,http://www.gunviolencearchive.org/incident/92441,http://www.wkyt.com/home/headlines/Richmond-police-investigate-robbery-near-EKUs-campus-238540401.html,False,6,,,Armed robbery with injury/death and/or evidence of DGU found,37.7468,,-84.2958,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.wkyt.com/home/headlines/Richmond-police-investigate-robbery-near-EKUs-campus-238540401.html,,
92645,2014-01-02,Texas,Hondo,,1,0,http://www.gunviolencearchive.org/incident/92645,http://www.kiiitv.com/story/30574530/former-border-patrol-agent-sentenced-in-death-of-wifes-lover,False,23,,,"Shot - Dead (murder, accidental, suicide)",29.3582,,-99.1285,,Former border patrol agent shoots wife's lover.,0::35||1::33,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Keith Martin||1::Adam Garibay,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.chron.com/default/article/Border-Patrol-agent-accused-in-fatal-shooting-5109768.php||http://www.kiiitv.com/story/30574530/former-border-patrol-agent-sentenced-in-death-of-wifes-lover,53,19
92715,2014-01-02,Texas,Huntsville,200 block of Evergreen,0,1,http://www.gunviolencearchive.org/incident/92715,http://www.khou.com/news/local/Hunstville-Police-Elderly-man-with-dementia-shoots-stepson-238660501.html,False,8,,,Shot - Wounded/Injured,30.6748,,-95.5269,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.khou.com/news/local/Hunstville-Police-Elderly-man-with-dementia-shoots-stepson-238660501.html,18,5
92319,2014-01-02,Iowa,Des Moines,3118 Jefferson Av,0,1,http://www.gunviolencearchive.org/incident/92319,http://whotv.com/2014/01/02/morning-shooting-des-moines-police-investigate/,False,3,,,Shot - Wounded/Injured||Home Invasion||Home Invasion - subject/suspect/perpetrator injured||Defensive Use,41.6101,,-93.6605,,"Perps cught breaking into victim's house, vic. shot at them and they ran. Perp showed up injured @ hospital.",1::18,0::Adult 18+||1::Adult 18+||2::Teen 12-17,0::Male||1::Male||2::Male,0::Rick Holland||1::Jesus Diaz,,0::Unharmed||1::Injured||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.kcrg.com/news/crime/Police-Say-Iowa-Man-Fired-Handgun-At-Burglary-Suspects-238476781.html||http://whotv.com/2014/01/02/morning-shooting-des-moines-police-investigate/,36,18
103028,2014-01-02,Connecticut,New Haven,Dixwell Avenue and Willis Street,0,1,http://www.gunviolencearchive.org/incident/103028,http://www.newhavenindependent.org/index.php/archives/entry/shooting_in_the_snow/,False,3,,,Shot - Wounded/Injured,41.3318,,-72.9352,,,0::23,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.newhavenindependent.org/index.php/archives/entry/shooting_in_the_snow/,93,10
92259,2014-01-02,Michigan,Detroit,15000 Pilgrim,0,1,http://www.gunviolencearchive.org/incident/92259,http://www.detroitnews.com/article/20140102/METRO01/301020118/3-young-girls-left-alone-Detroit-home-gun,False,14,,,Shot - Wounded/Injured,42.4071,,-83.1929,,"Two teens argued w/homeowners boyfriend, one shot him and fled. Three young children (1, 4, 5), removed from home after being left alone with rifle, no food, while others went to hospital.",0::37||1::1||2::4||3::5||4::19||5::16,0::Adult 18+||1::Child 0-11||2::Child 0-11||3::Child 0-11||4::Adult 18+||5::Teen 12-17,0::Male||1::Female||2::Female||3::Female||4::Male||5::Male,,,0::Injured||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect,http://www.wxyz.com/dpp/news/region/detroit/Man-shot-inside-Detroit-home-three-children-found-hungry||http://www.detroitnews.com/article/20140102/METRO01/301020118/3-young-girls-left-alone-Detroit-home-gun,8,3
92727,2014-01-02,New Jersey,Camden,1600 block of Louis Street,1,0,http://www.gunviolencearchive.org/incident/92727,http://www.nj.com/camden/index.ssf/2014/01/camden_man_found_shot_to_death_is_citys_first_murder_of_2014.html#incart_river_defaul,False,1,,,"Shot - Dead (murder, accidental, suicide)",39.925,,-75.104,,,0::39,0::Adult 18+,0::Male,0::Tristan Fulton,,0::Killed,0::Victim,http://www.nj.com/camden/index.ssf/2014/01/camden_man_found_shot_to_death_is_citys_first_murder_of_2014.html#incart_river_defaul,5,5
92299,2014-01-02,West Virginia,Boone County,6298 Joes Creek Road,2,0,http://www.gunviolencearchive.org/incident/92299,http://www.wvgazette.com/News/201401020020,False,3,,,"Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide",38.127,,-81.5783,,,0::34||1::45,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Reba Hatcher||1::Bobby Hatcher,,0::Killed||1::Killed,0::Victim||1::Subject-Suspect,http://www.wsaz.com/home/headlines/Double-Shooting-Reported-in-Boone-County-238445351.html||http://www.wvgazette.com/News/201401020020,23,7
103020,2014-01-02,Nevada,Green Valley,Paseo Verde Parkway and Desert Shadow Trail,0,2,http://www.gunviolencearchive.org/incident/103020,http://www.lasvegassun.com/news/2014/jan/03/henderson-party-shooting-leaves-two-injured/,False,3,,,Shot - Wounded/Injured,36.0226,,-115.067,,,0::18||1::18,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.lasvegassun.com/news/2014/jan/03/henderson-party-shooting-leaves-two-injured/,22,20
92571,2014-01-02,Mississippi,Natchez,Beaumont Street,1,0,http://www.gunviolencearchive.org/incident/92571,http://www.wapt.com/news/central-mississippi/police-investigate-fatal-shooting-in-natchez/-/9156946/23738964/-/k31b13/-/index.ht,False,3,,,"Shot - Dead (murder, accidental, suicide)",31.5656,,-91.3918,,,1::34,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Kendrick Tolbert||1::McKinley Brady,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wapt.com/news/central-mississippi/police-investigate-fatal-shooting-in-natchez/-/9156946/23738964/-/k31b13/-/index.ht,94,38
92582,2014-01-02,Louisiana,Baton Rouge,North Acadian,0,0,http://www.gunviolencearchive.org/incident/92582,http://www.redsticknow.com/2014/01/baton-rouge-crime-news/baton-rouge-man-arrested-for-attempted-murder-of-a-police-officer/,False,6,,,Shots Fired - No Injuries||Officer Involved Incident||Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,30.4102,,-91.1754,,,2::20,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||2::Male,2::Ryan S. Jones,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.redsticknow.com/2014/01/baton-rouge-crime-news/baton-rouge-man-arrested-for-attempted-murder-of-a-police-officer/,68,16
92268,2014-01-02,Georgia,Columbus,1751 Williams Road,0,1,http://www.gunviolencearchive.org/incident/92268,http://www.ledger-enquirer.com/2014/01/02/2881654/report-gunshot-victim-crashes.html,False,3,,,Shot - Wounded/Injured,32.5543,,-84.9507,,,0::24,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.ledger-enquirer.com/2014/01/02/2881654/report-gunshot-victim-crashes.html,134,29
97819,2014-01-02,Alabama,Huntsville,Bridge Road,1,0,http://www.gunviolencearchive.org/incident/97819,http://blog.al.com/breaking/2014/01/you_asked_how_many_shootings_h.html,False,5,,,"Shot - Dead (murder, accidental, suicide)||Drug involvement||Drive-by (car to street, car to car)",34.767,,-86.6015,,third incident of the day at this address,0::21||1::24,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Mercedes Morris||1::Lopez Marittia Rice ,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://blog.al.com/breaking/2014/01/huntsville_woman_in_critical_c_1.html||http://blog.al.com/breaking/2014/01/you_asked_how_many_shootings_h.html,19,7
92465,2014-01-02,North Carolina,Durham,Cornell Street,0,1,http://www.gunviolencearchive.org/incident/92465,http://www.newsobserver.com/2014/01/03/3503617/durham-police-probe-shooting-of.html,False,1,,,Shot - Wounded/Injured,35.9891,,-78.9192,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.newsobserver.com/2014/01/03/3503617/durham-police-probe-shooting-of.html,29,20
92721,2014-01-02,Texas,Houston,Ojeman Road at Hammerly Boulevard,0,1,http://www.gunviolencearchive.org/incident/92721,http://www.khou.com/news/local/HPD-Man-shot-while-walking-away-from-robber-in-apartment-parking-lot-238590601.html,False,2,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found,29.8109,,-95.5024,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.khou.com/news/local/HPD-Man-shot-while-walking-away-from-robber-in-apartment-parking-lot-238590601.html,148,15
93413,2014-01-03,Texas,Harris County,Eldridge Parkway between Memorial Drive and Enclave Parkway,0,0,http://www.gunviolencearchive.org/incident/93413,http://www.khou.com/news/local/Jogger-sexually-assaulted-robbed-in-Hershey-Park-restroom-238676741.html,False,29,,,Armed robbery with injury/death and/or evidence of DGU found,29.7752,,-95.3102,,Sexually assaulted and robbed at gunpoint in bathroom of public park.,,1::Adult 18+||2::Adult 18+,0::Female||1::Male||2::Male,,,1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.khou.com/news/local/Jogger-sexually-assaulted-robbed-in-Hershey-Park-restroom-238676741.html,143,6
92704,2014-01-03,New York,Queens,Farmers Boulevard and 133rd Avenue,1,3,http://www.gunviolencearchive.org/incident/92704,http://abclocal.go.com/wabc/story,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Mass Shooting (4+ victims injured or killed excluding the subject/suspect/perpetrator, one location)",40.6775,,-73.7629,,"Green was once a part of the rapper 50 Cent's ""G-Unit"" rap group.",0::42||1::22||2::22||3::20||4::42,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Female||4::Male,"0::Jamal Green, aka Mazaradi Fox||4::Jamal Green",,0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.nydailynews.com/new-york/nyc-crime/killed-wounded-se-queens-shooting-article-1.1565754||http://abclocal.go.com/wabc/story,32,10
96088,2014-01-03,Kentucky,Louisville,3100 block of Elliott Avenue,0,1,http://www.gunviolencearchive.org/incident/96088,http://www.whas11.com/news/local/Police-investigate-shooting-at-31st-and-Elliot-Avenue-239970891.html,False,3,,,Shot - Wounded/Injured||Home Invasion||Home Invasion - Resident injured,38.2515,,-85.803,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Injured,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.whas11.com/news/local/Police-investigate-shooting-at-31st-and-Elliot-Avenue-239970891.html,,
92844,2014-01-03,Louisiana,New Orleans,,0,1,http://www.gunviolencearchive.org/incident/92844,http://www.nola.com/crime/index.ssf/2014/01/man_shot_in_pension_town_on_fr.html#incart_river,False,2,,,Shot - Wounded/Injured,29.9551,,-90.0747,,"Pension Town, at the intersection of Eagle and Hickory streets.",,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nola.com/crime/index.ssf/2014/01/man_shot_in_pension_town_on_fr.html#incart_river,93,5
93379,2014-01-03,Texas,Huntsville,200 block of Evergreen,0,1,http://www.gunviolencearchive.org/incident/93379,http://www.kbtx.com/news/local/headlines/Huntsville-Police-Elderly-Man-Shoots-Stepson-238608241.html,False,8,,,Shot - Wounded/Injured||Domestic Violence,30.6748,,-95.5269,,Elderly man shot his stepson in the leg.,,1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kbtx.com/news/local/headlines/Huntsville-Police-Elderly-Man-Shoots-Stepson-238608241.html,18,5
94940,2014-01-03,Ohio,Cleveland,4797 W. Broad St. Speedway,0,0,http://www.gunviolencearchive.org/incident/94940,http://www.nbc4i.com/story/24418175/armed-gas-station-robber-sought,False,11,,,Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,41.4993,,-81.6944,,Man robbed Speedway at gunpoint.,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.nbc4i.com/story/24418175/armed-gas-station-robber-sought,10,21
92842,2014-01-03,Louisiana,Baton Rouge,12000 block of Province Place,0,1,http://www.gunviolencearchive.org/incident/92842,http://www.wafb.com/story/24353729/police-woman-gets-shot-in-upper-torso,False,6,,,Shot - Wounded/Injured,30.4379,,-91.0467,,,0::28||1::38,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::Roy Hayward,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wafb.com/story/24353729/police-woman-gets-shot-in-upper-torso,101,15
93001,2014-01-03,Maryland,Odenton,8700 block of Piney Orchard Parkway,0,0,http://www.gunviolencearchive.org/incident/93001,http://www.wbaltv.com/news/maryland/anne-arundel-county/gunmen-strike-verizon-retail-store-in-anne-arundel-county/-/10137088/237,False,3,,,Armed robbery with injury/death and/or evidence of DGU found,39.0709,,-76.7127,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.wbaltv.com/news/maryland/anne-arundel-county/gunmen-strike-verizon-retail-store-in-anne-arundel-county/-/10137088/237,21,21
94938,2014-01-03,Ohio,Gahanna,Gahanna library,0,1,http://www.gunviolencearchive.org/incident/94938,http://www.nbc4i.com/story/24419337/police-use-snowy-footprints-to-track-rape-suspect-to-apartment,False,12,,,,40.0191,,-82.8698,,"Date is approximate. Woman met man on internet, met at library parking lot where incident occurred. Perp charged with rape.",,0::Adult 18+||1::Adult 18+,1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nbc4i.com/story/24419337/police-use-snowy-footprints-to-track-rape-suspect-to-apartment,19,3
92625,2014-01-03,Illinois,Rockford,7th Street and 5th Av,0,0,http://www.gunviolencearchive.org/incident/92625,http://www.nta.fm/LocalNews/Home.aspx,False,17,,,Shot - Wounded/Injured||Drug involvement,42.2615,,-89.0808,,"Man inside car shot, left on street/hospitalized, arrested for poss. cocaine, marijuana. Poss drug deal gone bad.",0::33,0::Adult 18+,0::Male,0::Jarian Caldwell-Flint,,0::Unharmed,0::Victim,http://www.nta.fm/LocalNews/Home.aspx,67,34
92849,2014-01-03,Louisiana,Opelousas,Planters and Hattisburg,1,0,http://www.gunviolencearchive.org/incident/92849,http://www.klfy.com/story/24360216/fatal-shooting-in-opelousas,False,5,,,"Shot - Dead (murder, accidental, suicide)",30.5458,,-92.0865,,,0::32||1::23,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Eric Harrison||1::Joshua Goodley,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.klfy.com/story/24360216/fatal-shooting-in-opelousas,40,24
92628,2014-01-03,Illinois,Rockford,1102 Ferguson St,0,0,http://www.gunviolencearchive.org/incident/92628,http://www.nta.fm/LocalNews/story.aspx,False,17,,,Armed robbery with injury/death and/or evidence of DGU found,42.2623,,-89.1076,,Charged w/armed robbery of Neighborhood Market,0::18||1::17,0::Adult 18+||1::Teen 12-17,0::Male||1::Male,0::Jacoby Evans||1::Marvin G. Prince,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.nta.fm/LocalNews/story.aspx,67,34
96451,2014-01-03,Texas,Houston,4200 block of Clay Hill Drive,0,0,http://www.gunviolencearchive.org/incident/96451,http://www.khou.com/news/local/Teen-arrested-in-connection-with-armed-robberies-at-NW-Houston-apartment-complex-239977631.html,False,7,,,Shots Fired - No Injuries||Armed robbery with injury/death and/or evidence of DGU found,29.8351,,-95.6488,,Armed robbery while victims were loading the child into a car seat.,3::17,2::Child 0-11||3::Teen 12-17,0::Male||1::Female||3::Male,3::Raul Alberto Vargas,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect,http://www.khou.com/news/local/Teen-arrested-in-connection-with-armed-robberies-at-NW-Houston-apartment-complex-239977631.html,138,7
93070,2014-01-03,Ohio,Toledo,1313 S. Reynolds Rd,0,0,http://www.gunviolencearchive.org/incident/93070,http://www.toledoblade.com/Police-Fire/2014/01/04/Same-robber-suspected-in-S-Toledo-holdups.html,False,9,,,Armed robbery with injury/death and/or evidence of DGU found,41.6524,Baskin-Robbins,-83.6647,,"Robbed Baskin-Robbons at gunpoint, suspect in 12/31/13 and 1/1/14 armed robberies.",,0::Adult 18+||1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.toledoblade.com/Police-Fire/2014/01/04/Same-robber-suspected-in-S-Toledo-holdups.html,44,11
93512,2014-01-03,Mississippi,Hattiesburg,900 Broadway Drive ,0,1,http://www.gunviolencearchive.org/incident/93512,http://www.wdam.com/story/24376879/suspect-in-custody-after,False,4,,,Shot - Wounded/Injured||Pistol-whipping,31.3112,,-89.312,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Jason Bullock,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wdam.com/story/24376879/suspect-in-custody-after,103,34
92981,2014-01-03,Oregon,Lincoln City,U.S. 101 and Northeast 22nd ,1,0,http://www.gunviolencearchive.org/incident/92981,http://www.oregonlive.com/pacific-northwest-news/index.ssf/2014/01/lincoln_city_standoff_one_susp.html#incart_river,False,5,,,"Shots Fired - No Injuries||Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator suicide at standoff||Armed robbery with injury/death and/or evidence of DGU found",44.9815,,-124.008,,,0::30||1::30,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Sara Jo Johnson||1::Dale Edward Wallace ,,0::Killed||1::Unharmed,0::Victim||1::Victim,http://www.oregonlive.com/pacific-northwest-news/index.ssf/2014/01/lincoln_city_standoff_one_susp.html#incart_river,10,5
92749,2014-01-03,Pennsylvania,Philadelphia,15th and Ritner Streets,0,1,http://www.gunviolencearchive.org/incident/92749,http://philadelphia.cbslocal.com/2014/01/03/woman-shot-in-head-in-south-philadelphia/,False,1,,,Shot - Wounded/Injured,39.9209,,-75.1722,,,0::19,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://philadelphia.cbslocal.com/2014/01/03/woman-shot-in-head-in-south-philadelphia/,,
93519,2014-01-03,Mississippi,Meridian,2300 block of 8th Street,0,1,http://www.gunviolencearchive.org/incident/93519,http://www.wtok.com/home/headlines/Arrest-Made-in-Friday-Shooting-238984271.html,False,3,,,Shot - Wounded/Injured,32.3651,,-88.7015,,,1::21,1::Adult 18+,0::Male||1::Male,0::Jontaiidrae Rhone||1::San Marco Houston ,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wtok.com/home/headlines/Arrest-Made-in-Friday-Shooting-238984271.html,82,32
94427,2014-01-03,Delaware,Wilmington,1511 Philadelphia Pike,0,0,http://www.gunviolencearchive.org/incident/94427,http://www.nbcphiladelphia.com/news/local/Troopers-Investigate-Attempted-Robbery-at-Church-238723201.html,False,1,0::Unknown,0::Unknown,Non-Shooting Incident||Armed robbery with injury/death and/or evidence of DGU found,39.7844,Holly Oak Methodist Church,-75.479,1,"39.784673, -75.478982",0::26,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nbcphiladelphia.com/news/local/Troopers-Investigate-Attempted-Robbery-at-Church-238723201.html,7,1
95151,2014-01-03,District of Columbia,Washington,800 block of 51st Street,0,0,http://www.gunviolencearchive.org/incident/95151,https://twitter.com/DCPoliceDept/status/419184563642826752,False,1,,,Shot - Wounded/Injured,38.9414,,-77.1008,,,,,,,,,0::Victim,https://twitter.com/DCPoliceDept/status/419184563642826752,,
95141,2014-01-03,District of Columbia,Washington,Galveston Place,0,0,http://www.gunviolencearchive.org/incident/95141,https://twitter.com/DCPoliceDept/status/419244645730619392,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.8238,,-76.999,,,,,,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/419244645730619392,,
95134,2014-01-03,District of Columbia,Washington,1400 block of Ogden Street NW,0,0,http://www.gunviolencearchive.org/incident/95134,https://twitter.com/DCPoliceDept/status/419269157415165952,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.9337,,-77.0328,,,,,,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/419269157415165952,,
95153,2014-01-03,District of Columbia,Washington,400 Chesapeake Street SE,0,0,http://www.gunviolencearchive.org/incident/95153,https://twitter.com/DCPoliceDept/status/419064289786609664,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,38.8294,,-77.0002,,,,,,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/419064289786609664,,
93543,2014-01-03,North Dakota,West Fargo,524 Sheyenne St,0,0,http://www.gunviolencearchive.org/incident/93543,http://www.valleynewslive.com/story/24360781/west-fargo-stop-n-go-robbed-at-gunpoint,False,1,,,Institution/Group/Business||Non-Shooting Incident||Armed robbery with injury/death and/or evidence of DGU found,46.8713,Stop-n-Go Convenience Store,-96.9041,,at Stop-N-Go,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.valleynewslive.com/story/24360781/west-fargo-stop-n-go-robbed-at-gunpoint,13,13
93505,2014-01-03,Mississippi,Amory,Guyton Road,0,2,http://www.gunviolencearchive.org/incident/93505,http://djournal.com/news/amory-man-charged-aggravated-assault-shooting/,False,1,,,Shot - Wounded/Injured||Domestic Violence,34.0518,,-88.5213,,,2::47,2::Adult 18+,2::Male,"2::John Hand, Jr.",,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://djournal.com/news/amory-man-charged-aggravated-assault-shooting/,20,7
93094,2014-01-03,Maryland,Temple Hills,3101 Branch Avenue,0,1,http://www.gunviolencearchive.org/incident/93094,http://www.washingtonpost.com/local/crime/gunfire-at-metro-station-in-prince-georges-county-one-minor-injury-reported/2014/01/04,False,4,,,Shot - Wounded/Injured,38.8507,Naylor Road Metro Station,-76.9565,,,,,0::Male,,,0::Injured,0::Victim,http://www.washingtonpost.com/local/crime/gunfire-at-metro-station-in-prince-georges-county-one-minor-injury-reported/2014/01/04,26,26
92830,2014-01-03,Louisiana,New Orleans,,0,1,http://www.gunviolencearchive.org/incident/92830,http://www.wwltv.com/news/crime/Man-shot-in-Leonidas-neighborhood-238650571.html,False,2,,,Shot - Wounded/Injured,29.9551,,-90.0747,,"Leonidas neighborhood, near the intersection of Eagle and Hickory streets.",,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.wwltv.com/news/crime/Man-shot-in-Leonidas-neighborhood-238650571.html,93,5
92718,2014-01-03,New York,Manhattan,110 Christopher Street,0,0,http://www.gunviolencearchive.org/incident/92718,http://www.nbcnewyork.com/news/local/Greenwich-village-snow-carjacking-238639041.html,False,10,,,Car-jacking,40.7332,,-74.0052,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nbcnewyork.com/news/local/Greenwich-village-snow-carjacking-238639041.html,66,27
92992,2014-01-03,Nevada,Sparks,,1,0,http://www.gunviolencearchive.org/incident/92992,http://www.ktvn.com/story/24359945/man-kills-himself-outside-sparks-hospital,False,2,,,"Shot - Dead (murder, accidental, suicide)||Suicide^",39.5424,,-119.755,,outside Sparks hospital,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.ktvn.com/story/24359945/man-kills-himself-outside-sparks-hospital,30,13
92436,2014-01-03,Iowa,Des Moines,30th Street and Forest Avenue,0,1,http://www.gunviolencearchive.org/incident/92436,http://blogs.desmoinesregister.com/dmr/index.php/2014/01/02/non-life-threatening-gun-shot-wound-sustained-in-early-morning-argum,False,3,,,Shot - Wounded/Injured||Brandishing/flourishing/open carry/lost/found,41.604,,-93.6584,,Verbal altercation led to shots fired.,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://blogs.desmoinesregister.com/dmr/index.php/2014/01/02/non-life-threatening-gun-shot-wound-sustained-in-early-morning-argum,36,18
93546,2014-01-03,Nebraska,Omaha,4900 Center St,0,0,http://www.gunviolencearchive.org/incident/93546,http://omahacrimereport.com/event/I69598,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,41.2415,,-95.989,,"Reported ""Robbery-Firearm""",,,,,,,,http://omahacrimereport.com/event/I69598,,9
92788,2014-01-03,North Carolina,Winston-Salem,2730 Manchester St.,1,0,http://www.gunviolencearchive.org/incident/92788,http://www.news-record.com/news/article_c1d3d330-754d-11e3-a00d-001a4bcf6878.html,False,12,,,"Shot - Dead (murder, accidental, suicide)",36.1261,,-80.2189,,,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.news-record.com/news/article_c1d3d330-754d-11e3-a00d-001a4bcf6878.html,72,32
103026,2014-01-03,Illinois,Taylorville,100 block of East Market Street,1,0,http://www.gunviolencearchive.org/incident/103026,http://www.sj-r.com/article/20140104/NEWS/140109822/10287/NEWS,False,13,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Suicide^",39.5481,,-89.2948,1,Suicide; police question husband; poss. domestic problems in past,0::44,0::Adult 18+,0::Female,0::Brenda Clifton,,0::Killed,0::Victim,http://www.sj-r.com/article/20140104/NEWS/140109822/10287/NEWS,95,48
92936,2014-01-03,Mississippi,Laurel,1400 block of Woodlawn Drive ,2,0,http://www.gunviolencearchive.org/incident/92936,http://www.wdam.com/story/24410659/four-suspects-in-custody-in-connection-to-shooting-death-of-two-laurel-residents,False,4,,,"Shot - Dead (murder, accidental, suicide)",31.678,,-89.1448,,,0::19||1::31||2::20||3::18||4::23||5::22,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Female||3::Female||4::Male,0::Justin Curry ||1::Bennie Owens||2::Brittany Waters||3::Sylvashia Mcdonald||4::Maurice Jones||5::Gregory Jerome Nix,,0::Killed||1::Killed||2::Unharmed||3::Unharmed||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect||4::Subject-Suspect||5::Subject-Suspect,http://www.wjtv.com/story/24365123/2-men-shot-killed-in-laurel||http://www.wdam.com/story/24410659/four-suspects-in-custody-in-connection-to-shooting-death-of-two-laurel-residents,80,34
92697,2014-01-03,Maryland,Baltimore,1800 block of W. Fayette Street,0,0,http://www.gunviolencearchive.org/incident/92697,"http://www.baltimoresun.com/news/maryland/crime/blog/bs-md-ci-five-killed-first-two-days-of-2014-20140103,0,3662255.story",False,7,,,Shot - Wounded/Injured,39.2898,,-76.6455,,,,0::Adult 18+,0::Male,,,,0::Victim||1::Subject-Suspect,"http://www.baltimoresun.com/news/maryland/crime/blog/bs-md-ci-five-killed-first-two-days-of-2014-20140103,0,3662255.story",,44
94563,2014-01-03,New York,Nesconset,173 Smithtown Boulevard,0,0,http://www.gunviolencearchive.org/incident/94563,http://sachem.patch.com/groups/police-and-fire/p/police-armed-robbery-at-nesconset-subway-sachem,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,40.8371,,-73.1566,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://sachem.patch.com/groups/police-and-fire/p/police-armed-robbery-at-nesconset-subway-sachem,8,2
92445,2014-01-03,Michigan,Detroit,17300 block of Lenore St,1,0,http://www.gunviolencearchive.org/incident/92445,http://www.wxyz.com/dpp/news/detroit-police-investigating-murder-of-23-year-old,False,13,,,"Shot - Dead (murder, accidental, suicide)",42.4168,,-83.2812,,Shot in car by boyfriend and associate,1::23,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Killed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.wxyz.com/dpp/news/detroit-police-investigating-murder-of-23-year-old,9,5
92962,2014-01-03,Arizona,Phoenix,Maricopa County,0,1,http://www.gunviolencearchive.org/incident/92962,http://www.myfoxphoenix.com/story/24362241/2014/01/04/suspect-arrested-for-shooting-off-duty-deputy,False,7,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)||Officer Involved Incident||Officer Involved Shooting - Officer shot||Possession (gun(s) found during commission of other crimes)",33.4484,,-112.074,,,0::32||1::27,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::John William Murphy,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.myfoxphoenix.com/story/24362241/2014/01/04/suspect-arrested-for-shooting-off-duty-deputy,27,27
94635,2014-01-03,Texas,Texas City,1400 block of 19th Avenue North,0,0,http://www.gunviolencearchive.org/incident/94635,http://www.khou.com/news/local/89-year-old-victimized-twice-in-3-years-gets-into-shootout-with-suspect--239629961.html,False,14,,,Shots Fired - No Injuries||Home Invasion||Home Invasion - No death or injury,29.4037,,-94.9144,,Home invasion robbery that ended with a shootout. ,0::71||1::89||2::31||3::33||4::34,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Male||2::Male||3::Male||4::Male,0::Jannette Fletcher||1::Harold Fletcher||2::Alexander Carmona||3::Benigno Reyes Jr.||4::Christopher Rodriguez,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect||4::Subject-Suspect,http://www.khou.com/news/local/89-year-old-victimized-twice-in-3-years-gets-into-shootout-with-suspect--239629961.html,23,11
92573,2014-01-03,Mississippi,Houston,County Road 190,0,1,http://www.gunviolencearchive.org/incident/92573,http://www.wcbi.com/wordpress/chickasaw-county-hunting-accident-injures-teen,False,1,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Hunting accident,33.8262,,-88.8767,,Juvenile shot in a hunting accident,,,0::Male,,,0::Injured,0::Victim,http://www.wtva.com/news/local/story/Chickasaw-County-authorities-investigate-shooting/SF4mYpt840ySqAd3DgQLGQ.cspx||http://www.wcbi.com/wordpress/chickasaw-county-hunting-accident-injures-teen,22,8
92973,2014-01-03,Washington,Spokane,Division St,0,1,http://www.gunviolencearchive.org/incident/92973,http://www.spokesman.com/stories/2014/jan/04/two-shootings-friday-unrelated/,False,5,,,Shot - Wounded/Injured,47.7157,,-117.411,,Wendy's parking lot,,0::Adult 18+,0::Female,,,0::Injured,0::Victim,http://www.spokesman.com/stories/2014/jan/04/two-shootings-friday-unrelated/,6,6
92808,2014-01-03,North Carolina,Farmville,California Road,0,1,http://www.gunviolencearchive.org/incident/92808,http://www.witn.com/home/headlines/Pitt-County-Sheriffs-Office-Investigates-Shooting-238672871.html,False,3,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found,35.6277,,-77.5696,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.witn.com/home/headlines/Pitt-County-Sheriffs-Office-Investigates-Shooting-238672871.html,8,5
94711,2014-01-03,Illinois,Decatur,1100 block of East Riverside Av,0,1,http://www.gunviolencearchive.org/incident/94711,http://herald-review.com/news/local/justin-q-buckley-charged-with-shooting-girlfriend-unborn-baby/article_296a37d1-a749-5479-ade,False,13,,,Shot - Wounded/Injured||Domestic Violence||Possession (gun(s) found during commission of other crimes)||Brandishing/flourishing/open carry/lost/found,39.8278,,-88.9418,,"Father of child charged with attempted first-degree murder of mother, and attempted homicide of an unborn child"" as well as weapons charge accelerants.",0::23||1::23,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::Justin Q. Buckley,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://herald-review.com/news/local/justin-q-buckley-charged-with-shooting-girlfriend-unborn-baby/article_296a37d1-a749-5479-ade,96,48
92593,2014-01-03,Washington,Bellevue,Wiburton Park,1,0,http://www.gunviolencearchive.org/incident/92593,http://www.king5.com/news/crime/Bellevue-shots-fired-238586791.html,False,9,,,"Shot - Dead (murder, accidental, suicide)||Suicide^",47.6077,,-122.176,,,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.king5.com/news/crime/Bellevue-shots-fired-238586791.html,41,41
92616,2014-01-03,Michigan,Detroit,15000 block of Ardmore,0,1,http://www.gunviolencearchive.org/incident/92616,http://detroit.cbslocal.com/2014/01/03/state-removes-children-left-at-crime-scene-in-detroit/,False,14,,,Shot - Wounded/Injured,42.3999,,-83.184,,,0::37,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://detroit.cbslocal.com/2014/01/03/state-removes-children-left-at-crime-scene-in-detroit/,8,3
92978,2014-01-03,Washington,Walla Walla,Mojonnier and Beets ,1,0,http://www.gunviolencearchive.org/incident/92978,http://www.tri-cityherald.com/2014/01/04/2759411/body-found-in-walla-walla-identified.html,False,5,,,"Shot - Dead (murder, accidental, suicide)",46.0231,,-118.428,,,0::20,0::Adult 18+,0::Female,0::Yesica Olivos,,0::Killed,0::Victim,http://www.tri-cityherald.com/2014/01/04/2759411/body-found-in-walla-walla-identified.html,16,16
183489,2014-01-03,Washington,Selah,South Rushmore Road,1,0,http://www.gunviolencearchive.org/incident/183489,http://www.yakimaherald.com/news/latestlocalnews/1806955-8/photosvideo-man-fatally-shot-by-police-in-selah,False,4,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||Defensive Use",46.6504,,-120.517,,,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.yakimaherald.com/news/latestlocalnews/1806955-8/photosvideo-man-fatally-shot-by-police-in-selah,15,15
92683,2014-01-03,Maryland,Baltimore,1700 block of Ashburton Street,1,0,http://www.gunviolencearchive.org/incident/92683,http://www.wbaltv.com/news/maryland/baltimore-city/man-shot-multiple-times-in-west-baltimore/-/10131532/23763244/-/wjmghez/-/ind,False,7,,,"Shot - Dead (murder, accidental, suicide)",39.3074,,-76.6624,,,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.wbaltv.com/news/maryland/baltimore-city/man-shot-multiple-times-in-west-baltimore/-/10131532/23763244/-/wjmghez/-/ind,40,40
93317,2014-01-03,West Virginia,Charleston,4907 MacCorkle Avenue,1,0,http://www.gunviolencearchive.org/incident/93317,http://www.wowktv.com/story/24362593/update-victim-identified-in-charleston-wv-homicide,False,2,,,"Shot - Dead (murder, accidental, suicide)",38.3197,,-81.5789,,,0::90,0::Adult 18+,0::Male,"0::George Molle, Jr.",,0::Killed,0::Victim,http://www.wowktv.com/story/24362593/update-victim-identified-in-charleston-wv-homicide,36,17
92814,2014-01-03,West Virginia,Wilkinson,Monitor Hill,0,1,http://www.gunviolencearchive.org/incident/92814,http://www.wowktv.com/story/24361872/one-person-arrested-in-early-morning-shooting,False,3,,,Shot - Wounded/Injured,37.8259,,-81.9983,,,0::43||1::37,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Ronnie May||1::Christopher Lee Ellis,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wowktv.com/story/24361872/one-person-arrested-in-early-morning-shooting,24,7
210410,2014-01-03,California,Vista,770 Sycamore Avenue,0,2,http://www.gunviolencearchive.org/incident/210410,http://www.nbcsandiego.com/news/local/Vista-Restaurant-Robbery-Attempt-Shooting-Sycamore-Ave-238733911.html,False,49,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found||Defensive Use||Institution/Group/Business,33.1626,,-117.218,,Uncle Tony's Italian Cuisine; worker shoots two men attempting to rob eatery,,1::Adult 18+||2::Adult 18+,1::Male||2::Male,,,0::Unharmed||1::Injured||2::Injured,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.nbcsandiego.com/news/local/Vista-Restaurant-Robbery-Attempt-Shooting-Sycamore-Ave-238733911.html,76,36
92691,2014-01-03,California,Visalia,Crenshaw and Westgate,0,1,http://www.gunviolencearchive.org/incident/92691,http://www.fresnobee.com/2014/01/03/3696606/visalia-police-officers-shoot.html,False,22,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot,36.3196,,-119.346,,near Constitution Park,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.fresnobee.com/2014/01/03/3696606/visalia-police-officers-shoot.html,26,16
93323,2014-01-03,Arizona,Glendale,Loop 101 and Bell,0,0,http://www.gunviolencearchive.org/incident/93323,http://www.azcentral.com/community/glendale/articles/20140105glendale-mall-shooting-arrests-abrk.html,False,8,,,Armed robbery with injury/death and/or evidence of DGU found,33.672,,-112.204,,shoplifters at Sears in Arrowhead Place ,0::35||1::33,0::Adult 18+||1::Adult 18+,0::Male||1::Female,0::Michael Hough||1::Shaashana Hough,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.azcentral.com/community/glendale/articles/20140105glendale-mall-shooting-arrests-abrk.html,22,22
92825,2014-01-03,Arkansas,Little Rock,3100 W. Roosevelt Road,0,1,http://www.gunviolencearchive.org/incident/92825,http://www.arkansasonline.com/news/2014/jan/03/lr-police-seek-man-roosevelt-road-shooting/,False,2,,,Shot - Wounded/Injured,34.7256,,-92.3089,,,0::23,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Valisha Boles,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.arkansasonline.com/news/2014/jan/03/lr-police-seek-man-roosevelt-road-shooting/,34,31
92694,2014-01-03,California,Fresno,California and Tulare,0,1,http://www.gunviolencearchive.org/incident/92694,http://www.fresnobee.com/2014/01/03/3696062/man-shot-wounded-in-southwest.html,False,16,,,Shot - Wounded/Injured,36.7745,,-119.83,,in front of Edison High School ,,0::Adult 18+,0::Male,,,0::Injured,0::Victim||1::Subject-Suspect,http://www.fresnobee.com/2014/01/03/3696062/man-shot-wounded-in-southwest.html,23,8
93338,2014-01-03,Washington,Pasco,720 W. Lewis ,1,0,http://www.gunviolencearchive.org/incident/93338,http://www.tri-cityherald.com/2014/01/04/2759484/pasco-man-suspected-of-killing.html,False,4,,,"Shot - Dead (murder, accidental, suicide)||Domestic Violence",46.2291,,-119.098,,,0::46||1::47,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Tamie A. Clark-Acevedo||1::Guadalupe Montejano,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.tri-cityherald.com/2014/01/04/2759484/pasco-man-suspected-of-killing.html,16,16
92597,2014-01-03,Oregon,Wilsonville,S.W. Boones Ferry Road,0,0,http://www.gunviolencearchive.org/incident/92597,http://www.oregonlive.com/wilsonville/index.ssf/2014/01/police_seeking_masked_gunmen_w.html#incart_river,False,5,,,Armed robbery with injury/death and/or evidence of DGU found,45.3173,,-122.77,,,,1::Adult 18+||2::Adult 18+,1::Male||2::Male,,,1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.oregonlive.com/wilsonville/index.ssf/2014/01/police_seeking_masked_gunmen_w.html#incart_river,26,13
92987,2014-01-03,New York,Brooklyn,Corner of 75th Street and Pitkin Avenue,0,0,http://www.gunviolencearchive.org/incident/92987,http://newyork.cbslocal.com/2014/01/04/suspect-arrested-in-connection-with-brooklyn-carjacking-robbery/,False,8,,,Car-jacking||Brandishing/flourishing/open carry/lost/found,40.6766,,-73.8617,,,0::19||1::18,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Genero Placencia,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://newyork.cbslocal.com/2014/01/04/suspect-arrested-in-connection-with-brooklyn-carjacking-robbery/,,
92755,2014-01-03,Pennsylvania,Philadelphia,4257 Ormond Street,2,0,http://www.gunviolencearchive.org/incident/92755,http://guncrisis.org/2014/01/06/philadlephia-police-department-releases-more-information-on-recent-shootings/,False,1,,,"Shot - Dead (murder, accidental, suicide)",40.011,,-75.0964,,Victims were found in a burning house (arson.),0::38||1::35,0::Adult 18+||1::Adult 18+,0::Male||1::Female,0::Norberta Lopez||1::Carmen Montas-Madera,,0::Killed||1::Killed,0::Victim||1::Victim,http://www.philly.com/philly/news/20140104_2_found_shot_dead_in_burning_house.html||http://guncrisis.org/2014/01/06/philadlephia-police-department-releases-more-information-on-recent-shootings/,,
92811,2014-01-03,Oregon,Lincoln City,,1,1,http://www.gunviolencearchive.org/incident/92811,http://www.koin.com/news/oregon/ore-trooper-who-hit-robbery-suspect-with-car-idd_85513705,False,5,,,"Shot - Dead (murder, accidental, suicide)||Suicide^||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator suicide at standoff",44.9632,,-124.01,,male perp hit by patrol car,0::30||1::30,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Sara Jo Johnson ||1::Dale Wallace,,0::Killed||1::Injured,0::Subject-Suspect||1::Subject-Suspect,http://billingsgazette.com/news/state-and-regional/montana/robbery-suspect-dead-other-hit-in-police-standoff/article_f865ad40-e4||http://www.koin.com/news/oregon/ore-trooper-who-hit-robbery-suspect-with-car-idd_85513705,10,5
92994,2014-01-03,New Mexico,Santa Fe,2640 Agua Fria St,0,0,http://www.gunviolencearchive.org/incident/92994,http://www.abqjournal.com/331043/abqnewsseeker/third-santa-fe-armed-robbery.html,False,3,,,Armed robbery with injury/death and/or evidence of DGU found,35.6681,Allsup's Convenience Store,-105.988,,at convenience store,,0::Adult 18+,0::Female,,,0::Unharmed,0::Subject-Suspect,http://www.abqjournal.com/331043/abqnewsseeker/third-santa-fe-armed-robbery.html,46,24
100284,2014-01-03,New York,Troy,Old Sixth Avenue and Jacob Street,0,1,http://www.gunviolencearchive.org/incident/100284,http://www.timesunion.com/news/article/Man-sentenced-in-Troy-shooting-6099148.php,False,20,0::Unknown,0::Handgun,Shot - Wounded/Injured||Possession (gun(s) found during commission of other crimes),42.7356,,-73.6848,1,"outside bodega, arrested with handgun and drugs",0::23||1::25,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Denis Toussaint,,"0::Injured||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.timesunion.com/local/article/Troy-cops-arrest-2-in-robbery-shooting-cases-5172616.php||http://www.timesunion.com/news/article/Man-sentenced-in-Troy-shooting-6099148.php,108,44
93393,2014-01-03,Texas,Lubbock,2025 Clovis Road,0,0,http://www.gunviolencearchive.org/incident/93393,https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiH5ertyYfMAhWnnYMKHQa9AlkQFggdMAA&url=http%3A%2F%2Fkfyo.com%2Flubbock-police-arrest-billy-g-miller-iii-for-aggravated-robbery-of-stripes-convenience-store%2F&usg=AFQ,False,19,,,Institution/Group/Business||Non-Shooting Incident||Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,33.5988,Stripes,-101.862,,Armed robbery of convenience store.,0::25,0::Adult 18+,0::Male,0::Billy G. Miller III,,0::Unharmed,0::Subject-Suspect,http://www.kcbd.com/story/24369111/man-arrested-for-suspected-armed-robbery||https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiH5ertyYfMAhWnnYMKHQa9AlkQFggdMAA&url=http%3A%2F%2Fkfyo.com%2Flubbock-police-arrest-billy-g-miller-iii-for-aggravated-robbery-of-stripes-convenience-store%2F&usg=AFQ,84,28
93654,2014-01-03,Virginia,Franklin,117 W. Second Ave,0,0,http://www.gunviolencearchive.org/incident/93654,"http://www.dailypress.com/news/crime/dp-franklin-bank-robbery-arrest-20140106,0,3398797.story",False,4,,,Armed robbery with injury/death and/or evidence of DGU found,36.6773,,-76.9234,,,0::26||1::23,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Shane Irvin Bradshaw||1::Phillip Louis Doughtie,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,"http://www.dailypress.com/news/crime/dp-franklin-bank-robbery-arrest-20140106,0,3398797.story",75,18
93003,2014-01-03,California,Planada,Moreno Court,0,1,http://www.gunviolencearchive.org/incident/93003,http://www.mercedsunstar.com/2014/01/03/3422832/one-shot-in-planada.html,False,16,,,Shot - Wounded/Injured,37.2842,,-120.323,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.mercedsunstar.com/2014/01/03/3422832/one-shot-in-planada.html,21,12
92768,2014-01-03,Louisiana,Shreveport,2100 block of Grimmett Dr.,0,1,http://www.gunviolencearchive.org/incident/92768,http://www.ksla.com/story/24360106/teen-injured-in-n-shreveport-shooting,False,4,,,Shot - Wounded/Injured,32.5453,,-93.7706,,,0::16,0::Teen 12-17||1::Adult 18+||2::Adult 18+,0::Male,,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.ksla.com/story/24360106/teen-injured-in-n-shreveport-shooting,4,39
93678,2014-01-03,Louisiana,New Orleans,1900 block of Newton Street,1,0,http://www.gunviolencearchive.org/incident/93678,http://www.columbiatribune.com/news/crime/new-orleans-man-arrested-on-columbia-murder-warrant/article_96d7145c-78aa-11e3-af37-00,False,2,,,"Shot - Dead (murder, accidental, suicide)||Drug involvement||Armed robbery with injury/death and/or evidence of DGU found",29.9452,,-90.0377,,Brothers Gas Station perps added by SK,0::23||1::20||2::17,0::Adult 18+||1::Adult 18+||2::Teen 12-17,0::Male||1::Male||2::Male,0::Dontay Tolston||1::Jimiah A. Lambert||2::Derrick Copelin,,0::Killed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.nola.com/crime/index.ssf/2014/01/nopd_seeks_suspect_in_algiers_1.html#incart_river||http://www.columbiatribune.com/news/crime/new-orleans-man-arrested-on-columbia-murder-warrant/article_96d7145c-78aa-11e3-af37-00,102,7
92653,2014-01-03,Iowa,Des Moines,3200 block of Iola Av,0,1,http://www.gunviolencearchive.org/incident/92653,http://blogs.desmoinesregister.com/dmr/index.php/2014/01/03/police-teen-shot-with-pellet-gun-during-drug-deal/article,False,3,,,Shot - Wounded/Injured||Drug involvement,41.5942,,-93.6607,,"Teen set up pot deal, suspect came armed w/pellet gun, took money, shot teen in face injuring lip, then beat his head with gun",0::17,0::Teen 12-17,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://blogs.desmoinesregister.com/dmr/index.php/2014/01/03/police-teen-shot-with-pellet-gun-during-drug-deal/article,41,21
93219,2014-01-03,Texas,Watauga,6400 block of Patsy Lane,1,2,http://www.gunviolencearchive.org/incident/93219,http://www.star-telegram.com/2014/06/12/5896081/watauga-officer-no-billed-in-fatal.html,False,26,,,Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||Domestic Violence,32.8631,,-97.2563,,Perp assaulted two women with a knife OIS,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Female||2::Male,,,0::Injured||1::Injured||2::Killed,0::Victim||1::Victim||2::Subject-Suspect,http://www.wfaa.com/news/local/Watauga-officer-shoots-man-who-was-attacking-two-women-238634861.html||http://www.star-telegram.com/2014/06/12/5896081/watauga-officer-no-billed-in-fatal.html,91,9
92806,2014-01-03,Montana,Lockwood,3407 Wasco Ave,1,0,http://www.gunviolencearchive.org/incident/92806,http://billingsgazette.com/news/local/crime-and-courts/suspect-in-lockwood-homicide-remains-at-large/article_e97a057b-661a-504a-,False,1,,,"Shot - Dead (murder, accidental, suicide)",45.8237,,-108.399,,,0::52||1::27,0::Adult 18+||1::Adult 18+,0::Male||1::Male,"0::Allen Douglas Alderman||1::Martin Jon Pond, also known as Martin J.",,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://billingsgazette.com/news/local/crime-and-courts/suspect-in-lockwood-homicide-remains-at-large/article_e97a057b-661a-504a-,,
103603,2014-01-03,Oklahoma,Lawton,Sheridan Road and Lincoln Avenue,0,1,http://www.gunviolencearchive.org/incident/103603,http://www.kswo.com/story/24366740/convenience-store-shooting-puts-one-clerk-in-hospital,False,4,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found,34.6306,,-98.4222,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female,,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.kswo.com/story/24366740/convenience-store-shooting-puts-one-clerk-in-hospital,64,32
92657,2014-01-03,Iowa,Sioux City,1100 block of Oak St,0,1,http://www.gunviolencearchive.org/incident/92657,http://siouxcityjournal.com/news/local/crime-and-courts/police-search-for-suspects-after-sioux-city-shooting/article_9d8a0a02-47,False,4,,,Shot - Wounded/Injured,42.5067,,-96.396,,Victim shot twice in his front yard. Perps fled on foot/at large.,0::32||1::19,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::Nate McCauley||1::Jose Sandoval-Alvarez,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://siouxcityjournal.com/news/local/crime-and-courts/police-search-for-suspects-after-sioux-city-shooting/article_9d8a0a02-47,14,7
93281,2014-01-03,North Carolina,Asheville,Max Street ,0,0,http://www.gunviolencearchive.org/incident/93281,http://www.citizen-times.com/article/20140103/NEWS01/140103025/Asheville-standoff-ends-peacefully,False,10,,,Shots Fired - No Injuries,35.5928,,-82.5465,,,0::41,0::Adult 18+,0::Male,0::Lamonte Monsanto,,0::Unharmed,0::Subject-Suspect,http://www.citizen-times.com/article/20140103/NEWS01/140103025/Asheville-standoff-ends-peacefully,114,49
92901,2014-01-03,Arkansas,Little Rock,3100 W. Roosevelt Road,0,1,http://www.gunviolencearchive.org/incident/92901,http://www.arkansasonline.com/news/2014/jan/03/lr-police-seek-man-roosevelt-road-shooting/,False,2,,,Shot - Wounded/Injured,34.7256,,-92.3089,,SuperStop,0::23,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Vallesha Boles,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.katv.com/story/24363945/police-woman-questioned-about-sexuality-shot-after-fistfight||http://www.arkansasonline.com/news/2014/jan/03/lr-police-seek-man-roosevelt-road-shooting/,34,31
107320,2014-01-03,Tennessee,Nashville,Nashville International Airport,0,0,http://www.gunviolencearchive.org/incident/107320,http://blog.tsa.gov/2014_01_10_archive.html,False,5,,,TSA Action,36.1263,,-86.6774,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,52,21
92675,2014-01-03,Montana,Yellowstone County,Wasco and Tigard ,1,0,http://www.gunviolencearchive.org/incident/92675,http://billingsgazette.com/news/local/crime-and-courts/suspect-in-lockwood-homicide-considered-armed-dangerous/article_e97a057b-,False,1,,,"Shot - Dead (murder, accidental, suicide)",45.8234,,-108.398,,,1::27,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Martin Jon Pond ,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://billingsgazette.com/news/local/crime-and-courts/suspect-in-lockwood-homicide-considered-armed-dangerous/article_e97a057b-,,
92764,2014-01-03,Louisiana,Shreveport,3600 block of Pines Rd,0,0,http://www.gunviolencearchive.org/incident/92764,http://www.ksla.com/story/24360538/spd-seeks-suspect-in-armed-robbery-of-west-shreveport-brookshires,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,32.4802,,-93.8657,,,1::52,0::Adult 18+||1::Adult 18+,1::Male,1::Victor Love,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.ksla.com/story/24360538/spd-seeks-suspect-in-armed-robbery-of-west-shreveport-brookshires,4,39
93304,2014-01-03,North Carolina,Pitt County,Tall Pines Lane,0,0,http://www.gunviolencearchive.org/incident/93304,http://www.witn.com/home/headlines/Greenville-Man-Accused-Of-Robbery-Kidnapping-Among-Other-Charges-238742561.html,False,3,,,Shots Fired - No Injuries||Armed robbery with injury/death and/or evidence of DGU found,35.6116,,-77.4908,,,,0::Adult 18+,0::Male,"0::Steven Haddock, Jr. ",,0::Unharmed,0::Subject-Suspect,http://www.witn.com/home/headlines/Greenville-Man-Accused-Of-Robbery-Kidnapping-Among-Other-Charges-238742561.html,8,5
92681,2014-01-03,California,San Jose,Cape Horn near Mabury and North King,0,1,http://www.gunviolencearchive.org/incident/92681,http://www.ktvu.com/news/news/crime-law/man-wounded-san-jose-officer-involved-shooting/nccDy/,False,19,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot,37.3382,,-121.886,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.ktvu.com/news/news/crime-law/man-wounded-san-jose-officer-involved-shooting/nccDy/,27,15
93685,2014-01-03,Louisiana,New Orleans,Panola and Pine streets,0,0,http://www.gunviolencearchive.org/incident/93685,http://www.nola.com/crime/index.ssf/2014/01/man_robbed_while_painting_and.html#incart_river,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,29.9499,,-90.118,,,0::19,0::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nola.com/crime/index.ssf/2014/01/man_robbed_while_painting_and.html#incart_river,91,5
92919,2014-01-03,Illinois,Chicago,2600 block of East 106th St,0,1,http://www.gunviolencearchive.org/incident/92919,http://chicago.cbslocal.com/2014/01/04/1-dead-4-wounded-in-weekend-shootings/,False,2,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found,41.7028,,-87.5596,,Shot in robbery attempt,0::53,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://chicago.cbslocal.com/2014/01/04/1-dead-4-wounded-in-weekend-shootings/,33,17
125330,2014-01-03,Washington,Yakima County,,1,0,http://www.gunviolencearchive.org/incident/125330,http://www.yakimaherald.com/news/latestlocalnews/2098493-8/man-shot-killed-by-yakima-police-after-chase,False,4,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed",46.5436,,-120.756,,ois trailer,0::30,0::Adult 18+,0::Male,0::Jesse Humphrey,,0::Killed,0::Victim,http://www.yakimaherald.com/news/latestlocalnews/2098493-8/man-shot-killed-by-yakima-police-after-chase,14,14
92780,2014-01-03,Ohio,Columbus,2200 block of Siskin Av/Association for the Developmentally Disabled group home,1,0,http://www.gunviolencearchive.org/incident/92780,http://www.dispatch.com/content/stories/local/2014/01/05/man-had-drawn-police-twice-before-friday.html,False,3,,,Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed,39.9612,,-82.9988,,"Victim was mentally impaired, threatened staffmember who called police, officer was unable to subdue victim, and fatally shot him.",0::47,0::Adult 18+,0::Male,0::Patrick L. Jones,,0::Killed,0::Victim,http://www.local12.com/template/inews_wire/wires.regional.oh/27ff8aac-www.local12.com.shtml#.UsgrCXltdFI||http://www.10tv.com/content/stories/2014/01/03/Columbus_Officer_Involved_Shooting.html||http://www.dispatch.com/content/stories/local/2014/01/05/man-had-drawn-police-twice-before-friday.html,18,15
94255,2014-01-03,Florida,Broward,8201 N. Pine Island Road,0,0,http://www.gunviolencearchive.org/incident/94255,http://www.local10.com/news/armed-robber-steals-45-candy-bar/-/1717324/23834380/-/111f48pz/-/index.html,False,20,,,Armed robbery with injury/death and/or evidence of DGU found,26.2272,,-80.2713,,,,0::Adult 18+||1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.local10.com/news/armed-robber-steals-45-candy-bar/-/1717324/23834380/-/111f48pz/-/index.html,97,29
92929,2014-01-03,Minnesota,Saint Paul,Maryland and White Bear Av,1,1,http://www.gunviolencearchive.org/incident/92929,http://www.startribune.com/local/stpaul/238902681.html,False,4,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drug involvement||Armed robbery with injury/death and/or evidence of DGU found",44.9776,,-93.0254,,"Victim gunned down elsewhere, made way to gas station. Seals slightly wounded, also arrested as the shooter.",0::22||1::21||2::21||3::18,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Devonte R. Coppage||3::Antonio R. Seals,,0::Killed||3::Injured,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.startribune.com/local/stpaul/238719101.html||http://www.startribune.com/local/stpaul/238902681.html,,67
92782,2014-01-03,Virginia,Suffolk,1516 Holland Road,0,0,http://www.gunviolencearchive.org/incident/92782,"http://www.dailypress.com/news/southside/dp-suffolk-convenience-store-robbed-20140103,0,3827570.story",False,4,,,Armed robbery with injury/death and/or evidence of DGU found,36.7251,,-76.6347,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,"http://www.dailypress.com/news/southside/dp-suffolk-convenience-store-robbed-20140103,0,3827570.story",76,14
94293,2014-01-03,Indiana,Henryville,New Washington State Bank on Main Street,0,0,http://www.gunviolencearchive.org/incident/94293,http://www.wishtv.com/news/indiana/police-search-for-robbery-suspects,False,9,,,Armed robbery with injury/death and/or evidence of DGU found,38.5404,,-85.7651,,"Two perps robbed elderly man at ATM at gunpoint, drove off. At large.",,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.wishtv.com/news/indiana/police-search-for-robbery-suspects,73,45
93185,2014-01-03,Texas,San Antonio,4600 block of Howard,1,0,http://www.gunviolencearchive.org/incident/93185,http://www.ksat.com/news/suspect-arrested-in-fatal-driveby-shooting/25319462,False,20,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)",29.4786,,-98.4954,,Gunfire from drive-by shooters.,0::55||1::23,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Mario Albert Martinez||1::Michael Anthony Solano,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.mysanantonio.com/news/local/article/Man-wounded-in-drive-by-shooting-5113034.php||http://www.ksat.com/news/suspect-arrested-in-fatal-driveby-shooting/25319462,123,26
92784,2014-01-03,Tennessee,Campbell County,General Carl Stiner Highway,0,0,http://www.gunviolencearchive.org/incident/92784,http://www.wate.com/story/24356597/campbell-county-deputies-search-for-convenience-store-robbery-suspect,False,3,,,Armed robbery with injury/death and/or evidence of DGU found,36.4302,,-84.0207,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.wate.com/story/24356597/campbell-county-deputies-search-for-convenience-store-robbery-suspect,36,12
94466,2014-01-03,Texas,Fort Worth,Meadowbrook,0,0,http://www.gunviolencearchive.org/incident/94466,http://www.star-telegram.com/2014/01/09/5473878/police-arrest-four-men-suspected.html#my-headlines-default,False,6,,,Armed robbery with injury/death and/or evidence of DGU found,32.7487,,-97.2564,,Robbery of Subway on Meadowbrook,,,0::Male||1::Male||2::Male,0::Jones||1::Parks||2::Davis,,,0::Subject-Suspect||1::Subject-Suspect||2::Subject-Suspect,http://www.star-telegram.com/2014/01/09/5473878/police-arrest-four-men-suspected.html#my-headlines-default,95,10
92996,2014-01-03,California,Fairfield,El Verano Court,1,0,http://www.gunviolencearchive.org/incident/92996,https://local.nixle.com/alert/5118365/,False,3,,,"Shot - Dead (murder, accidental, suicide)",38.272,,-122.024,,Parkway Gardens,0::21,0::Adult 18+,0::Male,0::Terrell Brumfield,,0::Killed,0::Victim,https://local.nixle.com/alert/5118365/,11,3
107321,2014-01-03,Michigan,Detroit, Detroit Metro Airport,0,0,http://www.gunviolencearchive.org/incident/107321,http://blog.tsa.gov/2014_01_10_archive.html,False,13,,,TSA Action,42.2162,,-83.3554,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,22,8
103005,2014-01-03,Oklahoma,Oklahoma City,Hefner and N. Western,1,1,http://www.gunviolencearchive.org/incident/103005,http://www.news9.com/story/24361998/police-identity-suspect-shot-killed-by-okc-officer,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - Officer shot||Officer Involved Shooting - subject/suspect/perpetrator killed",35.58,,-97.5313,,,1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Sgt. Jimmy Cortez||1::Joeshawn Edwards Williams,,0::Injured||1::Killed,0::Victim||1::Subject-Suspect,http://www.news9.com/story/24361998/police-identity-suspect-shot-killed-by-okc-officer,99,48
92911,2014-01-03,Illinois,Chicago,300 block of West 114th St,1,0,http://www.gunviolencearchive.org/incident/92911,http://chicago.cbslocal.com/2014/01/04/1-dead-4-wounded-in-weekend-shootings/,False,2,,,"Shot - Dead (murder, accidental, suicide)",41.6873,,-87.6303,,Shot on the street. Shooter at large.,0::30,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Ronald Sawyer,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://chicago.cbslocal.com/2014/01/04/1-dead-4-wounded-in-weekend-shootings/,28,14
93629,2014-01-03,South Carolina,Berkeley County,Maplewood Road,0,0,http://www.gunviolencearchive.org/incident/93629,http://www.postandcourier.com/article/20140106/PC16/140109629/1006/berkeley-county-arrest-nets-several-stolen-guns-deputies-say,False,1,,,Possession (gun(s) found during commission of other crimes),33.159,,-80.042,,,,,,,,,,http://www.postandcourier.com/article/20140106/PC16/140109629/1006/berkeley-county-arrest-nets-several-stolen-guns-deputies-say,100,37
92942,2014-01-03,Florida,Miami,Booker T. Washington Boulevard and Robinson St,1,1,http://www.gunviolencearchive.org/incident/92942,http://www.local10.com/news/1-person-dies-in-southwest-miamidade-shooting/-/1717324/23767406/-/2n1avpz/-/index.html,False,26,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Shots Fired - No Injuries",25.6302,,-80.3757,,,,,4::Male,,,0::Killed||1::Injured||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.local10.com/news/1-person-dies-in-southwest-miamidade-shooting/-/1717324/23767406/-/2n1avpz/-/index.html,117,39
92894,2014-01-03,Florida,Jacksonville,4600 block of Sunderland Road,1,1,http://www.gunviolencearchive.org/incident/92894,http://members.jacksonville.com/news/crime/2014-01-07/story/botched-murder-suicide-ends-arrest-45-year-old-jacksonville-man,False,4,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide - Attempt||Domestic Violence",30.278,,-81.7241,,,0::33||1::45,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Kendra M. Nagy||1::Michael Joseph Day ,,0::Killed||1::Injured,0::Victim||1::Victim,http://jacksonville.com/breaking-news/2014-01-03/story/police-find-dead-woman-man-gunshot-wound-jacksonville-friday-morning||http://members.jacksonville.com/news/crime/2014-01-07/story/botched-murder-suicide-ends-arrest-45-year-old-jacksonville-man,15,4
92954,2014-01-03,Arizona,San Tan Valley,,0,1,http://www.gunviolencearchive.org/incident/92954,http://www.azcentral.com/community/pinal/articles/20140104arizona-woman-arrest-husband-shot-intruder-claim-san-tan-valley.html,False,4,0::Unknown,0::Unknown,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Domestic Violence,33.2349,,-111.542,1,couple; thought was intruder,0::35||1::34,0::Adult 18+||1::Adult 18+,0::Male||1::Female,1::Melisah Havens,1::Significant others - current or former,"0::Injured||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.azcentral.com/community/pinal/articles/20140104arizona-woman-arrest-husband-shot-intruder-claim-san-tan-valley.html,16,16
92873,2014-01-03,Florida,Miami,Southwest 232nd Street and 132nd Avenue,0,0,http://www.gunviolencearchive.org/incident/92873,http://www.nbcmiami.com/news/local/Two-Suspects-Arrested-After-Police-Chase-in-Southwest-Miami-Dade-238573631.html,False,26,,,Shots Fired - No Injuries||Officer Involved Incident,25.5514,,-80.4047,,,0::25||1::32,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Tavaris Brockington||1::Patrick Joyner,,0::Unharmed||1::Unharmed,0::Victim||1::Victim,http://www.nbcmiami.com/news/local/Two-Suspects-Arrested-After-Police-Chase-in-Southwest-Miami-Dade-238573631.html,120,37
92870,2014-01-03,Michigan,Prescott,700 block of Henderson Lake Road,1,0,http://www.gunviolencearchive.org/incident/92870,http://www.mlive.com/news/bay-city/index.ssf/2014/01/prescott_man_charged_with_seco.html#incart_river_default,False,4,,,"Shot - Dead (murder, accidental, suicide)",44.3123,,-84.0045,,Victim shot in abdomen. Suspect cooperating. Unknown motive or circumstances.,0::33||1::49,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::A.C. Dennis Jr.||1::Karl B. Hatton,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.abc12.com/story/24358499/man-shot-killed-in-ogemaw-county||http://www.mlive.com/news/bay-city/index.ssf/2014/01/prescott_man_charged_with_seco.html#incart_river_default,103,35
92786,2014-01-03,Tennessee,Memphis,1700 block of Foster Avenue,0,1,http://www.gunviolencearchive.org/incident/92786,http://www.wmctv.com/story/24360583/no-suspect-in-custody-after-critical-shooting,False,9,,,Shot - Wounded/Injured,35.1125,,-90.0057,,,,0::Adult 18+,,,,0::Injured,0::Victim,http://www.wmctv.com/story/24360583/no-suspect-in-custody-after-critical-shooting,86,29
92761,2014-01-03,Pennsylvania,York,100 block of N York Road,0,0,http://www.gunviolencearchive.org/incident/92761,http://www.pennlive.com/midstate/index.ssf/2014/01/bullet_narrowly_misses_mans_he.html#incart_river,False,4,,,Shots Fired - No Injuries||Road rage,39.9869,,-76.6783,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Victim,http://www.pennlive.com/midstate/index.ssf/2014/01/bullet_narrowly_misses_mans_he.html#incart_river,,
92774,2014-01-03,Michigan,Midland,700 Village East,2,0,http://www.gunviolencearchive.org/incident/92774,http://www.abc12.com/story/24387067/midland-man-dies-in-murder-suicide,False,4,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide",43.6645,,-84.1747,1,500 bldg. Joseph Run Apartment Complex - Apparent murder/suicide. Man survived critically wounded-died 1/7/14,0::31||1::36,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Killed||1::Killed,0::Victim||1::Victim,http://www.mlive.com/news/saginaw/index.ssf/2014/01/update_midland_double_shooting.html||http://www.abc12.com/story/24387067/midland-man-dies-in-murder-suicide,99,36
871408,2014-01-03,South Carolina,Columbia,Farrow Road,0,1,http://www.gunviolencearchive.org/incident/871408,https://www.justice.gov/usao-sc/pr/columbia-gang-member-sentenced-federal-firearm-and-ammunition-charge,False,6,0::Unknown,0::357 Mag,Shot - Wounded/Injured||ATF/LE Confiscation/Raid/Arrest||Possession (gun(s) found during commission of other crimes)||Possession of gun by felon or prohibited person,34.0886,,-80.9737,1,,1::27,1::Adult 18+,1::Male,"1::Aaryon Brian Dowdy, aka “Trouble”",,"0::Injured||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,https://www.justice.gov/usao-sc/pr/columbia-gang-member-sentenced-federal-firearm-and-ammunition-charge,77,19
94054,2014-01-03,South Carolina,Columbia,1776 Burning Tree Road,0,1,http://www.gunviolencearchive.org/incident/94054,http://www.wistv.com/story/24398414/man-injured-in-armed-robbery-at-hotel,False,6,,,Non-Shooting Incident||Armed robbery with injury/death and/or evidence of DGU found||Pistol-whipping,34.0447,Motel 6,-81.1159,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.wistv.com/story/24398414/man-injured-in-armed-robbery-at-hotel,72,19
93865,2014-01-03,North Carolina,Winston-Salem,Phelps Drive,1,0,http://www.gunviolencearchive.org/incident/93865,http://www.digtriad.com/news/local/story.aspx,False,5,,,"Shot - Dead (murder, accidental, suicide)",36.1841,,-80.2164,,,0::45||1::51,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Janet Sheppard Petty||1::Sanford Emmanuel Snider,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.digtriad.com/news/local/story.aspx,74,32
92633,2014-01-03,Indiana,Fort Wayne,5000 block of Winter St,0,0,http://www.gunviolencearchive.org/incident/92633,http://www.wishtv.com/news/indiana/footprints-in-snow-lead-to-arrest,False,3,,,Armed robbery with injury/death and/or evidence of DGU found||Car-jacking||Brandishing/flourishing/open carry/lost/found,41.0382,,-85.1157,,"Pizza deliveryman robbed at gunpoint, car stolen. Cops followed tracks in snow to defendant, who had Vito's pizza, delivery man's driver's license. ",1::19,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,"1::Larry D. Washington, Jr",,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.wishtv.com/news/indiana/pizza-deliveryman-robbed-car-stolen||http://www.wishtv.com/news/indiana/footprints-in-snow-lead-to-arrest,80,15
93037,2014-01-03,Pennsylvania,Williamsport,Chathman Street,0,1,http://www.gunviolencearchive.org/incident/93037,http://wnep.com/2014/01/04/police-investigate-unintentional-shooting/,False,10,,,Accidental Shooting||Accidental/Negligent Discharge,41.2445,,-76.9932,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim||1::Subject-Suspect,http://wnep.com/2014/01/04/police-investigate-unintentional-shooting/,,
92778,2014-01-03,Kentucky,Lexington,Chestnut Street and East Fifth,0,2,http://www.gunviolencearchive.org/incident/92778,http://www.lex18.com/news/lex-18-crime-stoppers-lexington-shelter-shooting-suspect-identified/,False,6,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)",38.0486,,-84.4843,,,2::36,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,2::Larry Wilson,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.lex18.com/news/two-people-shot-across-from-catholic-action-center/||http://www.lex18.com/news/lex-18-crime-stoppers-lexington-shelter-shooting-suspect-identified/,,
92976,2014-01-03,Washington,Spokane,2228 N. Astor Street,1,1,http://www.gunviolencearchive.org/incident/92976,https://www.google.com/fusiontables/DataSource?docid=1NwGJgh4U3EI06Nt2x25NXhh2FW5S2bi5OgU8_6w,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Under the influence of alcohol or drugs (only applies to the subject/suspect/perpetrator )",47.6792,,-117.404,,"perp smoked meth, shot victim. perp ran away, then shot himself in leg",0::48||1::26,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Arnold Allen Lomasson||1::Brandon Mellon,,"0::Killed||1::Injured, Arrested",0::Victim||1::Subject-Suspect,http://www.spokesman.com/stories/2014/jan/04/two-shootings-friday-unrelated/||https://www.google.com/fusiontables/DataSource?docid=1NwGJgh4U3EI06Nt2x25NXhh2FW5S2bi5OgU8_6w,3,3
97704,2014-01-03,Mississippi,Jones County,,0,0,http://www.gunviolencearchive.org/incident/97704,http://www.wdam.com/story/24484333/armed-robbery-at-residence-in-hebron-community,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,31.5343,,-89.1706,,,1::55,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,1::Ricky Barnes||2::Tylester Leverette,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.wdam.com/story/24484333/armed-robbery-at-residence-in-hebron-community,89,42
92759,2014-01-03,Massachusetts,Worcester,Southgate Street,0,0,http://www.gunviolencearchive.org/incident/92759,http://www.masslive.com/news/worcester/index.ssf/2014/01/worcester_police_search_for_tw_1.html#incart_river,False,2,,,Shots Fired - No Injuries,42.2472,,-71.8152,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Male||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.masslive.com/news/worcester/index.ssf/2014/01/worcester_police_search_for_tw_1.html#incart_river,,
100270,2014-01-03,Maryland,Baltimore,500 block of S. Smallwood Street,0,1,http://www.gunviolencearchive.org/incident/100270,http://www.abc2news.com/dpp/news/crime_checker/baltimore_city_crime/baltimore-police-searching-for-suspect-in-two-sexual-assault,False,7,,,Sex crime involving firearm,39.2817,,-76.6513,,,,0::Adult 18+||1::Adult 18+,1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.abc2news.com/dpp/news/crime_checker/baltimore_city_crime/baltimore-police-searching-for-suspect-in-two-sexual-assault,40,40
92862,2014-01-03,Louisiana,Monroe,300 block of King Street,0,2,http://www.gunviolencearchive.org/incident/92862,http://www.knoe.com/story/24358014/two-men-injured-in-monroe-shooting-friday,False,5,,,Shot - Wounded/Injured,32.524,,-92.0626,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.knoe.com/story/24358014/two-men-injured-in-monroe-shooting-friday,16,34
93621,2014-01-03,North Carolina,Elizabethtown,909 E. Broad St.,0,0,http://www.gunviolencearchive.org/incident/93621,http://www.fayobserver.com/news/crime_courts/article_4b11765f-3c8b-51e9-9559-25b5cda20655.html,False,7,,,Armed robbery with injury/death and/or evidence of DGU found,34.6254,,-78.5962,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.fayobserver.com/news/crime_courts/article_4b11765f-3c8b-51e9-9559-25b5cda20655.html,22,8
92650,2014-01-03,Iowa,Cedar Rapids,5620 Johnson Ave. NW,0,1,http://www.gunviolencearchive.org/incident/92650,http://thegazette.com/2014/01/08/teen-charged-with-attempted-murder-in-jan-3-cedar-rapids-shooting/,False,1,,,Shot - Wounded/Injured,41.9677,,-91.7353,,"Shots reported, victim found shot, girlfriend charged.",0::21||1::19,0::Adult 18+||1::Adult 18+,0::Male||1::Female,0::Garret Chmelicek||1::Mariah L. Sprous,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://thegazette.com/2014/01/03/overnight-shooting-reported-in-northwest-cedar-rapids/||http://thegazette.com/2014/01/08/teen-charged-with-attempted-murder-in-jan-3-cedar-rapids-shooting/,70,35
92856,2014-01-03,Louisiana,Shreveport,3600 block of Pines Road,0,0,http://www.gunviolencearchive.org/incident/92856,http://www.ksla.com/story/24360538/spd-seeks-suspect-in-armed-robbery-of-west-shreveport-brookshires,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,32.4802,,-93.8657,,Brookshire's supermarket,,0::Adult 18+||1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.ksla.com/story/24360538/spd-seeks-suspect-in-armed-robbery-of-west-shreveport-brookshires,4,39
99147,2014-01-03,Maryland,Baltimore,600 block of Barlett Avenue,0,0,http://www.gunviolencearchive.org/incident/99147,https://twitter.com/BaltimorePolice/status/419160614125056000,False,7,,,Possession (gun(s) found during commission of other crimes),39.3173,,-76.6077,,,,0::Adult 18+,0::Male,0::Keyon Paylor,,0::Unharmed,0::Subject-Suspect,https://twitter.com/BaltimorePolice/status/419160614125056000,43,43
92642,2014-01-03,Wisconsin,Wausau,818 So. 3rd Av.,1,0,http://www.gunviolencearchive.org/incident/92642,http://www.waow.com/story/24353609/2014/01/03/wausau-police-search-for-overnight-shooting-suspect,False,7,,,"Shot - Dead (murder, accidental, suicide)||Bar/club incident - in or around establishment||Possession (gun(s) found during commission of other crimes)||Brandishing/flourishing/open carry/lost/found",44.953,,-89.6394,, Sidetracked Bar - Man shot in front of bar. Died in hospital.,0::27||1::27,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::KC Christopher Elliot||1::John Lewis,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.waow.com/story/25534742/2014/05/16/man-charged-in-fatal-wausau-shooting-to-appear-in-court||http://www.wausaudailyherald.com/article/20140103/WDH0101/301030151/Update-Shooting-suspect-captured-Wausau-after-one-critically||http://www.waow.com/story/24353609/2014/01/03/wausau-police-search-for-overnight-shooting-suspect,85,29
99145,2014-01-03,Maryland,Baltimore,1100 block of N. Calhoun Street,0,0,http://www.gunviolencearchive.org/incident/99145,https://twitter.com/BaltimorePolice/status/419175757961641984,False,7,,,Possession (gun(s) found during commission of other crimes),39.3011,,-76.6403,,,,0::Adult 18+,0::Male,0::Davon Morton,,0::Unharmed,0::Subject-Suspect,https://twitter.com/BaltimorePolice/status/419175757961641984,,44
92853,2014-01-03,Louisiana,Shreveport,2100 block of Grimmett Drive,0,1,http://www.gunviolencearchive.org/incident/92853,http://www.ksla.com/story/24360106/teen-injured-in-n-shreveport-shooting,False,4,,,Shot - Wounded/Injured,32.5453,,-93.7706,,,,0::Teen 12-17,0::Male||1::Male||2::Male,,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.ksla.com/story/24360106/teen-injured-in-n-shreveport-shooting,4,39
93137,2014-01-03,Florida,Defuniak Springs,U.S. Highway 90,0,0,http://www.gunviolencearchive.org/incident/93137,http://www.nwfdailynews.com/local/police-investigating-armed-robbery-photos-1.257933,False,1,,,Shots Fired - No Injuries||Armed robbery with injury/death and/or evidence of DGU found,30.7435,,-86.2009,,Petro Food Mart ,,,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nwfdailynews.com/local/police-investigating-armed-robbery-photos-1.257933,5,1
92635,2014-01-03,Indiana,Valparaiso,2301 Cumberland Dr,0,0,http://www.gunviolencearchive.org/incident/92635,http://www.nwitimes.com/news/local/porter/valparaiso/armed-robbery-at-porter-starke-friday/article_4d23121a-1b4c-5147-84c4-906bb,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,41.4891,,-87.0511,,Man robbed methadone clinic at gunpoint.,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://posttrib.suntimes.com/24744140-537/methadone-clinic-robbed-in-valparaiso.html||http://www.nwitimes.com/news/local/porter/valparaiso/armed-robbery-at-porter-starke-friday/article_4d23121a-1b4c-5147-84c4-906bb,4,5
93165,2014-01-03,Mississippi,Greenville,East Alexander Street,0,2,http://www.gunviolencearchive.org/incident/93165,http://www.msnewsnow.com/story/24365558/grocery-store-owner-shot-during-robbery-attempt,False,2,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found||Pistol-whipping,33.4065,,-91.0282,,,2::19||3::26,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Gerome Seu ||1::Harry Seu||2::Elton Harper Jr. ||3::Korderro Robinson ,,0::Injured||1::Injured||2::Unharmed||3::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect,http://www.msnewsnow.com/story/24365558/grocery-store-owner-shot-during-robbery-attempt,50,12
95456,2014-01-04,Texas,Harris County,5200 block of FM 1960,0,0,http://www.gunviolencearchive.org/incident/95456,http://www.khou.com/news/local/Detectives-suspect-same-man-may-be-responsible-for-Zales-robberies-239700591.html,False,29,,,Armed robbery with injury/death and/or evidence of DGU found,29.8257,,-95.2082,,Armed robbery of jewelry store in broad daylight.,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.khou.com/news/local/Detectives-suspect-same-man-may-be-responsible-for-Zales-robberies-239700591.html,142,15
93087,2014-01-04,Maryland,Suitland,3600 block of Old Silver Hill Road,0,0,http://www.gunviolencearchive.org/incident/93087,http://www.nbcwashington.com/news/local/Robbery-Suspect-Fires-Gun-during-Crime-238772651.html,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,38.8427,,-76.9479,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.nbcwashington.com/news/local/Robbery-Suspect-Fires-Gun-during-Crime-238772651.html,24,24
93205,2014-01-04,New York,Rochester,Morgan Street,0,1,http://www.gunviolencearchive.org/incident/93205,http://www.13wham.com/news/features/top-stories/stories/shooting-sends-one-hospital-8542.shtml,False,25,,,Shot - Wounded/Injured,43.1494,,-77.631,,,0::33,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.13wham.com/news/features/top-stories/stories/shooting-sends-one-hospital-8542.shtml,137,56
93415,2014-01-04,New Mexico,Albuquerque,Police chase on Interstate 25,0,1,http://www.gunviolencearchive.org/incident/93415,http://www.kcbd.com/story/24375178/ny-man-idd-as-suspect-in-nm-police-shooting,False,1,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot,35.049,,-106.638,,Police chase OIS,0::72,0::Adult 18+,0::Male,0::Albert Urban,,0::Injured,0::Subject-Suspect,http://www.kcbd.com/story/24375178/ny-man-idd-as-suspect-in-nm-police-shooting,10,12
94970,2014-01-04,Arkansas,Leflore,,0,0,http://www.gunviolencearchive.org/incident/94970,http://swtimes.com/news/leflore-county-woman-sought-several-suspected-felonies,False,4,,,Car-jacking||Brandishing/flourishing/open carry/lost/found,34.5758,,-93.1685,,Perpetrator held victim at gunpoint and forced him to drive,1::34,0::Adult 18+||1::Adult 18+,0::Male||1::Female,1::Jozie Marie Baugh,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://swtimes.com/news/leflore-county-woman-sought-several-suspected-felonies,18,14
116758,2014-01-04,New York,Brooklyn,Willow Street,0,1,http://www.gunviolencearchive.org/incident/116758,http://www.brooklynpaper.com/stories/35/1/bh_willowshoot_2012_01_06_bk.html,False,7,,,Armed robbery with injury/death and/or evidence of DGU found,40.6988,,-73.9951,,,0::43,0::Adult 18+||1::Adult 18+,0::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.brooklynpaper.com/stories/35/1/bh_willowshoot_2012_01_06_bk.html,52,26
93368,2014-01-04,Texas,Laredo,2200 block of Hendricks Avenue,0,0,http://www.gunviolencearchive.org/incident/93368,http://www.lmtonline.com/articles/2014/01/05/front/news/doc52ca33930d399548020050.txt,False,28,,,,27.5157,,-99.4865,,,,,,,,,,http://www.lmtonline.com/articles/2014/01/05/front/news/doc52ca33930d399548020050.txt,42,21
93841,2014-01-04,Pennsylvania,Allentown,Ninth and Tilghman Streets,0,0,http://www.gunviolencearchive.org/incident/93841,"http://www.mcall.com/news/breaking/mc-c-allentown-public-drunk-shotgun-arrest-20140106,0,7549164.story",False,15,,,Brandishing/flourishing/open carry/lost/found,40.6108,,-75.48,,"Perpetrator was intoxicated, waving shotgun at intersection threatening to shoot someone.",0::32,0::Adult 18+,0::Male,0::James S. Erickson,,0::Unharmed,0::Subject-Suspect,"http://www.mcall.com/news/breaking/mc-c-allentown-public-drunk-shotgun-arrest-20140106,0,7549164.story",,
93085,2014-01-04,Illinois,Rock Falls,215 W 2nd St,2,2,http://www.gunviolencearchive.org/incident/93085,http://wqad.com/2014/01/04/man-reportedly-killed-in-shooting-outside-rock-falls-bar/,False,17,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator suicide at standoff",41.781,,-89.6937,,"Perp shot and killed one, wounded two outside Lamb's Tap bar. Cops saw perp fleeing, followed perp to his home, where he shot and killed himself before officers arrived..",0::34||1::37||2::22||3::40,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Fredrick A. Michels||3::Leonard Frank Harris Jr,,0::Killed||1::Injured||2::Injured||3::Killed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect,http://wqad.com/2014/01/04/man-reportedly-killed-in-shooting-outside-rock-falls-bar/,71,36
109103,2014-01-04,Virginia,Hampton,1306 Thomas St,1,0,http://www.gunviolencearchive.org/incident/109103,http://wtkr.com/2014/02/22/three-arrested-in-abduction-and-murder-of-hampton-teen/,False,3,,,"Shot - Dead (murder, accidental, suicide)",37.0354,,-76.3594,,,0::19||1::20||2::19||3::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Jeramiah Elijah Kimble||1::Dwaune Lane Jr||2::Jaquan Turner ||3::Jamil King,,0::Killed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://wtkr.com/2014/02/22/three-arrested-in-abduction-and-murder-of-hampton-teen/,92,2
93059,2014-01-04,California,Redding,Westside Road,0,0,http://www.gunviolencearchive.org/incident/93059,http://www.krcrtv.com/news/local/woman-robbed-at-gunpoint-in-cell-phone-store/-/14322302/23776792/-/qlpmuh/-/index.html,False,1,,,Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,40.5334,,-122.385,,at cell phone store,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.krcrtv.com/news/local/woman-robbed-at-gunpoint-in-cell-phone-store/-/14322302/23776792/-/qlpmuh/-/index.html,1,1
93827,2014-01-04,Connecticut,New Haven,Harding Place,1,0,http://www.gunviolencearchive.org/incident/93827,http://www.nhregister.com/general-news/20131208/new-haven-police-18-year-old-faces-second-degree-manslaughter-charge-in-fatal-sh,False,3,,,Accidental Shooting||Accidental Shooting - Death,41.3275,,-72.9352,,,0::23||1::18,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Shamar Willett||1::Shunravion Jackson,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nhregister.com/general-news/20131208/new-haven-police-18-year-old-faces-second-degree-manslaughter-charge-in-fatal-sh,93,10
93009,2014-01-04,New Jersey,Newark,North 5th and Dickerson Streets,0,1,http://www.gunviolencearchive.org/incident/93009,http://www.nj.com/essex/index.ssf/2014/01/newark_police_involved_in_non-fatal_shooting.html#incart_river_default,False,10,,,Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot,40.7493,,-74.1914,,,0::22,0::Adult 18+||1::Adult 18+,0::Male,0::Willie Brooks,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nj.com/essex/index.ssf/2014/01/newark_police_involved_in_non-fatal_shooting.html#incart_river_default,29,29
93381,2014-01-04,Ohio,Toledo,"Star Beauty Supply, 48 S. Byrne Rd",0,0,http://www.gunviolencearchive.org/incident/93381,http://www.toledoblade.com/Police-Fire/2014/01/06/Toledoan-arrested-for-robbing-a-beauty-supply-store.html,False,9,,,Armed robbery with injury/death and/or evidence of DGU found,41.6373,,-83.626,,Accused of robbing beauty store at gunpoint/ski mask.,0::34,0::Adult 18+,0::Male,0::Calvin Tuttle,,0::Unharmed,0::Subject-Suspect,http://www.toledoblade.com/Police-Fire/2014/01/06/Toledoan-arrested-for-robbing-a-beauty-supply-store.html,44,11
126518,2014-01-04,Texas,College Station,3600 block of Oldenburg Court ,0,0,http://www.gunviolencearchive.org/incident/126518,http://www.kbtx.com/news/local/headlines/3-Arrested-255187901.html,False,17,,,Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,30.5658,,-96.2982,,Armed robbery.,0::20||1::21||2::23||3::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,1::Devante Dwight Owens||2::Ivan Curtis McWilliams||3::Levi Markee Jones Carrol,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.kbtx.com/news/local/headlines/3-Arrested-255187901.html,14,5
92891,2014-01-04,Indiana,Lawrence,56th Street and Shadeland Way,1,0,http://www.gunviolencearchive.org/incident/92891,http://fox59.com/2014/01/29/family-police-appeal-for-help-in-solving-teenagers-death/#axzz2rpSaC7oy,False,7,,,"Shot - Dead (murder, accidental, suicide)||Brandishing/flourishing/open carry/lost/found",39.855,,-86.0417,,"Victim found slumped over seat, shot in head. Four men seen surrounding vehicle before police got there.",0::19,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,0::Kyle Jobin,,0::Killed||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect||4::Subject-Suspect,http://fox59.com/2014/01/04/teen-shot-in-head-in-lawrence/#axzz2pT7VGiJd||http://fox59.com/2014/01/29/family-police-appeal-for-help-in-solving-teenagers-death/#axzz2rpSaC7oy,95,31
93011,2014-01-04,Pennsylvania,Philadelphia,4900 block of North Franklin Street,1,0,http://www.gunviolencearchive.org/incident/93011,http://guncrisis.org/2014/01/06/philadlephia-police-department-releases-more-information-on-recent-shootings/,False,2,,,"Shot - Dead (murder, accidental, suicide)",40.0264,,-75.1371,,,0::22,0::Adult 18+,0::Male,0::Le'Quan Green,,0::Killed,0::Victim,http://philadelphia.cbslocal.com/2014/01/04/man-shot-dead-on-porch-in-north-philly/||http://guncrisis.org/2014/01/06/philadlephia-police-department-releases-more-information-on-recent-shootings/,,
108875,2014-01-04,Tennessee,Rogersville,Rogersville,0,1,http://www.gunviolencearchive.org/incident/108875,http://www.timesnews.net/article/9071694/woman-recovering-from-accidental-gunshot-to-stomach,False,1,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Cleaning gun,36.4655,,-82.9036,,,0::41,0::Adult 18+,0::Female,0::Vernie Regina Lucas,,0::Injured,0::Victim,http://www.timesnews.net/article/9071694/woman-recovering-from-accidental-gunshot-to-stomach,9,8
93112,2014-01-04,Alabama,Madison,101 Westchester Road ,0,1,http://www.gunviolencearchive.org/incident/93112,http://whnt.com/2014/01/04/breaking-shooting-in-madison/,False,5,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Armed robbery with injury/death and/or evidence of DGU found,34.6766,,-86.7607,,"Country Inn & Suites, Self inflicted wound",,1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.waff.com/story/24365278/madison-police-investigate-shooting-on-westchester-road||http://whnt.com/2014/01/04/breaking-shooting-in-madison/,10,2
93465,2014-01-04,Louisiana,Many,100 block of San Antonio Avenue,0,0,http://www.gunviolencearchive.org/incident/93465,http://www.ksla.com/story/24366199/suspect-sought-in-armed-robbery-of-many-la-dollar-store,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,31.5658,,-93.4913,,Family Dollar Store,,,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.ksla.com/story/24366199/suspect-sought-in-armed-robbery-of-many-la-dollar-store,24,31
93428,2014-01-04,Illinois,Springfield,2500 block of East Plateau Dr,0,0,http://www.gunviolencearchive.org/incident/93428,http://www.sj-r.com/news/police,False,18,,,,39.8406,,-89.5717,,9mm gun and empty ammo magazines stolen from vehicle between 9pm 1/4 and 5am 1/5,,,,,,,0::Victim,http://www.sj-r.com/news/police,87,44
125865,2014-01-04,Ohio,Parma Heights,Independence Boulevard,1,0,http://www.gunviolencearchive.org/incident/125865,http://www.cleveland.com/datacentral/index.ssf/2014/04/shooting_deaths_in_cuyahoga_co.html,False,16,,,"Shot - Dead (murder, accidental, suicide)||Suicide^",41.3753,,-81.752,,1mv suicide,0::66,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.cleveland.com/datacentral/index.ssf/2014/04/shooting_deaths_in_cuyahoga_co.html,14,23
93241,2014-01-04,Kentucky,Franklin,,0,0,http://www.gunviolencearchive.org/incident/93241,http://www.wbko.com/home/headlines/Attempted-Murder-Arrest-in-Simpson-County-238817941.html,False,1,,,Shots Fired - No Injuries,36.7249,,-86.5614,,"Fired gun during argument purposely missing son, told him the next one would go into him",1::70,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::William Roberts,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wbko.com/home/headlines/Attempted-Murder-Arrest-in-Simpson-County-238817941.html,,
93457,2014-01-04,Louisiana,Mandeville,Penn Street,0,0,http://www.gunviolencearchive.org/incident/93457,http://www.nola.com/crime/index.ssf/2014/01/mandeville_man_arrested_after_1.html#incart_river,False,1,,,Home Invasion||Domestic Violence||Brandishing/flourishing/open carry/lost/found,30.3617,,-90.0616,,,1::46,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::David Lockhart,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nola.com/crime/index.ssf/2014/01/mandeville_man_arrested_after_1.html#incart_river,89,11
103928,2014-01-04,Louisiana,Iberia Parish,Mixon Street and Anderson Street,0,1,http://www.gunviolencearchive.org/incident/103928,http://kpel965.com/iberia-parish-deputies-investigating-shooting/,False,3,,,Shot - Wounded/Injured,30.0089,,-91.8401,,,0::23,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://kpel965.com/iberia-parish-deputies-investigating-shooting/,96,22
99933,2014-01-04,Florida,Pahokee,,0,2,http://www.gunviolencearchive.org/incident/99933,http://www.wptv.com/dpp/news/region_the_glades/pahokee/terrance-johnson--accused-of-shooting-two-people-at-a-palm-beach-county-s,False,20,,,Shot - Wounded/Injured||Shots Fired - No Injuries,26.8187,,-80.6615,,Everglade Prep Academy ,2::16,2::Teen 12-17,2::Male,2::Terrance Johnson ,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.wptv.com/dpp/news/region_the_glades/pahokee/terrance-johnson--accused-of-shooting-two-people-at-a-palm-beach-county-s,81,25
93107,2014-01-04,New York,Brooklyn,Prospect Place near Thomas Boyland Street,1,1,http://www.gunviolencearchive.org/incident/93107,http://www.nydailynews.com/blogs/theshack/2014/01/teen-shot-dead-at-party-after-mom-warns-him-not-to-go,False,9,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",40.6693,,-73.9136,,,0::16,0::Teen 12-17,0::Male,0::Iquan Williams,,0::Killed||1::Injured,0::Victim||1::Victim||2::Subject-Suspect,http://www.nydailynews.com/blogs/theshack/2014/01/teen-shot-dead-at-party-after-mom-warns-him-not-to-go,55,20
93904,2014-01-04,Tennessee,Murfreesboro,,0,0,http://www.gunviolencearchive.org/incident/93904,http://www.wsmv.com/story/24390314/woman-robbed-at-gunpoint-during-craigslist-car-sale-in-murfreesboro,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,35.791,,-86.3495,,,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wsmv.com/story/24390314/woman-robbed-at-gunpoint-during-craigslist-car-sale-in-murfreesboro,48,14
93100,2014-01-04,Alabama,Huntsville,400 block of Pearson Drive ,0,0,http://www.gunviolencearchive.org/incident/93100,http://blog.al.com/breaking/2014/01/huntsville_police_robbers_use.html#incart_river_default,False,5,,,Armed robbery with injury/death and/or evidence of DGU found,34.6815,,-86.5724,,,,0::Adult 18+,0::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://blog.al.com/breaking/2014/01/huntsville_police_robbers_use.html#incart_river_default,20,7
93843,2014-01-04,Pennsylvania,Wind Gap,803 Male Road,0,0,http://www.gunviolencearchive.org/incident/93843,"http://www.mcall.com/news/breaking/mc-c-wind-gap-robbery-kmart-police-20140106,0,1626888.story",False,17,,,Armed robbery with injury/death and/or evidence of DGU found,40.8416,,-75.2961,,Perpetrator ordered all Kmart employees on the ground while he took money.,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,"http://www.mcall.com/news/breaking/mc-c-wind-gap-robbery-kmart-police-20140106,0,1626888.story",,
129993,2014-01-04,Ohio,Cleveland,10409 Meech Ave,1,0,http://www.gunviolencearchive.org/incident/129993,http://www.cleveland.com/datacentral/index.ssf/2014/04/shooting_deaths_in_cuyahoga_co.html,False,11,,,"Shot - Dead (murder, accidental, suicide)",41.4506,,-81.611,,1mvk,0::40,0::Adult 18+,0::Male,0::Brian A. Sears,,0::Killed,0::Victim,http://www.cleveland.com/datacentral/index.ssf/2014/04/shooting_deaths_in_cuyahoga_co.html,11,21
93238,2014-01-04,Kentucky,Lexington,Summerville Drive,1,0,http://www.gunviolencearchive.org/incident/93238,http://www.wkyt.com/home/headlines/Police-Elderly-woman-dead-husband-in-custody-after-shooting-238724531.html,False,6,,,"Shot - Dead (murder, accidental, suicide)",38.0426,,-84.533,,Husband suffering dementia kills wife,1::88,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Elizabeth Blevins||1::John Blevins,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wkyt.com/home/headlines/Police-Elderly-woman-dead-husband-in-custody-after-shooting-238724531.html,,
93229,2014-01-04,Texas,Richardson,"800 block of S. Central Expressway, near Spring Valley Road",0,1,http://www.gunviolencearchive.org/incident/93229,http://dfw.cbslocal.com/2014/01/05/police-richardson-salon-robber-accidentally-shoots-himself/,False,32,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found,32.94,,-96.7658,,Robber burglarized hair salon and accidentally shot himself while fleeing.,,0::Teen 12-17,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://dfw.cbslocal.com/2014/01/05/police-richardson-salon-robber-accidentally-shoots-himself/,102,8
94403,2014-01-04,Kansas,Leavenworth,19000 block of Springdale Road,1,0,http://www.gunviolencearchive.org/incident/94403,http://www.kansascity.com/2013/12/23/4710072/wounded-man-found-on-floor-of.html,False,2,,,"Shot - Dead (murder, accidental, suicide)",39.2956,,-95.026,,Perpetrator recklessly and unintentionally murdered victim.,0::58||1::48,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Richard Luse||1::Jeffery Sifford,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kansascity.com/2013/12/23/4710072/wounded-man-found-on-floor-of.html,42,3
93006,2014-01-04,New Jersey,Paterson,Franklin Street and Rosa Parks Boulevard,1,0,http://www.gunviolencearchive.org/incident/93006,/www.nj.com/passaic-county/index.ssf/2014/01/paterson_cop_shoots_kills_suspected_home-invasion_robber_authorities_say.html%23incart,False,9,,,Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed,40.9262,,-74.1587,,"Officer attempted to arrest victim, victim was armed with knife.",,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,,35,35
93593,2014-01-04,New Jersey,Manville,South Street,0,1,http://www.gunviolencearchive.org/incident/93593,http://www.nj.com/somerset/index.ssf/2014/01/man_shot_in_the_face_another_in_lower_extremities_during_two_somerset_robberies_aut,False,12,,,Armed robbery with injury/death and/or evidence of DGU found,40.5433,,-74.5905,,,0::22||1::25,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect,http://www.nj.com/somerset/index.ssf/2014/01/man_shot_in_the_face_another_in_lower_extremities_during_two_somerset_robberies_aut,16,16
93034,2014-01-04,Rhode Island,Coventry,Tiogue Avenue,0,0,http://www.gunviolencearchive.org/incident/93034,http://www.wpri.com/news/local/west-bay/warwick-one-arrested-after-gas-station-robberies,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,41.6826,,-71.5611,,,1::23,1::Adult 18+||2::Adult 18+,1::Male||2::Male,1::Monchi Castillo,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.providencejournal.com/breaking-news/content/20140104-r.i.-state-police-ask-public-to-help-find-suspect-in-armed-robbe||http://www.wpri.com/news/local/west-bay/warwick-one-arrested-after-gas-station-robberies,29,33
105114,2014-01-04,California,Compton,1300 block of North Wilmington Avenue,1,0,http://www.gunviolencearchive.org/incident/105114,http://homicide.latimes.com/post/taurson-mcmillian/,False,44,,,"Shot - Dead (murder, accidental, suicide)",33.9111,,-118.239,,,0::34,0::Adult 18+,0::Male,0::Taurson McMillian,,0::Killed,0::Victim,"http://www.latimes.com/local/lanow/la-me-ln-shooting-death-compton-20140106,0,5390156.story||http://homicide.latimes.com/post/taurson-mcmillian/",64,35
93156,2014-01-04,Louisiana,Monroe,100 South Grand Street ,0,0,http://www.gunviolencearchive.org/incident/93156,http://www.knoe.com/story/24367453/300-people-in-monroe-streets-leads-to-fight-shots-fired,False,5,,,Shots Fired - No Injuries,32.501,,-92.1181,,Austin's Lounge,,,,,,,,http://www.knoe.com/story/24367453/300-people-in-monroe-streets-leads-to-fight-shots-fired,17,34
93588,2014-01-04,New Jersey,North Plainfield,Race Street,0,1,http://www.gunviolencearchive.org/incident/93588,http://www.nj.com/somerset/index.ssf/2014/01/man_shot_in_the_face_another_in_lower_extremities_during_two_somerset_robberies_aut,False,7,,,Armed robbery with injury/death and/or evidence of DGU found,40.6219,,-74.427,,,0::31||1::29,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.nj.com/somerset/index.ssf/2014/01/man_shot_in_the_face_another_in_lower_extremities_during_two_somerset_robberies_aut,22,22
92956,2014-01-04,Florida,Jacksonville,Spring Park Road,0,1,http://www.gunviolencearchive.org/incident/92956,http://members.jacksonville.com/news/crime/2014-01-04/story/man-critical-condition-saturday-morning-shooting-spring-park-road,False,5,,,Shot - Wounded/Injured,30.2921,,-81.6261,,St. Charles Garden apartments ,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://members.jacksonville.com/news/crime/2014-01-04/story/man-critical-condition-saturday-morning-shooting-spring-park-road,13,9
93275,2014-01-04,North Carolina,Kings Mountain,Phenix Street,1,0,http://www.gunviolencearchive.org/incident/93275,http://www.charlotteobserver.com/2014/01/05/4589901/man-charged-with-murder-in-fathers.html#.Usq-J_tKiSo,False,10,,,"Shot - Dead (murder, accidental, suicide)",35.2494,,-81.3341,,,0::68||1::38,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Donald Howard Lovette||1::Robert Henry Lovette,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.charlotteobserver.com/2014/01/05/4589901/man-charged-with-murder-in-fathers.html#.Usq-J_tKiSo,111,46
103940,2014-01-04,Georgia,Atlanta,2025 Peachtree Road ,0,4,http://www.gunviolencearchive.org/incident/103940,http://www.cbsatlanta.com/story/24366624/4-men-hospitalized-and-arrested-after-atlatna-shooting,False,5,,,Shot - Wounded/Injured||Drug involvement,33.8099,,-84.3911,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.cbsatlanta.com/story/24366624/4-men-hospitalized-and-arrested-after-atlatna-shooting,55,39
93582,2014-01-04,New Jersey,New Brunswick,Louis Street,0,0,http://www.gunviolencearchive.org/incident/93582,http://www.nj.com/middlesex/index.ssf/2014/01/three_men_arrested_after_women_are_terrorized_during_home-invasion_robbery_in_new_,False,6,,,Home Invasion||Home Invasion - No death or injury,40.4952,,-74.4557,,,0::22||1::50||2::31||3::54||4::36,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Female||1::Female||2::Male||3::Male||4::Male,2::Juan K. Dunlap||3::Rick L. Barley||4::Donte R. Crumidy,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect||4::Subject-Suspect,http://www.nj.com/middlesex/index.ssf/2014/01/three_men_arrested_after_women_are_terrorized_during_home-invasion_robbery_in_new_,17,17
92951,2014-01-04,Florida,Jacksonville,7101 Wilson Blvd.,1,1,http://www.gunviolencearchive.org/incident/92951,http://jacksonville.com/breaking-news/2014-01-04/story/man-dead-woman-hospital-after-saturday-shooting-jacksonvilles,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",30.2711,,-81.7624,,Eden’s Edge apartments ,0::57||1::20||2::20,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Female||2::Male,0::Henry Underwood||2::Toddrick Nelson Lee ,,0::Killed||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://jacksonville.com/breaking-news/2014-01-04/story/man-dead-woman-hospital-after-saturday-shooting-jacksonvilles,14,9
93145,2014-01-04,Louisiana,Metairie,1300 block of Pier Avenue ,1,0,http://www.gunviolencearchive.org/incident/93145,http://www.wwltv.com/news/crime/JP-deputy-shoots-suspect-who-allegedly-killed-woman-238750561.html,False,1,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed||Officer Involved Shooting - subject/suspect/perpetrator suicide at standoff",30.0138,,-90.1353,,"Appeared to be a case of ""suicide by cop,"" according to authorities. ",0::29,0::Adult 18+,0::Male,0::Noah Scott ,,0::Killed,0::Victim,http://www.wwltv.com/news/crime/JP-deputy-shoots-suspect-who-allegedly-killed-woman-238750561.html,94,9
93320,2014-01-04,Ohio,Steubenville,1300/State Street ,0,1,http://www.gunviolencearchive.org/incident/93320,http://www.wtrf.com/story/24373164/man-accused-of-firing-shots-at-car-in-steubenville-injuring-one,False,6,,,Shot - Wounded/Injured,40.3612,,-80.6253,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Alterik Rogers,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wtrf.com/story/24373164/man-accused-of-firing-shots-at-car-in-steubenville-injuring-one,96,30
92921,2014-01-04,Illinois,Chicago,3900 block of West Ohio St,0,1,http://www.gunviolencearchive.org/incident/92921,http://chicago.cbslocal.com/2014/01/04/humboldt-park-shooting-leaves-man-in-serious-condition/,False,7,,,Shot - Wounded/Injured,41.8917,,-87.7235,,,0::23,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://chicago.cbslocal.com/2014/01/04/humboldt-park-shooting-leaves-man-in-serious-condition/,10,5
103933,2014-01-04,South Carolina,Orangeburg,Orangeburg County Fairgrounds,0,1,http://www.gunviolencearchive.org/incident/103933,http://thetandd.com/news/man-injured-after-accidentally-shooting-self/article_04614482-7565-11e3-87cc-0019bb2963f4.html,False,6,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury,33.3015,,-80.7443,,in 30s. At hunting show,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://thetandd.com/news/man-injured-after-accidentally-shooting-self/article_04614482-7565-11e3-87cc-0019bb2963f4.html,66,39
93149,2014-01-04,Pennsylvania,Philadelphia,1500 block of South 58th Street,0,2,http://www.gunviolencearchive.org/incident/93149,http://6abc.com/archive/9383047/,False,1,,,Accidental Shooting||Accidental Shooting - Injury,39.94,,-75.2338,,,0::13||1::15||2::18,0::Teen 12-17||1::Teen 12-17||2::Adult 18+,0::Male||1::Female,2::Larry Smith,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://philadelphia.cbslocal.com/2014/01/05/two-teens-shot-in-southwest-philadelphia/||http://6abc.com/archive/9383047/,,
93787,2014-01-04,Florida,Miami,15880 NE 15th Avenue,1,0,http://www.gunviolencearchive.org/incident/93787,http://miami.cbslocal.com/2014/01/07/mob-at-party-ends-with-deadly-shooting/,False,24,,,"Shot - Dead (murder, accidental, suicide)",25.9215,,-80.1701,,,0::21,0::Adult 18+,0::Male,0::Wilson Alexis,,0::Killed,0::Victim,http://miami.cbslocal.com/2014/01/07/mob-at-party-ends-with-deadly-shooting/,107,36
107323,2014-01-04,Oregon,Eugene, Eugene Airport,0,0,http://www.gunviolencearchive.org/incident/107323,http://blog.tsa.gov/2014_01_10_archive.html,False,4,,,TSA Action,44.1218,,-123.216,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,8,4
93668,2014-01-04,Washington,Yakima,900 block of East Nob Hill Boulevard,1,0,http://www.gunviolencearchive.org/incident/93668,http://www.tri-cityherald.com/2014/01/07/2762917/man-killed-by-yakima-police-held.html,False,4,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed",46.5851,,-120.49,,outside a carwash,0::23,0::Adult 18+,0::Male,0::Rocendo Arias,,0::Killed,0::Victim,http://www.tri-cityherald.com/2014/01/07/2762917/man-killed-by-yakima-police-held.html,14,14
96633,2014-01-04,Florida,Broward,,0,0,http://www.gunviolencearchive.org/incident/96633,"http://www.sun-sentinel.com/news/broward/wilton-manors/fl-wilton-manors-home-invasion-20140114,0,5250739.story",False,20,,,Home Invasion||Home Invasion - No death or injury||Armed robbery with injury/death and/or evidence of DGU found,26.1901,,-80.3659,,,1::29,1::Adult 18+,1::Male,1::Michael Jerome Thomas,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.sun-sentinel.com/news/broward/wilton-manors/fl-wilton-manors-home-invasion-20140114,0,5250739.story",97,29
93223,2014-01-04,Delaware,Wilmington,2100 block of Washington Street,0,1,http://www.gunviolencearchive.org/incident/93223,http://abclocal.go.com/wpvi/story,False,1,,,Shot - Wounded/Injured,39.7733,,-75.5119,,,0::28,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://abclocal.go.com/wpvi/story,1,1
93747,2014-01-04,California,Cathedral City,Interstate 10 ,0,1,http://www.gunviolencearchive.org/incident/93747,http://www.kesq.com/kesq/shooting-suspect-on-the-run-after-opening-fire-on-driver-in-cathedral-city/-/232254/23791226/-/fb3vy2/-,False,36,,,Shot - Wounded/Injured,33.8448,,-116.451,,near Date Palm,0::24,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kesq.com/kesq/shooting-suspect-on-the-run-after-opening-fire-on-driver-in-cathedral-city/-/232254/23791226/-/fb3vy2/-,56,28
92990,2014-01-04,Colorado,Arvada,West 62nd and Dover,1,0,http://www.gunviolencearchive.org/incident/92990,http://kdvr.com/2014/01/06/suspects-identified-in-arvada-car-chase-and-shooting/,False,7,,,"Shots Fired - No Injuries||Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed",39.8118,,-105.093,,after arguement at Hoffbrau Bar and Grill,0::23||1::23,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Igor Skorev||1::Maksim Khamov,,0::Killed||1::Unharmed,0::Victim||1::Victim,http://kdvr.com/2014/01/04/suspect-dies-following-wild-chase-and-gun-battle-with-arvada-police/||http://kdvr.com/2014/01/06/suspects-identified-in-arvada-car-chase-and-shooting/,27,19
96077,2014-01-04,Kentucky,Boyd County,,0,0,http://www.gunviolencearchive.org/incident/96077,http://www.wsaz.com/news/headlines/Horses-Shot-and-Killed-in-Boyd-County-Ky-238653461.html,False,5,,,Animal shot/killed,38.3833,,-82.6915,,,,,,,,,,http://www.wsaz.com/news/headlines/Horses-Shot-and-Killed-in-Boyd-County-Ky-238653461.html,,
93208,2014-01-04,Texas,Dallas,NorthPark Center,0,0,http://www.gunviolencearchive.org/incident/93208,http://www.wfaa.com/news/crime/Man-arrested-for-pulling-gun-over-parking-spot-at-NorthPark-238742951.html,False,32,,,Brandishing/flourishing/open carry/lost/found,32.8657,,-96.7724,,Charged with ggravated assault for pulling a gun on another man during a dispute over a parking spot ,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.wfaa.com/news/crime/Man-arrested-for-pulling-gun-over-parking-spot-at-NorthPark-238742951.html,108,16
93042,2014-01-04,Massachusetts,Brockton,1284 Main Street,0,0,http://www.gunviolencearchive.org/incident/93042,http://www.enterprisenews.com/topstories/x890777608/Staff-customers-scared-after-armed-robbery-at-Brockton-s-Supreme-Coffee-Donu,False,8,,,Armed robbery with injury/death and/or evidence of DGU found,42.0585,,-71.0136,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.enterprisenews.com/topstories/x890777608/Staff-customers-scared-after-armed-robbery-at-Brockton-s-Supreme-Coffee-Donu,,
93417,2014-01-04,Texas,Bee County,Along Highway 59 just outside of Beeville.,1,0,http://www.gunviolencearchive.org/incident/93417,http://www.kiiitv.com/story/24366671/bee-county-deputies-shooting-and-kill-driver,False,34,,,Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed,28.4008,,-97.7483,,High speed chase ,,0::Adult 18+,0::Male,,,0::Killed,0::Subject-Suspect,http://www.kiiitv.com/story/24366671/bee-county-deputies-shooting-and-kill-driver,43,21
94016,2014-01-04,Louisiana,New Orleans,1100 block of Camp Street,0,1,http://www.gunviolencearchive.org/incident/94016,http://uptownmessenger.com/2014/01/weekend-armed-robberies-reported-in-east-carrollton-on-magazine-street-and-in-central-city/#m,False,2,,,Armed robbery with injury/death and/or evidence of DGU found||Car-jacking,29.9413,,-90.0717,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://uptownmessenger.com/2014/01/weekend-armed-robberies-reported-in-east-carrollton-on-magazine-street-and-in-central-city/#m,93,5
93139,2014-01-04,Florida,Gainesville,1727 NE 8th Ave.,0,0,http://www.gunviolencearchive.org/incident/93139,http://www.gainesville.com/article/20140105/ARTICLES/140109865/1002/NEWS01,False,5,,,Shots Fired - No Injuries||Home Invasion||Home Invasion - No death or injury,29.6591,,-82.3023,,Gardenia Gardens apartment complex,0::22,0::Adult 18+,0::Male,0::Darius Stephon Young,,0::Unharmed,0::Subject-Suspect,http://www.gainesville.com/article/20140105/ARTICLES/140109865/1002/NEWS01,20,7
93315,2014-01-04,South Carolina,Beaufort,County Shed Road,0,1,http://www.gunviolencearchive.org/incident/93315,http://www.islandpacket.com/2014/01/05/2879210/beaufort-county-sheriffs-office.html,False,1,,,Shot - Wounded/Injured,32.4428,,-80.7411,,,0::53||1::39,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Derrick Cornelius Polite,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.islandpacket.com/2014/01/05/2879210/beaufort-county-sheriffs-office.html,121,45
94011,2014-01-04,Louisiana,New Orleans,2800 block of Magazine Street ,0,0,http://www.gunviolencearchive.org/incident/94011,http://uptownmessenger.com/2014/01/weekend-armed-robberies-reported-in-east-carrollton-on-magazine-street-and-in-central-city/#m,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,29.926,,-90.0825,,,0::20||1::20,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Female||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://uptownmessenger.com/2014/01/weekend-armed-robberies-reported-in-east-carrollton-on-magazine-street-and-in-central-city/#m,93,5
93045,2014-01-04,Georgia,Lawrenceville,3000 block of Smokemist Trace,1,1,http://www.gunviolencearchive.org/incident/93045,http://www.wsbtv.com/news/news/local/gwinnett-police-investigating-officer-involved-sho/ncccc/,False,7,,,Officer Involved Incident||Officer Involved Shooting - Officer shot||Officer Involved Shooting - subject/suspect/perpetrator killed,33.9339,,-84.1271,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Killed||1::Injured,0::Victim||1::Victim,http://www.wsbtv.com/news/news/local/gwinnett-police-investigating-officer-involved-sho/ncccc/,100,5
93290,2014-01-04,Georgia,Columbus,4600 block of Gilbert Avenue,0,0,http://www.gunviolencearchive.org/incident/93290,http://www.ledger-enquirer.com/2014/01/06/2886863/report-gilbert-avenue-apartment.html,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,32.5081,,-84.9748,,,0::42,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Victim,http://www.ledger-enquirer.com/2014/01/06/2886863/report-gilbert-avenue-apartment.html,135,29
92984,2014-01-04,New York,Brooklyn,Rockaway Parkway near Rutland Road,1,0,http://www.gunviolencearchive.org/incident/92984,http://www.nydailynews.com/blogs/theshack/2014/01/cops-man-gunned-down-in-brooklyn,False,9,,,"Shot - Dead (murder, accidental, suicide)",40.6599,,-73.9426,,,0::34,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nydailynews.com/blogs/theshack/2014/01/cops-man-gunned-down-in-brooklyn,43,20
92913,2014-01-04,Illinois,Chicago,3200 block of North Milwaukee Av,0,1,http://www.gunviolencearchive.org/incident/92913,http://chicago.cbslocal.com/2014/01/04/1-dead-4-wounded-in-weekend-shootings/,False,4,,,Shot - Wounded/Injured,41.9393,,-87.7245,,"Man shot, drove self to hosp. Suspect at large.",,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://chicago.cbslocal.com/2014/01/04/1-dead-4-wounded-in-weekend-shootings/,39,20
219625,2014-01-04,Pennsylvania,Philadelphia,3967 Kensington Avenue,0,0,http://www.gunviolencearchive.org/incident/219625,http://guncrisis.org/2014/01/22/surveillance-videos-philadelphia-police-seeking-more-gun-suspects/,False,1,,,Brandishing/flourishing/open carry/lost/found,40.0064,,-75.0952,,7-11; Juniata Park section of Philadelphia,,,0::Male,,,,0::Victim||1::Subject-Suspect,http://guncrisis.org/2014/01/22/surveillance-videos-philadelphia-police-seeking-more-gun-suspects/,,
93115,2014-01-04,Alabama,Huntsville,5000 block of Galaxy Way,0,0,http://www.gunviolencearchive.org/incident/93115,http://www.waff.com/story/24365763/shooter-arrested-for-attempted-murder,False,5,,,Shots Fired - No Injuries,34.743,,-86.6495,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Kelvin Conerly ,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.waff.com/story/24365763/shooter-arrested-for-attempted-murder,53,2
93571,2014-01-04,Maryland,Columbia,10400 block of Little Patuxent Park,0,0,http://www.gunviolencearchive.org/incident/93571,http://www.wbaltv.com/news/maryland/howard-county/police-2-arrested-in-columbia-bank-robbery/-/10137848/23794300/-/4kar3fz/-/ind,False,7,,,Armed robbery with injury/death and/or evidence of DGU found,39.2147,,-76.8717,,,0::23||1::28,0::Adult 18+||1::Adult 18+,0::Male,0::Calvin Abney||1::Richard Abney,,0::Unharmed||1::Unharmed,0::Subject-Suspect||1::Subject-Suspect,http://www.wbaltv.com/news/maryland/howard-county/police-2-arrested-in-columbia-bank-robbery/-/10137848/23794300/-/4kar3fz/-/ind,12,12
93688,2014-01-04,Louisiana,New Orleans,Palm and Dante streets,0,1,http://www.gunviolencearchive.org/incident/93688,http://www.nola.com/crime/index.ssf/2014/01/man_robbed_while_painting_and.html#incart_river,False,2,,,Shot - Wounded/Injured,29.966,,-90.1132,,,0::49,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nola.com/crime/index.ssf/2014/01/man_robbed_while_painting_and.html#incart_river,91,5
92967,2014-01-04,Florida,Jacksonville,1591 S. Lane Ave,2,1,http://www.gunviolencearchive.org/incident/92967,http://www.news4jax.com/news/man-arrested-in-westside-double-killing/-/475880/23795812/-/u0hi5sz/-/index.html,False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",30.2918,,-81.7522,,Canterbury Gardens Apartments,0::21||1::21||3::24,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Female||2::Female||3::Male,0::Emanual Robinson ||1::Latricia Johnson ||3::Keith Collins Jr.,,0::Killed||1::Killed||2::Injured||3::Unharmed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect,http://members.jacksonville.com/news/crime/2014-01-04/story/two-dead-another-injured-early-saturday-morning-shooting||http://www.news4jax.com/news/man-arrested-in-westside-double-killing/-/475880/23795812/-/u0hi5sz/-/index.html,14,9
94551,2014-01-04,New York,Brooklyn,2816 Glenwood Road,0,0,http://www.gunviolencearchive.org/incident/94551,http://newyork.cbslocal.com/2014/01/09/police-man-robbed-brooklyn-deli-left-when-clerk-fought-back/,False,9,,,Armed robbery with injury/death and/or evidence of DGU found,40.634,,-73.9497,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://newyork.cbslocal.com/2014/01/09/police-man-robbed-brooklyn-deli-left-when-clerk-fought-back/,42,21
93056,2014-01-04,California,Pomona,North Huntington Avenue,0,1,http://www.gunviolencearchive.org/incident/93056,http://www.nbclosangeles.com/news/local/Police-Search-for-Gunman-in-Pomona-Shooting-238753371.html,False,35,,,Shot - Wounded/Injured,34.0476,,-117.761,,,0::32||1::27,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::Isaac Serrano,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nbclosangeles.com/news/local/Police-Search-for-Gunman-in-Pomona-Shooting-238753371.html,52,20
93354,2014-01-04,Ohio,Dayton,900 block of Edison St,0,1,http://www.gunviolencearchive.org/incident/93354,http://www.whio.com/news/news/crime-law/victim-shot-after-answering-door/nccjK/,False,10,,,Shot - Wounded/Injured,39.7565,,-84.228,,"Victim jumped and shot after opening his door, by unknown assailant, at large. Gun found nearby",0::25,0::Adult 18+,0::Male,0::Deontay Johnson,,0::Injured,0::Victim,http://www.whio.com/news/news/local/police-man-shot-back-edison-street/ncc4R/||http://www.whio.com/news/news/crime-law/victim-shot-after-answering-door/nccjK/,39,5
93168,2014-01-04,New Jersey,Union City,Bergenline Avenue between 43rd and 44th Streets,0,0,http://www.gunviolencearchive.org/incident/93168,http://www.nj.com/hudson/index.ssf/2014/01/dye_pack_foils_union_city_bank_robbery_police_say.html#incart_river_default,False,8,,,Armed robbery with injury/death and/or evidence of DGU found,40.7782,,-74.023,,Bank was full of people at time of robbery.,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nj.com/hudson/index.ssf/2014/01/dye_pack_foils_union_city_bank_robbery_police_say.html#incart_river_default,33,33
92959,2014-01-04,Iowa,Waterloo,Patton Av,0,1,http://www.gunviolencearchive.org/incident/92959,http://wcfcourier.com/news/local/crime-and-courts/police-investigate-report-of-burglary-sexual-assault/article_62ba813c-5197-5c8,False,1,,,,42.4775,,-92.3351,,Victim reported being sexually assaulted at gunpoint. At large.,0::59,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Injured,0::Victim||1::Subject-Suspect,http://wcfcourier.com/news/local/crime-and-courts/police-investigate-report-of-burglary-sexual-assault/article_62ba813c-5197-5c8,61,31
93367,2014-01-04,Texas,Laredo,900 block of Garza Street,1,0,http://www.gunviolencearchive.org/incident/93367,http://www.lmtonline.com/front-news/article_0dc7aed6-7f8f-11e5-bebe-9b1ae650cf6c.html,False,28,,,"Shot - Dead (murder, accidental, suicide)||Armed robbery with injury/death and/or evidence of DGU found",27.5152,,-99.5045,,"Garcia found not guilty of murder and aggravated robbery on October 30, 2015.",0::64||1::39,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Guadalupe Perez||1::Jesus Elroy Garcia Sr.,1::Armed Robbery,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.lmtonline.com/articles/2014/01/05/front/news/doc52ca33930d399548020050.txt||http://lmtonline.com/articles/2014/01/16/front/news/doc52d0778dade6f041073337.txt||http://www.lmtonline.com/front-news/article_0062d056-777c-11e5-bbea-cfc063835d39.html||http://www.lmtonline.com/front-news/article_0dc7aed6-7f8f-11e5-bebe-9b1ae650cf6c.html,42,21
93040,2014-01-04,Pennsylvania,Wilkes-Barre,Park Avenue and Lehigh Street,0,0,http://www.gunviolencearchive.org/incident/93040,http://wnep.com/2014/01/04/armed-robbery-in-wilkes-barre/,False,17,,,Armed robbery with injury/death and/or evidence of DGU found,41.2351,,-75.8858,,,1::20,1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://wnep.com/2014/01/04/armed-robbery-in-wilkes-barre/,,
93019,2014-01-04,Pennsylvania,Greencastle,I-81 and Molly Pitcher Hwy,1,0,http://www.gunviolencearchive.org/incident/93019,http://www.pennlive.com/midstate/index.ssf/2015/09/john_strawser_i-81_killing.html,False,9,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)||Road rage",39.7593,Mile Marker 3,-77.7258,1,"Perpetrator rammed victim's vehicle disabling it, then shot victim in vehicle. Perp charged with the murder 10/15;
39.755885, -77.727059 ;",0::28||1::36,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Timothy Davison||1::John Wayne Strawser,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.pennlive.com/news/2016/08/john_strawser_verdict.html||http://bangordailynews.com/2017/10/10/news/man-convicted-of-killing-girlfriend-to-stand-trial-for-shooting-maine-driver-on-highway/||http://www.pennlive.com/midstate/index.ssf/2015/09/john_strawser_i-81_killing.html,90,30
93330,2014-01-04,Washington,Deer Park,204 E. D Street,1,0,http://www.gunviolencearchive.org/incident/93330,https://www.google.com/fusiontables/DataSource?docid=1NwGJgh4U3EI06Nt2x25NXhh2FW5S2bi5OgU8_6w,False,5,,,"Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - Resident killed",47.9503,,-117.472,,Deer Park Apartment Complex,0::53||1::61||2::23,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,"0::Harry ""Ed"" Giesbrecht||1::Richard Klepacki||2::Anthony J. Tudor II",,"0::Killed||1::Unharmed, Arrested||2::Unharmed, Arrested",0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.spokesman.com/stories/2014/jan/06/61-year-old-man-arrested-deer-park-fatal-shooting/||http://www.khq.com/story/29335282/one-of-two-men-accused-of-2014-murder-convicted||https://www.google.com/fusiontables/DataSource?docid=1NwGJgh4U3EI06Nt2x25NXhh2FW5S2bi5OgU8_6w,7,7
456222,2014-01-04,New York,Schenectady,Emmett Street,0,1,http://www.gunviolencearchive.org/incident/456222,http://www.timesunion.com/local/article/Arrest-made-in-shooting-of-Schenectady-cabbie-6667567.php,False,20,,,Shot - Wounded/Injured||Possession (gun(s) found during commission of other crimes),42.8023,,-73.9326,,"cabbie chastised 2 men urinating in street, perp fired on car, hit cabbie in chest",0::55||1::32,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Juan O Parnham,,"0::Injured||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.timesunion.com/local/article/Arrest-made-in-shooting-of-Schenectady-cabbie-6667567.php,111,49
94333,2014-01-04,Georgia,Covington,Turner Lake Road,0,1,http://www.gunviolencearchive.org/incident/94333,http://www.gwinnettdailypost.com/news/2014/jan/09/man-cops-thought-was-car-crash-injured-self-inflic/,False,4,,,Accidental Shooting||Accidental Shooting - Injury,33.5909,,-83.8791,,self inflicted,0::37,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.gwinnettdailypost.com/news/2014/jan/09/man-cops-thought-was-car-crash-injured-self-inflic/,113,43
92822,2014-01-04,Alabama,Huntsville,,0,0,http://www.gunviolencearchive.org/incident/92822,http://www.myfoxal.com/story/24361834/huntsville-police-seek-robber-who-opened-fire,False,5,,,Shots Fired - No Injuries||Armed robbery with injury/death and/or evidence of DGU found,34.7266,,-86.5722,,,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.myfoxal.com/story/24361834/huntsville-police-seek-robber-who-opened-fire,21,7
95118,2014-01-04,Alabama,Bessemer,Eastern Valley Rd. and I-459,0,0,http://www.gunviolencearchive.org/incident/95118,http://www.myfoxal.com/story/24401301/bessemer-police-arrest-18-year-old-for-robbery,False,7,,,Non-Shooting Incident,33.3318,,-86.9961,,Colonial Tannehill Promenade Mall,1::18,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::Dwayne Mikal Ford,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.myfoxal.com/story/24401301/bessemer-police-arrest-18-year-old-for-robbery,15,19
107324,2014-01-04,Indiana,Fort Wayne,Fort Wayne International Airport,0,0,http://www.gunviolencearchive.org/incident/107324,http://blog.tsa.gov/2014_01_10_archive.html,False,3,,,TSA Action,40.9865,,-85.1881,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,50,16
93709,2014-01-04,Colorado,Pueblo,1600 block of Gaylord Avenue,0,1,http://www.gunviolencearchive.org/incident/93709,http://gazette.com/man-fatally-shot-by-pueblo-swat-officers-idd/article/1512155,False,3,,,Shot - Wounded/Injured,38.2396,,-104.643,,perp later killed by cops ,0::43||1::66,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Alvino Hidalgo ||1::Frankie Martinez ,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://gazette.com/man-fatally-shot-by-pueblo-swat-officers-idd/article/1512155,46,3
94524,2014-01-04,New York,Monroe County, Cottage Hotel,0,3,http://www.gunviolencearchive.org/incident/94524,http://www.ithacajournal.com/article/20140109/NEWS10/301090010/1124/,False,25,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Accidental/Negligent Discharge,43.2841,,-77.7452,, Cassata shot himself and Raab,0::70||1::67||2::70,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::John Cassata||1::Charles Raab||2::John Cassata,,0::Injured||1::Injured||2::Injured,0::Victim||1::Victim||2::Subject-Suspect,http://www.ithacajournal.com/article/20140109/NEWS10/301090010/1124/,134,56
93053,2014-01-04,California,Hawaiian Gardens,Civic Center and Delvin ,0,1,http://www.gunviolencearchive.org/incident/93053,http://losangeles.cbslocal.com/2014/01/05/man-stable-after-being-shot-multiple-times-in-hawaiian-gardens/,False,38,,,Shot - Wounded/Injured,33.8295,,-118.077,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://losangeles.cbslocal.com/2014/01/05/man-stable-after-being-shot-multiple-times-in-hawaiian-gardens/,63,32
93335,2014-01-04,Washington,Pasco,N 20th Avenue ,0,1,http://www.gunviolencearchive.org/incident/93335,http://www.tri-cityherald.com/2014/01/05/2760485/police-man-may-have-shot-himself.html,False,4,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury,46.2443,,-119.117,,,0::26,0::Adult 18+,0::Male,0::Brandon Mellon,,0::Injured,0::Victim,http://www.tri-cityherald.com/2014/01/05/2760485/police-man-may-have-shot-himself.html,16,16
93049,2014-01-04,New Mexico,Las Vegas,,0,1,http://www.gunviolencearchive.org/incident/93049,http://www.abqjournal.com/331478/abqnewsseeker/state-police-shoot-wrong-way-driver-on-i-25-near-las-vegas.html,False,3,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot,35.5999,,-105.229,,"driving wrong way, I-25 between Romeroville and Las Vegas",,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.abqjournal.com/331478/abqnewsseeker/state-police-shoot-wrong-way-driver-on-i-25-near-las-vegas.html,70,8
108873,2014-01-04,New York,Mendon,,0,2,http://www.gunviolencearchive.org/incident/108873,http://www.13wham.com/news/features/top-stories/stories/accidental-shooting-pittsford-restaurant-8541.shtml,False,27,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Accidental/Negligent Discharge,42.9976,,-77.4788,,self inflicted,,0::Adult 18+||1::Adult 18+,0::Male,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.13wham.com/news/features/top-stories/stories/accidental-shooting-pittsford-restaurant-8541.shtml,131,55
93333,2014-01-04,Illinois,Chicago,5400 block of West Madison St,0,1,http://www.gunviolencearchive.org/incident/93333,http://chicago.cbslocal.com/2014/01/06/2-killed-8-wounded-in-weekend-shootings/,False,7,,,Shot - Wounded/Injured,41.8807,,-87.7605,,"Victim sitting in car, approached from behind, shot in arm and leg. Perp unknown and at large.",0::28,0::Adult 18+,0::Male,,,0::Injured,0::Victim||1::Subject-Suspect,http://chicago.cbslocal.com/2014/01/06/2-killed-8-wounded-in-weekend-shootings/,8,4
92969,2014-01-04,Arizona,Sierra Vista,1200 block Paseo San Luis,1,0,http://www.gunviolencearchive.org/incident/92969,http://www.jrn.com/kgun9/news/Man-killed-in-officer-involved-shootin-238727951.html,False,2,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed",31.5422,,-110.251,,Cochise County,0::49,0::Adult 18+,0::Male,0::Michael Estrada,,0::Killed,0::Victim,http://www.jrn.com/kgun9/news/Man-killed-in-officer-involved-shootin-238727951.html,14,14
94444,2014-01-04,Texas,Corpus Christi,Driving along U.S. 59,1,0,http://www.gunviolencearchive.org/incident/94444,http://www.kswo.com/story/24411960/south-texas-deputies-shoot-man-dead-after-chase,False,27,,,Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed,27.8006,,-97.3964,,Deputies opened fire on the vehicle killing perpetrator.,1::51,1::Adult 18+,1::Male,,,1::Killed,0::Victim||1::Subject-Suspect,http://www.kswo.com/story/24411960/south-texas-deputies-shoot-man-dead-after-chase,34,20
107326,2014-01-04,Oklahoma,Tulsa,Tulsa International Airport,0,0,http://www.gunviolencearchive.org/incident/107326,http://blog.tsa.gov/2014_01_10_archive.html,False,1,,,TSA Action,36.1988,,-95.8839,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,77,34
93203,2014-01-04,Texas,Dallas,8500 block of N. Stemmons Fwy.,0,2,http://www.gunviolencearchive.org/incident/93203,http://www.wfaa.com/news/local/Two-shot-outside-Dallas-gentlemans-club-238712321.html,False,33,,,Shot - Wounded/Injured,32.828,,-96.8719,,Victims shot by an unknown man in parking lot of gentleman's club.,0::21||1::24,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.wfaa.com/news/local/Two-shot-outside-Dallas-gentlemans-club-238712321.html,103,23
93728,2014-01-04,Arkansas,Little Rock,West 23rd Street,0,0,http://www.gunviolencearchive.org/incident/93728,http://www.arkansasonline.com/news/2014/jan/06/three-men-steal-car-gunpoint-lr-street-stop-sign/,False,2,,,Armed robbery with injury/death and/or evidence of DGU found||Car-jacking,34.7305,,-92.3094,,,0::57,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Cornelious Warner,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://www.arkansasonline.com/news/2014/jan/06/three-men-steal-car-gunpoint-lr-street-stop-sign/,34,31
92971,2014-01-04,Florida,Cape Coral,Southeast 12th Avenue,1,0,http://www.gunviolencearchive.org/incident/92971,http://www.nbc-2.com/story/24361704/cape-pd-investigating-early-morning-shooting#.UsinlyqtMok,False,19,,,"Shot - Dead (murder, accidental, suicide)",26.637,,-81.9509,,,,0::Adult 18+,0::Male,0::Pierre Dervil ,,0::Killed,0::Victim,http://www.nbc-2.com/story/24361704/cape-pd-investigating-early-morning-shooting#.UsinlyqtMok,77,30
107325,2014-01-04,Texas,Houston, Bush Intercontinental Airport,0,0,http://www.gunviolencearchive.org/incident/107325,http://blog.tsa.gov/2014_01_10_archive.html,False,18,,,TSA Action,29.9902,,-95.3368,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,141,15
93197,2014-01-04,Texas,San Antonio,14600 block of Nacogdoches near Judson Rd,0,0,http://www.gunviolencearchive.org/incident/93197,http://www.ksat.com/news/man-robs-northeast-side-pizza-hut-with-gun/-/478452/23770274/-/jgikc8z/-/index.html,False,35,,,Armed robbery with injury/death and/or evidence of DGU found,29.586,,-98.3771,,Armed robbery of a Pizza Hut.,,1::Adult 18+,1::Male,,,1::Unharmed,0::Victim||1::Subject-Suspect,http://www.ksat.com/news/man-robs-northeast-side-pizza-hut-with-gun/-/478452/23770274/-/jgikc8z/-/index.html,118,25
93047,2014-01-04,Illinois,Chicago,3100 block of West 52nd S,0,1,http://www.gunviolencearchive.org/incident/93047,"http://www.chicagotribune.com/news/local/breaking/chi-overnight-shootings-jan-4-jan-5-20140105,0,6279739.story",False,4,,,Shot - Wounded/Injured,41.7991,,-87.7013,,"Man heard gunfire while walking, and felt pain in arm.",0::20,0::Adult 18+,0::Male,,,0::Injured,0::Victim,"http://www.chicagotribune.com/news/local/breaking/chi-overnight-shootings-jan-4-jan-5-20140105,0,6279739.story",1,1
92945,2014-01-04,Florida,Orlando (Pine Hills),4800 block of Leprechaun Way,0,1,http://www.gunviolencearchive.org/incident/92945,"http://www.orlandosentinel.com/news/local/breakingnews/os-teen-on-bike-shot-suspect-arrested-20140110,0,698779.story",False,5,0::Unknown,0::Unknown,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury,28.5875,,-81.4459,1,Teenage victim was accidentally shot by his uncle.,0::15||1::28,0::Teen 12-17||1::Adult 18+,0::Male||1::Male,0::Onardo Bent||1::Dickale Cothrell,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.orlandosentinel.com/news/local/breakingnews/os-shooting-teen-boy-critical-20140104,0,5876382.story||http://www.orlandosentinel.com/news/local/breakingnews/os-teen-on-bike-shot-suspect-arrested-20140110,0,698779.story",45,12
94492,2014-01-04,New Jersey,Pleasantville, 200 block of 4th Street,0,1,http://www.gunviolencearchive.org/incident/94492,http://www.pressofatlanticcity.com/news/crime/breaking_crime_news/police-investigating-morning-shooting-in-pleasantville/article,False,2,,,Shot - Wounded/Injured,39.3978,,-74.5254,,,,,0::Male,,,0::Injured,0::Victim,http://www.pressofatlanticcity.com/news/crime/breaking_crime_news/police-investigating-morning-shooting-in-pleasantville/article,2,2
92947,2014-01-04,Florida,West Palm Beach,2677 Forest Hill Blvd,0,1,http://www.gunviolencearchive.org/incident/92947,http://www.wptv.com/dpp/news/region_c_palm_beach_county/Club-Envy-shooting-leaves-one-man-injured-at-nightclub,False,22,,,Shot - Wounded/Injured,26.6508,Club Envy,-80.0829,,Club Envy,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.wptv.com/dpp/news/region_c_palm_beach_county/Club-Envy-shooting-leaves-one-man-injured-at-nightclub,87,27
93026,2014-01-04,Massachusetts,Springfield,Cooley Street,0,0,http://www.gunviolencearchive.org/incident/93026,http://www.cbs3springfield.com/story/24366037/springfield-police-investigating-armed-robbery-at-gas-station,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,42.0946,,-72.4987,,,,1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.cbs3springfield.com/story/24366037/springfield-police-investigating-armed-robbery-at-gas-station,,
183541,2014-01-04,New Hampshire,Manchester,495 Old Wellington Road,0,0,http://www.gunviolencearchive.org/incident/183541,http://www.unionleader.com/article/20140830/NEWS03/140839983,False,1,,,Home Invasion||Home Invasion - No death or injury||Gun(s) stolen from owner,43.0006,,-71.4242,,"pretended to be Police robbed residents of money, weapons, and items; bound in handcuffs",,0::Adult 18+||2::Adult 18+||3::Adult 18+,0::Female||2::Male||3::Male,0::Johanna Nunez,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect,http://www.unionleader.com/article/20140830/NEWS03/140839983,,20
93257,2014-01-04,Virginia,Williamsburg,100 block of Lafayette Boulevard,0,1,http://www.gunviolencearchive.org/incident/93257,http://hamptonroads.com/2014/01/man-shot-williamsburg-home-robbery-4-arrested,False,1,,,Shot - Wounded/Injured||Home Invasion||Home Invasion - Resident injured||Armed robbery with injury/death and/or evidence of DGU found,37.3116,,-76.7566,,,0::20||1::21||2::21||3::21||4::21,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,"1::Christopher Allen Williams, Jr.||2::Devonte J. Hayes||3::D’Andre Andrews Hardy||4::Marklin Antonio Mitchell",,0::Injured||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect||4::Subject-Suspect,http://hamptonroads.com/2014/01/man-shot-williamsburg-home-robbery-4-arrested,96,1
93971,2014-01-04,Florida,Saint Cloud,Petal Paw Lane,1,0,http://www.gunviolencearchive.org/incident/93971,http://www.wesh.com/news/central-florida/osceola-county/st-cloud-domestic-dispute-ends-in-suicide/-/17565894/23783706/-/sio40rz/,False,9,,,"Shot - Dead (murder, accidental, suicide)||Suicide^",28.1157,,-81.1288,,,0::36,0::Adult 18+,0::Male,0::Matthew Williams ,,0::Killed,0::Victim,http://www.wesh.com/news/central-florida/osceola-county/st-cloud-domestic-dispute-ends-in-suicide/-/17565894/23783706/-/sio40rz/,42,21
93023,2014-01-04,Maryland,Hagerstown,George Street,0,0,http://www.gunviolencearchive.org/incident/93023,http://www.heraldmailmedia.com/news/local/hagerstown-police-seek-two-in-home-invasion-robbery/article_0373d2a0-7598-11e3-91ab-00,False,6,,,Home Invasion||Home Invasion - Resident injured||Armed robbery with injury/death and/or evidence of DGU found,39.6485,,-77.7283,,Perpetrators were fought off by undisclosed number of victims.,,,1::Male||2::Male,,,,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.heraldmailmedia.com/news/local/hagerstown-police-seek-two-in-home-invasion-robbery/article_0373d2a0-7598-11e3-91ab-00,,2
149111,2014-01-04,Massachusetts,Holyoke,,0,0,http://www.gunviolencearchive.org/incident/149111,http://www.cbs3springfield.com/story/24369408/holyoke-police-arrest-man-with-unlicensed-gun,False,1,,,Possession (gun(s) found during commission of other crimes),42.2032,,-72.6213,,,0::24,0::Adult 18+,0::Male,"0::Julio Delarosa, Jr.",,0::Unharmed,0::Subject-Suspect,http://www.cbs3springfield.com/story/24369408/holyoke-police-arrest-man-with-unlicensed-gun,,
94007,2014-01-04,Louisiana,New Orleans,South Claiborne Avenue and First Street,0,0,http://www.gunviolencearchive.org/incident/94007,http://uptownmessenger.com/2014/01/weekend-armed-robberies-reported-in-east-carrollton-on-magazine-street-and-in-central-city/#m,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,29.9445,,-90.0914,,,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://uptownmessenger.com/2014/01/weekend-armed-robberies-reported-in-east-carrollton-on-magazine-street-and-in-central-city/#m,91,5
93247,2014-01-04,Virginia,Henrico,2700 block of Skipwith,0,1,http://www.gunviolencearchive.org/incident/93247,http://www.nbc12.com/story/24366063/henrico-police,False,7,,,Shot - Wounded/Injured,37.6221,,-77.5381,,,,0::Adult 18+,,,,0::Injured,0::Victim,http://www.nbc12.com/story/24366063/henrico-police,73,12
93013,2014-01-04,Delaware,Wilmington,2400 block of Carter Street,1,0,http://www.gunviolencearchive.org/incident/93013,http://philadelphia.cbslocal.com/2014/01/04/police-investigate-homicide-in-wilmington/,False,1,,,"Shot - Dead (murder, accidental, suicide)",39.7526,,-75.5356,,,0::28,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://philadelphia.cbslocal.com/2014/01/04/police-investigate-homicide-in-wilmington/,1,2
131388,2014-01-04,Wisconsin,Wausau,Fulton Street,0,0,http://www.gunviolencearchive.org/incident/131388,http://www.wausaudailyherald.com/article/20140502/WDH0101/305020347/Wausau-woman-arraigned-fatal-shooting-investigation,False,7,,,Drug involvement||ATF/LE Confiscation/Raid/Arrest||Possession (gun(s) found during commission of other crimes),44.9648,,-89.6191,,"Police investigating #214 search felon's home, find guns and drugs hidden in ceiling.",0::25,0::Adult 18+,0::Female,0::Mandi Hoffman,,0::Unharmed,0::Subject-Suspect,http://www.wausaudailyherald.com/article/20140502/WDH0101/305020347/Wausau-woman-arraigned-fatal-shooting-investigation,85,29
93134,2014-01-04,Florida,Jacksonville,State and Davis streets ,0,1,http://www.gunviolencearchive.org/incident/93134,http://members.jacksonville.com/news/crime/2014-01-05/story/man-shot-robbed-saturday-night,False,6,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found,30.1101,,-81.6186,,,,0::Adult 18+,0::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://members.jacksonville.com/news/crime/2014-01-05/story/man-shot-robbed-saturday-night,17,6
93574,2014-01-04,Pennsylvania,Philadelphia,Unity Street near Leiper,0,1,http://www.gunviolencearchive.org/incident/93574,http://www.philly.com/philly/blogs/dncrime/Police-Man-accidentally-shot-girlfriend-in-head.html,False,2,,,Shot - Wounded/Injured,39.9526,,-75.1652,,"Morrison claims it was an accident, police have charged him with attempted murder.",0::26||1::36,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::Roger Morrison,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.philly.com/philly/blogs/dncrime/Police-Man-accidentally-shot-girlfriend-in-head.html,,
103935,2014-01-04,Michigan,Kalamazoo,700 block of Millard Court,0,1,http://www.gunviolencearchive.org/incident/103935,http://wwmt.com/template/cgi-bin/archived.pl,False,6,,,Shot - Wounded/Injured,42.2854,,-85.5736,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://wwmt.com/template/cgi-bin/archived.pl,60,20
93191,2014-01-04,Texas,Houston,6200 Nyoka,1,2,http://www.gunviolencearchive.org/incident/93191,http://www.houstontx.gov/police/nr/2014/jan/nr01132014-4.htm,False,18,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)",29.8587,,-95.5477,,Shots fired during a party involving about 60 people — mainly teenagers — at a house.,0::24||3::20||4::18,0::Adult 18+||1::Teen 12-17||3::Adult 18+,0::Male||3::Male||4::Male,0::Wayland Clark||3::Arlin Walbert Barrientos||4::Randy Larios,,0::Killed||1::Injured||2::Injured||3::Unharmed||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect||4::Subject-Suspect,http://www.chron.com/news/texas/article/1-dead-2-wounded-in-gunfire-at-Houston-party-5113876.php||http://abclocal.go.com/ktrk/story||http://www.khou.com/news/crime/2-charged-in-fatal-shooting-at-birthday-party-in-NW-Houston-239946921.html||http://www.houstontx.gov/police/nr/2014/jan/nr01132014-4.htm,139,15
93960,2014-01-04,Indiana,Fort Wayne,Winter Street,0,1,http://www.gunviolencearchive.org/incident/93960,http://www.fortwayne.com/apps/pbcs.dll/article,False,3,,,Shot - Wounded/Injured,41.0501,,-85.1158,,Man said he was shot by unknown perp while working on his car stereo.,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.fortwayne.com/apps/pbcs.dll/article,80,15
93272,2014-01-04,North Carolina,Guilford County,4822 Pleasant Garden Road ,0,0,http://www.gunviolencearchive.org/incident/93272,http://www.news-record.com/news/article_b7b95708-7570-11e3-afc4-001a4bcf6878.html,False,6,,,Armed robbery with injury/death and/or evidence of DGU found,35.9624,,-79.7626,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.news-record.com/news/article_b7b95708-7570-11e3-afc4-001a4bcf6878.html,59,27
92917,2014-01-04,Illinois,Chicago,200 block of East 35th St,0,2,http://www.gunviolencearchive.org/incident/92917,http://chicago.cbslocal.com/2014/01/04/1-dead-4-wounded-in-weekend-shootings/,False,1,,,Shot - Wounded/Injured,41.8312,,-87.6216,,"Shooter argued with two men on street, shot them. At large",0::25||1::55,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://chicago.cbslocal.com/2014/01/04/1-dead-4-wounded-in-weekend-shootings/,5,3
103931,2014-01-04,California,San Bernardino,3100 block of North Mountain Avenue,0,2,http://www.gunviolencearchive.org/incident/103931,http://www.sbsun.com/general-news/20140104/shooting-in-san-bernardino-leaves-two-wounded,False,31,,,Shot - Wounded/Injured,34.1468,,-117.257,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Female,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.sbsun.com/general-news/20140104/shooting-in-san-bernardino-leaves-two-wounded,40,23
93030,2014-01-04,Rhode Island,Cranston,Pontiac Avenue,0,0,http://www.gunviolencearchive.org/incident/93030,http://www.wpri.com/news/local/west-bay/warwick-one-arrested-after-gas-station-robberies,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,41.7585,,-71.4445,,,,1::Adult 18+||2::Adult 18+,1::Male||2::Male,1::Monchi Castillo,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.providencejournal.com/breaking-news/content/20140104-r.i.-state-police-ask-public-to-help-find-suspect-in-armed-robbe||http://www.wpri.com/news/local/west-bay/warwick-one-arrested-after-gas-station-robberies,16,27
94500,2014-01-04,South Carolina,Fort Mill,Hensley Road,0,0,http://www.gunviolencearchive.org/incident/94500,http://www.wsoctv.com/news/news/local/4-teens-questioned-about-shooting-cars-fort-mill/nchGS/,False,5,,,Shots Fired - No Injuries,35.0021,,-80.917,,4 teens shot at cars,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Teen 12-17||4::Teen 12-17||5::Teen 12-17||6::Teen 12-17,,,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed||5::Unharmed||6::Unharmed,0::Victim||1::Victim||2::Victim||3::Subject-Suspect||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect,http://www.wsoctv.com/news/news/local/4-teens-questioned-about-shooting-cars-fort-mill/nchGS/,26,16
935154,2014-01-04,California,Oakland,3600 block of International Blvd,1,0,http://www.gunviolencearchive.org/incident/935154,http://www.topix.com/forum/oakland/TPM2U32B9VOI72HEO,False,13,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)",37.7759,(Fruitvale),-122.222,1,3:25 am shot after argument,0::37,0::Adult 18+,0::Male,0::Miguel Barboza,,0::Killed,0::Victim,http://www.topix.com/forum/oakland/TPM2U32B9VOI72HEO,18,9
93016,2014-01-04,New York,Mendon,1390 Pittsford Mendon Rd,0,1,http://www.gunviolencearchive.org/incident/93016,http://www.rochesterfirst.com/news/news/accidental-shooting-at-mendon-restaurant,False,27,,,Accidental Shooting||Accidental/Negligent Discharge,42.9998,Cottage Hotel,-77.5056,,Man shot himself and person at his table accidentally while eating.,0::67||1::70,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Charles Raab||1::John Cassata,1::Friends,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.rochesterfirst.com/news/news/accidental-shooting-at-mendon-restaurant,133,55
93096,2014-01-04,Alabama,Livingston,County Road 74,1,0,http://www.gunviolencearchive.org/incident/93096,http://www.wtok.com/home/headlines/One-Dead-in-Accidental-Hunting-Shooting--238743521.html,False,7,,,Accidental Shooting||Accidental Shooting - Death||Hunting accident,32.6539,,-88.2609,,,0::26,0::Adult 18+,0::Male,0::Hunter Collier,,0::Killed,0::Victim,http://www.wtok.com/home/headlines/One-Dead-in-Accidental-Hunting-Shooting--238743521.html,71,24
93440,2014-01-04,Texas,Austin,5600 block of Porsche Lane,1,0,http://www.gunviolencearchive.org/incident/93440,http://projects.statesman.com/homicides/homicide-victim-detail.php?VictimID=37,False,21,,,"Shot - Dead (murder, accidental, suicide)",30.2329,,-97.8517,,Man found shot inside home,0::18,0::Adult 18+,0::Male,0::Michael Chavez,,0::Killed,0::Victim,http://www.kvue.com/news/Police-ID-man-killed-in-first-homicide-of-2014-238951521.html||http://projects.statesman.com/homicides/homicide-victim-detail.php?VictimID=37,48,14
93350,2014-01-04,California,San Leandro,40 Mulford Point Dr,0,0,http://www.gunviolencearchive.org/incident/93350,http://www.mercurynews.com/crime-courts/ci_24850226/san-leandro-two-handguns-seized-separate-arrests,False,13,,,Non-Shooting Incident||Possession (gun(s) found during commission of other crimes),37.6939,San Leandro Marina,-122.184,,,,,,,,,,http://www.mercurynews.com/crime-courts/ci_24850226/san-leandro-two-handguns-seized-separate-arrests,18,9
93155,2014-01-04,Louisiana,New Iberia,Myrtis Street,0,1,http://www.gunviolencearchive.org/incident/93155,http://www.klfy.com/story/24463321/suspects-arrested-in-new-iberia-shooting,False,3,,,Shot - Wounded/Injured,30.0059,,-91.8394,,,0::23||1::21||2::19||3::21||4::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male,1::David Arceneaux||2::Jabrisin Kinchen||3::Jacoby Harrison||4::Jawaski Sam,,0::Injured||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect||4::Subject-Suspect,http://www.klfy.com/story/24367847/deputies-investigate-shooting-in-iberia-parish||http://www.klfy.com/story/24463321/suspects-arrested-in-new-iberia-shooting,96,22
93279,2014-01-04,North Carolina,Durham,Lucas Drive,1,1,http://www.gunviolencearchive.org/incident/93279,http://abc11.com/news/father-shot-one-year-after-his-9-year-old-son-was-murdered/472019/,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",35.9512,,-78.9072,,,0::31||1::9||2::23,0::Adult 18+||1::Child 0-11||2::Adult 18+,0::Female||1::Male||2::Male,0::Lakeisha Holloway||1::Jaden Sharpe||2::Everett Lamont Graves,,0::Injured||1::Killed||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://www.charlotteobserver.com/2014/01/05/4589115/mother-and-young-son-found-shot.html#.Usq_1PtKiSo||http://www.wral.com/boy-9-dies-from-wounds-suffered-in-durham-shooting/13288227/||http://www.newsobserver.com/2014/01/22/3555216/suspect-named-in-fatal-shooting.html#storylink=rss||http://abc11.com/news/father-shot-one-year-after-his-9-year-old-son-was-murdered/472019/,29,20
93425,2014-01-04,Texas,Orange,3300 block of Elk Drive,0,1,http://www.gunviolencearchive.org/incident/93425,http://www.beaumontenterprise.com/news/article/Bond-set-for-Orangefield-man-in-Saturday-shooting-5115876.php,False,36,,,Shot - Wounded/Injured,30.0772,,-93.8258,,Trailer park tenant shoots landlord over past dispute.,0::69||1::63,0::Adult 18+,0::Male||1::Male,0::Clinton Tony Fuselier||1::Terry Lee Koelliker,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.beaumontenterprise.com/news/article/Bond-set-for-Orangefield-man-in-Saturday-shooting-5115876.php,21,3
93551,2014-01-04,Missouri,Columbia,2200 Bear Creek Dr,0,1,http://www.gunviolencearchive.org/incident/93551,http://www.columbiatribune.com/news/crime/armed-robbery-attempt-reported-in-columbia/article_045b074a-7563-11e3-b0e4-0019bb30f31,False,4,,,Armed robbery with injury/death and/or evidence of DGU found||Pistol-whipping,38.975,Parkade Park,-92.3411,,Two people tried to rob two 17-year-old boys at gunpoint in a public park.,0::17||1::17,0::Teen 12-17||1::Teen 12-17||2::Teen 12-17||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,,,0::Injured||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect,http://www.columbiatribune.com/news/crime/armed-robbery-attempt-reported-in-columbia/article_045b074a-7563-11e3-b0e4-0019bb30f31,45,19
93584,2014-01-04,New Jersey,West New York,52nd Street and Kennedy Boulevard,0,1,http://www.gunviolencearchive.org/incident/93584,http://www.nj.com/hudson/index.ssf/2014/01/north_bergen_man_charged_with_filing_false_report_after_shooting_himself.html#incart_,False,8,,,Shot - Wounded/Injured||Accidental Shooting||Accidental Shooting - Injury||Possession of gun by felon or prohibited person,40.7856,,-74.0231,,,0::33,0::Adult 18+,0::Male,0::Christopher Velez,,0::Injured,0::Victim,http://www.nj.com/hudson/index.ssf/2014/01/north_bergen_man_charged_with_filing_false_report_after_shooting_himself.html#incart_,32,32
95130,2014-01-04,District of Columbia,Washington,3100 Conn Avenue NW,0,0,http://www.gunviolencearchive.org/incident/95130,https://twitter.com/DCPoliceDept/status/419737868798406656,False,1,,,Car-jacking,38.9307,,-77.0558,,,,0::Adult 18+,0::Male,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/419737868798406656,,
94546,2014-01-04,Connecticut,Willimantic,High Street,0,0,http://www.gunviolencearchive.org/incident/94546,http://www.nbcconnecticut.com/news/local/Willimantic-Subway-Robber-Sentenced-to-Prison-Time-293257921.html,False,2,0::Unknown,0::Handgun,Shots Fired - No Injuries||Institution/Group/Business,41.7204,,-72.2157,1,"Subway, small cal pistol, poss ar",0::29,0::Adult 18+,0::Male,0::Luis Feliciano,,"0::Unharmed, Arrested",0::Subject-Suspect,http://articles.courant.com/2014-01-06/community/hc-windham-robbery-shooting-0107-20140106_1_high-street-sandwich-shop-weekend-r||http://www.nbcconnecticut.com/news/local/Willimantic-Subway-Robber-Sentenced-to-Prison-Time-293257921.html,49,29
93349,2014-01-04,California,Oakland,Bancroft and 109th,0,0,http://www.gunviolencearchive.org/incident/93349,http://www.mercurynews.com/crime-courts/ci_24850226/san-leandro-two-handguns-seized-separate-arrests,False,13,,,Non-Shooting Incident||Possession (gun(s) found during commission of other crimes),37.7397,,-122.156,,after traffic stop,,,,,,,,http://www.mercurynews.com/crime-courts/ci_24850226/san-leandro-two-handguns-seized-separate-arrests,18,9
94424,2014-01-05,Missouri,Kirksville,23534 Burk Trail,2,0,http://www.gunviolencearchive.org/incident/94424,http://www.stltoday.com/news/national/mo-lawyer-husband-die-in-apparent-murder-suicide/article_7901e5e9-14e0-574c-b634-1623be8f8,False,6,,,"Shot - Dead (murder, accidental, suicide)||Suicide^||Murder/Suicide||Domestic Violence",40.145,,-92.5766,,,0::33||1::36,0::Adult 18+||1::Adult 18+,0::Female||1::Male,"0::Kristen ""Kadie"" Campbell Johnson||1::Riley Johnson",,0::Killed||1::Killed,0::Victim||1::Victim,http://www.stltoday.com/news/national/mo-lawyer-husband-die-in-apparent-murder-suicide/article_7901e5e9-14e0-574c-b634-1623be8f8,4,18
93360,2014-01-05,California,Bakersfield,1000 Pacheco Road,0,1,http://www.gunviolencearchive.org/incident/93360,http://www.turnto23.com/news/local-news/bakersfield-man-found-shot-outside-apartment-complex-010614,False,21,,,Shot - Wounded/Injured,35.3112,,-119.013,,,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.turnto23.com/news/local-news/bakersfield-man-found-shot-outside-apartment-complex-010614,32,14
107327,2014-01-05,Georgia,Atlanta,6000 N Terminal Pkwy,0,0,http://www.gunviolencearchive.org/incident/107327,http://blog.tsa.gov/2014_01_10_archive.html,False,5,,,TSA Action,33.6356,,-84.4333,,Hartsfield-Jackson Atlanta International Airport,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,60,34
93526,2014-01-05,North Dakota,Bismarck,1000 block of Bozeman Drive ,0,0,http://www.gunviolencearchive.org/incident/93526,http://www.kxnet.com/story/24376464/bismarck-man-charged-with-terrorizing,False,1,,,Brandishing/flourishing/open carry/lost/found,46.7949,,-100.786,,Perpetrator kicked in door to apartment and threatened he had a gun.,0::10||1::30,0::Child 0-11||1::Adult 18+,0::Male||1::Male,1::Wade Bison,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kxnet.com/story/24376464/bismarck-man-charged-with-terrorizing,32,32
94406,2014-01-05,Delaware,Wilmington,1100 block of South Broom Street,0,0,http://www.gunviolencearchive.org/incident/94406,http://abclocal.go.com/wpvi/story,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,39.7359,,-75.5726,,,,1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://abclocal.go.com/wpvi/story,3,3
93516,2014-01-05,Iowa,Des Moines,2500 block of County Line Road,0,0,http://www.gunviolencearchive.org/incident/93516,http://blogs.desmoinesregister.com/dmr/index.php/2013/12/23/des-moines-man-allegedly-exchanges-fire-with-home-invader/article,False,3,,,Shots Fired - No Injuries||Home Invasion||Home Invasion - No death or injury||Armed robbery with injury/death and/or evidence of DGU found,41.5121,,-93.6296,,"Man woke to armed intruder, grabbed his shotgun, confronted perp who shot several bullets at victim who returned fire. Perp fled. At large.",0::56,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Female||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://blogs.desmoinesregister.com/dmr/index.php/2013/12/23/des-moines-man-allegedly-exchanges-fire-with-home-invader/article,26,13
106260,2014-01-05,Massachusetts,Leicester,Route 9,0,0,http://www.gunviolencearchive.org/incident/106260,http://www.masslive.com/news/worcester/index.ssf/2014/02/leicester_man_wanted_in_connec.html,False,2,,,Home Invasion||Home Invasion - No death or injury,42.2455,,-71.9321,,purple heart stolen,1::36,0::Adult 18+||1::Adult 18+,1::Male,1::Timothy M. Lavin,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.masslive.com/news/worcester/index.ssf/2014/02/leicester_man_wanted_in_connec.html,,
93723,2014-01-05,Idaho,Boise,Patricia Lane ,0,0,http://www.gunviolencearchive.org/incident/93723,http://www.kboi2.com/news/local/Boise-Idaho-Police-Dog-Shooting-Scrappy-Doo-238924161.html,False,2,,,Officer Involved Incident,43.6264,,-116.299,,shot aggressive dog ,,1::Adult 18+,,,,1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kboi2.com/news/local/Boise-Idaho-Police-Dog-Shooting-Scrappy-Doo-238924161.html,15,15
93174,2014-01-05,New Jersey,Newark,400 block of Central Avenue,0,1,http://www.gunviolencearchive.org/incident/93174,http://www.nj.com/essex/index.ssf/2014/01/newark_shooting_leaves_one_man_severely_wounded.html#incart_river_default,False,10,,,Shot - Wounded/Injured,40.7472,,-74.1891,,,0::28,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.nj.com/essex/index.ssf/2014/01/newark_shooting_leaves_one_man_severely_wounded.html#incart_river_default,29,29
103924,2014-01-05,California,Modesto,1100 block of Cannes Avenue,1,2,http://www.gunviolencearchive.org/incident/103924,http://www.news10.net/news/article/267668/2/Shooting-suspect-found-dead-in-Modesto-home,False,10,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Suicide^||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator suicide at standoff",37.6159,,-121.012,,,2::30,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Female||1::Male||2::Male,2::Victor Salazar Ramirez,,0::Injured||1::Injured||2::Killed,0::Victim||1::Victim||2::Victim,http://www.news10.net/news/article/267668/2/Shooting-suspect-found-dead-in-Modesto-home,21,12
93534,2014-01-05,Alabama,Montgomery,3619 Eastern Blvd,0,0,http://www.gunviolencearchive.org/incident/93534,http://www.montgomeryadvertiser.com/article/20140106/NEWS/140106011/Montgomery-police-seek-help-finding-robbery-suspects,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,32.331,,-86.2313,,Family Dollar,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.montgomeryadvertiser.com/article/20140106/NEWS/140106011/Montgomery-police-seek-help-finding-robbery-suspects,77,26
93703,2014-01-05,Louisiana,New Orleans,2300 block of Frenchmen Street,0,0,http://www.gunviolencearchive.org/incident/93703,http://www.nola.com/crime/index.ssf/2014/01/man_robbed_while_painting_and.html#incart_river,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,29.9861,,-90.0595,,,0::23,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nola.com/crime/index.ssf/2014/01/man_robbed_while_painting_and.html#incart_river,97,4
93176,2014-01-05,Mississippi,Jackson,S. West Street,0,1,http://www.gunviolencearchive.org/incident/93176,http://www.msnewsnow.com/story/24366603/strip-club-shooting-in-jackson,False,3,,,Shot - Wounded/Injured,32.2884,,-90.1863,,Black Diamond Strip Club,0::24,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.msnewsnow.com/story/24366603/strip-club-shooting-in-jackson,68,29
93497,2014-01-05,Mississippi,Greenwood,Williams Landing Apartments,0,0,http://www.gunviolencearchive.org/incident/93497,http://www.msnewsnow.com/story/24376194/man-booked-in-shooting-at-greenwood-complex,False,2,,,Shots Fired - No Injuries,33.5162,,-90.1795,,,0::31,0::Adult 18+,0::Male,0::Antonio Ramsey ,,0::Unharmed,0::Subject-Suspect,http://www.msnewsnow.com/story/24376194/man-booked-in-shooting-at-greenwood-complex,32,24
93073,2014-01-05,Michigan,Grand Rapids,1000 block of Temple Street SE,0,0,http://www.gunviolencearchive.org/incident/93073,http://www.mlive.com/news/grand-rapids/index.ssf/2014/01/grand_rapids_police_investigat_65.html#incart_river_default,False,3,,,Brandishing/flourishing/open carry/lost/found,42.9391,,-85.6447,,"Shots fired in home, but no apparent victims. Two suspects fled. At Large",,,0::Male||1::Male,,,,0::Subject-Suspect||1::Subject-Suspect,http://www.mlive.com/news/grand-rapids/index.ssf/2014/01/grand_rapids_police_investigat_65.html#incart_river_default,75,29
94446,2014-01-05,Rhode Island,Providence,Portland Street,0,0,http://www.gunviolencearchive.org/incident/94446,http://www.wpri.com/news/local/providence/providence-shots-fired-dunkin-donuts-portland-street,False,2,,,Shots Fired - No Injuries,41.813,,-71.4191,,,,,,,,,0::Subject-Suspect,http://www.wpri.com/news/local/providence/providence-shots-fired-dunkin-donuts-portland-street,9,6
93064,2014-01-05,Ohio,Elyria,Foster Avenue and Lake Road ,1,0,http://www.gunviolencearchive.org/incident/93064,http://fox8.com/2014/01/09/3-arrests-made-in-elyria-murder/,False,4,,,"Shot - Dead (murder, accidental, suicide)",41.3784,,-82.122,,"Victim shot to death while in running SUV, in parking lot. Shots came from outside car. Three arrested.",0::22||1::21||2::19||3::25,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Antonio Spraggins||1::Jeris Geiger||2::Andre Jackson||3::Jordan Williams,,0::Killed||1::Unharmed||2::Unharmed||3::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect||3::Subject-Suspect,http://fox8.com/2014/01/05/man-found-dead-in-running-suv/||http://chronicle.northcoastnow.com/2014/01/05/elyria-man-fatally-shot-foster-lake-avenues/||http://fox8.com/2014/01/09/3-arrests-made-in-elyria-murder/,55,13
93555,2014-01-05,Maryland,Baltimore,900 block of Kevin Road,0,1,http://www.gunviolencearchive.org/incident/93555,"http://www.baltimoresun.com/news/maryland/baltimore-city/bs-md-ci-shootings-20140105,0,763468.story",False,7,,,Shot - Wounded/Injured,39.2969,,-76.6883,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,"http://www.baltimoresun.com/news/maryland/baltimore-city/bs-md-ci-shootings-20140105,0,763468.story",41,41
93391,2014-01-05,Texas,Lubbock,Zenith and East 9th Street,0,0,http://www.gunviolencearchive.org/incident/93391,http://www.kcbd.com/story/24369605/lubbock-swat-team-called-to-zenith-east-9th-2,False,19,,,Domestic Violence||Brandishing/flourishing/open carry/lost/found,33.5878,,-101.81,,Man pulled a firearm on his family after a domestic dispute escalated. ,0::20,0::Adult 18+,0::Male,0::A'Dareius Montele Johns,,0::Unharmed,0::Subject-Suspect,http://www.kcbd.com/story/24369605/lubbock-swat-team-called-to-zenith-east-9th-2,84,28
94629,2014-01-05,Georgia,Savannah,Thackery Place,0,1,http://www.gunviolencearchive.org/incident/94629,http://savannahnow.com/news/2014-01-06/savannah-shooting-leaves-1-arrested-1-hospital#.UtA9yPtKiSo,False,1,,,Shot - Wounded/Injured,32.0387,,-81.1095,,,0::23||1::28,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Alfonso Warner,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://savannahnow.com/news/2014-01-06/savannah-shooting-leaves-1-arrested-1-hospital#.UtA9yPtKiSo,163,2
93565,2014-01-05,Maryland,Lothian,1200 block of Whittington Drive,0,1,http://www.gunviolencearchive.org/incident/93565,http://www.wbaltv.com/news/maryland/anne-arundel-county/authorities-lothian-man-robbed-beaten/-/10137088/23793714/-/t5pi37z/-/in,False,5,,,Pistol-whipping,38.8173,,-76.692,,,0::22,0::Adult 18+,0::Male,,,0::Injured,0::Victim||1::Subject-Suspect,http://www.wbaltv.com/news/maryland/anne-arundel-county/authorities-lothian-man-robbed-beaten/-/10137088/23793714/-/t5pi37z/-/in,,30
93409,2014-01-05,Indiana,Indianapolis,900 block of King Ave,1,1,http://www.gunviolencearchive.org/incident/93409,http://fox59.com/2014/01/05/person-killed-in-shooting-on-near-west-side/#axzz2pef8f08q,False,7,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Home Invasion||Armed robbery with injury/death and/or evidence of DGU found",39.7787,,-86.2038,,"Two men shot, one fatally, by at least two suspects, perhaps more. Assumed robbery.",0::19||1::20,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Male||3::Male,0::Deshawn Ward||1::Dominique Baquet,,0::Killed||1::Injured||2::Unharmed||3::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect,http://fox59.com/2014/01/05/person-killed-in-shooting-on-near-west-side/#axzz2pef8f08q,99,33
94672,2014-01-05,Texas,Corpus Christi,900 block of Brambling Circle,0,0,http://www.gunviolencearchive.org/incident/94672,http://ccpdblotter.com/page/33/,False,27,,,ATF/LE Confiscation/Raid/Arrest||Brandishing/flourishing/open carry/lost/found,27.8006,,-97.3964,,Aggravated assault with a deadly weapon.,1::49,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::David Michael McDonald,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.kiiitv.com/story/24408438/suspect-surrenders-after-swat-team-operation-in-flour-bluff||http://ccpdblotter.com/page/33/,34,20
93076,2014-01-05,Illinois,Chicago,500 block of East 38th Place,1,0,http://www.gunviolencearchive.org/incident/93076,http://chicago.cbslocal.com/2014/01/06/2-killed-8-wounded-in-weekend-shootings/,False,1,,,"Shot - Dead (murder, accidental, suicide)||Child Involved Incident||Child killed by child",41.8248,,-87.6144,,"Boy shot on street, minor cousin arrested. Argument/video game.",0::16||1::13,0::Teen 12-17||1::Teen 12-17,0::Male||1::Male,0::Raymond Galloway,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,"http://www.chicagotribune.com/news/local/breaking/chi-police-boy-16-slain-on-south-side-20140105,0,5198889.story||http://chicago.cbslocal.com/2014/01/06/2-killed-8-wounded-in-weekend-shootings/",26,13
93771,2014-01-05,Alabama,Huntsville,South Parkway ,0,0,http://www.gunviolencearchive.org/incident/93771,http://www.waff.com/story/24369224/huntsville-man-robbed-at-gunpoint,False,5,,,Armed robbery with injury/death and/or evidence of DGU found,34.6336,,-86.5668,,,,0::Adult 18+,0::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.waff.com/story/24369224/huntsville-man-robbed-at-gunpoint,10,8
93420,2014-01-05,Texas,Killeen,2300 block of Zephyr Road,1,0,http://www.gunviolencearchive.org/incident/93420,http://kdhnews.com/news/police-brother-killed-brother-in-killeen-shooting/article_423260bc-76f4-11e3-b2ed-0019bb30f31a.html,False,31,,,"Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - subject/suspect/perpetrator killed",31.1016,,-97.7183,,Attempted burglary,0::32,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Terry Lee Moon Jr.,,0::Killed||1::Unharmed,0::Victim||1::Subject-Suspect,http://kdhnews.com/news/police-brother-killed-brother-in-killeen-shooting/article_423260bc-76f4-11e3-b2ed-0019bb30f31a.html,54,24
107329,2014-01-05,Texas,Dallas,Dallas Love Field,0,0,http://www.gunviolencearchive.org/incident/107329,http://blog.tsa.gov/2014_01_10_archive.html,False,30,,,TSA Action,32.8481,,-96.8512,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,103,16
93160,2014-01-05,Louisiana,Monroe,1600 block of South 12th Street ,0,0,http://www.gunviolencearchive.org/incident/93160,http://www.knoe.com/story/24367485/monroe-police-respond-to-a-armed-robbery,False,5,,,Armed robbery with injury/death and/or evidence of DGU found,32.4902,,-92.0912,,,,0::Adult 18+,0::Male,0::Bentarrious Tarver ,,0::Unharmed,0::Subject-Suspect,http://www.knoe.com/story/24367485/monroe-police-respond-to-a-armed-robbery,17,34
93200,2014-01-05,Texas,Fort Worth,Corner of NW 23rd Street and Clinton Avenue,0,1,http://www.gunviolencearchive.org/incident/93200,http://www.wfaa.com/news/SWAT-team-surrounds-Fort-Worth-house-after-shooting-238797571.html,False,33,,,Shot - Wounded/Injured,32.7863,,-97.3529,,Shooting and standoff.,,,1::Male,,,0::Injured,0::Victim||1::Subject-Suspect,http://www.wfaa.com/news/SWAT-team-surrounds-Fort-Worth-house-after-shooting-238797571.html,90,10
93362,2014-01-05,California,Salinas,Acosta Plaza,0,1,http://www.gunviolencearchive.org/incident/93362,http://www.thecalifornian.com/article/20140106/NEWS09/301060024/Details-thin-Sunday-evening-Salinas-shooting,False,20,,,Shot - Wounded/Injured||Gang involvement,36.6867,,-121.62,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.thecalifornian.com/article/20140106/NEWS09/301060024/Details-thin-Sunday-evening-Salinas-shooting,30,12
103920,2014-01-05,California,Hacienda Heights,1800 block of Charlemont Avenue,0,1,http://www.gunviolencearchive.org/incident/103920,http://www.whittierdailynews.com/general-news/20140105/man-wounded-in-hacienda-heights-shooting,False,39,,,Shot - Wounded/Injured,33.9979,,-117.96,,in his 20s,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.whittierdailynews.com/general-news/20140105/man-wounded-in-hacienda-heights-shooting,57,32
93459,2014-01-05,Louisiana,Metairie,2800 block of Independence Street,0,1,http://www.gunviolencearchive.org/incident/93459,/%20http%3A//www.nola.com/crime/index.ssf/2014/01/jpso_investigating_metairie_sh.html%23incart_river,False,1,,,Shot - Wounded/Injured,30.0003,,-90.178,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,,80,9
93697,2014-01-05,Louisiana,New Orleans,2500 block of Loyola Avenue,0,0,http://www.gunviolencearchive.org/incident/93697,http://www.nola.com/crime/index.ssf/2014/01/man_robbed_while_painting_and.html#incart_river,False,1,,,Shots Fired - No Injuries||Armed robbery with injury/death and/or evidence of DGU found,29.9359,,-90.1283,,,0::51,0::Adult 18+||1::Adult 18+,0::Male||1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nola.com/crime/index.ssf/2014/01/man_robbed_while_painting_and.html#incart_river,98,9
93782,2014-01-05,Illinois,Bolingbrook,1300 block of Parkside Dr,0,0,http://www.gunviolencearchive.org/incident/93782,"http://www.chicagotribune.com/news/local/suburbs/bolingbrook/ct-prostitute-robbery-bolingbrook-tl-sw-0109-20140106,0,997985.stor",False,11,,,Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,41.6785,,-88.1262,,"Victim met woman for sex, but was robbed by boyfriend with gun to head. Police arrested perps on various charges, including armed robbery for both.",0::25||1::18||2::21,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Female||2::Male,1::Chelsea S. Dean ||2::Jesus M. Simms,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,"http://www.chicagotribune.com/news/local/suburbs/bolingbrook/ct-prostitute-robbery-bolingbrook-tl-sw-0109-20140106,0,997985.stor",98,49
93078,2014-01-05,Illinois,Chicago,8000 block of South Artesian Av,0,0,http://www.gunviolencearchive.org/incident/93078,http://www.myfoxchicago.com/story/24361684/1-dead-4-wounded-in-weekend-shootings,False,1,,,"Shot - Wounded/Injured||Drive-by (car to street, car to car)",41.7481,,-87.6844,,Man said unknown people drrove by and shot him; refused medical attention.,0::22,0::Adult 18+,0::Male,,,,0::Victim,http://www.myfoxchicago.com/story/24361684/1-dead-4-wounded-in-weekend-shootings,31,16
93623,2014-01-05,North Carolina,Rocky Mount,300 block of North Howell Street,0,1,http://www.gunviolencearchive.org/incident/93623,http://www.wral.com/rocky-mount-shooting-leaves-one-injured/13273487/,False,1,,,Shot - Wounded/Injured,35.9466,,-77.8033,,,,0::Adult 18+,,,,0::Injured,0::Victim,http://www.wral.com/rocky-mount-shooting-leaves-one-injured/13273487/,7,4
93295,2014-01-05,North Carolina,Onslow County,Blue Creek Road,1,0,http://www.gunviolencearchive.org/incident/93295,http://www.witn.com/home/headlines/SHERIFF-Shooting-In-Onslow-County-Leaves-1-Man-Dead-238803691.html,False,3,,,"Shot - Dead (murder, accidental, suicide)||Suicide^",34.7588,,-77.5261,,,0::27,0::Adult 18+,0::Male,,,0::Killed,0::Victim,http://www.witn.com/home/headlines/SHERIFF-Shooting-In-Onslow-County-Leaves-1-Man-Dead-238803691.html||http://www.witn.com/home/headlines/SHERIFF-Shooting-In-Onslow-County-Leaves-1-Man-Dead-238803691.html,15,6
95079,2014-01-05,Louisiana,New Orleans,2804 Independence St.,0,1,http://www.gunviolencearchive.org/incident/95079,http://www.nola.com/crime/index.ssf/2014/01/metairie_woman_booked_with_sho.html,False,2,,,Shot - Wounded/Injured||Domestic Violence,29.9806,,-90.0338,,,0::37||1::19,0::Adult 18+||1::Adult 18+,0::Male||1::Female,1::Evelyn Avelar,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nola.com/crime/index.ssf/2014/01/metairie_woman_booked_with_sho.html,99,3
93092,2014-01-05,Arkansas,Little Rock,9700 block of Ithica Drive,0,1,http://www.gunviolencearchive.org/incident/93092,http://www.thv11.com/news/crime/293384/370/Police-name-arrest-suspect-in-SW-LR-shooting,False,2,,,Shot - Wounded/Injured,34.6619,,-92.3236,,,1::21,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Kenrossie Iverson,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.thv11.com/news/crime/293384/370/Police-name-arrest-suspect-in-SW-LR-shooting,36,30
93811,2014-01-05,New York,Albany,Southern Boulevard,0,0,http://www.gunviolencearchive.org/incident/93811,http://www.timesunion.com/local/article/Police-probe-three-gas-station-holdups-5117688.php,False,20,,,Armed robbery with injury/death and/or evidence of DGU found,42.6318,,-73.7757,,,,1::Adult 18+||2::Adult 18+,1::Male||2::Male,,,0::Unharmed||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.timesunion.com/local/article/Police-probe-three-gas-station-holdups-5117688.php,108,44
93448,2014-01-05,Louisiana,Baton Rouge,Charles Street ,0,3,http://www.gunviolencearchive.org/incident/93448,http://www.wafb.com/story/24446148/armed-robbery-shooting-suspect-booked-into-jail-after-hospital-release,False,2,,,Shot - Wounded/Injured||Home Invasion||Home Invasion - Resident killed||Home Invasion - subject/suspect/perpetrator injured||Armed robbery with injury/death and/or evidence of DGU found,30.4817,,-91.1487,,,4::27||5::29||6::27,4::Adult 18+||5::Adult 18+||6::Adult 18+,4::Male||5::Male||6::Male,4::Ryan Oneal Boatner||5::Madison Robinson||6::Warren Jackson,,0::Injured||1::Injured||2::Unharmed||3::Unharmed||4::Unharmed||5::Injured||6::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect||5::Subject-Suspect||6::Subject-Suspect,http://www.wafb.com/story/24369231/police-search-for-escaped-shooting-suspect||http://www.wafb.com/story/24446148/armed-robbery-shooting-suspect-booked-into-jail-after-hospital-release,61,14
112309,2014-01-05,Wisconsin,Mondovi,,0,0,http://www.gunviolencearchive.org/incident/112309,http://www.leadertelegram.com/local_news/story/article_d502d478-a424-11e3-8b57-0019bb2963f4.html,False,3,,,Gun(s) stolen from owner,44.565,,-91.6675,,Man charged with stealing weapons. muzzleloader and 12-gauge shotgun,,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::Ryan J. House,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.leadertelegram.com/local_news/story/article_d502d478-a424-11e3-8b57-0019bb2963f4.html,92,31
93103,2014-01-05,Alabama,Huntsville,3788 University Drive,0,0,http://www.gunviolencearchive.org/incident/93103,http://blog.al.com/breaking/2014/01/huntsville_hotel_clerk_reports.html,False,5,,,Armed robbery with injury/death and/or evidence of DGU found,34.7351,,-86.6235,,Quality Inn,1::40,1::Adult 18+,0::Female||1::Male,1::Jesse James Watkins,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://blog.al.com/breaking/2014/01/huntsville_hotel_clerk_reports.html,53,2
93851,2014-01-05,Pennsylvania,Carlisle,2100 block of Waggoners Gap Road,0,1,http://www.gunviolencearchive.org/incident/93851,http://www.pennlive.com/midstate/index.ssf/2014/01/boyfriend_accidentally_shoots.html,False,11,,,Accidental Shooting||Accidental Shooting - Injury,40.2398,,-77.2268,,,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,0::Serina Howe||1::Robert Hostler,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.pennlive.com/midstate/index.ssf/2014/01/boyfriend_accidentally_shoots.html,,
93451,2014-01-05,Louisiana,Shreveport,3000 block of Morningside Drive,1,0,http://www.gunviolencearchive.org/incident/93451,http://www.ksla.com/story/24378134/grandmother-who-shot-alleged-robber-speaks-out,False,4,,,"Shot - Dead (murder, accidental, suicide)||Home Invasion||Home Invasion - subject/suspect/perpetrator killed||Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found||Defensive Use",32.4601,,-93.7846,,"Home invasion, perpetrator armed with a shotgun is shot and killed by 63 year old home owner.",0::63||1::16,0::Adult 18+||1::Teen 12-17,0::Female||1::Male,1::Devon Antonio Young,,0::Unharmed||1::Killed,0::Victim||1::Subject-Suspect,http://www.shreveporttimes.com/article/20140105/NEWS03/140105012/UPDATED-16-year-old-killed-home-invasion-try||http://www.ksla.com/story/24378134/grandmother-who-shot-alleged-robber-speaks-out,3,39
114588,2014-01-05,Indiana,Carmel,10005 N. Michigan Road,0,0,http://www.gunviolencearchive.org/incident/114588,http://www.indystar.com/story/news/crime/2014/03/12/suspect-arrested-in-carmel-gas-station-robbery/6342459/,False,5,,,Armed robbery with injury/death and/or evidence of DGU found||Implied Weapon,39.9331,,-86.2332,,Speedway / Man robs gas station w/implied gun.,,0::Adult 18+,0::Male,0::Todd Tinsley,,0::Unharmed,0::Subject-Suspect,http://www.indystar.com/story/news/crime/2014/03/12/suspect-arrested-in-carmel-gas-station-robbery/6342459/,24,29
93109,2014-01-05,Alabama,Huntsville,6400 block of Hollow Road,0,1,http://www.gunviolencearchive.org/incident/93109,http://blog.al.com/breaking/2014/01/you_asked_how_many_shootings_h.html#incart_river_default,False,5,,,Shot - Wounded/Injured,34.7972,,-86.5872,,,0::18,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.waff.com/story/24368062/police-respond-to-shooting||http://blog.al.com/breaking/2014/01/you_asked_how_many_shootings_h.html#incart_river_default,19,1
93862,2014-01-05,New Jersey,Newark,North 4th Street,1,0,http://www.gunviolencearchive.org/incident/93862,http://www.app.com/viewart/20140105/NJNEWS14/301050040/Prosecutor-Cop-shoots-wounds-armed-man-Newark,False,10,,,Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed,40.7527,,-74.1881,,,0::22,0::Adult 18+,0::Male,0::Willie Brooks,,0::Killed,0::Victim,http://www.app.com/viewart/20140105/NJNEWS14/301050040/Prosecutor-Cop-shoots-wounds-armed-man-Newark,29,29
119705,2014-01-05,North Carolina,Roanoke Rapids,Key Street,0,1,http://www.gunviolencearchive.org/incident/119705,http://www.rrdailyherald.com/news/tip-leads-to-roanoke-rapids-man-s-capture/article_67aa8950-b687-11e3-9ee7-0019bb2963f4.html,False,1,,,Pistol-whipping,36.4525,,-77.6764,,Victim struck with a shotgun.,1::22,1::Adult 18+,1::Male,0::unidentified victim||1::Seqwaun Hawkins ,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.rrdailyherald.com/news/tip-leads-to-roanoke-rapids-man-s-capture/article_67aa8950-b687-11e3-9ee7-0019bb2963f4.html,27,4
93249,2014-01-05,Virginia,Henrico,8900 block of W. Broad Street,0,0,http://www.gunviolencearchive.org/incident/93249,http://www.nbc12.com/story/24367518/thief-gets-away-with-cash-and-cigarettes-in-henrico,False,7,,,Armed robbery with injury/death and/or evidence of DGU found,37.6351,,-77.545,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.nbc12.com/story/24367518/thief-gets-away-with-cash-and-cigarettes-in-henrico,73,12
94725,2014-01-05,Iowa,Altoona,,0,1,http://www.gunviolencearchive.org/incident/94725,http://blogs.desmoinesregister.com/dmr/index.php/2014/01/10/altoona-man-arrested-for-shooting-woman-with-pellet-gun/article,False,3,,,Shot - Wounded/Injured,41.6478,,-93.4751,,"Victim and friend walking down street when perp shot at them out window, hitting victim, injuring her arm ",0::19||1::48,0::Adult 18+||1::Adult 18+,0::Female||1::Male,1::Michael Dean Hickman,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://blogs.desmoinesregister.com/dmr/index.php/2014/01/10/altoona-man-arrested-for-shooting-woman-with-pellet-gun/article,30,15
93568,2014-01-05,Maryland,Glen Burnie,7400 block of East Furnace Branch Road,0,0,http://www.gunviolencearchive.org/incident/93568,http://www.abc2news.com/dpp/news/crime_checker/anne_arundel_crime/glen-burnie-gas-station-robbed-at-gunpoint,False,3,,,Armed robbery with injury/death and/or evidence of DGU found,39.166,,-76.6044,,,,1::Adult 18+,1::Male,,,0::Unharmed||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.abc2news.com/dpp/news/crime_checker/anne_arundel_crime/glen-burnie-gas-station-robbed-at-gunpoint,,31
125798,2014-01-05,Ohio,Erie,829 Parade St.,1,3,http://www.gunviolencearchive.org/incident/125798,http://www.erietvnews.com/story/24366744/1-killed-3-injured-in-early-morning-shooting,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",40.0886,,-82.9293,,1mvk 3 other v party,0::26||1::20||2::18||3::19,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+,0::Male||1::Male||2::Female||3::Female,,,0::Killed||1::Injured||2::Injured||3::Injured,0::Victim||1::Victim||2::Victim||3::Victim,http://www.erietvnews.com/story/24366744/1-killed-3-injured-in-early-morning-shooting,22,19
93251,2014-01-05,Virginia,Suffolk,1200 block of N. Main St.,0,0,http://www.gunviolencearchive.org/incident/93251,http://hamptonroads.com/2014/01/suffolk-police-seek-man-who-robbed-att-store,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,36.7459,,-76.5806,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://hamptonroads.com/2014/01/suffolk-police-seek-man-who-robbed-att-store,76,18
93599,2014-01-05,North Carolina,Boiling Spring Lakes,President Drive,1,0,http://www.gunviolencearchive.org/incident/93599,http://www.wect.com/story/24367610/officer-involved-shooting-reported-in-boiling-spring-lakes,False,7,,,"Shot - Dead (murder, accidental, suicide)||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator killed",34.0203,,-78.0444,,,0::18,0::Adult 18+,0::Male,0::Keith Vidal,,0::Killed,0::Victim,http://www.14news.com/story/24367610/new-details-911-report-shows-officer-shot-teen-seconds-after-arriving||http://www.wect.com/story/24367610/officer-involved-shooting-reported-in-boiling-spring-lakes,17,8
93286,2014-01-05,Georgia,Columbus,Winston Road,0,1,http://www.gunviolencearchive.org/incident/93286,http://www.ledger-enquirer.com/2014/12/01/3444302/victims-longtime-friend-pleads.html,False,2,,,Shot - Wounded/Injured||Armed robbery with injury/death and/or evidence of DGU found,32.4321,,-84.9446,,,0::24||1::23,0::Adult 18+||1::Adult 18+,0::Male||1::Male,1::DiAngilo Antuan Bell,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.ledger-enquirer.com/2014/01/05/2885946/columbus-man-shot-multiple-times.html||http://www.ledger-enquirer.com/2014/12/01/3444302/victims-longtime-friend-pleads.html,136,15
94874,2014-01-05,Delaware,New Castle County,,0,0,http://www.gunviolencearchive.org/incident/94874,http://www.wboc.com/story/24395471/two-teens-arrested-for-hunting-violations,False,1,,,Possession (gun(s) found during commission of other crimes),39.5393,,-75.6674,,"hunting violations, trespass",0::18,0::Adult 18+,0::Male,0::Gabriel S. Bowden,,0::Unharmed,0::Subject-Suspect,http://www.wboc.com/story/24395471/two-teens-arrested-for-hunting-violations,9,12
93131,2014-01-05,New York,Bronx,530 Olmstead Avenue,1,0,http://www.gunviolencearchive.org/incident/93131,/%20http%3A//www.nydailynews.com/blogs/theshack/2014/01/22-year-old-man-shot-and-killed-in-the-bronx,False,15,,,"Shot - Dead (murder, accidental, suicide)",40.8179,,-73.8508,,,0::21,0::Adult 18+,0::Male,0::Christian Hernandez,,0::Killed,0::Victim,http://newyork.cbslocal.com/2014/01/05/man-shot-dead-in-bronx-public-housing-development/,87,32
93670,2014-01-05,Washington,Kennewick,West Fourth Avenue,0,0,http://www.gunviolencearchive.org/incident/93670,http://www.tri-cityherald.com/2014/01/06/2761490/kennewick-gas-station-robbed-at.html,False,4,,,Armed robbery with injury/death and/or evidence of DGU found,46.2063,,-119.179,,Circle K gas station,,,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.tri-cityherald.com/2014/01/06/2761490/kennewick-gas-station-robbed-at.html,8,8
93364,2014-01-05,California,Santa Maria,West Main Street,0,0,http://www.gunviolencearchive.org/incident/93364,http://www.keyt.com/news/the-search-is-on-for-suspect-who-robbed-a-santa-maria-liquor-store-at-gunpoint/-/17671600/23792414/-/me,False,24,,,Armed robbery with injury/death and/or evidence of DGU found,34.959,,-120.527,,at El Ranchero Liquor Store,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.keyt.com/news/the-search-is-on-for-suspect-who-robbed-a-santa-maria-liquor-store-at-gunpoint/-/17671600/23792414/-/me,35,19
94480,2014-01-05,New Jersey,Atlantic City,100 block of Isaac Cole Plaza,0,1,http://www.gunviolencearchive.org/incident/94480,http://www.pressofatlanticcity.com/news/crime/breaking_crime_news/police-investigate-two-shootings-in-atlantic-city/article_959b,False,2,,,Shot - Wounded/Injured,39.3635,,-74.4295,,,0::36,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::James Callaway,,0::Injured||1::Unharmed||2::Unharmed,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.pressofatlanticcity.com/news/crime/breaking_crime_news/police-investigate-two-shootings-in-atlantic-city/article_959b,2,2
93158,2014-01-05,Pennsylvania,Philadelphia,5800 block of North Marshall Street,1,0,http://www.gunviolencearchive.org/incident/93158,http://guncrisis.org/2014/01/06/philadlephia-police-department-releases-more-information-on-recent-shootings/,False,2,,,"Shot - Dead (murder, accidental, suicide)",40.04,,-75.1328,,,0::27,0::Adult 18+,0::Male,0::Tyrell Jones,,0::Killed,0::Victim,http://www.philly.com/philly/news/breaking/20140106_One_dead__two_injured_in_separate_Philadelphia_shootings.html||http://guncrisis.org/2014/01/06/philadlephia-police-department-releases-more-information-on-recent-shootings/,,
93376,2014-01-05,Texas,Bryan,Oaks Food Mart in the 3900 block of East 29th Street,0,0,http://www.gunviolencearchive.org/incident/93376,http://www.kbtx.com/home/headlines/Police-Bryan-Convenience-Store-Robbed-at-Gunpoint--238806951.html,False,17,,,Armed robbery with injury/death and/or evidence of DGU found,30.6582,,-96.3501,,Armed robbery of convenience store.,,0::Adult 18+,0::Male,,,0::Unharmed,0::Subject-Suspect,http://www.kbtx.com/home/headlines/Police-Bryan-Convenience-Store-Robbed-at-Gunpoint--238806951.html,14,5
93434,2014-01-05,Louisiana,Gretna,900 block of Lafayette Street ,0,2,http://www.gunviolencearchive.org/incident/93434,http://www.wwltv.com/news/crime/Gretna-police-shoot-two-suspects-after-robbery-chase-238953421.html,False,2,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Armed robbery with injury/death and/or evidence of DGU found||Brandishing/flourishing/open carry/lost/found,29.9133,,-90.0591,,Armed robbery that led to police chase and officer involved shooting. Two other males unharmed by gunfire but charged in connection with armed robbery.,,,0::Male||1::Male,0::Dale Brown||1::Tramell LaFrance,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.wwltv.com/news/crime/Gretna-police-shoot-two-suspects-after-robbery-chase-238953421.html,85,7
94872,2014-01-05,Delaware,New Castle County,,0,0,http://www.gunviolencearchive.org/incident/94872,http://www.wboc.com/story/24395471/two-teens-arrested-for-hunting-violations,False,1,,,Possession (gun(s) found during commission of other crimes),39.5393,,-75.6674,,"hunting violations, trespass",0::19,0::Adult 18+,0::Male,0::Thorvald Impastato,,0::Unharmed,0::Subject-Suspect,http://www.wboc.com/story/24395471/two-teens-arrested-for-hunting-violations,9,12
93215,2014-01-05,Delaware,Wilmington,,0,2,http://www.gunviolencearchive.org/incident/93215,http://www.wdel.com/story.php,False,1,,,Shot - Wounded/Injured,39.7402,,-75.5497,,,0::17||1::20,0::Teen 12-17||1::Adult 18+,0::Male||1::Male||2::Male,2::Qudree Warren,,0::Injured||1::Injured||2::Unharmed,0::Victim||1::Victim||2::Subject-Suspect,http://abclocal.go.com/wpvi/story||http://www.wdel.com/story.php,2,3
93485,2014-01-05,Florida,Charlotte,500 block of Lowell Avenue,0,0,http://www.gunviolencearchive.org/incident/93485,http://www.nbc-2.com/story/24369262/charlotte-county-deputy-involved-shooting-under-investigation#.UssVVPRDuXU,False,17,,,Shots Fired - No Injuries||Officer Involved Incident,26.976,,-82.1172,,,,0::Adult 18+,0::Male,,,0::Unharmed,0::Victim,http://www.nbc-2.com/story/24369262/charlotte-county-deputy-involved-shooting-under-investigation#.UssVVPRDuXU,75,28
93481,2014-01-05,Florida,Orlando,6872 Alta WestGate Drive,1,2,http://www.gunviolencearchive.org/incident/93481,"http://www.orlandosentinel.com/news/local/breakingnews/os-pine-hills-shooting-death-20140105,0,5117555.story",False,5,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)||Drive-by (car to street, car to car)",28.5756,Alta Westgate Apartments,-81.473,,Alta Westgate apartments,0::22,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Female,0::Earl Alonzo Allen,,0::Killed||1::Injured||2::Injured,0::Victim||1::Victim||2::Victim,"http://www.orlandosentinel.com/news/local/breakingnews/os-pine-hills-shooting-death-20140105,0,5117555.story",45,12
93396,2014-01-05,Texas,Houston,Eastex Freeway Service Rd and Lee Rd,0,1,http://www.gunviolencearchive.org/incident/93396,http://www.khou.com/news/local/Woman-hospitalized-after-being-shot-in-the-back-during-struggle-238797031.html,False,18,,,Shot - Wounded/Injured,29.7816,,-95.3403,,Perp shot prostitute during struggle in perp's car.,,0::Adult 18+||1::Adult 18+,0::Female||1::Male,,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.khou.com/news/local/Woman-hospitalized-after-being-shot-in-the-back-during-struggle-238797031.html,142,13
93357,2014-01-05,California,Bakersfield,100 block of Griffiths Street,1,0,http://www.gunviolencearchive.org/incident/93357,http://www.bakersfield.com/news/2014/09/19/man-sentenced-to-40-years-to-life-in-prison-for-gang-murder.html,False,23,,,"Shot - Dead (murder, accidental, suicide)",35.3532,,-119.05,,,0::23||1::20,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Javier Meraz||1::Ismael Arsenio Leon,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.bakersfield.com/news/2014/09/19/man-sentenced-to-40-years-to-life-in-prison-for-gang-murder.html,34,16
93340,2014-01-05,Washington,Tacoma,14000 block of 96th Street East,0,1,http://www.gunviolencearchive.org/incident/93340,http://www.blscourierherald.com/news/238793541.html#,False,10,,,Shot - Wounded/Injured,47.1694,,-122.43,,,,0::Adult 18+,,,,0::Injured,0::Victim,http://www.blscourierherald.com/news/238793541.html#,25,25
93312,2014-01-05,South Carolina,Beaufort,3448 Trask Parkway,0,0,http://www.gunviolencearchive.org/incident/93312,http://www.islandpacket.com/2014/01/05/2879386/two-armed-robberies-reported-sunday.html,False,1,,,Armed robbery with injury/death and/or evidence of DGU found,32.4573,Sunhouse Petroleum,-80.7335,,,,,,,,,,http://www.islandpacket.com/2014/01/05/2879386/two-armed-robberies-reported-sunday.html,121,45
93293,2014-01-05,Georgia,Atlanta (College Park),5299 Old National Highway,0,2,http://www.gunviolencearchive.org/incident/93293,http://www.ajc.com/news/news/local/2-shot-at-club-in-south-fulton/nccy8/,False,13,,,Shot - Wounded/Injured,33.6112,Rocafella’s,-84.4723,,,,0::Adult 18+||1::Adult 18+,,,,0::Injured||1::Injured,0::Victim||1::Victim,http://www.ajc.com/news/news/local/2-shot-at-club-in-south-fulton/nccy8/,63,39
93245,2014-01-05,Virginia,Richmond,Piccolo Drive,0,0,http://www.gunviolencearchive.org/incident/93245,http://www.nbc12.com/story/24369415/henrico-police-investigating-gunfire-and-drive-by-shooting,False,3,,,"Drive-by (car to street, car to car)",37.5773,,-77.3804,,,,,,,,,,http://www.nbc12.com/story/24369415/henrico-police-investigating-gunfire-and-drive-by-shooting,74,9
93172,2014-01-05,New Jersey,Orange,700 block of Scotland Road,0,1,http://www.gunviolencearchive.org/incident/93172,http://www.nj.com/essex/index.ssf/2014/01/shooting_in_oranges_leaves_one_man_critically_injured.html#incart_river_default,False,10,,,Shot - Wounded/Injured,40.7583,,-74.2489,,,0::27,0::Adult 18+,0::Male||1::Male||2::Male,0::Sharefe Cummings,,0::Injured,0::Victim||1::Subject-Suspect||2::Subject-Suspect,http://www.nj.com/essex/index.ssf/2014/01/shooting_in_oranges_leaves_one_man_critically_injured.html#incart_river_default,34,34
94926,2014-01-05,Maryland,Washington,1200 block of Eastern Ave NE,0,0,http://www.gunviolencearchive.org/incident/94926,https://twitter.com/DCPoliceDept/status/419996863236820992,False,4,0::Unknown,0::Unknown,Armed robbery with injury/death and/or evidence of DGU found,38.9062,,-76.9263,1,"38.906179, -76.926373",,,,,,,0::Subject-Suspect,https://twitter.com/DCPoliceDept/status/419996863236820992,24,24
93125,2014-01-05,Florida,Daytona Beach,303 N Clyde Morris Blvd,1,0,http://www.gunviolencearchive.org/incident/93125,http://www.nbcmiami.com/news/local/Florida-Man-Threatens-Patients-Kills-Self-at-Hospital-238787101.html,False,6,,,"Shot - Dead (murder, accidental, suicide)||Suicide^||Shots Fired - No Injuries||Pistol-whipping||Brandishing/flourishing/open carry/lost/found",29.2012,Halifax Hospital,-81.0582,,Perpetrator shot at cars outside before entering medical center and shooting himself to death.,0::20,0::Adult 18+,0::Male,0::Jonathan Rodriguez-Jeff,,0::Killed,0::Victim,http://www.nbcmiami.com/news/local/Florida-Man-Threatens-Patients-Kills-Self-at-Hospital-238787101.html,26,6
93089,2014-01-05,Arkansas,Roland,23000 block of Highway 300,1,0,http://www.gunviolencearchive.org/incident/93089,http://www.katv.com/story/24367736/deputies-investigate-shooting-in-western-pulaski-county,False,2,,,"Shot - Dead (murder, accidental, suicide)",34.9163,,-92.5136,,Victim was the Chief Ranger for Arkansas State Parks and Tourism. His wife shot and killed him.,1::55,0::Adult 18+||1::Adult 18+,0::Male||1::Female,0::Jerry Digman||1::Pamela Digman,1::Family,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.katv.com/story/24367736/deputies-investigate-shooting-in-western-pulaski-county,35,32
93179,2014-01-05,Massachusetts,Fall River,130 Canal St,1,0,http://www.gunviolencearchive.org/incident/93179,http://www.heraldnews.com/news/20160407/tate-convicted-of-2014-murder-at-ships-cove-in-fall-river,False,4,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)",41.7006,Ships Cove Apartments,-71.1613,1,"41.700400, -71.161760",0::26||1::34,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::David Rodriguez||1::William Tate,,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://www.heraldnews.com/news/20160407/tate-convicted-of-2014-murder-at-ships-cove-in-fall-river,,
93398,2014-01-05,Texas,Houston,West Road,0,1,http://www.gunviolencearchive.org/incident/93398,http://www.khou.com/news/local/Driver-in-critical-condition-after-being-shot-outside-party-in-north-Houston-238790251.html,False,7,,,Shot - Wounded/Injured,29.9099,,-95.5812,,Victim found with gunshot wound to the head sitting in vehicle.,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.khou.com/news/local/Driver-in-critical-condition-after-being-shot-outside-party-in-north-Houston-238790251.html,135,7
93143,2014-01-05,Pennsylvania,Philadelphia,6200 block of Media Street,2,1,http://www.gunviolencearchive.org/incident/93143,http://guncrisis.org/2014/01/06/philadlephia-police-department-releases-more-information-on-recent-shootings/,False,1,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",39.974,,-75.2433,,,0::24||1::24||2::22,0::Adult 18+||1::Adult 18+||2::Adult 18+,0::Male||1::Male||2::Male,0::Karon Bailey||1::Basir Amaker,,0::Killed||1::Killed||2::Injured,0::Victim||1::Victim||2::Victim,http://philadelphia.cbslocal.com/2014/01/05/2-dead-in-west-philly-triple-shooting/||http://guncrisis.org/2014/01/06/philadlephia-police-department-releases-more-information-on-recent-shootings/,,
93956,2014-01-05,Michigan,Flint,North Stevenson Street and Woodbridge St.,0,1,http://www.gunviolencearchive.org/incident/93956,http://www.mlive.com/news/flint/index.ssf/2014/01/flint_man_shot_while_shoveling.html,False,5,,,Shot - Wounded/Injured,43.0232,,-83.7162,,Man was shoveling snow and was shot by unknown persons.,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.mlive.com/news/flint/index.ssf/2014/01/flint_man_shot_while_shoveling.html,34,27
93118,2014-01-05,Alabama,Somerville,NE Hill Rd,1,0,http://www.gunviolencearchive.org/incident/93118,http://www.waff.com/story/24642903/court-documents-woman-charged-with-mothers-murder,False,5,0::Unknown,0::Unknown,"Shot - Dead (murder, accidental, suicide)",34.5097,,-86.7131,1,,,0::Adult 18+||1::Adult 18+,0::Female||1::Female,0::Melissa Huber||1::Kristina Huber,1::Family,"0::Killed||1::Unharmed, Arrested",0::Victim||1::Subject-Suspect,http://whnt.com/2014/01/05/breaking-morgan-county-shooting-possible-crime-scene/||http://www.waff.com/story/24642903/court-documents-woman-charged-with-mothers-murder,4,3
94482,2014-01-05,New Jersey,Atlantic City,300 block of North Tennessee Avenue,0,1,http://www.gunviolencearchive.org/incident/94482,http://www.pressofatlanticcity.com/news/crime/breaking_crime_news/police-investigate-two-shootings-in-atlantic-city/article_959b,False,2,,,Shot - Wounded/Injured,39.3664,,-74.4317,,,0::24,0::Adult 18+,0::Male,0::Bradley Williams,,0::Injured,0::Victim,http://www.pressofatlanticcity.com/news/crime/breaking_crime_news/police-investigate-two-shootings-in-atlantic-city/article_959b,2,2
103306,2014-01-05,Florida,Lake Wales,Scenic Hwy and JA Wiltshire Ave,0,1,http://www.gunviolencearchive.org/incident/103306,http://dailyridge.com/lake-wales/2014/01/05/11one-person-transported-after-shooting-in-lake-wales-this-evening/,False,17,,,Shot - Wounded/Injured,27.9102,,-81.5864,,in his 20s,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://dailyridge.com/lake-wales/2014/01/05/11one-person-transported-after-shooting-in-lake-wales-this-evening/,42,21
108878,2014-01-05,Florida,Fort Walton Beach,Spectre Island,0,1,http://www.gunviolencearchive.org/incident/108878,http://www.nwfdailynews.com/local/officials-reveal-new-details-in-santa-rosa-sound-hunting-accident-1.258506,False,1,,,Shot - Wounded/Injured||Accidental Shooting||Hunting accident,30.4201,,-86.617,,,0::27||1::30,0::Adult 18+||1::Adult 18+,0::Male||1::Male,0::Sean Michael Tolar||1::Travis Raymond Julius,,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nwfdailynews.com/local/officials-reveal-new-details-in-santa-rosa-sound-hunting-accident-1.258506,4,1
93824,2014-01-05,Connecticut,New Haven,,0,1,http://www.gunviolencearchive.org/incident/93824,http://www.raycomnewsnetwork.com/story/24374469/man-accused-of-shooting-child-with-bb-gun,False,3,,,Shot - Wounded/Injured||BB/Pellet/Replica gun,41.3048,,-72.923,,"long, black Daisy lever action BB rifle",0::7||1::18,0::Child 0-11||1::Adult 18+,0::Male||1::Male,"1::Carl Gee, Jr.",,0::Injured||1::Unharmed,0::Victim||1::Subject-Suspect,http://www.nhregister.com/general-news/20140106/new-haven-man-allegedly-shot-7-year-old-with-bb-gun||http://www.raycomnewsnetwork.com/story/24374469/man-accused-of-shooting-child-with-bb-gun,96,11
93795,2014-01-05,Florida,Lecanto,420 S Leconto Highway,1,0,http://www.gunviolencearchive.org/incident/93795,http://citrustimesonline.com/property-appraiser-greene-found-dead-at-his-home/2014/01/05/.html,False,11,,,"Shot - Dead (murder, accidental, suicide)||Suicide^",28.8511,,-82.4879,,,0::64,0::Adult 18+,0::Male,0::Geoffrey Greene,,0::Killed,0::Victim,http://www.tampabay.com/news/localgovernment/citrus-county-property-appraiser-died-of-self-inflicted-gunshot-wound/2160036||http://citrustimesonline.com/property-appraiser-greene-found-dead-at-his-home/2014/01/05/.html,34,5
93051,2014-01-05,California,Los Angeles,10017 South Main Street,1,0,http://www.gunviolencearchive.org/incident/93051,http://homicide.latimes.com/post/don-ray-jackson/,False,43,,,"Shot - Dead (murder, accidental, suicide)",33.9455,,-118.274,,Broadway-Manchester neighborhood/section of Los Angeleswas riding bicycle ,0::46,0::Adult 18+,0::Male,0::Don Ray Jackson,,0::Killed,0::Victim,http://losangeles.cbslocal.com/2014/01/05/man-on-bike-fatally-shot-in-south-los-angeles/||http://homicide.latimes.com/post/don-ray-jackson/,64,30
93389,2014-01-05,Michigan,Inkster,27000 block of New York Street,1,0,http://www.gunviolencearchive.org/incident/93389,/27000%20block%20of%20New%20York%20Street,False,13,,,"Shot - Dead (murder, accidental, suicide)",42.2874,,-83.3049,,Victim shot inside of SUV,,0::Adult 18+,0::Male,,,0::Killed,0::Victim,,16,5
93538,2014-01-05,Alabama,Phenix City,1200 8th Avenue,0,1,http://www.gunviolencearchive.org/incident/93538,http://www.wsfa.com/story/24377405/police,False,3,,,Shot - Wounded/Injured||Officer Involved Incident||Officer Involved Shooting - subject/suspect/perpetrator shot||Brandishing/flourishing/open carry/lost/found,32.4691,,-85.0033,,,,0::Adult 18+,0::Male,,,0::Injured,0::Victim,http://www.wsfa.com/story/24377405/police,83,28
93735,2014-01-05,Arkansas,Little Rock,14000 Cantrell Road,0,0,http://www.gunviolencearchive.org/incident/93735,http://www.arkansasonline.com/news/2014/jan/06/two-robbed-gunpoint-parking-lot-west-little-rock-k/,False,2,,,Armed robbery with injury/death and/or evidence of DGU found,34.8041,,-92.431,,,,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+||5::Adult 18+,0::Male||1::Male||2::Male||3::Male||4::Male||5::Male,,,0::Unharmed||1::Unharmed||2::Unharmed||3::Unharmed||4::Unharmed||5::Unharmed,0::Victim||1::Victim||2::Subject-Suspect||3::Subject-Suspect||4::Subject-Suspect||5::Subject-Suspect,http://www.arkansasonline.com/news/2014/jan/06/two-robbed-gunpoint-parking-lot-west-little-rock-k/,35,32
94514,2014-01-05,Pennsylvania,Erie,829 Parade Street,1,3,http://www.gunviolencearchive.org/incident/94514,http://www.goerie.com/erie-man-charged-in-sunday-fatal-shooting,False,3,,,"Shot - Wounded/Injured||Shot - Dead (murder, accidental, suicide)",42.1306,,-80.0752,,,0::26||4::21,0::Adult 18+||1::Adult 18+||2::Adult 18+||3::Adult 18+||4::Adult 18+,0::Male||1::Male||2::Female||3::Female||4::Male,0::Rashid Anderson||4::Courtney Harden,,0::Killed||1::Injured||2::Injured||3::Injured||4::Unharmed,0::Victim||1::Victim||2::Victim||3::Victim||4::Subject-Suspect,http://www.goerie.com/erie-man-charged-in-sunday-fatal-shooting,,
107328,2014-01-05,North Carolina,Charlotte,Charlotte/Douglas International Airport,0,0,http://www.gunviolencearchive.org/incident/107328,http://blog.tsa.gov/2014_01_10_archive.html,False,12,,,TSA Action,35.2144,,-80.9473,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,92,38
107330,2014-01-05,Texas,Houston,Bush Intercontinental Airport,0,0,http://www.gunviolencearchive.org/incident/107330,http://blog.tsa.gov/2014_01_10_archive.html,False,18,,,TSA Action,29.9902,,-95.3368,,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,141,15
107331,2014-01-05,Missouri,Kansas City,1 International Cir,0,0,http://www.gunviolencearchive.org/incident/107331,http://blog.tsa.gov/2014_01_10_archive.html,False,6,0::Unknown,0::Unknown,TSA Action,39.298,MCI Int'l Airport,-94.7167,1,,,,,,,,,http://blog.tsa.gov/2014_01_10_archive.html,13,34