-
Notifications
You must be signed in to change notification settings - Fork 0
/
crime.json
1000 lines (1000 loc) · 461 KB
/
crime.json
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
[{":@computed_region_aywg_kpfh":"17237","day_of_week":"Friday","district":"A1","hour":"23","incident_number":"I162096466","lat":"42.36139413","location":{"type":"Point","coordinates":[-71.057687,42.361394]},"long":"-71.0576869","month":"11","occurred_on_date":"2016-11-25T23:54:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"CONGRESS ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"20","incident_number":"I162096691","lat":"42.28631299","location":{"type":"Point","coordinates":[-71.092184,42.286313]},"long":"-71.09218412","month":"11","occurred_on_date":"2016-11-26T20:54:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"465","street":"HAVELOCK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"21","incident_number":"I162096709","lat":"42.27815893","location":{"type":"Point","coordinates":[-71.097412,42.278159]},"long":"-71.09741228","month":"11","occurred_on_date":"2016-11-26T21:26:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"469","street":"ITASCA ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Saturday","district":"A1","hour":"16","incident_number":"I162104675","lat":"42.35272948","location":{"type":"Point","coordinates":[-71.062563,42.352729]},"long":"-71.06256291","month":"12","occurred_on_date":"2016-12-24T16:43:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"111","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Monday","district":"C6","hour":"23","incident_number":"I152066279","location":{"type":"Point","coordinates":[0,0]},"month":"8","occurred_on_date":"2015-08-10T23:47:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"214","ucr_part":"Part One","year":"2015"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Friday","district":"D14","hour":"19","incident_number":"I162096566","lat":"42.3391855","location":{"type":"Point","coordinates":[-71.151223,42.339186]},"long":"-71.15122348","month":"11","occurred_on_date":"2016-11-25T19:30:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"788","street":"STRATHMORE RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Friday","district":"E13","hour":"21","incident_number":"I162096453","lat":"42.32469169","location":{"type":"Point","coordinates":[-71.106189,42.324692]},"long":"-71.10618924","month":"11","occurred_on_date":"2016-11-25T21:05:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"583","street":"ROUND HILL ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"12","incident_number":"I162104635","lat":"42.30956305","location":{"type":"Point","coordinates":[-71.089902,42.309563]},"long":"-71.08990197","month":"12","occurred_on_date":"2016-12-24T12:40:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"920","street":"BROOKLEDGE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"7","incident_number":"I162096251","lat":"42.32026165","location":{"type":"Point","coordinates":[-71.086003,42.320262]},"long":"-71.08600267","month":"11","occurred_on_date":"2016-11-25T07:47:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"309","street":"HUMBOLDT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"23","incident_number":"I162096462","lat":"42.31845834","location":{"type":"Point","coordinates":[-71.080323,42.318458]},"long":"-71.08032338","month":"11","occurred_on_date":"2016-11-25T23:10:00.000","offense_code":"03001","offense_code_group":"Medical Assistance","offense_description":"DEATH INVESTIGATION","reporting_area":"311","street":"EDGEWOOD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Friday","district":"A1","hour":"18","incident_number":"I162080889","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"9","occurred_on_date":"2016-09-30T18:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Friday","district":"E5","hour":"14","incident_number":"I152067272","lat":"42.26295","location":{"type":"Point","coordinates":[-71.155464,42.26295]},"long":"-71.155464","month":"8","occurred_on_date":"2015-08-14T14:26:00.000","offense_code":"02907","offense_code_group":"Violations","offense_description":"VAL - OPERATING AFTER REV/SUSP.","reporting_area":"712","street":"DE SOTO RD","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Monday","district":"A1","hour":"18","incident_number":"I162010528","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"2","occurred_on_date":"2016-02-08T18:43:00.000","offense_code":"01843","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - INTENT TO MFR DIST DISP","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Tuesday","district":"A1","hour":"12","incident_number":"I162065836","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"8","occurred_on_date":"2016-08-09T12:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"16","incident_number":"I162104682","lat":"42.34906578","location":{"type":"Point","coordinates":[-71.134147,42.349066]},"long":"-71.13414695","month":"12","occurred_on_date":"2016-12-24T16:50:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"794","street":"COMMONWEALTH AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"5","incident_number":"I162096512","lat":"42.35541865","location":{"type":"Point","coordinates":[-71.133013,42.355419]},"long":"-71.13301326","month":"11","occurred_on_date":"2016-11-26T05:40:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"803","street":"CAMBRIDGE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Saturday","district":"E5","hour":"6","incident_number":"I162104586","lat":"42.26523483","location":{"type":"Point","coordinates":[-71.15843,42.265235]},"long":"-71.15843028","month":"12","occurred_on_date":"2016-12-24T06:41:00.000","offense_code":"01831","offense_code_group":"Drug Violation","offense_description":"DRUGS - SICK ASSIST - OTHER NARCOTIC","reporting_area":"713","street":"GROVE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"A1","hour":"1","incident_number":"I162096546","lat":"42.34997256","location":{"type":"Point","coordinates":[-71.063488,42.349973]},"long":"-71.06348817","month":"11","occurred_on_date":"2016-11-26T01:45:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"123","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Saturday","district":"D4","hour":"0","incident_number":"I162096710","lat":"42.34717363","location":{"type":"Point","coordinates":[-71.096444,42.347174]},"long":"-71.0964439","month":"11","occurred_on_date":"2016-11-26T00:30:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"624","street":"LANSDOWNE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Friday","district":"E13","hour":"23","incident_number":"I162096542","lat":"42.30492239","location":{"type":"Point","coordinates":[-71.102981,42.304922]},"long":"-71.10298073","month":"11","occurred_on_date":"2016-11-25T23:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"570","street":"FOREST HILLS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Wednesday","district":"A1","hour":"9","incident_number":"I162049480","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"6","occurred_on_date":"2016-06-22T09:22:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Saturday","district":"B2","hour":"20","incident_number":"I162096694","lat":"42.33355871","location":{"type":"Point","coordinates":[-71.103,42.333559]},"long":"-71.10299967","month":"11","occurred_on_date":"2016-11-26T20:32:00.000","offense_code":"00311","offense_code_group":"Robbery","offense_description":"ROBBERY - COMMERCIAL","reporting_area":"603","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Friday","district":"B2","hour":"16","incident_number":"I162096560","lat":"42.32779058","location":{"type":"Point","coordinates":[-71.106675,42.327791]},"long":"-71.10667535","month":"11","occurred_on_date":"2016-11-25T16:00:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"606","street":"HAYDEN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Friday","district":"C6","hour":"18","incident_number":"I162096539","lat":"42.33344418","location":{"type":"Point","coordinates":[-71.053377,42.333444]},"long":"-71.05337716","month":"11","occurred_on_date":"2016-11-25T18:00:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"216","street":"FREDERICK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"6","incident_number":"I162096516","lat":"42.29049765","location":{"type":"Point","coordinates":[-71.052064,42.290498]},"long":"-71.05206432","month":"11","occurred_on_date":"2016-11-26T06:46:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"377","street":"ARBROTH ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"16","incident_number":"I162098678","lat":"42.28410589","location":{"type":"Point","coordinates":[-71.046089,42.284106]},"long":"-71.04608937","month":"12","occurred_on_date":"2016-12-03T16:26:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"385","street":"GALLIVAN BLVD","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"16","incident_number":"I162029589","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"4","occurred_on_date":"2016-04-16T16:59:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"6","incident_number":"I162096513","lat":"42.35266601","location":{"type":"Point","coordinates":[-71.129743,42.352666]},"long":"-71.12974348","month":"11","occurred_on_date":"2016-11-26T06:07:00.000","offense_code":"01001","offense_code_group":"Counterfeiting","offense_description":"FORGERY / COUNTERFEITING","reporting_area":"796","street":"BRIGHTON AVE","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Friday","district":"A1","hour":"16","incident_number":"I162077949","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2016-09-23T16:09:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"18","incident_number":"I162104701","lat":"42.34980175","location":{"type":"Point","coordinates":[-71.07841,42.349802]},"long":"-71.07840978","month":"12","occurred_on_date":"2016-12-24T18:26:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"138","street":"BOYLSTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Tuesday","district":"E5","hour":"23","incident_number":"I162096468","lat":"42.28642835","location":{"type":"Point","coordinates":[-71.154273,42.286428]},"long":"-71.15427278","month":"11","occurred_on_date":"2016-11-22T23:55:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"695","street":"CENTRE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"22","incident_number":"I162096448","lat":"42.3584724","location":{"type":"Point","coordinates":[-71.068619,42.358472]},"long":"-71.06861909","month":"11","occurred_on_date":"2016-11-25T22:01:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"70","street":"LOUISBURG SQ","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"17","incident_number":"I162104690","lat":"42.35645514","location":{"type":"Point","coordinates":[-71.06957,42.356455]},"long":"-71.06956975","month":"12","occurred_on_date":"2016-12-24T17:49:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"70","street":"CHARLES ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"20","incident_number":"I162096686","lat":"42.32910458","location":{"type":"Point","coordinates":[-71.092923,42.329105]},"long":"-71.09292261","month":"11","occurred_on_date":"2016-11-26T20:08:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"291","street":"HIGHLAND AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"17","incident_number":"I162096652","lat":"42.26994732","location":{"type":"Point","coordinates":[-71.093803,42.269947]},"long":"-71.09380308","month":"11","occurred_on_date":"2016-11-26T17:44:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"476","street":"BLUE HILL AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"11","incident_number":"I162096562","lat":"42.3428985","location":{"type":"Point","coordinates":[-71.0788,42.342899]},"long":"-71.0788","month":"11","occurred_on_date":"2016-11-26T11:20:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"154","street":"COLUMBUS AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"10","incident_number":"I162096563","lat":"42.28677349","location":{"type":"Point","coordinates":[-71.085779,42.286773]},"long":"-71.08577891","month":"11","occurred_on_date":"2016-11-26T10:57:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"432","street":"MOUNTAIN AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Wednesday","district":"A1","hour":"18","incident_number":"I162055817","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"7","occurred_on_date":"2016-07-13T18:25:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"20","incident_number":"I162096686","lat":"42.32910458","location":{"type":"Point","coordinates":[-71.092923,42.329105]},"long":"-71.09292261","month":"11","occurred_on_date":"2016-11-26T20:08:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"291","street":"HIGHLAND AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Friday","district":"D4","hour":"11","incident_number":"I162096291","lat":"42.33671951","location":{"type":"Point","coordinates":[-71.078994,42.33672]},"long":"-71.07899439","month":"11","occurred_on_date":"2016-11-25T11:32:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"273","street":"SHAWMUT AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Thursday","district":"E13","hour":"16","incident_number":"I162039142","lat":"42.31230443","location":{"type":"Point","coordinates":[-71.096609,42.312304]},"long":"-71.09660909","month":"5","occurred_on_date":"2016-05-19T16:53:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"572","street":"WALNUT AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"17238","day_of_week":"Saturday","district":"C6","hour":"18","incident_number":"I162096660","lat":"42.34582745","location":{"type":"Point","coordinates":[-71.033508,42.345827]},"long":"-71.03350831","month":"11","occurred_on_date":"2016-11-26T18:23:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"207","street":"NORTHERN AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"22","incident_number":"I162030174","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"4","occurred_on_date":"2016-04-18T22:37:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Friday","district":"C6","hour":"15","incident_number":"I162104636","lat":"42.33340351","location":{"type":"Point","coordinates":[-71.042832,42.333404]},"long":"-71.04283218","month":"12","occurred_on_date":"2016-12-23T15:30:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"229","street":"STORY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Tuesday","district":"B2","hour":"14","incident_number":"I162032397","lat":"42.315969","location":{"type":"Point","coordinates":[-71.066253,42.315969]},"long":"-71.066253","month":"4","occurred_on_date":"2016-04-26T14:33:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"257","street":"COLUMBIA RD","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"19","incident_number":"I162085145","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-17T19:08:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"17","incident_number":"I162000985","lat":"42.309746","location":{"type":"Point","coordinates":[-71.115579,42.309746]},"long":"-71.115579","month":"1","occurred_on_date":"2016-01-02T17:15:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"643","street":"CENTRE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"11","incident_number":"I162079170","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"9","occurred_on_date":"2016-09-25T11:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"19","incident_number":"I162085145","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-17T19:08:00.000","offense_code":"01300","offense_code_group":"Recovered Stolen Property","offense_description":"STOLEN PROPERTY - BUYING / RECEIVING / POSSESSING","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Sunday","district":"A1","hour":"17","incident_number":"I162086939","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"10","occurred_on_date":"2016-10-23T17:49:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"9","incident_number":"I162096533","lat":"42.29881968","location":{"type":"Point","coordinates":[-71.065701,42.29882]},"long":"-71.06570084","month":"11","occurred_on_date":"2016-11-26T09:11:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"358","street":"WALDECK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E5","hour":"10","incident_number":"I162096579","lat":"42.29220756","location":{"type":"Point","coordinates":[-71.120434,42.292208]},"long":"-71.12043423","month":"11","occurred_on_date":"2016-11-26T10:55:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"941","street":"ARCHDALE RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"18","incident_number":"I162096681","lat":"42.27683754","location":{"type":"Point","coordinates":[-71.095264,42.276838]},"long":"-71.0952644","month":"11","occurred_on_date":"2016-11-26T18:23:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"469","street":"HIAWATHA RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"17","incident_number":"I162104705","lat":"42.33914604","location":{"type":"Point","coordinates":[-71.154428,42.339146]},"long":"-71.15442808","month":"12","occurred_on_date":"2016-12-24T17:41:00.000","offense_code":"03001","offense_code_group":"Medical Assistance","offense_description":"DEATH INVESTIGATION","reporting_area":"774","street":"CHESTNUT HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Saturday","district":"D4","hour":"19","incident_number":"I162096673","lat":"42.34840576","location":{"type":"Point","coordinates":[-71.086883,42.348406]},"long":"-71.08688339","month":"11","occurred_on_date":"2016-11-26T19:04:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"141","street":"NEWBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"8","incident_number":"I162096532","lat":"42.26994732","location":{"type":"Point","coordinates":[-71.093803,42.269947]},"long":"-71.09380308","month":"11","occurred_on_date":"2016-11-26T08:25:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"476","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"7","incident_number":"I162096523","lat":"42.2874272","location":{"type":"Point","coordinates":[-71.078538,42.287427]},"long":"-71.07853773","month":"11","occurred_on_date":"2016-11-26T07:52:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"435","street":"NORFOLK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"17","incident_number":"I162096659","lat":"42.33739","location":{"type":"Point","coordinates":[-71.078,42.33739]},"long":"-71.078","month":"11","occurred_on_date":"2016-11-26T17:50:00.000","offense_code":"02905","offense_code_group":"Violations","offense_description":"VAL - OPERATING WITHOUT LICENSE","reporting_area":"156","street":"MASSACHUSETTS AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"23","incident_number":"I162096469","lat":"42.29710452","location":{"type":"Point","coordinates":[-71.088077,42.297105]},"long":"-71.08807731","month":"11","occurred_on_date":"2016-11-25T23:19:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"463","street":"CALDER ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"E13","hour":"0","incident_number":"I162104591","lat":"42.31534411","location":{"type":"Point","coordinates":[-71.095847,42.315344]},"long":"-71.09584709","month":"12","occurred_on_date":"2016-12-24T00:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"307","street":"WALNUT PARK","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"12","incident_number":"I162096583","lat":"42.31845986","location":{"type":"Point","coordinates":[-71.089329,42.31846]},"long":"-71.08932896","month":"11","occurred_on_date":"2016-11-26T12:38:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"308","street":"HAROLD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Sunday","district":"A1","hour":"17","incident_number":"I162086939","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"10","occurred_on_date":"2016-10-23T17:49:00.000","offense_code":"01501","offense_code_group":"Firearm Violations","offense_description":"WEAPON - FIREARM - CARRYING / POSSESSING, ETC","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"17237","day_of_week":"Saturday","district":"A1","hour":"9","incident_number":"I162096570","lat":"42.36139413","location":{"type":"Point","coordinates":[-71.057687,42.361394]},"long":"-71.0576869","month":"11","occurred_on_date":"2016-11-26T09:00:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"77","street":"CONGRESS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Saturday","district":"C6","hour":"21","incident_number":"I162096705","lat":"42.33048316","location":{"type":"Point","coordinates":[-71.044092,42.330483]},"long":"-71.04409246","month":"11","occurred_on_date":"2016-11-26T21:28:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"233","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"A1","hour":"13","incident_number":"I162096618","lat":"42.35115433","location":{"type":"Point","coordinates":[-71.065479,42.351154]},"long":"-71.06547895","month":"11","occurred_on_date":"2016-11-26T13:56:00.000","offense_code":"00542","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - NO FORCE","reporting_area":"118","street":"STUART ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"22","incident_number":"I162096455","lat":"42.3584724","location":{"type":"Point","coordinates":[-71.068619,42.358472]},"long":"-71.06861909","month":"11","occurred_on_date":"2016-11-25T22:37:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"70","street":"LOUISBURG SQ","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162096603","lat":"42.28995318","location":{"type":"Point","coordinates":[-71.060761,42.289953]},"long":"-71.06076101","month":"11","occurred_on_date":"2016-11-26T13:18:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"366","street":"SHEPTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"16","incident_number":"I152102354","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"12","occurred_on_date":"2015-12-11T16:07:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"21","incident_number":"I162088949","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-30T21:31:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Friday","district":"B3","hour":"23","incident_number":"I162104545","lat":"42.28152196","location":{"type":"Point","coordinates":[-71.090084,42.281522]},"long":"-71.09008408","month":"12","occurred_on_date":"2016-12-23T23:39:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"428","street":"WOOLSON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"15","incident_number":"I162096631","lat":"42.32291406","location":{"type":"Point","coordinates":[-71.103284,42.322914]},"long":"-71.10328402","month":"11","occurred_on_date":"2016-11-26T15:12:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"581","street":"CENTRE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Tuesday","district":"A15","hour":"10","incident_number":"I162096612","lat":"42.37824004","location":{"type":"Point","coordinates":[-71.060434,42.37824]},"long":"-71.0604344","month":"11","occurred_on_date":"2016-11-22T10:30:00.000","offense_code":"00522","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - NO FORCE","reporting_area":"900","street":"BUNKER HILL ST","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Tuesday","district":"C6","hour":"20","incident_number":"I162068530","location":{"type":"Point","coordinates":[0,0]},"month":"8","occurred_on_date":"2016-08-23T20:21:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"B2","hour":"18","incident_number":"I162012392","location":{"type":"Point","coordinates":[0,0]},"month":"2","occurred_on_date":"2016-02-12T18:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"257","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Friday","district":"A1","hour":"22","incident_number":"I162096456","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"11","occurred_on_date":"2016-11-25T22:44:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"C11","hour":"14","incident_number":"I162096353","lat":"42.3119196","location":{"type":"Point","coordinates":[-71.06913,42.31192]},"long":"-71.06913007","month":"11","occurred_on_date":"2016-11-25T14:30:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"332","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E5","hour":"14","incident_number":"I162096615","lat":"42.28621569","location":{"type":"Point","coordinates":[-71.127776,42.286216]},"long":"-71.1277758","month":"11","occurred_on_date":"2016-11-26T14:55:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"562","street":"CUMMINS HWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"17","incident_number":"I162096663","lat":"42.29592712","location":{"type":"Point","coordinates":[-71.113762,42.295927]},"long":"-71.11376207","month":"11","occurred_on_date":"2016-11-26T17:33:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"509","street":"WACHUSETT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Tuesday","district":"A1","hour":"14","incident_number":"I162083351","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-11T14:50:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"15","incident_number":"I162029304","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"4","occurred_on_date":"2016-04-15T15:00:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"20","incident_number":"I162023540","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"3","occurred_on_date":"2016-03-26T20:34:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"20","incident_number":"I162023259","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"3","occurred_on_date":"2016-03-25T20:30:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Friday","district":"B3","hour":"23","incident_number":"I162096541","lat":"42.27683754","location":{"type":"Point","coordinates":[-71.095264,42.276838]},"long":"-71.0952644","month":"11","occurred_on_date":"2016-11-25T23:45:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"469","street":"HIAWATHA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"E13","hour":"0","incident_number":"I162104541","lat":"42.31433402","location":{"type":"Point","coordinates":[-71.097914,42.314334]},"long":"-71.09791405","month":"12","occurred_on_date":"2016-12-24T00:00:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"572","street":"DIXWELL ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"12","incident_number":"I162096585","lat":"42.29041538","location":{"type":"Point","coordinates":[-71.072695,42.290415]},"long":"-71.07269542","month":"11","occurred_on_date":"2016-11-26T12:47:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"437","street":"TALBOT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Wednesday","district":"A1","hour":"18","incident_number":"I162034708","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"5","occurred_on_date":"2016-05-04T18:19:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Sunday","district":"A1","hour":"16","incident_number":"I162015876","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"2","occurred_on_date":"2016-02-28T16:13:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"C11","hour":"9","incident_number":"I162104686","lat":"42.31086884","location":{"type":"Point","coordinates":[-71.063197,42.310869]},"long":"-71.06319661","month":"12","occurred_on_date":"2016-12-23T09:30:00.000","offense_code":"01721","offense_code_group":"Sex Offender Registration","offense_description":"FAILURE TO REGISTER AS A SEX OFFENDER","reporting_area":"334","street":"CAMERON ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Monday","district":"B2","hour":"14","incident_number":"I162032118","location":{"type":"Point","coordinates":[0,0]},"month":"4","occurred_on_date":"2016-04-25T14:36:00.000","offense_code":"01001","offense_code_group":"Counterfeiting","offense_description":"FORGERY / COUNTERFEITING","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"12","incident_number":"I162096578","lat":"42.27294749","location":{"type":"Point","coordinates":[-71.071543,42.272947]},"long":"-71.07154272","month":"11","occurred_on_date":"2016-11-26T12:06:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"407","street":"OLD MORTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Friday","district":"E13","hour":"23","incident_number":"I162096551","lat":"42.30492239","location":{"type":"Point","coordinates":[-71.102981,42.304922]},"long":"-71.10298073","month":"11","occurred_on_date":"2016-11-25T23:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"570","street":"FOREST HILLS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"17237","day_of_week":"Saturday","district":"A1","hour":"9","incident_number":"I162096570","lat":"42.36139413","location":{"type":"Point","coordinates":[-71.057687,42.361394]},"long":"-71.0576869","month":"11","occurred_on_date":"2016-11-26T09:00:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"77","street":"CONGRESS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"19","incident_number":"I162001915","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T19:40:00.000","offense_code":"03018","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - POLICE","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","district":"D4","hour":"11","incident_number":"I162037885","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-15T11:38:00.000","offense_code":"02900","offense_code_group":"Other","offense_description":"VAL - VIOLATION OF AUTO LAW - OTHER","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"15","incident_number":"I162096651","lat":"42.28649435","location":{"type":"Point","coordinates":[-71.074068,42.286494]},"long":"-71.07406771","month":"11","occurred_on_date":"2016-11-25T15:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"435","street":"WENTWORTH TER","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"21","incident_number":"I162096576","lat":"42.29269266","location":{"type":"Point","coordinates":[-71.094035,42.292693]},"long":"-71.09403527","month":"11","occurred_on_date":"2016-11-20T21:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"565","street":"E MAIN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C6","hour":"10","incident_number":"I162096537","lat":"42.32206077","location":{"type":"Point","coordinates":[-71.056805,42.322061]},"long":"-71.05680459","month":"11","occurred_on_date":"2016-11-26T10:20:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"188","street":"DORCHESTER AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Saturday","district":"A1","hour":"16","incident_number":"I162039878","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"5","occurred_on_date":"2016-05-21T16:00:00.000","offense_code":"00616","offense_code_group":"Larceny","offense_description":"LARCENY THEFT OF BICYCLE","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Sunday","district":"E5","hour":"10","incident_number":"I162096590","lat":"42.27625767","location":{"type":"Point","coordinates":[-71.139395,42.276258]},"long":"-71.13939536","month":"11","occurred_on_date":"2016-11-20T10:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"550","street":"WASHINGTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"14","incident_number":"I162096621","lat":"42.31959298","location":{"type":"Point","coordinates":[-71.062607,42.319593]},"long":"-71.062607","month":"11","occurred_on_date":"2016-11-26T14:52:00.000","offense_code":"01849","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - COCAINE, ETC.","reporting_area":"240","street":"COLUMBIA RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Tuesday","district":"D4","hour":"0","incident_number":"I162072516","lat":"42.347497","location":{"type":"Point","coordinates":[-71.101763,42.347497]},"long":"-71.101763","month":"9","occurred_on_date":"2016-09-06T00:44:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"629","street":"BEACON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"17236","day_of_week":"Saturday","district":"D4","hour":"21","incident_number":"I162096699","lat":"42.34862382","location":{"type":"Point","coordinates":[-71.082776,42.348624]},"long":"-71.08277637","month":"11","occurred_on_date":"2016-11-26T21:01:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"143","street":"BOYLSTON ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Monday","district":"C6","hour":"10","incident_number":"I162041473","location":{"type":"Point","coordinates":[0,0]},"month":"4","occurred_on_date":"2016-04-25T10:00:00.000","offense_code":"01102","offense_code_group":"Fraud","offense_description":"FRAUD - FALSE PRETENSE / SCHEME","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"B2","hour":"16","incident_number":"I162096638","lat":"42.31633855","location":{"type":"Point","coordinates":[-71.0688,42.316339]},"long":"-71.06879992","month":"11","occurred_on_date":"2016-11-26T16:21:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"258","street":"MONADNOCK ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Wednesday","district":"B2","hour":"13","incident_number":"I162038794","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-18T13:57:00.000","offense_code":"01304","offense_code_group":"Recovered Stolen Property","offense_description":"PROPERTY - STOLEN THEN RECOVERED","reporting_area":"278","street":"ALBANY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"15","incident_number":"I162023473","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"3","occurred_on_date":"2016-03-26T15:19:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"14","incident_number":"I162011502","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"2","occurred_on_date":"2016-02-12T14:37:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Saturday","district":"C6","hour":"0","incident_number":"I162096479","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-26T00:01:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Friday","district":"A1","hour":"10","incident_number":"I162096497","lat":"42.35902548","location":{"type":"Point","coordinates":[-71.05568,42.359025]},"long":"-71.05567996","month":"11","occurred_on_date":"2016-11-25T10:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"100","street":"STATE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Thursday","district":"E5","hour":"19","incident_number":"I162096454","lat":"42.28420547","location":{"type":"Point","coordinates":[-71.121529,42.284205]},"long":"-71.12152902","month":"11","occurred_on_date":"2016-11-24T19:15:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"561","street":"PROSPECT AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"B2","hour":"15","incident_number":"I162096636","lat":"42.31633855","location":{"type":"Point","coordinates":[-71.0688,42.316339]},"long":"-71.06879992","month":"11","occurred_on_date":"2016-11-26T15:39:00.000","offense_code":"02006","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W ARREST","reporting_area":"258","street":"MONADNOCK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"12","incident_number":"I162008577","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"2","occurred_on_date":"2016-02-01T12:38:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Tuesday","district":"B2","hour":"14","incident_number":"I152101399","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2015-12-08T14:17:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Tuesday","district":"A1","hour":"17","incident_number":"I162007114","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"1","occurred_on_date":"2016-01-26T17:15:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Friday","district":"D14","hour":"22","incident_number":"I162104539","lat":"42.35441899","location":{"type":"Point","coordinates":[-71.150188,42.354419]},"long":"-71.15018788","month":"12","occurred_on_date":"2016-12-23T22:30:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"769","street":"MARKET ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"14","incident_number":"I162096621","lat":"42.31959298","location":{"type":"Point","coordinates":[-71.062607,42.319593]},"long":"-71.062607","month":"11","occurred_on_date":"2016-11-26T14:52:00.000","offense_code":"01843","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - INTENT TO MFR DIST DISP","reporting_area":"240","street":"COLUMBIA RD","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Wednesday","district":"D14","hour":"7","incident_number":"I162045074","location":{"type":"Point","coordinates":[0,0]},"month":"6","occurred_on_date":"2016-06-08T07:49:10.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Friday","district":"C6","hour":"21","incident_number":"I162096553","lat":"42.33591242","location":{"type":"Point","coordinates":[-71.044276,42.335912]},"long":"-71.0442763","month":"11","occurred_on_date":"2016-11-25T21:30:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"221","street":"G ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E18","hour":"16","incident_number":"I162096643","lat":"42.2867659","location":{"type":"Point","coordinates":[-71.108376,42.286766]},"long":"-71.10837643","month":"11","occurred_on_date":"2016-11-26T16:38:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"21","incident_number":"I162096442","lat":"42.29603943","location":{"type":"Point","coordinates":[-71.07717,42.296039]},"long":"-71.07717023","month":"11","occurred_on_date":"2016-11-25T21:43:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"446","street":"ATHELWOLD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Wednesday","district":"A1","hour":"12","incident_number":"I162055705","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"7","occurred_on_date":"2016-07-13T12:19:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"10","incident_number":"I162096556","lat":"42.30021684","location":{"type":"Point","coordinates":[-71.080979,42.300217]},"long":"-71.0809794","month":"11","occurred_on_date":"2016-11-26T10:25:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"456","street":"HARLEM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"10","incident_number":"I162096565","lat":"42.3862769","location":{"type":"Point","coordinates":[-71.003135,42.386277]},"long":"-71.00313499","month":"11","occurred_on_date":"2016-11-26T10:53:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"3","street":"BARNES AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"21","incident_number":"I162096450","lat":"42.28576084","location":{"type":"Point","coordinates":[-71.090303,42.285761]},"long":"-71.09030349","month":"11","occurred_on_date":"2016-11-25T21:43:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"430","street":"WOODROW AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Thursday","district":"A1","hour":"18","incident_number":"I162104646","lat":"42.36020464","location":{"type":"Point","coordinates":[-71.056208,42.360205]},"long":"-71.05620816","month":"12","occurred_on_date":"2016-12-15T18:00:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"93","street":"FANEUIL HALL SQ","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001882","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:29:00.000","offense_code":"03018","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - POLICE","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E5","hour":"14","incident_number":"I162096611","lat":"42.28606015","location":{"type":"Point","coordinates":[-71.14406,42.28606]},"long":"-71.14406047","month":"11","occurred_on_date":"2016-11-26T14:05:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"687","street":"BELGRADE AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Friday","district":"D4","hour":"11","incident_number":"I162096569","lat":"42.35433643","location":{"type":"Point","coordinates":[-71.073238,42.354336]},"long":"-71.07323767","month":"11","occurred_on_date":"2016-11-25T11:00:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"131","street":"MARLBOROUGH ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Tuesday","district":"A1","hour":"7","incident_number":"I162024125","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"3","occurred_on_date":"2016-03-29T07:45:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Friday","district":"E5","hour":"23","incident_number":"I162096472","lat":"42.27145702","location":{"type":"Point","coordinates":[-71.162863,42.271457]},"long":"-71.16286273","month":"11","occurred_on_date":"2016-11-25T23:47:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"716","street":"BAKER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Saturday","district":"A1","hour":"10","incident_number":"I162079859","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"8","occurred_on_date":"2016-08-20T10:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162104673","lat":"42.30569111","location":{"type":"Point","coordinates":[-71.061648,42.305691]},"long":"-71.06164783","month":"12","occurred_on_date":"2016-12-24T13:39:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"346","street":"ADAMS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"14","incident_number":"I162096605","lat":"42.29474312","location":{"type":"Point","coordinates":[-71.085038,42.294743]},"long":"-71.08503786","month":"11","occurred_on_date":"2016-11-26T14:00:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"441","street":"NIGHTINGALE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Saturday","district":"A1","hour":"12","incident_number":"I162096597","lat":"42.35873436","location":{"type":"Point","coordinates":[-71.057186,42.358734]},"long":"-71.05718635","month":"11","occurred_on_date":"2016-11-05T12:00:00.000","offense_code":"01106","offense_code_group":"Confidence Games","offense_description":"FRAUD - CREDIT CARD / ATM FRAUD","reporting_area":"92","street":"DEVONSHIRE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"12","incident_number":"I162096584","lat":"42.29057504","location":{"type":"Point","coordinates":[-71.071657,42.290575]},"long":"-71.07165726","month":"11","occurred_on_date":"2016-11-26T12:39:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"450","street":"WASHINGTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C6","hour":"13","incident_number":"I162096598","lat":"42.32502384","location":{"type":"Point","coordinates":[-71.059252,42.325024]},"long":"-71.0592516","month":"11","occurred_on_date":"2016-11-26T13:53:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"186","street":"BOSTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"16","incident_number":"I162096641","lat":"42.36012197","location":{"type":"Point","coordinates":[-71.132787,42.360122]},"long":"-71.13278652","month":"11","occurred_on_date":"2016-11-26T16:44:00.000","offense_code":"01806","offense_code_group":"Drug Violation","offense_description":"DRUGS - CLASS B TRAFFICKING OVER 18 GRAMS","reporting_area":"810","street":"BRENTWOOD ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"D4","hour":"16","incident_number":"I162096632","lat":"42.33331285","location":{"type":"Point","coordinates":[-71.073229,42.333313]},"long":"-71.07322932","month":"11","occurred_on_date":"2016-11-26T16:08:00.000","offense_code":"01847","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS C - INTENT TO MFR DIST DISP","reporting_area":"179","street":"MASSACHUSETTS AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Wednesday","district":"B2","hour":"17","incident_number":"I162096009","lat":"42.31598379","location":{"type":"Point","coordinates":[-71.073855,42.315984]},"long":"-71.07385464","month":"11","occurred_on_date":"2016-11-23T17:23:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"327","street":"SARGENT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"8","incident_number":"I162096524","lat":"42.31376943","location":{"type":"Point","coordinates":[-71.100846,42.313769]},"long":"-71.10084606","month":"11","occurred_on_date":"2016-11-26T08:06:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"575","street":"BOYLSTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Friday","district":"C11","hour":"23","incident_number":"I162096470","lat":"42.30506946","location":{"type":"Point","coordinates":[-71.076333,42.305069]},"long":"-71.07633253","month":"11","occurred_on_date":"2016-11-25T23:38:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"461","street":"GENEVA AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"10","incident_number":"I162096567","lat":"42.34176736","location":{"type":"Point","coordinates":[-71.066552,42.341767]},"long":"-71.06655238","month":"11","occurred_on_date":"2016-11-26T10:20:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"165","street":"HARRISON AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"22","incident_number":"I162096716","lat":"42.31495383","location":{"type":"Point","coordinates":[-71.114102,42.314954]},"long":"-71.11410163","month":"11","occurred_on_date":"2016-11-26T22:51:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"639","street":"CENTRE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"12","incident_number":"I162096584","lat":"42.29057504","location":{"type":"Point","coordinates":[-71.071657,42.290575]},"long":"-71.07165726","month":"11","occurred_on_date":"2016-11-26T12:39:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"450","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Friday","district":"D4","hour":"22","incident_number":"I162096477","lat":"42.349155","location":{"type":"Point","coordinates":[-71.093921,42.349155]},"long":"-71.09392109","month":"11","occurred_on_date":"2016-11-25T22:50:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"623","street":"COMMONWEALTH AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Friday","district":"B2","hour":"15","incident_number":"I162096360","lat":"42.31130246","location":{"type":"Point","coordinates":[-71.078241,42.311302]},"long":"-71.07824138","month":"11","occurred_on_date":"2016-11-25T15:48:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"328","street":"NORMANDY ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Monday","district":"B2","hour":"17","incident_number":"I162053098","location":{"type":"Point","coordinates":[0,0]},"month":"7","occurred_on_date":"2016-07-04T17:36:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Saturday","district":"C6","hour":"20","incident_number":"I162094835","lat":"42.33802658","location":{"type":"Point","coordinates":[-71.054929,42.338027]},"long":"-71.05492863","month":"11","occurred_on_date":"2016-11-19T20:00:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"936","street":"ORTON-MAROTTA WAY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"21","incident_number":"I162096443","lat":"42.29603943","location":{"type":"Point","coordinates":[-71.07717,42.296039]},"long":"-71.07717023","month":"11","occurred_on_date":"2016-11-25T21:44:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"446","street":"ATHELWOLD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Friday","district":"A1","hour":"10","incident_number":"I162045830","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"6","occurred_on_date":"2016-06-10T10:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"17","incident_number":"I162021522","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"3","occurred_on_date":"2016-03-19T17:52:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"19","incident_number":"I162096441","lat":"42.32893451","location":{"type":"Point","coordinates":[-71.079132,42.328935]},"long":"-71.0791325","month":"11","occurred_on_date":"2016-11-25T19:48:00.000","offense_code":"02907","offense_code_group":"Violations","offense_description":"VAL - OPERATING AFTER REV/SUSP.","reporting_area":"279","street":"DEARBORN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"16","incident_number":"I162096641","lat":"42.36012197","location":{"type":"Point","coordinates":[-71.132787,42.360122]},"long":"-71.13278652","month":"11","occurred_on_date":"2016-11-26T16:44:00.000","offense_code":"01810","offense_code_group":"Drug Violation","offense_description":"DRUGS - SALE / MANUFACTURING","reporting_area":"810","street":"BRENTWOOD ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Saturday","district":"A1","hour":"2","incident_number":"I162007461","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"1","occurred_on_date":"2016-01-23T02:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Friday","district":"A1","hour":"23","incident_number":"I162096467","lat":"42.35131763","location":{"type":"Point","coordinates":[-71.058384,42.351318]},"long":"-71.05838367","month":"11","occurred_on_date":"2016-11-25T23:55:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"115","street":"LINCOLN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"14","incident_number":"I162096606","lat":"42.37620267","location":{"type":"Point","coordinates":[-71.039799,42.376203]},"long":"-71.03979926","month":"11","occurred_on_date":"2016-11-26T14:02:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"26","street":"BORDER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Saturday","district":"E5","hour":"17","incident_number":"I162096650","lat":"42.2709644","location":{"type":"Point","coordinates":[-71.146251,42.270964]},"long":"-71.14625121","month":"11","occurred_on_date":"2016-11-26T17:08:00.000","offense_code":"01830","offense_code_group":"Drug Violation","offense_description":"DRUGS - SICK ASSIST - HEROIN","reporting_area":"706","street":"WASHINGTON ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Friday","district":"A1","hour":"11","incident_number":"I152063197","location":{"type":"Point","coordinates":[0,0]},"month":"7","occurred_on_date":"2015-07-31T11:43:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"111","street":"BOYLSTON ST","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Tuesday","district":"D4","hour":"13","incident_number":"I152076707","lat":"42.345691","location":{"type":"Point","coordinates":[-71.063365,42.345691]},"long":"-71.063365","month":"9","occurred_on_date":"2015-09-15T13:23:00.000","offense_code":"02907","offense_code_group":"Violations","offense_description":"VAL - OPERATING AFTER REV/SUSP.","reporting_area":"162","street":"HARRISON AVE","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"13","incident_number":"I162096587","lat":"42.34936718","location":{"type":"Point","coordinates":[-71.165542,42.349367]},"long":"-71.16554188","month":"11","occurred_on_date":"2016-11-26T13:23:00.000","offense_code":"03620","offense_code_group":"Other","offense_description":"REPORT AFFECTING OTHER DEPTS.","reporting_area":"752","street":"LANGLEY RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"17238","day_of_week":"Saturday","district":"A1","hour":"14","incident_number":"I162096684","lat":"42.3530074","location":{"type":"Point","coordinates":[-71.052893,42.353007]},"long":"-71.05289344","month":"11","occurred_on_date":"2016-11-26T14:08:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"114","street":"CONGRESS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"22","incident_number":"I162085343","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-17T22:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"7","incident_number":"I162096523","lat":"42.2874272","location":{"type":"Point","coordinates":[-71.078538,42.287427]},"long":"-71.07853773","month":"11","occurred_on_date":"2016-11-26T07:52:00.000","offense_code":"00540","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - FORCE","reporting_area":"435","street":"NORFOLK ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E18","hour":"17","incident_number":"I162096654","lat":"42.28534744","location":{"type":"Point","coordinates":[-71.110476,42.285347]},"long":"-71.11047633","month":"11","occurred_on_date":"2016-11-26T17:09:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Friday","district":"E18","hour":"13","incident_number":"I162039463","lat":"42.23421715","location":{"type":"Point","coordinates":[-71.133277,42.234217]},"long":"-71.13327736","month":"5","occurred_on_date":"2016-05-20T13:30:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"527","street":"HYDE PARK AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"12","incident_number":"I162096577","lat":"42.28986386","location":{"type":"Point","coordinates":[-71.071511,42.289864]},"long":"-71.07151054","month":"11","occurred_on_date":"2016-11-26T12:44:00.000","offense_code":"03805","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - POLICE VEHICLE","reporting_area":"436","street":"EPPING ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"B2","hour":"11","incident_number":"I162096568","lat":"42.31797163","location":{"type":"Point","coordinates":[-71.072345,42.317972]},"long":"-71.07234547","month":"11","occurred_on_date":"2016-11-26T11:47:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"260","street":"FOLSOM ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Friday","district":"A1","hour":"21","incident_number":"I162096452","lat":"42.35074197","location":{"type":"Point","coordinates":[-71.060061,42.350742]},"long":"-71.06006135","month":"11","occurred_on_date":"2016-11-25T21:49:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"116","street":"HUDSON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Tuesday","district":"A1","hour":"16","incident_number":"I162018277","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"3","occurred_on_date":"2016-03-08T16:43:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"02660","offense_code_group":"Other","offense_description":"OTHER OFFENSE","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"9","incident_number":"I162073564","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"9","occurred_on_date":"2016-09-09T09:35:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Tuesday","district":"A1","hour":"17","incident_number":"I152105634","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"12","occurred_on_date":"2015-12-22T17:18:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2015"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"19","incident_number":"I162085145","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-17T19:08:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"15","incident_number":"I162096363","lat":"42.35842684","location":{"type":"Point","coordinates":[-71.0689,42.358427]},"long":"-71.06889958","month":"11","occurred_on_date":"2016-11-25T15:48:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"70","street":"LOUISBURG SQ","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"16","incident_number":"I162096641","lat":"42.36012197","location":{"type":"Point","coordinates":[-71.132787,42.360122]},"long":"-71.13278652","month":"11","occurred_on_date":"2016-11-26T16:44:00.000","offense_code":"01849","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - COCAINE, ETC.","reporting_area":"810","street":"BRENTWOOD ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"2","incident_number":"I162096592","lat":"42.31865102","location":{"type":"Point","coordinates":[-71.081623,42.318651]},"long":"-71.08162344","month":"11","occurred_on_date":"2016-11-26T02:16:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"311","street":"WARREN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Monday","district":"A1","hour":"15","incident_number":"I162032120","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"4","occurred_on_date":"2016-04-25T15:21:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"C11","hour":"18","incident_number":"I162096671","lat":"42.30553202","location":{"type":"Point","coordinates":[-71.070312,42.305532]},"long":"-71.07031161","month":"11","occurred_on_date":"2016-11-26T18:58:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"336","street":"OLNEY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"15","incident_number":"I162104433","lat":"42.32824866","location":{"type":"Point","coordinates":[-71.09087,42.328249]},"long":"-71.09087012","month":"12","occurred_on_date":"2016-12-23T15:36:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"292","street":"LAMBERT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Friday","district":"D4","hour":"15","incident_number":"I162096478","lat":"42.3473098","location":{"type":"Point","coordinates":[-71.079152,42.34731]},"long":"-71.07915167","month":"11","occurred_on_date":"2016-11-25T15:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"146","street":"HUNTINGTON AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"14","incident_number":"I162096675","lat":"42.34495867","location":{"type":"Point","coordinates":[-71.070115,42.344959]},"long":"-71.07011466","month":"11","occurred_on_date":"2016-11-26T14:27:00.000","offense_code":"00616","offense_code_group":"Larceny","offense_description":"LARCENY THEFT OF BICYCLE","reporting_area":"152","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"A1","hour":"2","incident_number":"I162096489","lat":"42.35040583","location":{"type":"Point","coordinates":[-71.065125,42.350406]},"long":"-71.06512526","month":"11","occurred_on_date":"2016-11-26T02:26:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"122","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"18","incident_number":"I162096669","lat":"42.28944478","location":{"type":"Point","coordinates":[-71.065594,42.289445]},"long":"-71.06559395","month":"11","occurred_on_date":"2016-11-26T18:38:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"397","street":"WELLES AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"7","incident_number":"I162096523","lat":"42.2874272","location":{"type":"Point","coordinates":[-71.078538,42.287427]},"long":"-71.07853773","month":"11","occurred_on_date":"2016-11-26T07:52:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"435","street":"NORFOLK ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"7","incident_number":"I162096526","lat":"42.28098427","location":{"type":"Point","coordinates":[-71.085283,42.280984]},"long":"-71.08528267","month":"11","occurred_on_date":"2016-11-26T07:44:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"421","street":"MORTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Tuesday","district":"A1","hour":"23","incident_number":"I162044311","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"5","occurred_on_date":"2016-05-31T23:15:00.000","offense_code":"02632","offense_code_group":"Evading Fare","offense_description":"EVADING FARE","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"7","incident_number":"I162096529","lat":"42.33395125","location":{"type":"Point","coordinates":[-71.075389,42.333951]},"long":"-71.07538939","month":"11","occurred_on_date":"2016-11-26T07:56:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"270","street":"NORTHAMPTON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"B3","hour":"18","incident_number":"I152067634","location":{"type":"Point","coordinates":[0,0]},"month":"8","occurred_on_date":"2015-08-15T18:47:00.000","offense_code":"01849","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - COCAINE, ETC.","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"16","incident_number":"I162033020","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"4","occurred_on_date":"2016-04-28T16:45:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Friday","district":"C11","hour":"23","incident_number":"I162096473","lat":"42.29755533","location":{"type":"Point","coordinates":[-71.059709,42.297555]},"long":"-71.0597091","month":"11","occurred_on_date":"2016-11-25T23:46:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"355","street":"GIBSON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E18","hour":"11","incident_number":"I162096619","lat":"42.25940183","location":{"type":"Point","coordinates":[-71.117316,42.259402]},"long":"-71.1173157","month":"11","occurred_on_date":"2016-11-26T11:15:00.000","offense_code":"03001","offense_code_group":"Medical Assistance","offense_description":"DEATH INVESTIGATION","reporting_area":"494","street":"RIVER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"17","incident_number":"I162096655","lat":"42.28741228","location":{"type":"Point","coordinates":[-71.05794,42.287412]},"long":"-71.05793993","month":"11","occurred_on_date":"2016-11-26T17:14:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"919","street":"ASHMONT ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Saturday","district":"D4","hour":"10","incident_number":"I162011677","location":{"type":"Point","coordinates":[0,0]},"month":"2","occurred_on_date":"2016-02-13T10:16:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"20","incident_number":"I162096697","lat":"42.31959298","location":{"type":"Point","coordinates":[-71.062607,42.319593]},"long":"-71.062607","month":"11","occurred_on_date":"2016-11-26T20:46:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"240","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"14","incident_number":"I162096617","lat":"42.31860134","location":{"type":"Point","coordinates":[-71.084058,42.318601]},"long":"-71.08405792","month":"11","occurred_on_date":"2016-11-26T14:19:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"309","street":"MARTIN LUTHER KING JR BLV","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"21","incident_number":"I162096445","lat":"42.29603943","location":{"type":"Point","coordinates":[-71.07717,42.296039]},"long":"-71.07717023","month":"11","occurred_on_date":"2016-11-25T21:46:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"446","street":"ATHELWOLD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Friday","district":"D4","hour":"17","incident_number":"I162104626","lat":"42.34402604","location":{"type":"Point","coordinates":[-71.096155,42.344026]},"long":"-71.09615503","month":"12","occurred_on_date":"2016-12-23T17:00:00.000","offense_code":"00520","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - FORCE","reporting_area":"625","street":"PETERBOROUGH ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"14","incident_number":"I152102008","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"12","occurred_on_date":"2015-12-07T14:45:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2015"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Saturday","district":"A15","hour":"4","incident_number":"I162096509","lat":"42.38020475","location":{"type":"Point","coordinates":[-71.057414,42.380205]},"long":"-71.057414","month":"11","occurred_on_date":"2016-11-26T04:48:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"43","street":"OLD IRONSIDES WAY","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"C6","hour":"16","incident_number":"I162104449","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2016-12-23T16:11:00.000","offense_code":"00520","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - FORCE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9661","day_of_week":"Saturday","district":"A1","hour":"11","incident_number":"I162104616","lat":"42.36416781","location":{"type":"Point","coordinates":[-71.05407,42.364168]},"long":"-71.05407041","month":"12","occurred_on_date":"2016-12-24T11:12:00.000","offense_code":"00351","offense_code_group":"Robbery","offense_description":"ROBBERY - BANK","reporting_area":"88","street":"HANOVER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"19","incident_number":"I162061428","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"7","occurred_on_date":"2016-07-31T19:30:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"B2","hour":"12","incident_number":"I162096593","lat":"42.31956879","location":{"type":"Point","coordinates":[-71.077763,42.319569]},"long":"-71.07776264","month":"11","occurred_on_date":"2016-11-26T12:28:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"265","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"B2","hour":"22","incident_number":"I152050990","lat":"42.31398981","location":{"type":"Point","coordinates":[-71.075846,42.31399]},"long":"-71.07584635","month":"6","occurred_on_date":"2015-06-19T22:38:00.000","offense_code":"02403","offense_code_group":"Disorderly Conduct","offense_description":"DISTURBING THE PEACE","reporting_area":"325","street":"WAYLAND ST","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"13","incident_number":"I162058412","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"7","occurred_on_date":"2016-07-22T13:18:00.000","offense_code":"01503","offense_code_group":"Firearm Violations","offense_description":"WEAPON - OTHER - CARRYING / POSSESSING, ETC","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"00801","offense_code_group":"Simple Assault","offense_description":"ASSAULT - SIMPLE","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Wednesday","district":"B3","hour":"22","incident_number":"I162047544","location":{"type":"Point","coordinates":[0,0]},"month":"6","occurred_on_date":"2016-06-15T22:13:00.000","offense_code":"00735","offense_code_group":"Auto Theft Recovery","offense_description":"RECOVERED - MV RECOVERED IN BOSTON (STOLEN OUTSIDE BOSTON)","ucr_part":"Other","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Saturday","district":"A1","hour":"2","incident_number":"I162078092","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"9","occurred_on_date":"2016-09-24T02:03:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"10","incident_number":"I162096545","lat":"42.32133396","location":{"type":"Point","coordinates":[-71.075812,42.321334]},"long":"-71.07581186","month":"11","occurred_on_date":"2016-11-26T10:47:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"262","street":"WOODVILLE ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"B2","hour":"3","incident_number":"I152104557","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2015-12-19T03:54:00.000","offense_code":"03830","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PERSONAL INJURY","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Friday","district":"D4","hour":"22","incident_number":"I162104662","lat":"42.35095909","location":{"type":"Point","coordinates":[-71.074128,42.350959]},"long":"-71.0741278","month":"12","occurred_on_date":"2016-12-23T22:21:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"129","street":"BOYLSTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"B2","hour":"22","incident_number":"I152050990","lat":"42.31398981","location":{"type":"Point","coordinates":[-71.075846,42.31399]},"long":"-71.07584635","month":"6","occurred_on_date":"2015-06-19T22:38:00.000","offense_code":"01849","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - COCAINE, ETC.","reporting_area":"325","street":"WAYLAND ST","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162013038","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"2","occurred_on_date":"2016-02-18T17:55:00.000","offense_code":"00801","offense_code_group":"Simple Assault","offense_description":"ASSAULT - SIMPLE","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Thursday","district":"A7","hour":"23","incident_number":"I162096290","lat":"42.36772441","location":{"type":"Point","coordinates":[-71.037068,42.367724]},"long":"-71.03706813","month":"11","occurred_on_date":"2016-11-24T23:56:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"35","street":"SUMNER ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Saturday","district":"C6","hour":"10","incident_number":"I162096554","lat":"42.32720403","location":{"type":"Point","coordinates":[-71.053189,42.327204]},"long":"-71.05318949","month":"11","occurred_on_date":"2016-11-26T10:59:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"914","street":"GENERAL LAWRENCE J LOGAN","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"10","incident_number":"I162104644","lat":"42.340176","location":{"type":"Point","coordinates":[-71.082326,42.340176]},"long":"-71.0823265","month":"12","occurred_on_date":"2016-12-24T10:42:00.000","offense_code":"03007","offense_code_group":"Medical Assistance","offense_description":"SUDDEN DEATH","reporting_area":"284","street":"COLUMBUS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162096594","lat":"42.29380964","location":{"type":"Point","coordinates":[-71.070011,42.29381]},"long":"-71.07001148","month":"11","occurred_on_date":"2016-11-26T13:38:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"927","street":"MELVILLE AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"B3","hour":"18","incident_number":"I162093294","lat":"42.29542943","location":{"type":"Point","coordinates":[-71.076612,42.295429]},"long":"-71.07661172","month":"11","occurred_on_date":"2016-11-14T18:35:00.000","offense_code":"03811","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - INVOLVING BICYCLE - NO INJURY","reporting_area":"447","street":"SPENCER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"18","incident_number":"I162096494","lat":"42.3210436","location":{"type":"Point","coordinates":[-71.078659,42.321044]},"long":"-71.07865897","month":"11","occurred_on_date":"2016-11-25T18:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"265","street":"ALASKA ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Sunday","district":"E5","hour":"13","incident_number":"I162091224","lat":"42.28631799","location":{"type":"Point","coordinates":[-71.134077,42.286318]},"long":"-71.13407707","month":"11","occurred_on_date":"2016-11-06T13:30:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"679","street":"BELGRADE AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Friday","district":"C11","hour":"6","incident_number":"I162096561","lat":"42.29896518","location":{"type":"Point","coordinates":[-71.049442,42.298965]},"long":"-71.04944203","month":"11","occurred_on_date":"2016-11-18T06:29:00.000","offense_code":"00735","offense_code_group":"Auto Theft Recovery","offense_description":"RECOVERED - MV RECOVERED IN BOSTON (STOLEN OUTSIDE BOSTON)","reporting_area":"353","street":"WILLIAM T MORRISSEY BLVD","ucr_part":"Other","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E18","hour":"13","incident_number":"I162096601","lat":"42.28544884","location":{"type":"Point","coordinates":[-71.110559,42.285449]},"long":"-71.11055934","month":"11","occurred_on_date":"2016-11-26T13:15:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162096586","lat":"42.28986386","location":{"type":"Point","coordinates":[-71.071511,42.289864]},"long":"-71.07151054","month":"11","occurred_on_date":"2016-11-26T13:21:00.000","offense_code":"02907","offense_code_group":"Violations","offense_description":"VAL - OPERATING AFTER REV/SUSP.","reporting_area":"436","street":"EPPING ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"17236","day_of_week":"Saturday","district":"D4","hour":"13","incident_number":"I162096596","lat":"42.34862382","location":{"type":"Point","coordinates":[-71.082776,42.348624]},"long":"-71.08277637","month":"11","occurred_on_date":"2016-11-26T13:14:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"143","street":"BOYLSTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"4","incident_number":"I162096503","lat":"42.28823078","location":{"type":"Point","coordinates":[-71.076788,42.288231]},"long":"-71.07678834","month":"11","occurred_on_date":"2016-11-26T04:02:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"437","street":"NORFOLK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Tuesday","district":"E13","hour":"13","incident_number":"I162096573","lat":"42.32227567","location":{"type":"Point","coordinates":[-71.101508,42.322276]},"long":"-71.10150838","month":"11","occurred_on_date":"2016-11-22T13:00:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"579","street":"WISE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Saturday","district":"A1","hour":"14","incident_number":"I162104664","lat":"42.35648631","location":{"type":"Point","coordinates":[-71.059281,42.356486]},"long":"-71.05928145","month":"12","occurred_on_date":"2016-12-24T14:24:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"104","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Friday","district":"B3","hour":"12","incident_number":"I162096331","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-25T12:59:00.000","offense_code":"01815","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSSESSION","reporting_area":"321","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"17","incident_number":"I162021522","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"3","occurred_on_date":"2016-03-19T17:52:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"19","incident_number":"I162096441","lat":"42.32893451","location":{"type":"Point","coordinates":[-71.079132,42.328935]},"long":"-71.0791325","month":"11","occurred_on_date":"2016-11-25T19:48:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"279","street":"DEARBORN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"02401","offense_code_group":"Disorderly Conduct","offense_description":"AFFRAY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"20","incident_number":"I162096688","lat":"42.34600287","location":{"type":"Point","coordinates":[-71.143877,42.346003]},"long":"-71.14387725","month":"11","occurred_on_date":"2016-11-26T20:10:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"938","street":"FIDELIS WAY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"6","incident_number":"I162096515","lat":"42.32902926","location":{"type":"Point","coordinates":[-71.080003,42.329029]},"long":"-71.08000275","month":"11","occurred_on_date":"2016-11-26T06:54:45.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"279","street":"WHEATLEY WAY","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Sunday","district":"D4","hour":"18","incident_number":"I162019707","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-13T18:00:00.000","offense_code":"01810","offense_code_group":"Drug Violation","offense_description":"DRUGS - SALE / MANUFACTURING","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Monday","district":"A1","hour":"12","incident_number":"I162096625","lat":"42.34997256","location":{"type":"Point","coordinates":[-71.063488,42.349973]},"long":"-71.06348817","month":"11","occurred_on_date":"2016-11-21T12:00:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"123","street":"WASHINGTON ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Tuesday","district":"A1","hour":"13","incident_number":"I162038582","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-17T13:27:00.000","offense_code":"03305","offense_code_group":"Assembly or Gathering Violations","offense_description":"DEMONSTRATIONS/RIOT","street":"SCHOOL PROTEST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"B3","hour":"12","incident_number":"I162096331","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-25T12:59:00.000","offense_code":"01843","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - INTENT TO MFR DIST DISP","reporting_area":"321","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"12","incident_number":"I162096609","lat":"42.35358822","location":{"type":"Point","coordinates":[-71.126896,42.353588]},"long":"-71.12689571","month":"11","occurred_on_date":"2016-11-26T12:01:00.000","offense_code":"00520","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - FORCE","reporting_area":"799","street":"GARDNER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"B2","hour":"11","incident_number":"I162096693","lat":"42.31694244","location":{"type":"Point","coordinates":[-71.069912,42.316942]},"long":"-71.06991213","month":"11","occurred_on_date":"2016-11-25T11:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"259","street":"ALEXANDER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"5","incident_number":"I162096514","lat":"42.30812619","location":{"type":"Point","coordinates":[-71.07693,42.308126]},"long":"-71.07692974","month":"11","occurred_on_date":"2016-11-26T05:52:53.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"329","street":"DEVON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"17236","day_of_week":"Saturday","district":"D4","hour":"16","incident_number":"I162096634","lat":"42.34862382","location":{"type":"Point","coordinates":[-71.082776,42.348624]},"long":"-71.08277637","month":"11","occurred_on_date":"2016-11-26T16:06:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"143","street":"BOYLSTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Tuesday","district":"A1","hour":"22","incident_number":"I162007028","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-26T22:16:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E5","hour":"10","incident_number":"I162096571","lat":"42.29390375","location":{"type":"Point","coordinates":[-71.119496,42.293904]},"long":"-71.11949639","month":"11","occurred_on_date":"2016-11-26T10:45:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"564","street":"CLAXTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Saturday","district":"E5","hour":"12","incident_number":"I162096588","lat":"42.26932098","location":{"type":"Point","coordinates":[-71.172049,42.269321]},"long":"-71.17204938","month":"11","occurred_on_date":"2016-11-26T12:53:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"724","street":"VFW PKWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"10","incident_number":"I162096572","lat":"42.3434656","location":{"type":"Point","coordinates":[-71.072567,42.343466]},"long":"-71.07256747","month":"11","occurred_on_date":"2016-11-26T10:46:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"152","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Sunday","district":"B3","hour":"16","incident_number":"I162019669","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-13T16:03:00.000","offense_code":"02905","offense_code_group":"Violations","offense_description":"VAL - OPERATING WITHOUT LICENSE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"12","incident_number":"I162096583","lat":"42.31845986","location":{"type":"Point","coordinates":[-71.089329,42.31846]},"long":"-71.08932896","month":"11","occurred_on_date":"2016-11-26T12:38:00.000","offense_code":"01415","offense_code_group":"Vandalism","offense_description":"GRAFFITI","reporting_area":"308","street":"HAROLD ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"0","incident_number":"I162104555","lat":"42.34868917","location":{"type":"Point","coordinates":[-71.07258,42.348689]},"long":"-71.07257992","month":"12","occurred_on_date":"2016-12-24T00:56:00.000","offense_code":"01806","offense_code_group":"Drug Violation","offense_description":"DRUGS - CLASS B TRAFFICKING OVER 18 GRAMS","reporting_area":"128","street":"STANHOPE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"7","incident_number":"I162096522","lat":"42.30018979","location":{"type":"Point","coordinates":[-71.082443,42.30019]},"long":"-71.08244261","month":"11","occurred_on_date":"2016-11-26T07:21:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"456","street":"GLENWAY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"15","incident_number":"I162088068","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"10","occurred_on_date":"2016-10-27T15:53:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Saturday","district":"C6","hour":"18","incident_number":"I162096672","lat":"42.33731824","location":{"type":"Point","coordinates":[-71.053832,42.337318]},"long":"-71.0538321","month":"11","occurred_on_date":"2016-11-26T18:35:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"936","street":"ORTON-MAROTTA WAY","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Monday","district":"B2","hour":"10","incident_number":"I152080729","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2015-09-28T10:28:00.000","offense_code":"00615","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT OF MV PARTS & ACCESSORIES","ucr_part":"Part One","year":"2015"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"19","incident_number":"I162096682","lat":"42.29604546","location":{"type":"Point","coordinates":[-71.056355,42.296045]},"long":"-71.05635478","month":"11","occurred_on_date":"2016-11-26T19:30:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"355","street":"ADAMS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"18","incident_number":"I162096677","lat":"42.38423979","location":{"type":"Point","coordinates":[-71.000039,42.38424]},"long":"-71.00003921","month":"11","occurred_on_date":"2016-11-26T18:38:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"3","street":"SARATOGA ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Wednesday","district":"A1","hour":"1","incident_number":"I162083483","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-12T01:05:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Friday","district":"A1","hour":"10","incident_number":"I162045830","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"6","occurred_on_date":"2016-06-10T10:00:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Wednesday","district":"A1","hour":"16","incident_number":"I162036749","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"5","occurred_on_date":"2016-05-11T16:09:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"17","incident_number":"I162029840","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"4","occurred_on_date":"2016-04-17T17:28:00.000","offense_code":"03821","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - INVOLVING PEDESTRIAN - NO INJURY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"11","incident_number":"I162104618","lat":"42.30703332","location":{"type":"Point","coordinates":[-71.082266,42.307033]},"long":"-71.08226589","month":"12","occurred_on_date":"2016-12-24T11:03:00.000","offense_code":"00611","offense_code_group":"Larceny","offense_description":"LARCENY PICK-POCKET","reporting_area":"329","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Saturday","district":"A1","hour":"18","incident_number":"I162027559","location":{"type":"Point","coordinates":[0,0]},"month":"4","occurred_on_date":"2016-04-09T18:08:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Tuesday","district":"C6","hour":"22","incident_number":"I162096534","lat":"42.33638155","location":{"type":"Point","coordinates":[-71.042088,42.336382]},"long":"-71.04208842","month":"11","occurred_on_date":"2016-11-22T22:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"221","street":"E THIRD ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"16","incident_number":"I162084997","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-16T16:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"0","incident_number":"I162041980","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"5","occurred_on_date":"2016-05-29T00:13:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"11","incident_number":"I162096656","lat":"42.27615691","location":{"type":"Point","coordinates":[-71.095503,42.276157]},"long":"-71.09550303","month":"11","occurred_on_date":"2016-11-26T11:42:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"469","street":"TENNIS RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Friday","district":"E18","hour":"9","incident_number":"I162096496","lat":"42.26989589","location":{"type":"Point","coordinates":[-71.104136,42.269896]},"long":"-71.10413576","month":"11","occurred_on_date":"2016-11-25T09:00:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"479","street":"RUGBY RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"C11","hour":"2","incident_number":"I162104565","lat":"42.3021878","location":{"type":"Point","coordinates":[-71.07365,42.302188]},"long":"-71.07365004","month":"12","occurred_on_date":"2016-12-24T02:03:10.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"462","street":"BULLARD ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"B3","hour":"12","incident_number":"I162096331","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-25T12:59:00.000","offense_code":"01845","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS D","reporting_area":"321","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"12","incident_number":"I162096574","lat":"42.34356576","location":{"type":"Point","coordinates":[-71.077144,42.343566]},"long":"-71.07714359","month":"11","occurred_on_date":"2016-11-26T12:13:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"153","street":"WARREN AVE","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Wednesday","district":"B2","hour":"13","incident_number":"I162038794","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-18T13:57:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"278","street":"ALBANY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"10","incident_number":"I162096559","lat":"42.34441274","location":{"type":"Point","coordinates":[-71.077382,42.344413]},"long":"-71.07738165","month":"11","occurred_on_date":"2016-11-26T10:23:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"149","street":"HOLYOKE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"12","incident_number":"I162104628","lat":"42.37421104","location":{"type":"Point","coordinates":[-71.039185,42.374211]},"long":"-71.03918485","month":"12","occurred_on_date":"2016-12-24T12:05:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"28","street":"CENTRAL SQ","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"14","incident_number":"I162096621","lat":"42.31959298","location":{"type":"Point","coordinates":[-71.062607,42.319593]},"long":"-71.062607","month":"11","occurred_on_date":"2016-11-26T14:52:00.000","offense_code":"01846","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS E","reporting_area":"240","street":"COLUMBIA RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Friday","district":"B2","hour":"23","incident_number":"I162104554","lat":"42.30942246","location":{"type":"Point","coordinates":[-71.085308,42.309422]},"long":"-71.08530769","month":"12","occurred_on_date":"2016-12-23T23:50:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"320","street":"CHENEY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"B2","hour":"22","incident_number":"I152050990","lat":"42.31398981","location":{"type":"Point","coordinates":[-71.075846,42.31399]},"long":"-71.07584635","month":"6","occurred_on_date":"2015-06-19T22:38:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"325","street":"WAYLAND ST","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Friday","district":"A1","hour":"20","incident_number":"I162079361","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"9","occurred_on_date":"2016-09-23T20:30:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"15","incident_number":"I162088068","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"10","occurred_on_date":"2016-10-27T15:53:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Friday","district":"A1","hour":"22","incident_number":"I162096493","lat":"42.35902548","location":{"type":"Point","coordinates":[-71.05568,42.359025]},"long":"-71.05567996","month":"11","occurred_on_date":"2016-11-25T22:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"100","street":"STATE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Thursday","district":"E13","hour":"17","incident_number":"I162096169","lat":"42.30227136","location":{"type":"Point","coordinates":[-71.132229,42.302271]},"long":"-71.13222925","month":"11","occurred_on_date":"2016-11-24T17:53:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"656","street":"MALCOLM RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"A1","hour":"16","incident_number":"I162104671","lat":"42.35157221","location":{"type":"Point","coordinates":[-71.063539,42.351572]},"long":"-71.06353927","month":"12","occurred_on_date":"2016-12-24T16:32:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"117","street":"LAGRANGE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"14","incident_number":"I162096607","lat":"42.29703368","location":{"type":"Point","coordinates":[-71.068607,42.297034]},"long":"-71.06860662","month":"11","occurred_on_date":"2016-11-26T14:26:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"358","street":"LARCHMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"10","incident_number":"I162096543","lat":"42.30358612","location":{"type":"Point","coordinates":[-71.064371,42.303586]},"long":"-71.06437082","month":"11","occurred_on_date":"2016-11-26T10:42:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"345","street":"DRAPER ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Friday","district":"A1","hour":"9","incident_number":"I162023095","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-25T09:44:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"9","incident_number":"I162096548","lat":"42.31275031","location":{"type":"Point","coordinates":[-71.093887,42.31275]},"long":"-71.09388736","month":"11","occurred_on_date":"2016-11-26T09:48:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"316","street":"SEAVER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"17","incident_number":"I162096659","lat":"42.33739","location":{"type":"Point","coordinates":[-71.078,42.33739]},"long":"-71.078","month":"11","occurred_on_date":"2016-11-26T17:50:00.000","offense_code":"02900","offense_code_group":"Other","offense_description":"VAL - VIOLATION OF AUTO LAW - OTHER","reporting_area":"156","street":"MASSACHUSETTS AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"7","incident_number":"I162096520","lat":"42.35437505","location":{"type":"Point","coordinates":[-71.142102,42.354375]},"long":"-71.14210244","month":"11","occurred_on_date":"2016-11-26T07:35:00.000","offense_code":"00562","offense_code_group":"Other Burglary","offense_description":"BURGLARY - OTHER - NO FORCE","reporting_area":"782","street":"N BEACON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Saturday","district":"A1","hour":"15","incident_number":"I162096649","lat":"42.36020464","location":{"type":"Point","coordinates":[-71.056208,42.360205]},"long":"-71.05620816","month":"11","occurred_on_date":"2016-11-26T15:35:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"93","street":"FANEUIL HALL SQ","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Wednesday","district":"B2","hour":"15","incident_number":"I162101896","lat":"42.33041863","location":{"type":"Point","coordinates":[-71.082501,42.330419]},"long":"-71.0825013","month":"12","occurred_on_date":"2016-12-14T15:40:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"280","street":"PALMER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"11","incident_number":"I162050528","lat":"42.31245","location":{"type":"Point","coordinates":[-71.04639,42.31245]},"long":"-71.04639","month":"6","occurred_on_date":"2016-06-25T11:45:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"250","street":"OLD COLONY TER","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"22","incident_number":"I162030174","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"4","occurred_on_date":"2016-04-18T22:37:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"1","incident_number":"I162096488","lat":"42.30021684","location":{"type":"Point","coordinates":[-71.080979,42.300217]},"long":"-71.0809794","month":"11","occurred_on_date":"2016-11-26T01:45:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"456","street":"HARLEM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Sunday","district":"A1","hour":"23","incident_number":"I162050902","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"6","occurred_on_date":"2016-06-26T23:11:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"15","incident_number":"I162096627","lat":"42.28944478","location":{"type":"Point","coordinates":[-71.065594,42.289445]},"long":"-71.06559395","month":"11","occurred_on_date":"2016-11-26T15:30:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"397","street":"WELLES AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"16","incident_number":"I162096648","lat":"42.28453957","location":{"type":"Point","coordinates":[-71.089737,42.28454]},"long":"-71.08973718","month":"11","occurred_on_date":"2016-11-26T16:41:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"430","street":"FRONTENAC ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"22","incident_number":"I162104739","lat":"42.35256908","location":{"type":"Point","coordinates":[-71.079788,42.352569]},"long":"-71.07978844","month":"12","occurred_on_date":"2016-12-24T22:27:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"135","street":"MARLBOROUGH ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E18","hour":"18","incident_number":"I162096666","lat":"42.26693203","location":{"type":"Point","coordinates":[-71.111384,42.266932]},"long":"-71.11138401","month":"11","occurred_on_date":"2016-11-26T18:49:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"489","street":"WOOD AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Saturday","district":"D4","hour":"13","incident_number":"I162096604","lat":"42.34598862","location":{"type":"Point","coordinates":[-71.104776,42.345989]},"long":"-71.1047765","month":"11","occurred_on_date":"2016-11-26T13:39:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"629","street":"PARK DR","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Friday","district":"A1","hour":"11","incident_number":"I162071486","lat":"42.35648631","location":{"type":"Point","coordinates":[-71.059281,42.356486]},"long":"-71.05928145","month":"9","occurred_on_date":"2016-09-02T11:25:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"104","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Monday","district":"A1","hour":"15","incident_number":"I162024049","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"3","occurred_on_date":"2016-03-28T15:52:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Tuesday","district":"A1","hour":"14","incident_number":"I162083351","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"10","occurred_on_date":"2016-10-11T14:50:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"18","incident_number":"I162050327","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"6","occurred_on_date":"2016-06-24T18:41:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"8","incident_number":"I162096531","lat":"42.29057504","location":{"type":"Point","coordinates":[-71.071657,42.290575]},"long":"-71.07165726","month":"11","occurred_on_date":"2016-11-26T08:18:00.000","offense_code":"00540","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - FORCE","reporting_area":"450","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Friday","district":"A1","hour":"0","incident_number":"I162064993","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"8","occurred_on_date":"2016-08-12T00:45:00.000","offense_code":"00616","offense_code_group":"Larceny","offense_description":"LARCENY THEFT OF BICYCLE","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"14","incident_number":"I162104665","lat":"42.32221645","location":{"type":"Point","coordinates":[-71.082067,42.322216]},"long":"-71.08206723","month":"12","occurred_on_date":"2016-12-24T14:44:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"296","street":"WARREN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"B2","hour":"22","incident_number":"I152050990","lat":"42.31398981","location":{"type":"Point","coordinates":[-71.075846,42.31399]},"long":"-71.07584635","month":"6","occurred_on_date":"2015-06-19T22:38:00.000","offense_code":"01703","offense_code_group":"Indecent Assault","offense_description":"INDECENT EXPOSURE / LEWD AND LASCIVIOUS","reporting_area":"325","street":"WAYLAND ST","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Wednesday","district":"A1","hour":"19","incident_number":"I162030752","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"4","occurred_on_date":"2016-04-20T19:44:00.000","offense_code":"01501","offense_code_group":"Firearm Violations","offense_description":"WEAPON - FIREARM - CARRYING / POSSESSING, ETC","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Monday","district":"A1","hour":"12","incident_number":"I162008577","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"2","occurred_on_date":"2016-02-01T12:38:00.000","offense_code":"00801","offense_code_group":"Simple Assault","offense_description":"ASSAULT - SIMPLE","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162013038","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"2","occurred_on_date":"2016-02-18T17:55:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Friday","district":"A1","hour":"0","incident_number":"I162058370","lat":"42.36183857","location":{"type":"Point","coordinates":[-71.059765,42.361839]},"long":"-71.05976489","month":"7","occurred_on_date":"2016-07-22T00:01:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"77","street":"NEW SUDBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Thursday","district":"B2","hour":"20","incident_number":"I162096177","lat":"42.31836105","location":{"type":"Point","coordinates":[-71.071063,42.318361]},"long":"-71.07106326","month":"11","occurred_on_date":"2016-11-24T20:20:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"260","street":"WOODFORD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"10","incident_number":"I162096668","lat":"42.28567647","location":{"type":"Point","coordinates":[-71.080228,42.285676]},"long":"-71.08022781","month":"11","occurred_on_date":"2016-11-26T10:45:00.000","offense_code":"00520","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - FORCE","reporting_area":"434","street":"NORFOLK ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"B2","hour":"13","incident_number":"I162096600","lat":"42.31743922","location":{"type":"Point","coordinates":[-71.075478,42.317439]},"long":"-71.07547845","month":"11","occurred_on_date":"2016-11-26T13:28:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"324","street":"DANUBE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"20","incident_number":"I162073914","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"9","occurred_on_date":"2016-09-10T20:52:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Saturday","district":"E5","hour":"17","incident_number":"I162055187","location":{"type":"Point","coordinates":[0,0]},"month":"6","occurred_on_date":"2016-06-25T17:00:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"10","incident_number":"I162096558","lat":"42.34134946","location":{"type":"Point","coordinates":[-71.151228,42.341349]},"long":"-71.15122795","month":"11","occurred_on_date":"2016-11-26T10:19:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"775","street":"WALLINGFORD RD","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"16","incident_number":"I162096635","lat":"42.3353741","location":{"type":"Point","coordinates":[-71.078316,42.335374]},"long":"-71.0783156","month":"11","occurred_on_date":"2016-11-26T16:10:00.000","offense_code":"01849","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - COCAINE, ETC.","reporting_area":"271","street":"WASHINGTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"19","incident_number":"I162027242","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"4","occurred_on_date":"2016-04-07T19:00:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"21","incident_number":"I162104728","lat":"42.33992947","location":{"type":"Point","coordinates":[-71.078616,42.339929]},"long":"-71.07861608","month":"12","occurred_on_date":"2016-12-24T21:26:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"156","street":"WORCESTER ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Wednesday","district":"A1","hour":"10","incident_number":"I162081515","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"10","occurred_on_date":"2016-10-05T10:40:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"10","incident_number":"I162096549","lat":"42.31224327","location":{"type":"Point","coordinates":[-71.075499,42.312243]},"long":"-71.07549901","month":"11","occurred_on_date":"2016-11-26T10:22:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"326","street":"FAYSTON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"C6","hour":"22","incident_number":"I162096461","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-25T22:44:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"10","incident_number":"I162104606","lat":"42.3353741","location":{"type":"Point","coordinates":[-71.078316,42.335374]},"long":"-71.0783156","month":"12","occurred_on_date":"2016-12-24T10:07:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"271","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"B2","hour":"9","incident_number":"I162096623","lat":"42.31736234","location":{"type":"Point","coordinates":[-71.077246,42.317362]},"long":"-71.07724596","month":"11","occurred_on_date":"2016-11-25T09:45:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"324","street":"INGLESIDE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Monday","district":"A1","hour":"22","incident_number":"I162053157","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"7","occurred_on_date":"2016-07-04T22:24:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Sunday","district":"A1","hour":"17","incident_number":"I162086939","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"10","occurred_on_date":"2016-10-23T17:49:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"0","incident_number":"I162104555","lat":"42.34868917","location":{"type":"Point","coordinates":[-71.07258,42.348689]},"long":"-71.07257992","month":"12","occurred_on_date":"2016-12-24T00:56:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"128","street":"STANHOPE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"14","incident_number":"I162096599","lat":"42.35842684","location":{"type":"Point","coordinates":[-71.0689,42.358427]},"long":"-71.06889958","month":"11","occurred_on_date":"2016-11-26T14:08:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"70","street":"LOUISBURG SQ","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"E18","hour":"10","incident_number":"I162096544","lat":"42.26989589","location":{"type":"Point","coordinates":[-71.104136,42.269896]},"long":"-71.10413576","month":"11","occurred_on_date":"2016-11-26T10:17:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"479","street":"RUGBY RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"17","incident_number":"I162096664","lat":"42.28265604","location":{"type":"Point","coordinates":[-71.073745,42.282656]},"long":"-71.07374541","month":"11","occurred_on_date":"2016-11-26T17:28:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"417","street":"STOCKTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"18","incident_number":"I162096665","lat":"42.36815918","location":{"type":"Point","coordinates":[-71.034385,42.368159]},"long":"-71.03438535","month":"11","occurred_on_date":"2016-11-26T18:10:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"32","street":"MAVERICK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"16","incident_number":"I162096575","lat":"42.28344144","location":{"type":"Point","coordinates":[-71.083317,42.283441]},"long":"-71.08331661","month":"11","occurred_on_date":"2016-11-25T16:30:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"433","street":"NELSON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Friday","district":"D14","hour":"19","incident_number":"I162096589","lat":"42.35390015","location":{"type":"Point","coordinates":[-71.162959,42.3539]},"long":"-71.16295943","month":"11","occurred_on_date":"2016-11-25T19:30:00.000","offense_code":"00522","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - NO FORCE","reporting_area":"765","street":"BROOKS ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"20","incident_number":"I162096692","lat":"42.35141082","location":{"type":"Point","coordinates":[-71.079209,42.351411]},"long":"-71.07920855","month":"11","occurred_on_date":"2016-11-26T20:18:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"137","street":"COMMONWEALTH AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"13","incident_number":"I162096624","lat":"42.38165754","location":{"type":"Point","coordinates":[-71.03342,42.381658]},"long":"-71.03341997","month":"11","occurred_on_date":"2016-11-26T13:39:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"25","street":"PUTNAM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"8","incident_number":"I162096525","lat":"42.2938387","location":{"type":"Point","coordinates":[-71.062025,42.293839]},"long":"-71.06202501","month":"11","occurred_on_date":"2016-11-26T08:32:00.000","offense_code":"00311","offense_code_group":"Robbery","offense_description":"ROBBERY - COMMERCIAL","reporting_area":"363","street":"DORCHESTER AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"16","incident_number":"I162096642","lat":"42.35560329","location":{"type":"Point","coordinates":[-71.146922,42.355603]},"long":"-71.14692214","month":"11","occurred_on_date":"2016-11-26T16:45:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"780","street":"N BEACON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Saturday","district":"A1","hour":"18","incident_number":"I162095330","lat":"42.35879709","location":{"type":"Point","coordinates":[-71.070726,42.358797]},"long":"-71.07072635","month":"11","occurred_on_date":"2016-11-19T18:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"66","street":"CHARLES ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Saturday","district":"A1","hour":"19","incident_number":"I162096680","lat":"42.35420018","location":{"type":"Point","coordinates":[-71.061852,42.3542]},"long":"-71.06185184","month":"11","occurred_on_date":"2016-11-26T19:23:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"111","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Thursday","district":"A1","hour":"17","incident_number":"I162001871","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"1","occurred_on_date":"2016-01-07T17:14:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"C6","hour":"8","incident_number":"I162096547","lat":"42.33152148","location":{"type":"Point","coordinates":[-71.070853,42.331521]},"long":"-71.07085307","month":"11","occurred_on_date":"2016-11-26T08:03:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"177","street":"MASSACHUSETTS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Wednesday","district":"A1","hour":"12","incident_number":"I162055705","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"7","occurred_on_date":"2016-07-13T12:19:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"13","incident_number":"I162096624","lat":"42.38165754","location":{"type":"Point","coordinates":[-71.03342,42.381658]},"long":"-71.03341997","month":"11","occurred_on_date":"2016-11-26T13:39:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"25","street":"PUTNAM ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Friday","district":"A1","hour":"11","incident_number":"I162056267","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"7","occurred_on_date":"2016-07-15T11:02:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Tuesday","district":"A1","hour":"0","incident_number":"I162085483","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"10","occurred_on_date":"2016-10-18T00:00:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Wednesday","district":"A1","hour":"19","incident_number":"I162030752","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"4","occurred_on_date":"2016-04-20T19:44:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"A1","hour":"2","incident_number":"I162096491","lat":"42.35165733","location":{"type":"Point","coordinates":[-71.064257,42.351657]},"long":"-71.06425694","month":"11","occurred_on_date":"2016-11-26T02:05:00.000","offense_code":"02900","offense_code_group":"Other","offense_description":"VAL - VIOLATION OF AUTO LAW - OTHER","reporting_area":"117","street":"LAGRANGE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Tuesday","district":"A1","hour":"15","incident_number":"I162022292","lat":"42.35637531","location":{"type":"Point","coordinates":[-71.062135,42.356375]},"long":"-71.06213513","month":"3","occurred_on_date":"2016-03-22T15:52:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"102","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"19","incident_number":"I162104704","lat":"42.31966035","location":{"type":"Point","coordinates":[-71.089469,42.31966]},"long":"-71.08946896","month":"12","occurred_on_date":"2016-12-24T19:05:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"308","street":"WALNUT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"17","incident_number":"I162096658","lat":"42.31834717","location":{"type":"Point","coordinates":[-71.054642,42.318347]},"long":"-71.05464192","month":"11","occurred_on_date":"2016-11-26T17:41:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"245","street":"RAVEN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E18","hour":"1","incident_number":"I162104560","lat":"42.27170454","location":{"type":"Point","coordinates":[-71.130799,42.271705]},"long":"-71.1307987","month":"12","occurred_on_date":"2016-12-24T01:48:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"548","street":"BATEMAN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"B2","hour":"19","incident_number":"I162096683","lat":"42.31797163","location":{"type":"Point","coordinates":[-71.072345,42.317972]},"long":"-71.07234547","month":"11","occurred_on_date":"2016-11-26T19:30:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"260","street":"FOLSOM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Wednesday","district":"B2","hour":"13","incident_number":"I162096336","lat":"42.33280302","location":{"type":"Point","coordinates":[-71.096389,42.332803]},"long":"-71.0963892","month":"11","occurred_on_date":"2016-11-23T13:39:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"588","street":"PARKER ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Tuesday","district":"B2","hour":"0","incident_number":"I162020134","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-15T00:00:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"165","street":"HARRISON AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"16","incident_number":"I162096486","lat":"42.29406247","location":{"type":"Point","coordinates":[-71.090046,42.294062]},"long":"-71.09004553","month":"11","occurred_on_date":"2016-11-25T16:00:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"463","street":"WILBERT RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Wednesday","district":"C11","hour":"18","incident_number":"I162095997","lat":"42.29004971","location":{"type":"Point","coordinates":[-71.070216,42.29005]},"long":"-71.07021576","month":"11","occurred_on_date":"2016-11-23T18:30:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"397","street":"TALBOT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"8","incident_number":"I162096530","lat":"42.35335717","location":{"type":"Point","coordinates":[-71.080177,42.353357]},"long":"-71.08017703","month":"11","occurred_on_date":"2016-11-26T08:13:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"135","street":"BEACON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Friday","district":"C11","hour":"23","incident_number":"I162104551","lat":"42.28678712","location":{"type":"Point","coordinates":[-71.044917,42.286787]},"long":"-71.0449173","month":"12","occurred_on_date":"2016-12-23T23:10:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"381","street":"NEPONSET AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C6","hour":"1","incident_number":"I162104557","lat":"42.32692112","location":{"type":"Point","coordinates":[-71.058419,42.326921]},"long":"-71.05841861","month":"12","occurred_on_date":"2016-12-24T01:15:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"186","street":"BOSTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"9","incident_number":"I162104601","lat":"42.33936768","location":{"type":"Point","coordinates":[-71.070355,42.339368]},"long":"-71.07035467","month":"12","occurred_on_date":"2016-12-24T09:51:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"905","street":"HARRISON ARCHWAYS","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E18","hour":"9","incident_number":"I162104605","lat":"42.279267","location":{"type":"Point","coordinates":[-71.119002,42.279267]},"long":"-71.11900247","month":"12","occurred_on_date":"2016-12-24T09:27:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"501","street":"HYDE PARK AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Friday","district":"D4","hour":"14","incident_number":"I162104417","lat":"42.35118005","location":{"type":"Point","coordinates":[-71.076666,42.35118]},"long":"-71.07666607","month":"12","occurred_on_date":"2016-12-23T14:40:00.000","offense_code":"01304","offense_code_group":"Recovered Stolen Property","offense_description":"PROPERTY - STOLEN THEN RECOVERED","reporting_area":"133","street":"NEWBURY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"14","incident_number":"I162104663","lat":"42.32555182","location":{"type":"Point","coordinates":[-71.087974,42.325552]},"long":"-71.08797386","month":"12","occurred_on_date":"2016-12-24T14:43:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"293","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Saturday","district":"E5","hour":"9","incident_number":"I162104622","lat":"42.29343003","location":{"type":"Point","coordinates":[-71.157022,42.29343]},"long":"-71.15702154","month":"12","occurred_on_date":"2016-12-24T09:45:00.000","offense_code":"03007","offense_code_group":"Medical Assistance","offense_description":"SUDDEN DEATH","reporting_area":"693","street":"WILLOW ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"14","incident_number":"I162104661","lat":"42.35147336","location":{"type":"Point","coordinates":[-71.0756,42.351473]},"long":"-71.07560042","month":"12","occurred_on_date":"2016-12-24T14:41:00.000","offense_code":"03207","offense_code_group":"Property Found","offense_description":"PROPERTY - FOUND","reporting_area":"133","street":"CLARENDON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"10","incident_number":"I162104613","lat":"42.3096093","location":{"type":"Point","coordinates":[-71.11081,42.309609]},"long":"-71.11080994","month":"12","occurred_on_date":"2016-12-24T10:57:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"647","street":"ELM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"17","incident_number":"I162104692","lat":"42.29941062","location":{"type":"Point","coordinates":[-71.115175,42.299411]},"long":"-71.11517471","month":"12","occurred_on_date":"2016-12-24T17:42:00.000","offense_code":"03802","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PROPERTY �DAMAGE","reporting_area":"652","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"12","incident_number":"I162104640","lat":"42.34425779","location":{"type":"Point","coordinates":[-71.143836,42.344258]},"long":"-71.14383621","month":"12","occurred_on_date":"2016-12-24T12:30:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"924","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"0","incident_number":"I162104549","lat":"42.28678712","location":{"type":"Point","coordinates":[-71.044917,42.286787]},"long":"-71.0449173","month":"12","occurred_on_date":"2016-12-24T00:02:00.000","offense_code":"03111","offense_code_group":"License Violation","offense_description":"LICENSE PREMISE VIOLATION","reporting_area":"381","street":"NEPONSET AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9661","day_of_week":"Sunday","district":"A1","hour":"2","incident_number":"I162096754","lat":"42.36418457","location":{"type":"Point","coordinates":[-71.053677,42.364185]},"long":"-71.05367662","month":"11","occurred_on_date":"2016-11-27T02:11:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"88","street":"PRINCE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"22","incident_number":"I162096947","lat":"42.28944478","location":{"type":"Point","coordinates":[-71.065594,42.289445]},"long":"-71.06559395","month":"11","occurred_on_date":"2016-11-27T22:28:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"397","street":"WELLES AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"C11","hour":"18","incident_number":"I162096704","lat":"42.30238445","location":{"type":"Point","coordinates":[-71.07239,42.302384]},"long":"-71.07238956","month":"11","occurred_on_date":"2016-11-26T18:37:00.000","offense_code":"03007","offense_code_group":"Medical Assistance","offense_description":"SUDDEN DEATH","reporting_area":"462","street":"BULLARD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Friday","district":"A1","hour":"13","incident_number":"I162104592","lat":"42.35218278","location":{"type":"Point","coordinates":[-71.055679,42.352183]},"long":"-71.0556788","month":"12","occurred_on_date":"2016-12-23T13:45:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","reporting_area":"173","street":"ATLANTIC AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E5","hour":"0","incident_number":"I162104550","lat":"42.29398908","location":{"type":"Point","coordinates":[-71.120094,42.293989]},"long":"-71.12009356","month":"12","occurred_on_date":"2016-12-24T00:17:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"564","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"11","incident_number":"I162104619","lat":"42.37081805","location":{"type":"Point","coordinates":[-71.039291,42.370818]},"long":"-71.03929078","month":"12","occurred_on_date":"2016-12-24T11:39:00.000","offense_code":"03008","offense_code_group":"Medical Assistance","offense_description":"SUICIDE / SUICIDE ATTEMPT","reporting_area":"28","street":"PARIS ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Wednesday","district":"B3","hour":"12","incident_number":"I162022555","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-23T12:45:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"19","incident_number":"I162096921","lat":"42.29881968","location":{"type":"Point","coordinates":[-71.065701,42.29882]},"long":"-71.06570084","month":"11","occurred_on_date":"2016-11-27T19:54:00.000","offense_code":"02403","offense_code_group":"Disorderly Conduct","offense_description":"DISTURBING THE PEACE","reporting_area":"358","street":"WALDECK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"13","incident_number":"I162096842","lat":"42.2915708","location":{"type":"Point","coordinates":[-71.113731,42.291571]},"long":"-71.11373122","month":"11","occurred_on_date":"2016-11-27T13:40:00.000","offense_code":"03001","offense_code_group":"Medical Assistance","offense_description":"DEATH INVESTIGATION","reporting_area":"506","street":"EASTLAND RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"21","incident_number":"I162096717","lat":"42.33001318","location":{"type":"Point","coordinates":[-71.091179,42.330013]},"long":"-71.09117863","month":"11","occurred_on_date":"2016-11-26T21:21:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"292","street":"JOHN ELIOT SQ","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Tuesday","district":"A1","hour":"17","incident_number":"I162095700","lat":"42.35176856","location":{"type":"Point","coordinates":[-71.067812,42.351769]},"long":"-71.06781157","month":"11","occurred_on_date":"2016-11-22T17:40:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"118","street":"PARK PLZ","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Sunday","district":"D14","hour":"2","incident_number":"I162096739","lat":"42.35486542","location":{"type":"Point","coordinates":[-71.132593,42.354865]},"long":"-71.13259322","month":"11","occurred_on_date":"2016-11-27T02:06:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"801","street":"HARVARD AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"22","incident_number":"I162096946","lat":"42.28353206","location":{"type":"Point","coordinates":[-71.058422,42.283532]},"long":"-71.05842191","month":"11","occurred_on_date":"2016-11-27T22:45:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"391","street":"MINOT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"15","incident_number":"I162096868","lat":"42.28028554","location":{"type":"Point","coordinates":[-71.068342,42.280286]},"long":"-71.06834156","month":"11","occurred_on_date":"2016-11-27T15:06:00.000","offense_code":"02006","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W ARREST","reporting_area":"403","street":"ALICIA RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Wednesday","district":"D4","hour":"0","incident_number":"I162096907","lat":"42.34186765","location":{"type":"Point","coordinates":[-71.072722,42.341868]},"long":"-71.07272215","month":"11","occurred_on_date":"2016-11-16T00:00:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"158","street":"W DEDHAM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"15","incident_number":"I162096858","lat":"42.30999157","location":{"type":"Point","coordinates":[-71.100484,42.309992]},"long":"-71.10048419","month":"11","occurred_on_date":"2016-11-27T15:07:00.000","offense_code":"01102","offense_code_group":"Fraud","offense_description":"FRAUD - FALSE PRETENSE / SCHEME","reporting_area":"571","street":"ROBESON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Sunday","district":"A7","hour":"10","incident_number":"I162096798","lat":"42.38969786","location":{"type":"Point","coordinates":[-71.009571,42.389698]},"long":"-71.00957095","month":"11","occurred_on_date":"2016-11-27T10:09:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"10","street":"LEYDEN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Friday","district":"B2","hour":"22","incident_number":"I162104537","lat":"42.3144484","location":{"type":"Point","coordinates":[-71.089934,42.314448]},"long":"-71.08993418","month":"12","occurred_on_date":"2016-12-23T22:51:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"314","street":"HOWLAND ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"19","incident_number":"I162096921","lat":"42.29881968","location":{"type":"Point","coordinates":[-71.065701,42.29882]},"long":"-71.06570084","month":"11","occurred_on_date":"2016-11-27T19:54:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"358","street":"WALDECK ST","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Tuesday","district":"A1","hour":"1","incident_number":"I162081115","location":{"type":"Point","coordinates":[0,0]},"month":"10","occurred_on_date":"2016-10-04T01:20:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Tuesday","district":"A7","hour":"20","incident_number":"I162099633","lat":"42.37679597","location":{"type":"Point","coordinates":[-71.037897,42.376796]},"long":"-71.03789722","month":"12","occurred_on_date":"2016-12-06T20:27:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"23","street":"PRINCETON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Sunday","district":"A15","hour":"11","incident_number":"I162096852","lat":"42.37341577","location":{"type":"Point","coordinates":[-71.065672,42.373416]},"long":"-71.06567171","month":"11","occurred_on_date":"2016-11-27T11:46:00.000","offense_code":"03007","offense_code_group":"Medical Assistance","offense_description":"SUDDEN DEATH","reporting_area":"59","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"E13","hour":"16","incident_number":"I162096890","lat":"42.3128606","location":{"type":"Point","coordinates":[-71.095728,42.312861]},"long":"-71.0957278","month":"11","occurred_on_date":"2016-11-27T16:28:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"572","street":"WALNUT AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Sunday","district":"D4","hour":"16","incident_number":"I162096891","lat":"42.3440235","location":{"type":"Point","coordinates":[-71.077549,42.344024]},"long":"-71.077549","month":"11","occurred_on_date":"2016-11-27T16:30:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"149","street":"COLUMBUS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Friday","district":"A1","hour":"1","incident_number":"I162096217","lat":"42.35079907","location":{"type":"Point","coordinates":[-71.065008,42.350799]},"long":"-71.06500775","month":"11","occurred_on_date":"2016-11-25T01:32:00.000","offense_code":"03111","offense_code_group":"License Violation","offense_description":"LICENSE PREMISE VIOLATION","reporting_area":"122","street":"TREMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"19","incident_number":"I162104712","lat":"42.30085931","location":{"type":"Point","coordinates":[-71.081288,42.300859]},"long":"-71.08128808","month":"12","occurred_on_date":"2016-12-24T19:34:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"456","street":"FOWLER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"15","incident_number":"I162096909","lat":"42.30338809","location":{"type":"Point","coordinates":[-71.056962,42.303388]},"long":"-71.05696206","month":"11","occurred_on_date":"2016-11-27T15:45:00.000","offense_code":"00520","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - FORCE","reporting_area":"350","street":"FENTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"9","incident_number":"I162096781","lat":"42.32257063","location":{"type":"Point","coordinates":[-71.076888,42.322571]},"long":"-71.07688775","month":"11","occurred_on_date":"2016-11-27T09:36:00.000","offense_code":"01001","offense_code_group":"Counterfeiting","offense_description":"FORGERY / COUNTERFEITING","reporting_area":"265","street":"BLUE HILL AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Saturday","district":"A1","hour":"1","incident_number":"I162104561","lat":"42.3649755","location":{"type":"Point","coordinates":[-71.062044,42.364976]},"long":"-71.062044","month":"12","occurred_on_date":"2016-12-24T01:36:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","reporting_area":"75","street":"CAUSEWAY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"18","incident_number":"I162096908","lat":"42.28431486","location":{"type":"Point","coordinates":[-71.074108,42.284315]},"long":"-71.07410838","month":"11","occurred_on_date":"2016-11-27T18:28:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"435","street":"ARMANDINE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"1","incident_number":"I162096741","lat":"42.3616972","location":{"type":"Point","coordinates":[-71.066859,42.361697]},"long":"-71.06685878","month":"11","occurred_on_date":"2016-11-27T01:58:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"65","street":"BLOSSOM ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"9","incident_number":"I162096786","lat":"42.34864389","location":{"type":"Point","coordinates":[-71.152846,42.348644]},"long":"-71.15284571","month":"11","occurred_on_date":"2016-11-27T09:39:58.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"771","street":"ACADEMY HILL RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Sunday","district":"A1","hour":"18","incident_number":"I162096913","lat":"42.35857047","location":{"type":"Point","coordinates":[-71.05272,42.35857]},"long":"-71.05271985","month":"11","occurred_on_date":"2016-11-27T18:13:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"101","street":"MILK ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"2","incident_number":"I162096740","lat":"42.29549707","location":{"type":"Point","coordinates":[-71.072114,42.295497]},"long":"-71.07211394","month":"11","occurred_on_date":"2016-11-27T02:00:00.000","offense_code":"03830","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PERSONAL INJURY","reporting_area":"451","street":"PARK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Sunday","district":"A1","hour":"15","incident_number":"I162096879","lat":"42.35020971","location":{"type":"Point","coordinates":[-71.059992,42.35021]},"long":"-71.05999187","month":"11","occurred_on_date":"2016-11-27T15:09:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"124","street":"KNEELAND ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Sunday","district":"A1","hour":"0","incident_number":"I162096728","lat":"42.35822966","location":{"type":"Point","coordinates":[-71.053622,42.35823]},"long":"-71.05362239","month":"11","occurred_on_date":"2016-11-27T00:45:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"101","street":"MILK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"11","incident_number":"I162096816","lat":"42.28329468","location":{"type":"Point","coordinates":[-71.088241,42.283295]},"long":"-71.08824065","month":"11","occurred_on_date":"2016-11-27T11:33:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"429","street":"WILDWOOD ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"16","incident_number":"I162096903","lat":"42.31922047","location":{"type":"Point","coordinates":[-71.083759,42.31922]},"long":"-71.08375913","month":"11","occurred_on_date":"2016-11-27T16:50:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"309","street":"CHARLAME ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"17237","day_of_week":"Wednesday","district":"A1","hour":"12","incident_number":"I162093782","lat":"42.36139413","location":{"type":"Point","coordinates":[-71.057687,42.361394]},"long":"-71.0576869","month":"11","occurred_on_date":"2016-11-16T12:13:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"77","street":"CONGRESS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"17","incident_number":"I162096917","lat":"42.27653731","location":{"type":"Point","coordinates":[-71.093395,42.276537]},"long":"-71.0933951","month":"11","occurred_on_date":"2016-11-27T17:41:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"427","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Monday","district":"E13","hour":"16","incident_number":"I162078846","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2016-09-26T16:14:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"1","incident_number":"I162096741","lat":"42.3616972","location":{"type":"Point","coordinates":[-71.066859,42.361697]},"long":"-71.06685878","month":"11","occurred_on_date":"2016-11-27T01:58:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"65","street":"BLOSSOM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Thursday","district":"B2","hour":"23","incident_number":"I162096225","lat":"42.31987076","location":{"type":"Point","coordinates":[-71.070963,42.319871]},"long":"-71.07096263","month":"11","occurred_on_date":"2016-11-24T23:54:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"183","street":"DUDLEY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"17","incident_number":"I162096900","lat":"42.2727729","location":{"type":"Point","coordinates":[-71.077252,42.272773]},"long":"-71.07725241","month":"11","occurred_on_date":"2016-11-27T17:39:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"409","street":"GROVELAND ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"1","incident_number":"I162104564","lat":"42.32117416","location":{"type":"Point","coordinates":[-71.109491,42.321174]},"long":"-71.10949062","month":"12","occurred_on_date":"2016-12-24T01:22:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"578","street":"CRANSTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Sunday","district":"A15","hour":"2","incident_number":"I162096748","lat":"42.37839864","location":{"type":"Point","coordinates":[-71.056053,42.378399]},"long":"-71.05605313","month":"11","occurred_on_date":"2016-11-27T02:30:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"900","street":"COREY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Monday","district":"D14","hour":"16","incident_number":"I162096824","lat":"42.36312194","location":{"type":"Point","coordinates":[-71.130563,42.363122]},"long":"-71.13056327","month":"8","occurred_on_date":"2016-08-29T16:00:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"812","street":"WESTERN AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"3","incident_number":"I162096765","lat":"42.35011229","location":{"type":"Point","coordinates":[-71.173397,42.350112]},"long":"-71.1733972","month":"11","occurred_on_date":"2016-11-27T03:39:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"754","street":"NONANTUM ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"8","incident_number":"I162096777","lat":"42.31193403","location":{"type":"Point","coordinates":[-71.114291,42.311934]},"long":"-71.1142909","month":"11","occurred_on_date":"2016-11-27T08:58:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"645","street":"CENTRE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"16","incident_number":"I162096486","lat":"42.29406247","location":{"type":"Point","coordinates":[-71.090046,42.294062]},"long":"-71.09004553","month":"11","occurred_on_date":"2016-11-25T16:00:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"463","street":"WILBERT RD","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Tuesday","district":"B3","hour":"17","incident_number":"I162026383","location":{"type":"Point","coordinates":[0,0]},"month":"4","occurred_on_date":"2016-04-05T17:37:00.000","offense_code":"02907","offense_code_group":"Violations","offense_description":"VAL - OPERATING AFTER REV/SUSP.","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"12","incident_number":"I162096841","lat":"42.34128751","location":{"type":"Point","coordinates":[-71.054679,42.341288]},"long":"-71.05467933","month":"11","occurred_on_date":"2016-11-27T12:45:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"200","street":"W BROADWAY","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Wednesday","district":"C6","hour":"12","incident_number":"I152074918","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2015-09-09T12:43:00.000","offense_code":"03625","offense_code_group":"Other","offense_description":"DANGEROUS OR HAZARDOUS CONDITION","street":"MELCHER ST","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"19","incident_number":"I162096923","lat":"42.31275031","location":{"type":"Point","coordinates":[-71.093887,42.31275]},"long":"-71.09388736","month":"11","occurred_on_date":"2016-11-27T19:29:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"316","street":"SEAVER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Sunday","district":"A1","hour":"10","incident_number":"I162096800","lat":"42.34997256","location":{"type":"Point","coordinates":[-71.063488,42.349973]},"long":"-71.06348817","month":"11","occurred_on_date":"2016-11-27T10:00:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"123","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"1","incident_number":"I162096761","lat":"42.33665636","location":{"type":"Point","coordinates":[-71.045385,42.336656]},"long":"-71.04538535","month":"11","occurred_on_date":"2016-11-27T01:16:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"213","street":"W THIRD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Friday","district":"D4","hour":"20","incident_number":"I162096845","lat":"42.3525717","location":{"type":"Point","coordinates":[-71.074916,42.352572]},"long":"-71.0749163","month":"11","occurred_on_date":"2016-11-25T20:00:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"133","street":"COMMONWEALTH AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Sunday","district":"A1","hour":"17","incident_number":"I162096893","lat":"42.35094628","location":{"type":"Point","coordinates":[-71.066856,42.350946]},"long":"-71.06685604","month":"11","occurred_on_date":"2016-11-27T17:16:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"118","street":"CHARLES ST S","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"8","incident_number":"I162096772","lat":"42.3125596","location":{"type":"Point","coordinates":[-71.111903,42.31256]},"long":"-71.11190322","month":"11","occurred_on_date":"2016-11-27T08:32:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"639","street":"GREEN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Wednesday","district":"A1","hour":"17","incident_number":"I162095989","lat":"42.36414881","location":{"type":"Point","coordinates":[-71.069207,42.364149]},"long":"-71.06920743","month":"11","occurred_on_date":"2016-11-23T17:36:00.000","offense_code":"03820","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT INVOLVING PEDESTRIAN - INJURY","reporting_area":"64","street":"BLOSSOM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Sunday","district":"A15","hour":"10","incident_number":"I162096812","lat":"42.37056285","location":{"type":"Point","coordinates":[-71.060773,42.370563]},"long":"-71.06077324","month":"11","occurred_on_date":"2016-11-27T10:16:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"39","street":"CHARLES RIVER AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"12","incident_number":"I162096837","lat":"42.33660237","location":{"type":"Point","coordinates":[-71.049357,42.336602]},"long":"-71.04935735","month":"11","occurred_on_date":"2016-11-27T12:27:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"214","street":"W FOURTH ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Sunday","district":"D4","hour":"10","incident_number":"I162096809","lat":"42.34493428","location":{"type":"Point","coordinates":[-71.063664,42.344934]},"long":"-71.06366374","month":"11","occurred_on_date":"2016-11-27T10:55:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"162","street":"HARRISON AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"9","incident_number":"I162096779","lat":"42.27732507","location":{"type":"Point","coordinates":[-71.094831,42.277325]},"long":"-71.09483139","month":"11","occurred_on_date":"2016-11-27T09:12:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"469","street":"MATTAPAN ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Monday","district":"B2","hour":"11","incident_number":"I152068083","location":{"type":"Point","coordinates":[0,0]},"month":"8","occurred_on_date":"2015-08-17T11:50:00.000","offense_code":"01849","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - COCAINE, ETC.","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"12","incident_number":"I162104632","lat":"42.27171028","location":{"type":"Point","coordinates":[-71.078161,42.27171]},"long":"-71.0781611","month":"12","occurred_on_date":"2016-12-24T12:18:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"409","street":"RIVER ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Sunday","district":"D4","hour":"7","incident_number":"I162096770","lat":"42.34243945","location":{"type":"Point","coordinates":[-71.084455,42.342439]},"long":"-71.0844553","month":"11","occurred_on_date":"2016-11-27T07:45:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"594","street":"MASSACHUSETTS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"B2","hour":"2","incident_number":"I162096742","lat":"42.31780762","location":{"type":"Point","coordinates":[-71.06685,42.317808]},"long":"-71.0668499","month":"11","occurred_on_date":"2016-11-27T02:00:00.000","offense_code":"01843","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - INTENT TO MFR DIST DISP","reporting_area":"238","street":"DUDLEY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Sunday","district":"A7","hour":"9","incident_number":"I162096778","lat":"42.36950697","location":{"type":"Point","coordinates":[-71.037472,42.369507]},"long":"-71.03747222","month":"11","occurred_on_date":"2016-11-27T09:10:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"29","street":"MAVERICK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"15","incident_number":"I162096896","lat":"42.30999157","location":{"type":"Point","coordinates":[-71.100484,42.309992]},"long":"-71.10048419","month":"11","occurred_on_date":"2016-11-27T15:59:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"571","street":"ROBESON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"1","incident_number":"I162096760","lat":"42.28880961","location":{"type":"Point","coordinates":[-71.081102,42.28881]},"long":"-71.08110237","month":"11","occurred_on_date":"2016-11-27T01:30:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"439","street":"CALLENDER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"16","incident_number":"I162096875","lat":"42.34485039","location":{"type":"Point","coordinates":[-71.139423,42.34485]},"long":"-71.13942346","month":"11","occurred_on_date":"2016-11-27T16:24:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"791","street":"SUMMIT AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"16","incident_number":"I162096885","lat":"42.30385443","location":{"type":"Point","coordinates":[-71.060876,42.303854]},"long":"-71.06087585","month":"11","occurred_on_date":"2016-11-27T16:23:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"349","street":"ADAMS ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"A1","hour":"10","incident_number":"I162033191","location":{"type":"Point","coordinates":[0,0]},"month":"4","occurred_on_date":"2016-04-29T10:44:00.000","offense_code":"01106","offense_code_group":"Confidence Games","offense_description":"FRAUD - CREDIT CARD / ATM FRAUD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"18","incident_number":"I162096916","lat":"42.28260196","location":{"type":"Point","coordinates":[-71.085465,42.282602]},"long":"-71.08546505","month":"11","occurred_on_date":"2016-11-27T18:35:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"429","street":"HANNON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"B2","hour":"22","incident_number":"I162015684","location":{"type":"Point","coordinates":[0,0]},"month":"2","occurred_on_date":"2016-02-27T22:53:00.000","offense_code":"02900","offense_code_group":"Other","offense_description":"VAL - VIOLATION OF AUTO LAW - OTHER","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"18","incident_number":"I162096922","lat":"42.29662295","location":{"type":"Point","coordinates":[-71.054918,42.296623]},"long":"-71.05491753","month":"11","occurred_on_date":"2016-11-27T18:46:00.000","offense_code":"03112","offense_code_group":"Landlord/Tenant Disputes","offense_description":"LANDLORD - TENANT SERVICE","reporting_area":"354","street":"NEWKIRK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"11","incident_number":"I162104620","lat":"42.28538167","location":{"type":"Point","coordinates":[-71.085463,42.285382]},"long":"-71.08546253","month":"12","occurred_on_date":"2016-12-24T11:21:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"432","street":"MOUNTAIN AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"C11","hour":"0","incident_number":"I162096775","lat":"42.3166828","location":{"type":"Point","coordinates":[-71.05541,42.316683]},"long":"-71.05541001","month":"11","occurred_on_date":"2016-11-27T00:00:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"246","street":"SUDAN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"3","incident_number":"I162096767","lat":"42.29019621","location":{"type":"Point","coordinates":[-71.07159,42.290196]},"long":"-71.07159012","month":"11","occurred_on_date":"2016-11-27T03:56:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"398","street":"TALBOT AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B3","hour":"12","incident_number":"I162096848","lat":"42.30021684","location":{"type":"Point","coordinates":[-71.080979,42.300217]},"long":"-71.0809794","month":"11","occurred_on_date":"2016-11-27T12:40:00.000","offense_code":"03108","offense_code_group":"Fire Related Reports","offense_description":"FIRE REPORT - HOUSE, BUILDING, ETC.","reporting_area":"445","street":"HARLEM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Friday","district":"B3","hour":"20","incident_number":"I162104532","lat":"42.30273607","location":{"type":"Point","coordinates":[-71.082485,42.302736]},"long":"-71.08248544","month":"12","occurred_on_date":"2016-12-23T20:30:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"458","street":"WOLCOTT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Friday","district":"B3","hour":"23","incident_number":"I162104545","lat":"42.28152196","location":{"type":"Point","coordinates":[-71.090084,42.281522]},"long":"-71.09008408","month":"12","occurred_on_date":"2016-12-23T23:39:00.000","offense_code":"00520","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - FORCE","reporting_area":"428","street":"WOOLSON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Sunday","district":"E5","hour":"14","incident_number":"I162096863","lat":"42.28143262","location":{"type":"Point","coordinates":[-71.158013,42.281433]},"long":"-71.15801301","month":"11","occurred_on_date":"2016-11-27T14:51:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"720","street":"CENTRE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"20","incident_number":"I162096938","lat":"42.32332676","location":{"type":"Point","coordinates":[-71.105259,42.323327]},"long":"-71.10525868","month":"11","occurred_on_date":"2016-11-27T20:44:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"582","street":"GAY HEAD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Thursday","district":"A7","hour":"15","incident_number":"I162104672","lat":"42.37925869","location":{"type":"Point","coordinates":[-71.038394,42.379259]},"long":"-71.03839361","month":"12","occurred_on_date":"2016-12-22T15:00:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"24","street":"MARION PL","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"0","incident_number":"I162096856","lat":"42.33871587","location":{"type":"Point","coordinates":[-71.081522,42.338716]},"long":"-71.08152167","month":"11","occurred_on_date":"2016-11-26T00:01:00.000","offense_code":"01102","offense_code_group":"Fraud","offense_description":"FRAUD - FALSE PRETENSE / SCHEME","reporting_area":"597","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"17","incident_number":"I162096895","lat":"42.32469443","location":{"type":"Point","coordinates":[-71.100879,42.324694]},"long":"-71.10087902","month":"11","occurred_on_date":"2016-11-27T17:55:00.000","offense_code":"03207","offense_code_group":"Property Found","offense_description":"PROPERTY - FOUND","reporting_area":"916","street":"PARKER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"17","incident_number":"I162096886","lat":"42.28539022","location":{"type":"Point","coordinates":[-71.084577,42.28539]},"long":"-71.0845773","month":"11","occurred_on_date":"2016-11-27T17:15:00.000","offense_code":"02914","offense_code_group":"Violations","offense_description":"VAL - OPERATING W/O AUTHORIZATION LAWFUL","reporting_area":"432","street":"MASCOT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Sunday","district":"C6","hour":"1","incident_number":"I162096734","lat":"42.33136635","location":{"type":"Point","coordinates":[-71.066409,42.331366]},"long":"-71.066409","month":"11","occurred_on_date":"2016-11-27T01:30:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"175","street":"SOUTHAMPTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Sunday","district":"A1","hour":"18","incident_number":"I162096911","lat":"42.36611638","location":{"type":"Point","coordinates":[-71.052049,42.366116]},"long":"-71.05204893","month":"11","occurred_on_date":"2016-11-27T18:40:00.000","offense_code":"03108","offense_code_group":"Fire Related Reports","offense_description":"FIRE REPORT - HOUSE, BUILDING, ETC.","reporting_area":"87","street":"SALUTATION ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"E18","hour":"12","incident_number":"I162096836","lat":"42.26771874","location":{"type":"Point","coordinates":[-71.110422,42.267719]},"long":"-71.11042217","month":"11","occurred_on_date":"2016-11-27T12:55:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"489","street":"PARKER ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Sunday","district":"A15","hour":"12","incident_number":"I162096828","lat":"-1","location":{"type":"Point","coordinates":[-1,-1]},"long":"-1","month":"11","occurred_on_date":"2016-11-27T12:43:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","street":"O'REILLY","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"1","incident_number":"I162096752","lat":"42.36481242","location":{"type":"Point","coordinates":[-71.062393,42.364812]},"long":"-71.0623933","month":"11","occurred_on_date":"2016-11-27T01:34:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"75","street":"CAUSEWAY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"19","incident_number":"I162096919","lat":"42.29487474","location":{"type":"Point","coordinates":[-71.057421,42.294875]},"long":"-71.05742148","month":"11","occurred_on_date":"2016-11-27T19:49:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"364","street":"CENTRE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Sunday","district":"A1","hour":"2","incident_number":"I162096746","lat":"42.35241815","location":{"type":"Point","coordinates":[-71.065255,42.352418]},"long":"-71.06525499","month":"11","occurred_on_date":"2016-11-27T02:08:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"118","street":"BOYLSTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"E13","hour":"3","incident_number":"I162096763","lat":"42.31915678","location":{"type":"Point","coordinates":[-71.100676,42.319157]},"long":"-71.10067583","month":"11","occurred_on_date":"2016-11-27T03:33:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"948","street":"AMORY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Sunday","district":"A1","hour":"3","incident_number":"I162096768","lat":"42.35232371","location":{"type":"Point","coordinates":[-71.064002,42.352324]},"long":"-71.06400187","month":"11","occurred_on_date":"2016-11-27T03:16:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"111","street":"BOYLSTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Tuesday","district":"A1","hour":"10","incident_number":"I162099507","lat":"42.35913932","location":{"type":"Point","coordinates":[-71.061969,42.359139]},"long":"-71.06196905","month":"11","occurred_on_date":"2016-11-15T10:00:00.000","offense_code":"01106","offense_code_group":"Confidence Games","offense_description":"FRAUD - CREDIT CARD / ATM FRAUD","reporting_area":"72","street":"ASHBURTON PL","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"10","incident_number":"I162096796","lat":"42.30486055","location":{"type":"Point","coordinates":[-71.081543,42.304861]},"long":"-71.08154307","month":"11","occurred_on_date":"2016-11-27T10:39:00.000","offense_code":"03018","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - POLICE","reporting_area":"330","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"E18","hour":"14","incident_number":"I162096854","lat":"42.26771874","location":{"type":"Point","coordinates":[-71.110422,42.267719]},"long":"-71.11042217","month":"11","occurred_on_date":"2016-11-27T14:06:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"489","street":"PARKER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"A1","hour":"18","incident_number":"I162096670","lat":"42.35031462","location":{"type":"Point","coordinates":[-71.066708,42.350315]},"long":"-71.06670795","month":"11","occurred_on_date":"2016-11-26T18:15:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"121","street":"CHARLES ST S","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"2","incident_number":"I162096745","lat":"42.33781259","location":{"type":"Point","coordinates":[-71.049292,42.337813]},"long":"-71.04929183","month":"11","occurred_on_date":"2016-11-27T02:22:00.000","offense_code":"02632","offense_code_group":"Evading Fare","offense_description":"EVADING FARE","reporting_area":"213","street":"E ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"17","incident_number":"I162096429","lat":"42.28539022","location":{"type":"Point","coordinates":[-71.084577,42.28539]},"long":"-71.0845773","month":"11","occurred_on_date":"2016-11-25T17:12:00.000","offense_code":"03007","offense_code_group":"Medical Assistance","offense_description":"SUDDEN DEATH","reporting_area":"432","street":"MASCOT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"15","incident_number":"I162096880","lat":"42.29019621","location":{"type":"Point","coordinates":[-71.07159,42.290196]},"long":"-71.07159012","month":"11","occurred_on_date":"2016-11-27T15:56:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"398","street":"TALBOT AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Sunday","district":"A1","hour":"12","incident_number":"I162096819","lat":"42.35152813","location":{"type":"Point","coordinates":[-71.062482,42.351528]},"long":"-71.06248241","month":"11","occurred_on_date":"2016-11-27T12:17:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"117","street":"BEACH ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"16","incident_number":"I162096883","lat":"42.27230355","location":{"type":"Point","coordinates":[-71.077835,42.272304]},"long":"-71.07783504","month":"11","occurred_on_date":"2016-11-27T16:50:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"409","street":"GLENMORE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Monday","district":"D4","hour":"0","incident_number":"I162042318","lat":"42.343971","location":{"type":"Point","coordinates":[-71.077475,42.343971]},"long":"-71.077475","month":"5","occurred_on_date":"2016-05-30T00:00:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"150","street":"COLUMBUS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"15","incident_number":"I162096629","lat":"42.32544469","location":{"type":"Point","coordinates":[-71.069645,42.325445]},"long":"-71.06964485","month":"11","occurred_on_date":"2016-11-26T15:00:00.000","offense_code":"03625","offense_code_group":"Other","offense_description":"DANGEROUS OR HAZARDOUS CONDITION","reporting_area":"181","street":"LANGDON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Sunday","district":"A1","hour":"17","incident_number":"I162096904","lat":"42.35521625","location":{"type":"Point","coordinates":[-71.060129,42.355216]},"long":"-71.06012863","month":"11","occurred_on_date":"2016-11-27T17:46:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"105","street":"SUMMER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"15","incident_number":"I162096868","lat":"42.28028554","location":{"type":"Point","coordinates":[-71.068342,42.280286]},"long":"-71.06834156","month":"11","occurred_on_date":"2016-11-27T15:06:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"403","street":"ALICIA RD","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B3","hour":"13","incident_number":"I162096840","lat":"42.29828416","location":{"type":"Point","coordinates":[-71.078694,42.298284]},"long":"-71.07869447","month":"11","occurred_on_date":"2016-11-27T13:08:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"446","street":"NORWELL ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"B2","hour":"15","incident_number":"I162096628","lat":"42.31636021","location":{"type":"Point","coordinates":[-71.076865,42.31636]},"long":"-71.07686491","month":"11","occurred_on_date":"2016-11-26T15:27:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"325","street":"BEAUFORD LN","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Sunday","district":"E18","hour":"13","incident_number":"I162096832","lat":"42.26106235","location":{"type":"Point","coordinates":[-71.113996,42.261062]},"long":"-71.11399617","month":"11","occurred_on_date":"2016-11-27T13:34:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"493","street":"RIVER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"0","incident_number":"I162096865","lat":"42.30406722","location":{"type":"Point","coordinates":[-71.0676,42.304067]},"long":"-71.06760042","month":"11","occurred_on_date":"2016-11-27T00:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"341","street":"SPEEDWELL ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"3","incident_number":"I162096765","lat":"42.35011229","location":{"type":"Point","coordinates":[-71.173397,42.350112]},"long":"-71.1733972","month":"11","occurred_on_date":"2016-11-27T03:39:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"754","street":"NONANTUM ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"0","incident_number":"I162104555","lat":"42.34868917","location":{"type":"Point","coordinates":[-71.07258,42.348689]},"long":"-71.07257992","month":"12","occurred_on_date":"2016-12-24T00:56:00.000","offense_code":"01849","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - COCAINE, ETC.","reporting_area":"128","street":"STANHOPE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Sunday","district":"B2","hour":"18","incident_number":"I162096906","lat":"42.33130111","location":{"type":"Point","coordinates":[-71.093335,42.331301]},"long":"-71.09333508","month":"11","occurred_on_date":"2016-11-27T18:38:00.000","offense_code":"03001","offense_code_group":"Medical Assistance","offense_description":"DEATH INVESTIGATION","reporting_area":"290","street":"MALCOLM X BLVD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Saturday","district":"D4","hour":"21","incident_number":"I162096805","lat":"42.34717363","location":{"type":"Point","coordinates":[-71.096444,42.347174]},"long":"-71.0964439","month":"11","occurred_on_date":"2016-11-26T21:00:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"624","street":"LANSDOWNE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Sunday","district":"D4","hour":"10","incident_number":"I162096809","lat":"42.34493428","location":{"type":"Point","coordinates":[-71.063664,42.344934]},"long":"-71.06366374","month":"11","occurred_on_date":"2016-11-27T10:55:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"162","street":"HARRISON AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Saturday","district":"B2","hour":"12","incident_number":"I162104625","lat":"42.33153509","location":{"type":"Point","coordinates":[-71.095346,42.331535]},"long":"-71.09534648","month":"12","occurred_on_date":"2016-12-24T12:02:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"587","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"9","incident_number":"I162096791","lat":"42.34900739","location":{"type":"Point","coordinates":[-71.138601,42.349007]},"long":"-71.13860108","month":"11","occurred_on_date":"2016-11-27T09:37:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"795","street":"COMMONWEALTH AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"16","incident_number":"I162096831","lat":"42.30609597","location":{"type":"Point","coordinates":[-71.064257,42.306096]},"long":"-71.06425709","month":"11","occurred_on_date":"2016-11-26T16:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"346","street":"FOX ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"9","incident_number":"I162096795","lat":"42.30486055","location":{"type":"Point","coordinates":[-71.081543,42.304861]},"long":"-71.08154307","month":"11","occurred_on_date":"2016-11-27T09:52:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"330","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"8","incident_number":"I162096782","lat":"42.35978577","location":{"type":"Point","coordinates":[-71.070102,42.359786]},"long":"-71.07010238","month":"11","occurred_on_date":"2016-11-27T08:27:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"66","street":"W CEDAR ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"3","incident_number":"I162096759","lat":"42.29512751","location":{"type":"Point","coordinates":[-71.078208,42.295128]},"long":"-71.07820832","month":"11","occurred_on_date":"2016-11-27T03:19:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"447","street":"NORWELL ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Sunday","district":"A1","hour":"0","incident_number":"I162096753","lat":"42.3507885","location":{"type":"Point","coordinates":[-71.062187,42.350789]},"long":"-71.06218706","month":"11","occurred_on_date":"2016-11-27T00:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"123","street":"KNAPP ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E18","hour":"10","incident_number":"I162104617","lat":"42.28544884","location":{"type":"Point","coordinates":[-71.110559,42.285449]},"long":"-71.11055934","month":"12","occurred_on_date":"2016-12-24T10:54:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Thursday","district":"D14","hour":"14","incident_number":"I162096797","lat":"42.3391855","location":{"type":"Point","coordinates":[-71.151223,42.339186]},"long":"-71.15122348","month":"11","occurred_on_date":"2016-11-24T14:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"788","street":"STRATHMORE RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"1","incident_number":"I162096750","lat":"42.33888909","location":{"type":"Point","coordinates":[-71.052898,42.338889]},"long":"-71.05289796","month":"11","occurred_on_date":"2016-11-27T01:56:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"936","street":"CROWLEY-ROGERS WAY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"13","incident_number":"I162096866","lat":"42.32902469","location":{"type":"Point","coordinates":[-71.083415,42.329025]},"long":"-71.08341505","month":"11","occurred_on_date":"2016-11-27T13:23:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"280","street":"WARREN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"21","incident_number":"I162096700","lat":"42.29641938","location":{"type":"Point","coordinates":[-71.068646,42.296419]},"long":"-71.06864617","month":"11","occurred_on_date":"2016-11-26T21:06:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"359","street":"PARK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"E18","hour":"16","incident_number":"I162096912","lat":"42.26881768","location":{"type":"Point","coordinates":[-71.106519,42.268818]},"long":"-71.10651917","month":"11","occurred_on_date":"2016-11-26T16:00:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"478","street":"MARIPOSA ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"13","incident_number":"I162096834","lat":"42.3144484","location":{"type":"Point","coordinates":[-71.089934,42.314448]},"long":"-71.08993418","month":"11","occurred_on_date":"2016-11-27T13:17:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"314","street":"HOWLAND ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"16","incident_number":"I162096882","lat":"42.36240281","location":{"type":"Point","coordinates":[-71.069547,42.362403]},"long":"-71.06954652","month":"11","occurred_on_date":"2016-11-27T16:00:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"64","street":"FRUIT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Friday","district":"E5","hour":"3","incident_number":"I162096776","lat":"42.26765986","location":{"type":"Point","coordinates":[-71.165147,42.26766]},"long":"-71.165147","month":"11","occurred_on_date":"2016-11-25T03:00:00.000","offense_code":"01106","offense_code_group":"Confidence Games","offense_description":"FRAUD - CREDIT CARD / ATM FRAUD","reporting_area":"715","street":"KEYSTONE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"22","incident_number":"I162096720","lat":"42.3114975","location":{"type":"Point","coordinates":[-71.067571,42.311498]},"long":"-71.06757058","month":"11","occurred_on_date":"2016-11-26T22:46:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"332","street":"BELLEVUE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162104652","lat":"42.29258323","location":{"type":"Point","coordinates":[-71.047762,42.292583]},"long":"-71.04776198","month":"12","occurred_on_date":"2016-12-24T13:59:00.000","offense_code":"02401","offense_code_group":"Disorderly Conduct","offense_description":"AFFRAY","reporting_area":"373","street":"WILLIAM T MORRISSEY BLVD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"14","incident_number":"I162096861","lat":"42.28344672","location":{"type":"Point","coordinates":[-71.095351,42.283447]},"long":"-71.09535085","month":"11","occurred_on_date":"2016-11-27T14:37:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"466","street":"HILLSBORO RD","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Sunday","district":"A7","hour":"10","incident_number":"I162096817","lat":"42.36956222","location":{"type":"Point","coordinates":[-71.035448,42.369562]},"long":"-71.03544834","month":"11","occurred_on_date":"2016-11-27T10:43:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"30","street":"FRANKFORT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Sunday","district":"D4","hour":"12","incident_number":"I162096857","lat":"42.34218704","location":{"type":"Point","coordinates":[-71.074949,42.342187]},"long":"-71.07494905","month":"11","occurred_on_date":"2016-11-27T12:00:00.000","offense_code":"00540","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - FORCE","reporting_area":"153","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Wednesday","district":"A1","hour":"0","incident_number":"I162036569","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-11T00:33:00.000","offense_code":"02907","offense_code_group":"Violations","offense_description":"VAL - OPERATING AFTER REV/SUSP.","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Sunday","district":"A1","hour":"3","incident_number":"I162096768","lat":"42.35232371","location":{"type":"Point","coordinates":[-71.064002,42.352324]},"long":"-71.06400187","month":"11","occurred_on_date":"2016-11-27T03:16:00.000","offense_code":"01703","offense_code_group":"Indecent Assault","offense_description":"INDECENT EXPOSURE / LEWD AND LASCIVIOUS","reporting_area":"111","street":"BOYLSTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Saturday","district":"A15","hour":"0","incident_number":"I162104553","lat":"42.38020475","location":{"type":"Point","coordinates":[-71.057414,42.380205]},"long":"-71.057414","month":"12","occurred_on_date":"2016-12-24T00:43:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"43","street":"OLD IRONSIDES WAY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"23","incident_number":"I162096727","lat":"42.38197028","location":{"type":"Point","coordinates":[-71.034754,42.38197]},"long":"-71.03475395","month":"11","occurred_on_date":"2016-11-26T23:55:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"25","street":"FALCON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"17","incident_number":"I162096892","lat":"42.32591192","location":{"type":"Point","coordinates":[-71.094948,42.325912]},"long":"-71.09494763","month":"11","occurred_on_date":"2016-11-27T17:25:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"301","street":"FORT AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Sunday","district":"A1","hour":"12","incident_number":"I162096838","lat":"42.35617999","location":{"type":"Point","coordinates":[-71.056112,42.35618]},"long":"-71.05611158","month":"11","occurred_on_date":"2016-11-27T12:19:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"108","street":"CONGRESS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"A1","hour":"4","incident_number":"I162096508","lat":"42.35064439","location":{"type":"Point","coordinates":[-71.068116,42.350644]},"long":"-71.06811584","month":"11","occurred_on_date":"2016-11-26T04:32:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"125","street":"STUART ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"C11","hour":"2","incident_number":"I162096839","lat":"42.31834717","location":{"type":"Point","coordinates":[-71.054642,42.318347]},"long":"-71.05464192","month":"11","occurred_on_date":"2016-11-27T02:00:00.000","offense_code":"02914","offense_code_group":"Violations","offense_description":"VAL - OPERATING W/O AUTHORIZATION LAWFUL","reporting_area":"245","street":"RAVEN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Sunday","district":"A7","hour":"1","incident_number":"I162096744","lat":"42.38166501","location":{"type":"Point","coordinates":[-71.040303,42.381665]},"long":"-71.04030314","month":"11","occurred_on_date":"2016-11-27T01:16:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"26","street":"BORDER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Sunday","district":"A1","hour":"0","incident_number":"I162096751","lat":"42.35997967","location":{"type":"Point","coordinates":[-71.054741,42.35998]},"long":"-71.05474135","month":"11","occurred_on_date":"2016-11-27T00:50:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"93","street":"FANEUIL HALL MARKETPLACE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"15","incident_number":"I162096876","lat":"42.30603974","location":{"type":"Point","coordinates":[-71.086212,42.30604]},"long":"-71.0862124","month":"11","occurred_on_date":"2016-11-27T15:28:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"319","street":"SEAVER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"10","incident_number":"I162096811","lat":"42.31408519","location":{"type":"Point","coordinates":[-71.099987,42.314085]},"long":"-71.09998685","month":"11","occurred_on_date":"2016-11-27T10:58:00.000","offense_code":"00541","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - ATTEMPT","reporting_area":"577","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"C11","hour":"10","incident_number":"I162096813","lat":"42.31322413","location":{"type":"Point","coordinates":[-71.057153,42.313224]},"long":"-71.05715277","month":"11","occurred_on_date":"2016-11-27T10:49:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"248","street":"DORCHESTER AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Sunday","district":"A1","hour":"18","incident_number":"I162096901","lat":"42.35120708","location":{"type":"Point","coordinates":[-71.059878,42.351207]},"long":"-71.05987799","month":"11","occurred_on_date":"2016-11-27T18:26:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"116","street":"BEACH ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"18","incident_number":"I162096924","lat":"42.3220384","location":{"type":"Point","coordinates":[-71.071404,42.322038]},"long":"-71.07140396","month":"11","occurred_on_date":"2016-11-27T18:00:00.000","offense_code":"02102","offense_code_group":"Operating Under the Influence","offense_description":"OPERATING UNDER THE INFLUENCE DRUGS","reporting_area":"182","street":"ALBION ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"20","incident_number":"I162096696","lat":"42.27153859","location":{"type":"Point","coordinates":[-71.105506,42.271539]},"long":"-71.10550555","month":"11","occurred_on_date":"2016-11-26T20:39:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"474","street":"CUMMINS HWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Sunday","district":"D4","hour":"2","incident_number":"I162096931","lat":"42.34386461","location":{"type":"Point","coordinates":[-71.065665,42.343865]},"long":"-71.06566457","month":"11","occurred_on_date":"2016-11-27T02:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"164","street":"E BERKELEY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"9","incident_number":"I162096787","lat":"42.34894483","location":{"type":"Point","coordinates":[-71.140872,42.348945]},"long":"-71.14087199","month":"11","occurred_on_date":"2016-11-27T09:35:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"783","street":"WARREN ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Wednesday","district":"B2","hour":"15","incident_number":"I162001530","location":{"type":"Point","coordinates":[0,0]},"month":"1","occurred_on_date":"2016-01-06T15:26:00.000","offense_code":"01721","offense_code_group":"Sex Offender Registration","offense_description":"FAILURE TO REGISTER AS A SEX OFFENDER","reporting_area":"165","street":"HARRISON AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Sunday","district":"D4","hour":"3","incident_number":"I162096762","lat":"42.33931449","location":{"type":"Point","coordinates":[-71.067489,42.339314]},"long":"-71.06748926","month":"11","occurred_on_date":"2016-11-27T03:31:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"167","street":"WAREHAM ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Friday","district":"C6","hour":"23","incident_number":"I162104543","lat":"42.33719922","location":{"type":"Point","coordinates":[-71.042501,42.337199]},"long":"-71.0425015","month":"12","occurred_on_date":"2016-12-23T23:43:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"221","street":"E SECOND ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Thursday","district":"A1","hour":"5","incident_number":"I152103916","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2015-12-17T05:55:00.000","offense_code":"02900","offense_code_group":"Other","offense_description":"VAL - VIOLATION OF AUTO LAW - OTHER","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Sunday","district":"D14","hour":"1","incident_number":"I162096738","lat":"42.35602219","location":{"type":"Point","coordinates":[-71.133403,42.356022]},"long":"-71.13340295","month":"11","occurred_on_date":"2016-11-27T01:36:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"803","street":"BRAINTREE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Friday","district":"A1","hour":"4","incident_number":"I162096274","lat":"42.35487365","location":{"type":"Point","coordinates":[-71.058612,42.354874]},"long":"-71.05861218","month":"11","occurred_on_date":"2016-11-25T04:00:00.000","offense_code":"00540","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - FORCE","reporting_area":"106","street":"ARCH ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"E18","hour":"13","incident_number":"I162104693","lat":"42.27131266","location":{"type":"Point","coordinates":[-71.108904,42.271313]},"long":"-71.1089037","month":"12","occurred_on_date":"2016-12-24T13:55:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"478","street":"HEBRON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Friday","district":"A1","hour":"19","incident_number":"I162096435","lat":"42.35160937","location":{"type":"Point","coordinates":[-71.056002,42.351609]},"long":"-71.05600201","month":"11","occurred_on_date":"2016-11-25T19:04:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"115","street":"ATLANTIC AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"E18","hour":"21","incident_number":"I162096929","lat":"42.26500784","location":{"type":"Point","coordinates":[-71.104724,42.265008]},"long":"-71.10472372","month":"11","occurred_on_date":"2016-11-27T21:16:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"487","street":"ROSEMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Saturday","district":"A1","hour":"22","incident_number":"I162096712","lat":"42.36067984","location":{"type":"Point","coordinates":[-71.054823,42.36068]},"long":"-71.05482325","month":"11","occurred_on_date":"2016-11-26T22:33:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"94","street":"CLINTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"E18","hour":"17","incident_number":"I162096928","lat":"42.26788791","location":{"type":"Point","coordinates":[-71.10067,42.267888]},"long":"-71.10067012","month":"11","occurred_on_date":"2016-11-27T17:38:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"480","street":"FAIRLAWN AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"1","incident_number":"I162071709","lat":"42.29691612","location":{"type":"Point","coordinates":[-71.083639,42.296916]},"long":"-71.08363894","month":"9","occurred_on_date":"2016-09-03T01:12:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"444","street":"ESMOND ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9661","day_of_week":"Sunday","district":"A1","hour":"2","incident_number":"I162096766","lat":"42.36694506","location":{"type":"Point","coordinates":[-71.057778,42.366945]},"long":"-71.05777777","month":"11","occurred_on_date":"2016-11-27T02:42:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"79","street":"PRINCE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Tuesday","district":"D4","hour":"21","incident_number":"I162096733","lat":"42.33616864","location":{"type":"Point","coordinates":[-71.080423,42.336169]},"long":"-71.08042312","month":"11","occurred_on_date":"2016-11-22T21:06:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"273","street":"LENOX ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Sunday","district":"D4","hour":"21","incident_number":"I162096933","lat":"42.34442266","location":{"type":"Point","coordinates":[-71.098331,42.344423]},"long":"-71.09833083","month":"11","occurred_on_date":"2016-11-27T21:17:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"627","street":"BOYLSTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B3","hour":"17","incident_number":"I162096910","lat":"42.30302875","location":{"type":"Point","coordinates":[-71.080715,42.303029]},"long":"-71.0807146","month":"11","occurred_on_date":"2016-11-27T17:59:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"459","street":"SEAVER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"18","incident_number":"I162096667","lat":"42.31252546","location":{"type":"Point","coordinates":[-71.073893,42.312525]},"long":"-71.07389321","month":"11","occurred_on_date":"2016-11-26T18:03:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"327","street":"QUINCY ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"16","incident_number":"I162096888","lat":"42.28079658","location":{"type":"Point","coordinates":[-71.090397,42.280797]},"long":"-71.09039724","month":"11","occurred_on_date":"2016-11-27T16:35:37.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"428","street":"HOSMER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Sunday","district":"E18","hour":"18","incident_number":"I162096898","lat":"42.24504352","location":{"type":"Point","coordinates":[-71.124746,42.245044]},"long":"-71.12474587","month":"11","occurred_on_date":"2016-11-27T18:00:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"524","street":"FARADAY ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","district":"B2","hour":"21","incident_number":"I152074180","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2015-09-06T21:08:00.000","offense_code":"03160","offense_code_group":"Fire Related Reports","offense_description":"FIRE REPORT - CAR, BRUSH, ETC.","reporting_area":"276","street":"DADE ST","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"12","incident_number":"I162096835","lat":"42.29143652","location":{"type":"Point","coordinates":[-71.067554,42.291437]},"long":"-71.06755418","month":"11","occurred_on_date":"2016-11-27T12:49:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"362","street":"CENTRE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Sunday","district":"D4","hour":"13","incident_number":"I162096843","lat":"42.3503876","location":{"type":"Point","coordinates":[-71.087853,42.350388]},"long":"-71.0878529","month":"11","occurred_on_date":"2016-11-27T13:00:00.000","offense_code":"03207","offense_code_group":"Property Found","offense_description":"PROPERTY - FOUND","reporting_area":"140","street":"MARLBOROUGH ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"13","incident_number":"I162104645","lat":"42.32824866","location":{"type":"Point","coordinates":[-71.09087,42.328249]},"long":"-71.09087012","month":"12","occurred_on_date":"2016-12-24T13:33:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"292","street":"LAMBERT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"C11","hour":"13","incident_number":"I162096867","lat":"42.31296937","location":{"type":"Point","coordinates":[-71.05721,42.312969]},"long":"-71.05720983","month":"11","occurred_on_date":"2016-11-27T13:55:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"247","street":"DORCHESTER AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9662","day_of_week":"Sunday","district":"A1","hour":"8","incident_number":"I162096773","lat":"42.35913227","location":{"type":"Point","coordinates":[-71.070743,42.359132]},"long":"-71.07074326","month":"11","occurred_on_date":"2016-11-27T08:49:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"66","street":"CHARLES ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"15","incident_number":"I162096868","lat":"42.28028554","location":{"type":"Point","coordinates":[-71.068342,42.280286]},"long":"-71.06834156","month":"11","occurred_on_date":"2016-11-27T15:06:00.000","offense_code":"01503","offense_code_group":"Firearm Violations","offense_description":"WEAPON - OTHER - CARRYING / POSSESSING, ETC","reporting_area":"403","street":"ALICIA RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"E18","hour":"16","incident_number":"I162104680","lat":"42.26559624","location":{"type":"Point","coordinates":[-71.097134,42.265596]},"long":"-71.09713382","month":"12","occurred_on_date":"2016-12-24T16:56:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"482","street":"TOPALIAN ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Thursday","district":"B2","hour":"22","incident_number":"I162015069","location":{"type":"Point","coordinates":[0,0]},"month":"2","occurred_on_date":"2016-02-25T22:22:00.000","offense_code":"02900","offense_code_group":"Other","offense_description":"VAL - VIOLATION OF AUTO LAW - OTHER","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"23","incident_number":"I162096801","lat":"42.37803936","location":{"type":"Point","coordinates":[-71.030462,42.378039]},"long":"-71.0304617","month":"11","occurred_on_date":"2016-11-26T23:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"20","street":"BENNINGTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"21","incident_number":"I162096718","lat":"42.3043395","location":{"type":"Point","coordinates":[-71.084779,42.30434]},"long":"-71.08477887","month":"11","occurred_on_date":"2016-11-26T21:48:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"330","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"C6","hour":"12","incident_number":"I162008158","location":{"type":"Point","coordinates":[0,0]},"month":"1","occurred_on_date":"2016-01-30T12:30:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"301","street":"N POINT DR","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"4","incident_number":"I162104582","lat":"42.35409679","location":{"type":"Point","coordinates":[-71.136158,42.354097]},"long":"-71.13615774","month":"12","occurred_on_date":"2016-12-24T04:30:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"802","street":"CAMBRIDGE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Sunday","district":"E5","hour":"16","incident_number":"I162099269","lat":"42.27208467","location":{"type":"Point","coordinates":[-71.144821,42.272085]},"long":"-71.14482145","month":"12","occurred_on_date":"2016-12-04T16:00:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"705","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Wednesday","district":"B3","hour":"14","incident_number":"I162104624","lat":"42.27732507","location":{"type":"Point","coordinates":[-71.094831,42.277325]},"long":"-71.09483139","month":"12","occurred_on_date":"2016-12-21T14:56:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"469","street":"MATTAPAN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"16","incident_number":"I162104677","lat":"42.30250605","location":{"type":"Point","coordinates":[-71.083294,42.302506]},"long":"-71.083294","month":"12","occurred_on_date":"2016-12-24T16:02:00.000","offense_code":"02006","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W ARREST","reporting_area":"458","street":"MICHIGAN AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"19","incident_number":"I162104717","lat":"42.31141864","location":{"type":"Point","coordinates":[-71.079648,42.311419]},"long":"-71.0796476","month":"12","occurred_on_date":"2016-12-24T19:53:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"326","street":"INTERVALE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"9","incident_number":"I162104593","lat":"42.34634585","location":{"type":"Point","coordinates":[-71.141488,42.346346]},"long":"-71.14148751","month":"12","occurred_on_date":"2016-12-24T09:01:10.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"784","street":"COMMONWEALTH AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"17236","day_of_week":"Thursday","district":"D4","hour":"12","incident_number":"I162104105","lat":"42.34862382","location":{"type":"Point","coordinates":[-71.082776,42.348624]},"long":"-71.08277637","month":"12","occurred_on_date":"2016-12-22T12:51:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"143","street":"BOYLSTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E18","hour":"12","incident_number":"I162104637","lat":"42.25169697","location":{"type":"Point","coordinates":[-71.117381,42.251697]},"long":"-71.11738135","month":"12","occurred_on_date":"2016-12-24T12:46:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"512","street":"FAIRMOUNT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Saturday","district":"D4","hour":"0","incident_number":"I162104578","lat":"42.34676463","location":{"type":"Point","coordinates":[-71.087478,42.346765]},"long":"-71.08747789","month":"12","occurred_on_date":"2016-12-24T00:44:00.000","offense_code":"02907","offense_code_group":"Violations","offense_description":"VAL - OPERATING AFTER REV/SUSP.","reporting_area":"598","street":"MASSACHUSETTS AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"D4","hour":"0","incident_number":"I162104555","lat":"42.34868917","location":{"type":"Point","coordinates":[-71.07258,42.348689]},"long":"-71.07257992","month":"12","occurred_on_date":"2016-12-24T00:56:00.000","offense_code":"01846","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS E","reporting_area":"128","street":"STANHOPE ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Tuesday","district":"C6","hour":"20","incident_number":"I162010792","location":{"type":"Point","coordinates":[0,0]},"month":"2","occurred_on_date":"2016-02-09T20:41:00.000","offense_code":"01846","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS E","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","hour":"1","incident_number":"I162104563","lat":"42.28233549","location":{"type":"Point","coordinates":[-71.099609,42.282335]},"long":"-71.09960853","month":"12","occurred_on_date":"2016-12-24T01:02:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"5","incident_number":"I162104653","lat":"42.37826778","location":{"type":"Point","coordinates":[-71.036017,42.378268]},"long":"-71.03601677","month":"12","occurred_on_date":"2016-12-24T05:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"23","street":"LEXINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Thursday","district":"B2","hour":"3","incident_number":"I162103988","lat":"42.31275031","location":{"type":"Point","coordinates":[-71.093887,42.31275]},"long":"-71.09388736","month":"12","occurred_on_date":"2016-12-22T03:07:00.000","offense_code":"01831","offense_code_group":"Drug Violation","offense_description":"DRUGS - SICK ASSIST - OTHER NARCOTIC","reporting_area":"316","street":"SEAVER ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Friday","district":"A1","hour":"22","incident_number":"I162104536","lat":"42.35521625","location":{"type":"Point","coordinates":[-71.060129,42.355216]},"long":"-71.06012863","month":"12","occurred_on_date":"2016-12-23T22:44:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"105","street":"SUMMER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","hour":"18","incident_number":"I162104706","lat":"42.33119415","location":{"type":"Point","coordinates":[-71.077002,42.331194]},"long":"-71.07700218","month":"12","occurred_on_date":"2016-12-24T18:09:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Friday","district":"E5","hour":"22","incident_number":"I162104529","lat":"42.27448447","location":{"type":"Point","coordinates":[-71.16892,42.274484]},"long":"-71.16892048","month":"12","occurred_on_date":"2016-12-23T22:13:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"722","street":"SPRING ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"C11","hour":"20","incident_number":"I152065922","lat":"42.32006","location":{"type":"Point","coordinates":[-71.058632,42.32006]},"long":"-71.058632","month":"8","occurred_on_date":"2015-08-09T20:45:00.000","offense_code":"02101","offense_code_group":"Operating Under the Influence","offense_description":"OPERATING UNDER THE INFLUENCE ALCOHOL","reporting_area":"236","street":"COLUMBIA RD","ucr_part":"Part Two","year":"2015"}
,{"day_of_week":"Tuesday","district":"B3","hour":"16","incident_number":"I162079190","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2016-09-27T16:52:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Monday","district":"E5","hour":"12","incident_number":"I162097066","lat":"42.29251815","location":{"type":"Point","coordinates":[-71.121658,42.292518]},"long":"-71.12165832","month":"11","occurred_on_date":"2016-11-28T12:03:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"664","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Friday","district":"D14","hour":"22","incident_number":"I162104539","lat":"42.35441899","location":{"type":"Point","coordinates":[-71.150188,42.354419]},"long":"-71.15018788","month":"12","occurred_on_date":"2016-12-23T22:30:00.000","offense_code":"01304","offense_code_group":"Recovered Stolen Property","offense_description":"PROPERTY - STOLEN THEN RECOVERED","reporting_area":"769","street":"MARKET ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Tuesday","district":"C11","hour":"16","incident_number":"I162099577","lat":"42.28938091","location":{"type":"Point","coordinates":[-71.071328,42.289381]},"long":"-71.07132831","month":"12","occurred_on_date":"2016-12-06T16:47:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"398","street":"LITHGOW ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Saturday","district":"D4","hour":"0","incident_number":"I162104578","lat":"42.34676463","location":{"type":"Point","coordinates":[-71.087478,42.346765]},"long":"-71.08747789","month":"12","occurred_on_date":"2016-12-24T00:44:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"598","street":"MASSACHUSETTS AVE","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"D4","hour":"22","incident_number":"I162098533","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2016-12-02T22:30:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"15","incident_number":"I162104678","lat":"42.29356132","location":{"type":"Point","coordinates":[-71.081295,42.293561]},"long":"-71.08129517","month":"12","occurred_on_date":"2016-12-24T15:51:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"442","street":"KERWIN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"B2","hour":"3","incident_number":"I162104580","lat":"42.31872544","location":{"type":"Point","coordinates":[-71.075671,42.318725]},"long":"-71.07567087","month":"12","occurred_on_date":"2016-12-24T03:12:00.000","offense_code":"00520","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - FORCE","reporting_area":"264","street":"JUDSON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162104643","lat":"42.31013569","location":{"type":"Point","coordinates":[-71.070293,42.310136]},"long":"-71.0702931","month":"12","occurred_on_date":"2016-12-24T13:19:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"333","street":"MOUNT EVERETT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"16","incident_number":"I162104679","lat":"42.30896999","location":{"type":"Point","coordinates":[-71.082848,42.30897]},"long":"-71.08284839","month":"12","occurred_on_date":"2016-12-24T16:35:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"329","street":"BLUE HILL AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Wednesday","district":"D4","hour":"17","incident_number":"I162064310","lat":"42.340018","location":{"type":"Point","coordinates":[-71.082515,42.340018]},"long":"-71.082515","month":"8","occurred_on_date":"2016-08-10T17:20:00.000","offense_code":"01849","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - COCAINE, ETC.","reporting_area":"284","street":"COLUMBUS AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"B3","hour":"16","incident_number":"I162104634","lat":"42.28816223","location":{"type":"Point","coordinates":[-71.073628,42.288162]},"long":"-71.07362757","month":"12","occurred_on_date":"2016-12-23T16:00:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"436","street":"OAKWOOD ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Friday","district":"D14","hour":"22","incident_number":"I162104539","lat":"42.35441899","location":{"type":"Point","coordinates":[-71.150188,42.354419]},"long":"-71.15018788","month":"12","occurred_on_date":"2016-12-23T22:30:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"769","street":"MARKET ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Friday","district":"A7","hour":"12","incident_number":"I162104603","lat":"42.39146297","location":{"type":"Point","coordinates":[-71.001342,42.391463]},"long":"-71.00134187","month":"12","occurred_on_date":"2016-12-23T12:00:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"2","street":"WALDEMAR AVE","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Thursday","district":"B3","hour":"6","incident_number":"I162045424","location":{"type":"Point","coordinates":[0,0]},"month":"6","occurred_on_date":"2016-06-09T06:35:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Monday","district":"B2","hour":"22","incident_number":"I162044988","location":{"type":"Point","coordinates":[0,0]},"month":"6","occurred_on_date":"2016-06-06T22:10:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"259","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Friday","district":"E18","hour":"21","incident_number":"I162104523","lat":"42.27413021","location":{"type":"Point","coordinates":[-71.116746,42.27413]},"long":"-71.11674617","month":"12","occurred_on_date":"2016-12-23T21:22:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"490","street":"AMERICAN LEGION HWY","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"18","incident_number":"I162104721","lat":"42.3021658","location":{"type":"Point","coordinates":[-71.081183,42.302166]},"long":"-71.08118295","month":"12","occurred_on_date":"2016-12-24T18:00:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"456","street":"ERIE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Friday","district":"C11","hour":"23","incident_number":"I162104548","lat":"42.27129722","location":{"type":"Point","coordinates":[-71.06324,42.271297]},"long":"-71.06323991","month":"12","occurred_on_date":"2016-12-23T23:26:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"387","street":"BEARSE AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Wednesday","district":"B2","hour":"15","incident_number":"I162101896","lat":"42.33041863","location":{"type":"Point","coordinates":[-71.082501,42.330419]},"long":"-71.0825013","month":"12","occurred_on_date":"2016-12-14T15:40:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"280","street":"PALMER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Saturday","district":"A1","hour":"16","incident_number":"I162104671","lat":"42.35157221","location":{"type":"Point","coordinates":[-71.063539,42.351572]},"long":"-71.06353927","month":"12","occurred_on_date":"2016-12-24T16:32:00.000","offense_code":"02403","offense_code_group":"Disorderly Conduct","offense_description":"DISTURBING THE PEACE","reporting_area":"117","street":"LAGRANGE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Friday","district":"A1","hour":"23","incident_number":"I162104540","lat":"42.35895455","location":{"type":"Point","coordinates":[-71.05035,42.358955]},"long":"-71.05035005","month":"12","occurred_on_date":"2016-12-23T23:38:00.000","offense_code":"00561","offense_code_group":"Other Burglary","offense_description":"BURGLARY - OTHER - ATTEMPT","reporting_area":"96","street":"CENTRAL WHARF","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Wednesday","district":"A1","hour":"3","incident_number":"I162066397","location":{"type":"Point","coordinates":[0,0]},"month":"8","occurred_on_date":"2016-08-17T03:00:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"C11","hour":"18","incident_number":"I162104699","lat":"42.30344978","location":{"type":"Point","coordinates":[-71.071539,42.30345]},"long":"-71.0715395","month":"12","occurred_on_date":"2016-12-24T18:30:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Monday","district":"D4","hour":"10","incident_number":"I162104615","lat":"42.34410905","location":{"type":"Point","coordinates":[-71.075177,42.344109]},"long":"-71.07517689","month":"12","occurred_on_date":"2016-12-12T10:17:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"153","street":"WARREN AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Friday","district":"A7","hour":"23","incident_number":"I162102571","lat":"42.38306367","location":{"type":"Point","coordinates":[-71.016016,42.383064]},"long":"-71.0160162","month":"12","occurred_on_date":"2016-12-16T23:12:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"14","street":"BYRON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Monday","district":"B2","hour":"22","incident_number":"I152055889","lat":"42.315969","location":{"type":"Point","coordinates":[-71.066253,42.315969]},"long":"-71.066253","month":"7","occurred_on_date":"2015-07-06T22:28:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"258","street":"COLUMBIA RD","ucr_part":"Part One","year":"2015"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Friday","district":"C11","hour":"23","incident_number":"I162104551","lat":"42.28678712","location":{"type":"Point","coordinates":[-71.044917,42.286787]},"long":"-71.0449173","month":"12","occurred_on_date":"2016-12-23T23:10:00.000","offense_code":"03111","offense_code_group":"License Violation","offense_description":"LICENSE PREMISE VIOLATION","reporting_area":"381","street":"NEPONSET AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"13","incident_number":"I162104650","lat":"42.28152196","location":{"type":"Point","coordinates":[-71.090084,42.281522]},"long":"-71.09008408","month":"12","occurred_on_date":"2016-12-24T13:24:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"428","street":"WOOLSON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Monday","district":"A7","hour":"16","incident_number":"I162097131","lat":"42.3722597","location":{"type":"Point","coordinates":[-71.036031,42.37226]},"long":"-71.03603065","month":"11","occurred_on_date":"2016-11-28T16:30:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"28","street":"CHELSEA ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Thursday","district":"D4","hour":"12","incident_number":"I162088013","lat":"42.33285585","location":{"type":"Point","coordinates":[-71.072624,42.332856]},"long":"-71.07262418","month":"10","occurred_on_date":"2016-10-27T12:39:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"179","street":"MASSACHUSETTS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"0","incident_number":"I162104549","lat":"42.28678712","location":{"type":"Point","coordinates":[-71.044917,42.286787]},"long":"-71.0449173","month":"12","occurred_on_date":"2016-12-24T00:02:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"381","street":"NEPONSET AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Friday","district":"A1","hour":"22","incident_number":"I162104534","lat":"42.35521625","location":{"type":"Point","coordinates":[-71.060129,42.355216]},"long":"-71.06012863","month":"12","occurred_on_date":"2016-12-23T22:44:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"105","street":"SUMMER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Thursday","district":"A1","hour":"18","incident_number":"I162003807","lat":"42.361547","location":{"type":"Point","coordinates":[-71.053921,42.361547]},"long":"-71.053921","month":"1","occurred_on_date":"2016-01-14T18:35:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"91","street":"CROSS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Tuesday","district":"C11","hour":"12","incident_number":"I162099469","lat":"42.30385443","location":{"type":"Point","coordinates":[-71.060876,42.303854]},"long":"-71.06087585","month":"12","occurred_on_date":"2016-12-06T12:22:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"349","street":"ADAMS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"21","incident_number":"I162104726","lat":"42.29542943","location":{"type":"Point","coordinates":[-71.076612,42.295429]},"long":"-71.07661172","month":"12","occurred_on_date":"2016-12-24T21:25:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"447","street":"SPENCER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Wednesday","district":"E5","hour":"0","incident_number":"I162093900","lat":"42.25661385","location":{"type":"Point","coordinates":[-71.14449,42.256614]},"long":"-71.14449037","month":"11","occurred_on_date":"2016-11-09T00:00:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"822","street":"GEORGETOWNE DR","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"19","incident_number":"I162104708","lat":"42.27666319","location":{"type":"Point","coordinates":[-71.097572,42.276663]},"long":"-71.09757173","month":"12","occurred_on_date":"2016-12-24T19:15:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"469","street":"ALMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Friday","district":"A1","hour":"13","incident_number":"I162104384","lat":"42.35103105","location":{"type":"Point","coordinates":[-71.063733,42.351031]},"long":"-71.06373331","month":"12","occurred_on_date":"2016-12-23T13:13:00.000","offense_code":"00351","offense_code_group":"Robbery","offense_description":"ROBBERY - BANK","reporting_area":"117","street":"STUART ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"9","incident_number":"I162104600","lat":"42.32320895","location":{"type":"Point","coordinates":[-71.08433,42.323209]},"long":"-71.08432965","month":"12","occurred_on_date":"2016-12-24T09:01:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"298","street":"WALNUT AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"5","incident_number":"I162104584","lat":"42.31013569","location":{"type":"Point","coordinates":[-71.070293,42.310136]},"long":"-71.0702931","month":"12","occurred_on_date":"2016-12-24T05:30:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"333","street":"MOUNT EVERETT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Tuesday","district":"E18","hour":"12","incident_number":"I162099423","lat":"42.24316302","location":{"type":"Point","coordinates":[-71.141752,42.243163]},"long":"-71.14175229","month":"12","occurred_on_date":"2016-12-06T12:33:00.000","offense_code":"03208","offense_code_group":"Property Lost","offense_description":"PROPERTY - MISSING","reporting_area":"534","street":"RIVER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Thursday","district":"B3","hour":"16","incident_number":"I162104669","lat":"42.2973366","location":{"type":"Point","coordinates":[-71.087296,42.297337]},"long":"-71.08729604","month":"12","occurred_on_date":"2016-12-15T16:45:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"463","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162104651","lat":"42.31016618","location":{"type":"Point","coordinates":[-71.05991,42.310166]},"long":"-71.05991042","month":"12","occurred_on_date":"2016-12-24T13:14:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"823","street":"PLEASANT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"15","incident_number":"I162104678","lat":"42.29356132","location":{"type":"Point","coordinates":[-71.081295,42.293561]},"long":"-71.08129517","month":"12","occurred_on_date":"2016-12-24T15:51:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"442","street":"KERWIN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"10","incident_number":"I162104614","lat":"42.33961962","location":{"type":"Point","coordinates":[-71.076992,42.33962]},"long":"-71.07699237","month":"12","occurred_on_date":"2016-12-24T10:09:00.000","offense_code":"00522","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - NO FORCE","reporting_area":"156","street":"W CONCORD ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B2","hour":"22","incident_number":"I162099372","lat":"42.31015176","location":{"type":"Point","coordinates":[-71.084753,42.310152]},"long":"-71.08475251","month":"12","occurred_on_date":"2016-12-05T22:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"320","street":"GEORGIA ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Friday","district":"B3","hour":"20","incident_number":"I162104532","lat":"42.30273607","location":{"type":"Point","coordinates":[-71.082485,42.302736]},"long":"-71.08248544","month":"12","occurred_on_date":"2016-12-23T20:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"458","street":"WOLCOTT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Monday","district":"D14","hour":"15","incident_number":"I162097114","lat":"42.35580706","location":{"type":"Point","coordinates":[-71.149322,42.355807]},"long":"-71.14932167","month":"11","occurred_on_date":"2016-11-28T15:04:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"768","street":"MARKET ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"7","incident_number":"I162104641","lat":"42.30857295","location":{"type":"Point","coordinates":[-71.114226,42.308573]},"long":"-71.11422565","month":"12","occurred_on_date":"2016-12-24T07:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"646","street":"SEDGWICK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"10","incident_number":"I162104623","lat":"42.30648026","location":{"type":"Point","coordinates":[-71.066758,42.30648]},"long":"-71.06675783","month":"12","occurred_on_date":"2016-12-24T10:30:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"340","street":"BOWDOIN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"18","incident_number":"I162104476","lat":"42.31933723","location":{"type":"Point","coordinates":[-71.088852,42.319337]},"long":"-71.08885165","month":"12","occurred_on_date":"2016-12-23T18:09:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"308","street":"HAROLD ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"C11","hour":"23","incident_number":"I162104544","lat":"42.30829668","location":{"type":"Point","coordinates":[-71.067478,42.308297]},"long":"-71.06747771","month":"12","occurred_on_date":"2016-12-23T23:15:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"335","street":"CLARKSON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"B2","hour":"16","incident_number":"I152086073","location":{"type":"Point","coordinates":[0,0]},"month":"10","occurred_on_date":"2015-10-16T16:19:00.000","offense_code":"03807","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER CITY VEHICLE","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Saturday","district":"A1","hour":"16","incident_number":"I162104676","lat":"42.35272948","location":{"type":"Point","coordinates":[-71.062563,42.352729]},"long":"-71.06256291","month":"12","occurred_on_date":"2016-12-24T16:30:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"111","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Friday","district":"B2","hour":"6","incident_number":"I152100045","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2015-12-04T06:26:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"20","incident_number":"I162104725","lat":"42.29890324","location":{"type":"Point","coordinates":[-71.080586,42.298903]},"long":"-71.08058632","month":"12","occurred_on_date":"2016-12-24T20:59:00.000","offense_code":"03402","offense_code_group":"Service","offense_description":"ANIMAL INCIDENTS","reporting_area":"445","street":"MAYBROOK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Monday","district":"A15","hour":"11","incident_number":"I162097130","lat":"42.37736388","location":{"type":"Point","coordinates":[-71.057914,42.377364]},"long":"-71.05791376","month":"11","occurred_on_date":"2016-11-28T11:00:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"900","street":"BUNKER HILL ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"3","incident_number":"I162104577","lat":"42.37766","location":{"type":"Point","coordinates":[-71.035602,42.37766]},"long":"-71.03560198","month":"12","occurred_on_date":"2016-12-24T03:20:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"23","street":"PRINCETON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"E13","hour":"0","incident_number":"I162104591","lat":"42.31534411","location":{"type":"Point","coordinates":[-71.095847,42.315344]},"long":"-71.09584709","month":"12","occurred_on_date":"2016-12-24T00:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"307","street":"WALNUT PARK","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Friday","district":"E18","hour":"20","incident_number":"I162104506","lat":"42.25711406","location":{"type":"Point","coordinates":[-71.117191,42.257114]},"long":"-71.11719143","month":"12","occurred_on_date":"2016-12-23T20:21:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"519","street":"PIERCE ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Thursday","district":"C6","hour":"12","incident_number":"I162005571","lat":"-1","location":{"type":"Point","coordinates":[-1,-1]},"long":"-1","month":"1","occurred_on_date":"2016-01-14T12:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"207","street":"PIER 4 BLVD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Tuesday","district":"B2","hour":"10","incident_number":"I162099410","lat":"42.32773335","location":{"type":"Point","coordinates":[-71.07743,42.327733]},"long":"-71.07742977","month":"12","occurred_on_date":"2016-12-06T10:51:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","reporting_area":"268","street":"ADAMS ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"A1","hour":"11","incident_number":"I162098593","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2016-12-03T11:53:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B2","hour":"12","incident_number":"I162097064","lat":"42.31116054","location":{"type":"Point","coordinates":[-71.075481,42.311161]},"long":"-71.07548091","month":"11","occurred_on_date":"2016-11-28T12:22:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"328","street":"LAWRENCE AVE","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Saturday","district":"A7","hour":"18","incident_number":"I162098716","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2016-12-03T18:35:00.000","offense_code":"02905","offense_code_group":"Violations","offense_description":"VAL - OPERATING WITHOUT LICENSE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162104648","lat":"42.30839354","location":{"type":"Point","coordinates":[-71.064731,42.308394]},"long":"-71.06473124","month":"12","occurred_on_date":"2016-12-24T13:47:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"334","street":"BOWDOIN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"16","incident_number":"I162104688","lat":"42.31042639","location":{"type":"Point","coordinates":[-71.059652,42.310426]},"long":"-71.05965194","month":"12","occurred_on_date":"2016-12-24T16:39:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"823","street":"PLEASANT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Friday","district":"D4","hour":"19","incident_number":"I162104494","lat":"42.35176179","location":{"type":"Point","coordinates":[-71.074522,42.351762]},"long":"-71.07452168","month":"12","occurred_on_date":"2016-12-23T19:40:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"134","street":"NEWBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Monday","district":"B2","hour":"17","incident_number":"I162101266","lat":"42.33332888","location":{"type":"Point","coordinates":[-71.106595,42.333329]},"long":"-71.10659534","month":"12","occurred_on_date":"2016-12-12T17:03:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"605","street":"HUNTINGTON AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E18","hour":"15","incident_number":"I162104674","lat":"42.2867659","location":{"type":"Point","coordinates":[-71.108376,42.286766]},"long":"-71.10837643","month":"12","occurred_on_date":"2016-12-24T15:40:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"14","incident_number":"I162104659","lat":"42.32291406","location":{"type":"Point","coordinates":[-71.103284,42.322914]},"long":"-71.10328402","month":"12","occurred_on_date":"2016-12-24T14:52:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"579","street":"CENTRE ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","district":"C6","hour":"22","incident_number":"I162042217","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-29T22:12:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"12","incident_number":"I162104639","lat":"42.29848866","location":{"type":"Point","coordinates":[-71.063133,42.298489]},"long":"-71.06313294","month":"12","occurred_on_date":"2016-12-24T12:40:00.000","offense_code":"03830","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PERSONAL INJURY","reporting_area":"356","street":"GENEVA AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"13","incident_number":"I162104642","lat":"42.30671755","location":{"type":"Point","coordinates":[-71.058629,42.306718]},"long":"-71.05862903","month":"12","occurred_on_date":"2016-12-24T13:31:00.000","offense_code":"03820","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT INVOLVING PEDESTRIAN - INJURY","reporting_area":"348","street":"DORCHESTER AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Thursday","district":"A15","hour":"18","incident_number":"I162096639","lat":"42.37189775","location":{"type":"Point","coordinates":[-71.060285,42.371898]},"long":"-71.06028506","month":"11","occurred_on_date":"2016-11-10T18:00:00.000","offense_code":"00616","offense_code_group":"Larceny","offense_description":"LARCENY THEFT OF BICYCLE","reporting_area":"40","street":"WARREN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Wednesday","district":"E18","hour":"18","incident_number":"I162104538","lat":"42.28544884","location":{"type":"Point","coordinates":[-71.110559,42.285449]},"long":"-71.11055934","month":"12","occurred_on_date":"2016-12-21T18:30:00.000","offense_code":"03207","offense_code_group":"Property Found","offense_description":"PROPERTY - FOUND","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"A1","hour":"23","incident_number":"I162069445","location":{"type":"Point","coordinates":[0,0]},"month":"8","occurred_on_date":"2016-08-26T23:07:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"2","incident_number":"I162104670","lat":"42.27282972","location":{"type":"Point","coordinates":[-71.095604,42.27283]},"long":"-71.09560402","month":"12","occurred_on_date":"2016-12-24T02:45:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"472","street":"WOODHAVEN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"16","incident_number":"I162104729","lat":"42.29278843","location":{"type":"Point","coordinates":[-71.088519,42.292788]},"long":"-71.08851888","month":"12","occurred_on_date":"2016-12-24T16:44:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"440","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Monday","district":"E18","hour":"11","incident_number":"I162097040","lat":"42.26495597","location":{"type":"Point","coordinates":[-71.101088,42.264956]},"long":"-71.10108806","month":"11","occurred_on_date":"2016-11-28T11:25:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"485","street":"SUNCREST RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"B2","hour":"17","incident_number":"I162103353","lat":"42.32257063","location":{"type":"Point","coordinates":[-71.076888,42.322571]},"long":"-71.07688775","month":"12","occurred_on_date":"2016-12-19T17:59:00.000","offense_code":"03402","offense_code_group":"Service","offense_description":"ANIMAL INCIDENTS","reporting_area":"265","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Saturday","district":"B2","hour":"2","incident_number":"I162104573","lat":"42.33402461","location":{"type":"Point","coordinates":[-71.09039,42.334025]},"long":"-71.09039049","month":"12","occurred_on_date":"2016-12-24T02:46:00.000","offense_code":"02101","offense_code_group":"Operating Under the Influence","offense_description":"OPERATING UNDER THE INFLUENCE ALCOHOL","reporting_area":"289","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Friday","district":"C11","hour":"22","incident_number":"I162104528","lat":"42.31319382","location":{"type":"Point","coordinates":[-71.065008,42.313194]},"long":"-71.06500833","month":"12","occurred_on_date":"2016-12-23T22:25:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"332","street":"HANCOCK ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Tuesday","district":"B3","hour":"13","incident_number":"I162099466","lat":"42.29072142","location":{"type":"Point","coordinates":[-71.073734,42.290721]},"long":"-71.07373385","month":"12","occurred_on_date":"2016-12-06T13:01:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"450","street":"TALBOT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Monday","district":"B2","hour":"12","incident_number":"I162097112","lat":"42.31894677","location":{"type":"Point","coordinates":[-71.074528,42.318947]},"long":"-71.0745277","month":"11","occurred_on_date":"2016-11-28T12:50:00.000","offense_code":"03130","offense_code_group":"Search Warrants","offense_description":"SEARCH WARRANT","reporting_area":"261","street":"JULIAN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Saturday","district":"D4","hour":"21","incident_number":"I162104735","lat":"42.34243945","location":{"type":"Point","coordinates":[-71.084455,42.342439]},"long":"-71.0844553","month":"12","occurred_on_date":"2016-12-24T21:54:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"594","street":"MASSACHUSETTS AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"6","incident_number":"I162104588","lat":"42.2833592","location":{"type":"Point","coordinates":[-71.0686,42.283359]},"long":"-71.06859987","month":"12","occurred_on_date":"2016-12-24T06:30:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"402","street":"ATHERSTONE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"7","incident_number":"I162104667","lat":"42.37081805","location":{"type":"Point","coordinates":[-71.039291,42.370818]},"long":"-71.03929078","month":"12","occurred_on_date":"2016-12-24T07:00:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"28","street":"PARIS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Tuesday","district":"D4","hour":"0","incident_number":"I162099497","lat":"42.35118005","location":{"type":"Point","coordinates":[-71.076666,42.35118]},"long":"-71.07666607","month":"12","occurred_on_date":"2016-12-06T00:07:00.000","offense_code":"00540","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - FORCE","reporting_area":"133","street":"NEWBURY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"20","incident_number":"I162097013","lat":"42.32223668","location":{"type":"Point","coordinates":[-71.068353,42.322237]},"long":"-71.06835304","month":"11","occurred_on_date":"2016-11-27T20:45:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"182","street":"ROBEY ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"D4","hour":"18","incident_number":"I162075854","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2016-09-16T18:00:00.000","offense_code":"01106","offense_code_group":"Confidence Games","offense_description":"FRAUD - CREDIT CARD / ATM FRAUD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"18","incident_number":"I162104709","lat":"42.35148742","location":{"type":"Point","coordinates":[-71.136608,42.351487]},"long":"-71.13660797","month":"12","occurred_on_date":"2016-12-24T18:55:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"795","street":"GRIGGS PL","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"11","incident_number":"I162104611","lat":"42.32587293","location":{"type":"Point","coordinates":[-71.088882,42.325873]},"long":"-71.0888816","month":"12","occurred_on_date":"2016-12-24T11:10:37.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"293","street":"JUNIPER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"18","incident_number":"I162102773","lat":"42.33598881","location":{"type":"Point","coordinates":[-71.077647,42.335989]},"long":"-71.07764721","month":"12","occurred_on_date":"2016-12-17T18:03:00.000","offense_code":"03807","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER CITY VEHICLE","reporting_area":"271","street":"NORTHAMPTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Tuesday","district":"B2","hour":"9","incident_number":"I162101451","lat":"42.32947458","location":{"type":"Point","coordinates":[-71.10442,42.329475]},"long":"-71.10442024","month":"12","occurred_on_date":"2016-12-13T09:17:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"585","street":"PARKER HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"0","incident_number":"I162104579","lat":"42.31966035","location":{"type":"Point","coordinates":[-71.089469,42.31966]},"long":"-71.08946896","month":"12","occurred_on_date":"2016-12-24T00:55:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"308","street":"WALNUT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"3","incident_number":"I162104785","lat":"42.31812574","location":{"type":"Point","coordinates":[-71.090256,42.318126]},"long":"-71.09025637","month":"12","occurred_on_date":"2016-12-25T03:40:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"312","street":"TOWNSEND ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E5","hour":"23","incident_number":"I162104756","lat":"42.27562519","location":{"type":"Point","coordinates":[-71.131422,42.275625]},"long":"-71.13142204","month":"12","occurred_on_date":"2016-12-24T23:43:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"551","street":"GLENDOWER RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"3","incident_number":"I162104787","lat":"42.31265126","location":{"type":"Point","coordinates":[-71.114145,42.312651]},"long":"-71.11414509","month":"12","occurred_on_date":"2016-12-25T03:55:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"645","street":"CENTRE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"C11","hour":"18","incident_number":"I162104876","lat":"42.31106545","location":{"type":"Point","coordinates":[-71.066932,42.311065]},"long":"-71.06693233","month":"12","occurred_on_date":"2016-12-25T18:32:00.000","offense_code":"00615","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT OF MV PARTS & ACCESSORIES","reporting_area":"334","street":"RONAN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Sunday","district":"A1","hour":"14","incident_number":"I162096902","lat":"42.35143483","location":{"type":"Point","coordinates":[-71.069693,42.351435]},"long":"-71.06969334","month":"11","occurred_on_date":"2016-11-27T14:53:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"120","street":"PARK PLZ","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"23","incident_number":"I162104755","lat":"42.28368807","location":{"type":"Point","coordinates":[-71.065879,42.283688]},"long":"-71.06587898","month":"12","occurred_on_date":"2016-12-24T23:40:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"402","street":"FULLER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"3","incident_number":"I162104781","lat":"42.28701738","location":{"type":"Point","coordinates":[-71.077065,42.287017]},"long":"-71.07706453","month":"12","occurred_on_date":"2016-12-25T03:54:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"435","street":"WHITMAN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Sunday","district":"A1","hour":"8","incident_number":"I162104794","lat":"42.35892253","location":{"type":"Point","coordinates":[-71.056354,42.358923]},"long":"-71.05635419","month":"12","occurred_on_date":"2016-12-25T08:51:00.000","offense_code":"00540","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - FORCE","reporting_area":"93","street":"STATE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B3","hour":"23","incident_number":"I162034261","lat":"42.29746606","location":{"type":"Point","coordinates":[-71.082743,42.297466]},"long":"-71.0827431","month":"5","occurred_on_date":"2016-05-02T23:37:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"444","street":"BICKNELL ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"19","incident_number":"I162104885","lat":"42.28024352","location":{"type":"Point","coordinates":[-71.084815,42.280244]},"long":"-71.08481509","month":"12","occurred_on_date":"2016-12-25T19:52:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"421","street":"MORTON VILLAGE DR","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"18","incident_number":"I162104758","lat":"42.37907259","location":{"type":"Point","coordinates":[-71.033867,42.379073]},"long":"-71.03386728","month":"12","occurred_on_date":"2016-12-24T18:30:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"824","street":"LEXINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Sunday","district":"E18","hour":"9","incident_number":"I162104803","lat":"42.24686098","location":{"type":"Point","coordinates":[-71.12407,42.246861]},"long":"-71.12406975","month":"12","occurred_on_date":"2016-12-25T09:27:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"518","street":"GLENWOOD AVE","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"B2","hour":"0","incident_number":"I162098500","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2016-12-03T00:50:00.000","offense_code":"02905","offense_code_group":"Violations","offense_description":"VAL - OPERATING WITHOUT LICENSE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"2","incident_number":"I162100892","lat":"42.28465991","location":{"type":"Point","coordinates":[-71.0784,42.28466]},"long":"-71.07839997","month":"12","occurred_on_date":"2016-12-24T02:06:00.000","offense_code":"00735","offense_code_group":"Auto Theft Recovery","offense_description":"RECOVERED - MV RECOVERED IN BOSTON (STOLEN OUTSIDE BOSTON)","reporting_area":"434","street":"THETFORD AVE","ucr_part":"Other","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Sunday","district":"A7","hour":"6","incident_number":"I162104791","lat":"42.39146297","location":{"type":"Point","coordinates":[-71.001342,42.391463]},"long":"-71.00134187","month":"12","occurred_on_date":"2016-12-25T06:48:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"2","street":"WALDEMAR AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"21","incident_number":"I162104730","lat":"42.3018969","location":{"type":"Point","coordinates":[-71.085549,42.301897]},"long":"-71.08554944","month":"12","occurred_on_date":"2016-12-24T21:25:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"458","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9661","day_of_week":"Monday","district":"A1","hour":"16","incident_number":"I162097140","lat":"42.36510011","location":{"type":"Point","coordinates":[-71.05242,42.3651]},"long":"-71.05242015","month":"11","occurred_on_date":"2016-11-28T16:41:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"88","street":"CLARK ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"D4","hour":"20","incident_number":"I162096695","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-26T20:24:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B3","hour":"9","incident_number":"I162104806","lat":"42.29890415","location":{"type":"Point","coordinates":[-71.081875,42.298904]},"long":"-71.08187549","month":"12","occurred_on_date":"2016-12-25T09:59:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"457","street":"BRADSHAW ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"B2","hour":"19","incident_number":"I162035327","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-06T19:25:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"23","incident_number":"I162104746","lat":"42.28378886","location":{"type":"Point","coordinates":[-71.076664,42.283789]},"long":"-71.07666377","month":"12","occurred_on_date":"2016-12-24T23:09:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"434","street":"ARMANDINE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"4","incident_number":"I162104786","lat":"42.28784229","location":{"type":"Point","coordinates":[-71.072631,42.287842]},"long":"-71.07263066","month":"12","occurred_on_date":"2016-12-25T04:44:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"436","street":"WITHINGTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Monday","district":"E13","hour":"10","incident_number":"I152074274","lat":"42.301898","location":{"type":"Point","coordinates":[-71.114466,42.301898]},"long":"-71.114466","month":"9","occurred_on_date":"2015-09-07T10:39:00.000","offense_code":"02660","offense_code_group":"Other","offense_description":"OTHER OFFENSE","reporting_area":"652","street":"NEW WASHINGTON ST","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"5","incident_number":"I162104788","lat":"42.28295116","location":{"type":"Point","coordinates":[-71.093775,42.282951]},"long":"-71.09377542","month":"12","occurred_on_date":"2016-12-25T05:31:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"466","street":"ORMOND ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"20","incident_number":"I162104892","lat":"42.32647732","location":{"type":"Point","coordinates":[-71.082615,42.326477]},"long":"-71.08261472","month":"12","occurred_on_date":"2016-12-25T20:55:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"281","street":"WINTHROP ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"19","incident_number":"I162104732","lat":"42.29786606","location":{"type":"Point","coordinates":[-71.063325,42.297866]},"long":"-71.06332517","month":"12","occurred_on_date":"2016-12-24T19:32:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"360","street":"PARK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"8","incident_number":"I162104793","lat":"42.30930987","location":{"type":"Point","coordinates":[-71.133763,42.30931]},"long":"-71.13376259","month":"12","occurred_on_date":"2016-12-25T08:43:00.000","offense_code":"03802","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PROPERTY �DAMAGE","reporting_area":"656","street":"POND ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Sunday","district":"E18","hour":"1","incident_number":"I162104767","lat":"42.24260011","location":{"type":"Point","coordinates":[-71.13035,42.2426]},"long":"-71.13035022","month":"12","occurred_on_date":"2016-12-25T01:47:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"523","street":"HYDE PARK AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9661","day_of_week":"Sunday","district":"A1","hour":"9","incident_number":"I162104795","lat":"42.36606269","location":{"type":"Point","coordinates":[-71.056518,42.366063]},"long":"-71.05651817","month":"12","occurred_on_date":"2016-12-25T09:03:00.000","offense_code":"03807","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER CITY VEHICLE","reporting_area":"80","street":"SNOW HILL ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","district":"B3","hour":"18","incident_number":"I162033855","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-01T18:53:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"C11","hour":"0","incident_number":"I162035405","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-07T00:54:00.000","offense_code":"01843","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS B - INTENT TO MFR DIST DISP","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Sunday","district":"D4","hour":"11","incident_number":"I162096823","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-27T11:54:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"C11","hour":"9","incident_number":"I162056846","lat":"42.320483","location":{"type":"Point","coordinates":[-71.061514,42.320483]},"long":"-71.061514","month":"7","occurred_on_date":"2016-07-17T09:23:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"186","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"C11","hour":"18","incident_number":"I162104883","lat":"42.32134007","location":{"type":"Point","coordinates":[-71.054755,42.32134]},"long":"-71.05475502","month":"12","occurred_on_date":"2016-12-25T18:25:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"235","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"14","incident_number":"I162104849","lat":"42.30806355","location":{"type":"Point","coordinates":[-71.102545,42.308064]},"long":"-71.10254489","month":"12","occurred_on_date":"2016-12-25T14:39:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"570","street":"FOREST HILLS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Monday","district":"D14","hour":"0","incident_number":"I162096962","lat":"42.35006683","location":{"type":"Point","coordinates":[-71.149398,42.350067]},"long":"-71.14939767","month":"11","occurred_on_date":"2016-11-28T00:00:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"778","street":"ELKO ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Friday","district":"C11","hour":"20","incident_number":"I162104511","lat":"42.30461251","location":{"type":"Point","coordinates":[-71.072966,42.304613]},"long":"-71.07296566","month":"12","occurred_on_date":"2016-12-23T20:46:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"462","street":"GENEVA AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Sunday","district":"D14","hour":"11","incident_number":"I162104826","lat":"42.36204807","location":{"type":"Point","coordinates":[-71.139115,42.362048]},"long":"-71.13911492","month":"12","occurred_on_date":"2016-12-25T11:37:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"807","street":"JUSTINIAN WAY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"15","incident_number":"I162104817","lat":"42.32397153","location":{"type":"Point","coordinates":[-71.068112,42.323972]},"long":"-71.0681125","month":"12","occurred_on_date":"2016-12-23T15:00:00.000","offense_code":"00615","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT OF MV PARTS & ACCESSORIES","reporting_area":"182","street":"NORFOLK AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"16","incident_number":"I162104865","lat":"42.31011153","location":{"type":"Point","coordinates":[-71.08299,42.310112]},"long":"-71.0829899","month":"12","occurred_on_date":"2016-12-25T16:33:00.000","offense_code":"03810","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - INVOLVING �BICYCLE - INJURY","reporting_area":"320","street":"WARREN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Saturday","district":"E13","hour":"22","incident_number":"I162104740","lat":"42.31789622","location":{"type":"Point","coordinates":[-71.11277,42.317896]},"long":"-71.11276973","month":"12","occurred_on_date":"2016-12-24T22:17:00.000","offense_code":"03810","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - INVOLVING �BICYCLE - INJURY","reporting_area":"639","street":"CENTRE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"1","incident_number":"I162104771","lat":"42.32483301","location":{"type":"Point","coordinates":[-71.101648,42.324833]},"long":"-71.10164757","month":"12","occurred_on_date":"2016-12-25T01:41:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"916","street":"BICKFORD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Friday","district":"C11","hour":"20","incident_number":"I162084303","lat":"42.30183841","location":{"type":"Point","coordinates":[-71.061278,42.301838]},"long":"-71.06127819","month":"10","occurred_on_date":"2016-10-14T20:17:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"352","street":"ARCADIA ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Sunday","district":"E18","hour":"9","incident_number":"I162104846","lat":"42.25296948","location":{"type":"Point","coordinates":[-71.125526,42.252969]},"long":"-71.12552641","month":"12","occurred_on_date":"2016-12-25T09:00:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"522","street":"FACTORY ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Saturday","district":"A1","hour":"16","incident_number":"I162019411","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-12T16:55:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Friday","district":"C11","hour":"16","incident_number":"I162050298","lat":"42.30183841","location":{"type":"Point","coordinates":[-71.061278,42.301838]},"long":"-71.06127819","month":"6","occurred_on_date":"2016-06-24T16:23:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"352","street":"ARCADIA ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"3","incident_number":"I162104785","lat":"42.31812574","location":{"type":"Point","coordinates":[-71.090256,42.318126]},"long":"-71.09025637","month":"12","occurred_on_date":"2016-12-25T03:40:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"312","street":"TOWNSEND ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Tuesday","district":"C11","hour":"0","incident_number":"I162099309","lat":"42.30422176","location":{"type":"Point","coordinates":[-71.079185,42.304222]},"long":"-71.07918459","month":"12","occurred_on_date":"2016-12-06T00:01:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"460","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Sunday","district":"B2","hour":"2","incident_number":"I162104772","lat":"42.3337596","location":{"type":"Point","coordinates":[-71.086847,42.33376]},"long":"-71.08684747","month":"12","occurred_on_date":"2016-12-25T02:59:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"286","street":"RUGGLES ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"7","incident_number":"I162104792","lat":"42.28152196","location":{"type":"Point","coordinates":[-71.090084,42.281522]},"long":"-71.09008408","month":"12","occurred_on_date":"2016-12-25T07:13:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"428","street":"WOOLSON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"21","incident_number":"I162104895","lat":"42.29350272","location":{"type":"Point","coordinates":[-71.073449,42.293503]},"long":"-71.07344862","month":"12","occurred_on_date":"2016-12-25T21:06:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"451","street":"WHEATLAND AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"B2","hour":"11","incident_number":"I162104823","lat":"42.31813522","location":{"type":"Point","coordinates":[-71.067634,42.318135]},"long":"-71.06763388","month":"12","occurred_on_date":"2016-12-25T11:40:34.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"238","street":"DUDLEY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Tuesday","district":"C11","hour":"0","incident_number":"I162104824","lat":"42.3173029","location":{"type":"Point","coordinates":[-71.057934,42.317303]},"long":"-71.05793388","month":"12","occurred_on_date":"2016-12-20T00:00:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"244","street":"TAFT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"E18","hour":"19","incident_number":"I162104889","lat":"42.27024204","location":{"type":"Point","coordinates":[-71.10687,42.270242]},"long":"-71.10687003","month":"12","occurred_on_date":"2016-12-25T19:43:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"478","street":"SEFTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"17","incident_number":"I162104870","lat":"42.30029456","location":{"type":"Point","coordinates":[-71.062841,42.300295]},"long":"-71.0628407","month":"12","occurred_on_date":"2016-12-25T17:56:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"352","street":"CHARLES ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Sunday","district":"E13","hour":"16","incident_number":"I162104864","lat":"42.30943548","location":{"type":"Point","coordinates":[-71.10457,42.309435]},"long":"-71.10456991","month":"12","occurred_on_date":"2016-12-25T16:05:00.000","offense_code":"03108","offense_code_group":"Fire Related Reports","offense_description":"FIRE REPORT - HOUSE, BUILDING, ETC.","reporting_area":"573","street":"GREEN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E18","hour":"18","incident_number":"I162104697","lat":"42.24260011","location":{"type":"Point","coordinates":[-71.13035,42.2426]},"long":"-71.13035022","month":"12","occurred_on_date":"2016-12-24T18:39:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"523","street":"HYDE PARK AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E5","hour":"22","incident_number":"I162104743","lat":"42.25919952","location":{"type":"Point","coordinates":[-71.145524,42.2592]},"long":"-71.14552381","month":"12","occurred_on_date":"2016-12-24T22:31:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"822","street":"GEORGETOWNE DR","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"C11","hour":"11","incident_number":"I162104809","lat":"42.30481467","location":{"type":"Point","coordinates":[-71.072183,42.304815]},"long":"-71.07218295","month":"12","occurred_on_date":"2016-12-25T11:01:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"337","street":"EVERTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"6","incident_number":"I162104789","lat":"42.30460308","location":{"type":"Point","coordinates":[-71.066919,42.304603]},"long":"-71.06691869","month":"12","occurred_on_date":"2016-12-25T06:00:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"341","street":"NORTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"20","incident_number":"I162104900","lat":"42.28349369","location":{"type":"Point","coordinates":[-71.048313,42.283494]},"long":"-71.04831304","month":"12","occurred_on_date":"2016-12-25T20:28:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"384","street":"GALLIVAN BLVD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E5","hour":"22","incident_number":"I162104743","lat":"42.25919952","location":{"type":"Point","coordinates":[-71.145524,42.2592]},"long":"-71.14552381","month":"12","occurred_on_date":"2016-12-24T22:31:00.000","offense_code":"03802","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PROPERTY �DAMAGE","reporting_area":"822","street":"GEORGETOWNE DR","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"3","incident_number":"I162104777","lat":"42.33219302","location":{"type":"Point","coordinates":[-71.045054,42.332193]},"long":"-71.04505385","month":"12","occurred_on_date":"2016-12-25T03:21:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"219","street":"THOMAS PARK","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"13","incident_number":"I162104838","lat":"42.29808992","location":{"type":"Point","coordinates":[-71.071787,42.29809]},"long":"-71.07178667","month":"12","occurred_on_date":"2016-12-25T13:11:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"357","street":"CLAYBOURNE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Wednesday","district":"C11","hour":"11","incident_number":"I162096325","lat":"42.2783992","location":{"type":"Point","coordinates":[-71.066363,42.278399]},"long":"-71.06636305","month":"11","occurred_on_date":"2016-11-23T11:00:00.000","offense_code":"01106","offense_code_group":"Confidence Games","offense_description":"FRAUD - CREDIT CARD / ATM FRAUD","reporting_area":"388","street":"DORCHESTER AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Sunday","district":"E18","hour":"14","incident_number":"I162104853","lat":"42.24003544","location":{"type":"Point","coordinates":[-71.125393,42.240035]},"long":"-71.12539334","month":"12","occurred_on_date":"2016-12-25T14:45:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"524","street":"CRANMORE RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"15","incident_number":"I162097089","lat":"42.31728297","location":{"type":"Point","coordinates":[-71.091459,42.317283]},"long":"-71.09145893","month":"11","occurred_on_date":"2016-11-27T15:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"312","street":"WALNUT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"16","incident_number":"I162104862","lat":"42.34111504","location":{"type":"Point","coordinates":[-71.056325,42.341115]},"long":"-71.05632465","month":"12","occurred_on_date":"2016-12-25T16:22:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"199","street":"A ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Tuesday","hour":"23","incident_number":"I152054203","location":{"type":"Point","coordinates":[0,0]},"month":"6","occurred_on_date":"2015-06-30T23:17:00.000","offense_code":"03111","offense_code_group":"License Violation","offense_description":"LICENSE PREMISE VIOLATION","street":"HYDE","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Sunday","district":"A1","hour":"12","incident_number":"I162104884","lat":"42.35913932","location":{"type":"Point","coordinates":[-71.061969,42.359139]},"long":"-71.06196905","month":"12","occurred_on_date":"2016-12-25T12:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"72","street":"ASHBURTON PL","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"22","incident_number":"I162104750","lat":"42.27079016","location":{"type":"Point","coordinates":[-71.089656,42.27079]},"long":"-71.08965581","month":"12","occurred_on_date":"2016-12-24T22:48:00.000","offense_code":"02006","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W ARREST","reporting_area":"425","street":"MAMELON CIR","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Sunday","district":"E5","hour":"20","incident_number":"I162104891","lat":"42.27883524","location":{"type":"Point","coordinates":[-71.159434,42.278835]},"long":"-71.15943375","month":"12","occurred_on_date":"2016-12-25T20:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"709","street":"CENTRE ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Wednesday","district":"A1","hour":"14","incident_number":"I162024543","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-30T14:47:00.000","offense_code":"01844","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS C","street":"SUDBURY ST AND CAMBRIDGE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"22","incident_number":"I162104759","lat":"42.33675016","location":{"type":"Point","coordinates":[-71.076628,42.33675]},"long":"-71.07662788","month":"12","occurred_on_date":"2016-12-24T22:22:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"170","street":"WASHINGTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Sunday","district":"A15","hour":"11","incident_number":"I162104808","lat":"42.37351306","location":{"type":"Point","coordinates":[-71.059746,42.373513]},"long":"-71.0597463","month":"12","occurred_on_date":"2016-12-25T11:00:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"40","street":"PUTNAM ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"22","incident_number":"I162104768","lat":"42.34455947","location":{"type":"Point","coordinates":[-71.148908,42.344559]},"long":"-71.14890849","month":"12","occurred_on_date":"2016-12-24T22:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"776","street":"COLBORNE RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"16","incident_number":"I162104689","lat":"42.2803354","location":{"type":"Point","coordinates":[-71.08824,42.280335]},"long":"-71.08823995","month":"12","occurred_on_date":"2016-12-24T16:38:00.000","offense_code":"02664","offense_code_group":"Other","offense_description":"CUSTODIAL KIDNAPPING","reporting_area":"428","street":"NORFOLK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"C11","hour":"13","incident_number":"I162104836","lat":"42.30889362","location":{"type":"Point","coordinates":[-71.074105,42.308894]},"long":"-71.07410474","month":"12","occurred_on_date":"2016-12-25T13:00:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"337","street":"COLUMBIA RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Thursday","district":"C11","hour":"18","incident_number":"I162079841","lat":"42.30183841","location":{"type":"Point","coordinates":[-71.061278,42.301838]},"long":"-71.06127819","month":"9","occurred_on_date":"2016-09-29T18:50:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"352","street":"ARCADIA ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Sunday","district":"E5","hour":"14","incident_number":"I162104843","lat":"42.28717121","location":{"type":"Point","coordinates":[-71.126082,42.287171]},"long":"-71.12608213","month":"12","occurred_on_date":"2016-12-25T14:05:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"562","street":"MURRAY HILL RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Friday","district":"B2","hour":"10","incident_number":"I162102723","lat":"42.3220384","location":{"type":"Point","coordinates":[-71.071404,42.322038]},"long":"-71.07140396","month":"12","occurred_on_date":"2016-12-16T10:30:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"182","street":"ALBION ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Monday","district":"C11","hour":"18","incident_number":"I162038282","lat":"42.30183841","location":{"type":"Point","coordinates":[-71.061278,42.301838]},"long":"-71.06127819","month":"5","occurred_on_date":"2016-05-16T18:33:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"352","street":"ARCADIA ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"3","incident_number":"I162104776","lat":"42.32790482","location":{"type":"Point","coordinates":[-71.053056,42.327905]},"long":"-71.05305583","month":"12","occurred_on_date":"2016-12-25T03:00:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"914","street":"COLONEL MICHAEL J. MCDONO","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Tuesday","district":"A7","hour":"23","incident_number":"I162095776","lat":"42.38831841","location":{"type":"Point","coordinates":[-71.016004,42.388318]},"long":"-71.01600449","month":"11","occurred_on_date":"2016-11-22T23:00:00.000","offense_code":"00615","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT OF MV PARTS & ACCESSORIES","reporting_area":"12","street":"WILLIAM F MCCLELLAN HWY","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"22","incident_number":"I162104736","lat":"42.34455947","location":{"type":"Point","coordinates":[-71.148908,42.344559]},"long":"-71.14890849","month":"12","occurred_on_date":"2016-12-24T22:09:32.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"776","street":"COLBORNE RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Tuesday","district":"C11","hour":"19","incident_number":"I162099605","lat":"42.30626521","location":{"type":"Point","coordinates":[-71.068646,42.306265]},"long":"-71.06864556","month":"12","occurred_on_date":"2016-12-06T19:53:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"336","street":"NORTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"B3","hour":"1","incident_number":"I162104765","lat":"42.27193751","location":{"type":"Point","coordinates":[-71.092135,42.271938]},"long":"-71.0921354","month":"12","occurred_on_date":"2016-12-25T01:20:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"425","street":"BABSON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"22","incident_number":"I162104750","lat":"42.27079016","location":{"type":"Point","coordinates":[-71.089656,42.27079]},"long":"-71.08965581","month":"12","occurred_on_date":"2016-12-24T22:48:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"425","street":"MAMELON CIR","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"9","incident_number":"I162104798","lat":"42.32831844","location":{"type":"Point","coordinates":[-71.09454,42.328318]},"long":"-71.09454023","month":"12","occurred_on_date":"2016-12-25T09:09:00.000","offense_code":"03108","offense_code_group":"Fire Related Reports","offense_description":"FIRE REPORT - HOUSE, BUILDING, ETC.","reporting_area":"291","street":"LINWOOD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Sunday","district":"E18","hour":"13","incident_number":"I162104841","lat":"42.23290729","location":{"type":"Point","coordinates":[-71.131671,42.232907]},"long":"-71.13167059","month":"12","occurred_on_date":"2016-12-25T13:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"526","street":"CLIFFORD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Tuesday","district":"D4","hour":"17","incident_number":"I162099553","lat":"42.34749899","location":{"type":"Point","coordinates":[-71.079255,42.347499]},"long":"-71.07925506","month":"12","occurred_on_date":"2016-12-06T17:33:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"143","street":"HUNTINGTON AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"15","incident_number":"I162104855","lat":"42.30600262","location":{"type":"Point","coordinates":[-71.058787,42.306003]},"long":"-71.0587872","month":"12","occurred_on_date":"2016-12-25T15:23:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"348","street":"DORCHESTER AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Thursday","district":"B2","hour":"1","incident_number":"I162104871","lat":"42.31632131","location":{"type":"Point","coordinates":[-71.08923,42.316321]},"long":"-71.0892305","month":"12","occurred_on_date":"2016-12-22T01:00:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"312","street":"HOLWORTHY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Saturday","district":"D4","hour":"23","incident_number":"I162104751","lat":"42.33455374","location":{"type":"Point","coordinates":[-71.075608,42.334554]},"long":"-71.07560801","month":"12","occurred_on_date":"2016-12-24T23:43:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"270","street":"HARRISON AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"9","incident_number":"I162104807","lat":"42.35557275","location":{"type":"Point","coordinates":[-71.156355,42.355573]},"long":"-71.15635477","month":"12","occurred_on_date":"2016-12-25T09:56:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"768","street":"PARSONS ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Tuesday","district":"A7","hour":"9","incident_number":"I162018159","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-08T09:26:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Saturday","district":"E5","hour":"22","incident_number":"I162104742","lat":"42.29011783","location":{"type":"Point","coordinates":[-71.121879,42.290118]},"long":"-71.12187904","month":"12","occurred_on_date":"2016-12-24T22:03:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"563","street":"FAWNDALE RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"1","incident_number":"I162104760","lat":"42.29417346","location":{"type":"Point","coordinates":[-71.071938,42.294173]},"long":"-71.07193797","month":"12","occurred_on_date":"2016-12-25T01:08:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"451","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","district":"E13","hour":"20","incident_number":"I152100861","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2015-12-06T20:09:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","street":"AMORY ST","ucr_part":"Part Two","year":"2015"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E18","hour":"22","incident_number":"I162104734","lat":"42.26922388","location":{"type":"Point","coordinates":[-71.120853,42.269224]},"long":"-71.12085347","month":"12","occurred_on_date":"2016-12-24T22:13:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"496","street":"HYDE PARK AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"12","incident_number":"I162104835","lat":"42.32635435","location":{"type":"Point","coordinates":[-71.074223,42.326354]},"long":"-71.07422322","month":"12","occurred_on_date":"2016-12-25T12:17:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"180","street":"EUSTIS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"2","incident_number":"I162104770","lat":"42.28772576","location":{"type":"Point","coordinates":[-71.085923,42.287726]},"long":"-71.08592337","month":"12","occurred_on_date":"2016-12-25T02:16:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"439","street":"CALLENDER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Tuesday","district":"B3","hour":"9","incident_number":"I162097182","lat":"42.27846043","location":{"type":"Point","coordinates":[-71.077782,42.27846]},"long":"-71.07778192","month":"10","occurred_on_date":"2016-10-04T09:00:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"413","street":"GALLIVAN BLVD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Sunday","district":"E5","hour":"15","incident_number":"I162104860","lat":"42.28295084","location":{"type":"Point","coordinates":[-71.162866,42.282951]},"long":"-71.16286564","month":"12","occurred_on_date":"2016-12-25T15:09:00.000","offense_code":"03503","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - NOT REPORTED - LOCATED","reporting_area":"732","street":"DENT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Tuesday","district":"C11","hour":"8","incident_number":"I162042957","lat":"42.35358129","location":{"type":"Point","coordinates":[-71.062367,42.353581]},"long":"-71.06236665","month":"5","occurred_on_date":"2016-05-24T08:00:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"112","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9659","day_of_week":"Saturday","district":"A1","hour":"23","incident_number":"I162096722","lat":"42.3560932","location":{"type":"Point","coordinates":[-71.057342,42.356093]},"long":"-71.05734151","month":"11","occurred_on_date":"2016-11-26T23:17:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"107","street":"DEVONSHIRE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Thursday","district":"C11","hour":"17","incident_number":"I162098043","lat":"42.29786606","location":{"type":"Point","coordinates":[-71.063325,42.297866]},"long":"-71.06332517","month":"12","occurred_on_date":"2016-12-01T17:00:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"360","street":"PARK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Sunday","district":"D14","hour":"3","incident_number":"I162104778","lat":"42.35366255","location":{"type":"Point","coordinates":[-71.140743,42.353663]},"long":"-71.14074288","month":"12","occurred_on_date":"2016-12-25T03:46:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"782","street":"GORDON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"A1","hour":"17","incident_number":"I162029607","location":{"type":"Point","coordinates":[0,0]},"month":"4","occurred_on_date":"2016-04-16T17:45:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E18","hour":"22","incident_number":"I162104745","lat":"42.24503321","location":{"type":"Point","coordinates":[-71.12355,42.245033]},"long":"-71.12354978","month":"12","occurred_on_date":"2016-12-24T22:12:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"517","street":"TYLER ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B3","hour":"18","incident_number":"I162104879","lat":"42.30238881","location":{"type":"Point","coordinates":[-71.085394,42.302389]},"long":"-71.08539388","month":"12","occurred_on_date":"2016-12-25T18:28:00.000","offense_code":"00311","offense_code_group":"Robbery","offense_description":"ROBBERY - COMMERCIAL","reporting_area":"458","street":"BLUE HILL AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Sunday","district":"E18","hour":"12","incident_number":"I162104828","lat":"42.26884949","location":{"type":"Point","coordinates":[-71.12691,42.268849]},"long":"-71.12690978","month":"12","occurred_on_date":"2016-12-25T12:26:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"547","street":"BEECHMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"B3","hour":"10","incident_number":"I162104805","lat":"42.28802597","location":{"type":"Point","coordinates":[-71.081325,42.288026]},"long":"-71.08132533","month":"12","occurred_on_date":"2016-12-25T10:03:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"432","street":"BOYDEN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"22","incident_number":"I162104763","lat":"42.29526287","location":{"type":"Point","coordinates":[-71.072074,42.295263]},"long":"-71.07207439","month":"12","occurred_on_date":"2016-12-24T22:00:00.000","offense_code":"00522","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - NO FORCE","reporting_area":"359","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Monday","district":"C11","hour":"9","incident_number":"I162068002","lat":"42.30183841","location":{"type":"Point","coordinates":[-71.061278,42.301838]},"long":"-71.06127819","month":"8","occurred_on_date":"2016-08-15T09:00:00.000","offense_code":"03802","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PROPERTY �DAMAGE","reporting_area":"352","street":"ARCADIA ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"18","incident_number":"I162104875","lat":"42.31741922","location":{"type":"Point","coordinates":[-71.09568,42.317419]},"long":"-71.09567995","month":"12","occurred_on_date":"2016-12-25T18:02:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"306","street":"COBDEN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Sunday","district":"E5","hour":"7","incident_number":"I162104801","lat":"42.26932098","location":{"type":"Point","coordinates":[-71.172049,42.269321]},"long":"-71.17204938","month":"12","occurred_on_date":"2016-12-25T07:27:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"724","street":"VFW PKWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Sunday","district":"B2","hour":"15","incident_number":"I162104861","lat":"42.33506218","location":{"type":"Point","coordinates":[-71.093168,42.335062]},"long":"-71.09316781","month":"12","occurred_on_date":"2016-12-25T15:33:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"911","street":"ANNUNCIATION RD","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Sunday","district":"E5","hour":"10","incident_number":"I162104812","lat":"42.2585187","location":{"type":"Point","coordinates":[-71.160303,42.258519]},"long":"-71.16030347","month":"12","occurred_on_date":"2016-12-25T10:28:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"932","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Sunday","district":"E5","hour":"2","incident_number":"I162104773","lat":"42.27685989","location":{"type":"Point","coordinates":[-71.137576,42.27686]},"long":"-71.13757584","month":"12","occurred_on_date":"2016-12-25T02:56:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"910","street":"BEECHLAND CIR","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Monday","district":"C11","hour":"13","incident_number":"I162038180","lat":"42.30183841","location":{"type":"Point","coordinates":[-71.061278,42.301838]},"long":"-71.06127819","month":"5","occurred_on_date":"2016-05-16T13:30:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"352","street":"ARCADIA ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"13","incident_number":"I162104839","lat":"42.32368852","location":{"type":"Point","coordinates":[-71.075197,42.323689]},"long":"-71.07519735","month":"12","occurred_on_date":"2016-12-25T13:41:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"263","street":"HUCKINS ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Sunday","district":"D4","hour":"19","incident_number":"I162104890","lat":"42.34144266","location":{"type":"Point","coordinates":[-71.071809,42.341443]},"long":"-71.07180949","month":"12","occurred_on_date":"2016-12-25T19:42:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"166","street":"SHAWMUT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"17","incident_number":"I162104868","lat":"42.30587884","location":{"type":"Point","coordinates":[-71.066638,42.305879]},"long":"-71.06663793","month":"12","occurred_on_date":"2016-12-25T17:23:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"340","street":"HAMILTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"21","incident_number":"I162104894","lat":"42.29910777","location":{"type":"Point","coordinates":[-71.068296,42.299108]},"long":"-71.06829572","month":"12","occurred_on_date":"2016-12-25T21:24:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"357","street":"BLOOMFIELD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"0","incident_number":"I162104761","lat":"42.30254239","location":{"type":"Point","coordinates":[-71.059567,42.302542]},"long":"-71.0595669","month":"12","occurred_on_date":"2016-12-25T00:39:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"349","street":"DORCHESTER AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Thursday","district":"E18","hour":"14","incident_number":"I162081854","lat":"42.25194322","location":{"type":"Point","coordinates":[-71.119251,42.251943]},"long":"-71.11925138","month":"10","occurred_on_date":"2016-10-06T14:45:00.000","offense_code":"01001","offense_code_group":"Counterfeiting","offense_description":"FORGERY / COUNTERFEITING","reporting_area":"516","street":"TRUMAN PKWY","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"22","incident_number":"I162104738","lat":"42.30183841","location":{"type":"Point","coordinates":[-71.061278,42.301838]},"long":"-71.06127819","month":"12","occurred_on_date":"2016-12-24T22:34:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"352","street":"ARCADIA ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Saturday","district":"C11","hour":"19","incident_number":"I162104749","lat":"42.29963709","location":{"type":"Point","coordinates":[-71.058512,42.299637]},"long":"-71.05851176","month":"12","occurred_on_date":"2016-12-24T19:38:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"351","street":"ADAMS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Sunday","district":"E18","hour":"1","incident_number":"I162104766","lat":"42.28314714","location":{"type":"Point","coordinates":[-71.113742,42.283147]},"long":"-71.11374152","month":"12","occurred_on_date":"2016-12-25T01:10:25.000","offense_code":"00541","offense_code_group":"Commercial Burglary","offense_description":"BURGLARY - COMMERICAL - ATTEMPT","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"12","incident_number":"I162104835","lat":"42.32635435","location":{"type":"Point","coordinates":[-71.074223,42.326354]},"long":"-71.07422322","month":"12","occurred_on_date":"2016-12-25T12:17:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"180","street":"EUSTIS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Friday","district":"D14","hour":"0","incident_number":"I162104814","lat":"42.35344647","location":{"type":"Point","coordinates":[-71.142125,42.353446]},"long":"-71.14212462","month":"12","occurred_on_date":"2016-12-23T00:01:00.000","offense_code":"03106","offense_code_group":"Property Related Damage","offense_description":"PROPERTY - ACCIDENTAL DAMAGE","reporting_area":"782","street":"SAUNDERS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"18","incident_number":"I162104710","lat":"42.28482577","location":{"type":"Point","coordinates":[-71.091374,42.284826]},"long":"-71.09137369","month":"12","occurred_on_date":"2016-12-24T18:15:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"465","street":"BLUE HILL AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"11","incident_number":"I162104815","lat":"42.32557398","location":{"type":"Point","coordinates":[-71.052481,42.325574]},"long":"-71.0524813","month":"12","occurred_on_date":"2016-12-25T11:39:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"914","street":"OLD COLONY AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"B3","hour":"17","incident_number":"I162104715","lat":"42.27189681","location":{"type":"Point","coordinates":[-71.102834,42.271897]},"long":"-71.10283363","month":"12","occurred_on_date":"2016-12-24T17:46:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"474","street":"SAVANNAH AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Sunday","district":"A1","hour":"16","incident_number":"I162104856","lat":"42.35650174","location":{"type":"Point","coordinates":[-71.062,42.356502]},"long":"-71.0619996","month":"12","occurred_on_date":"2016-12-25T16:01:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"119","street":"PARK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C11","hour":"20","incident_number":"I162104714","lat":"42.31536932","location":{"type":"Point","coordinates":[-71.065774,42.315369]},"long":"-71.06577412","month":"12","occurred_on_date":"2016-12-24T20:06:00.000","offense_code":"00612","offense_code_group":"Larceny","offense_description":"LARCENY PURSE SNATCH - NO FORCE","reporting_area":"257","street":"UPHAM AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Sunday","district":"E18","hour":"16","incident_number":"I162104867","lat":"42.26788791","location":{"type":"Point","coordinates":[-71.10067,42.267888]},"long":"-71.10067012","month":"12","occurred_on_date":"2016-12-25T16:22:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"480","street":"FAIRLAWN AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"0","incident_number":"I162104764","lat":"42.32696802","location":{"type":"Point","coordinates":[-71.080519,42.326968]},"long":"-71.08051941","month":"12","occurred_on_date":"2016-12-25T00:23:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"281","street":"GREENVILLE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"11","incident_number":"I162104831","lat":"42.33044904","location":{"type":"Point","coordinates":[-71.046173,42.330449]},"long":"-71.04617297","month":"12","occurred_on_date":"2016-12-25T11:09:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"219","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Tuesday","district":"B2","hour":"17","incident_number":"I162103598","lat":"42.31985444","location":{"type":"Point","coordinates":[-71.079725,42.319854]},"long":"-71.07972518","month":"12","occurred_on_date":"2016-12-20T17:23:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"265","street":"CLIFFORD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"C11","hour":"5","incident_number":"I162104847","lat":"42.3036967","location":{"type":"Point","coordinates":[-71.071049,42.303697]},"long":"-71.07104897","month":"12","occurred_on_date":"2016-12-25T05:00:00.000","offense_code":"02914","offense_code_group":"Violations","offense_description":"VAL - OPERATING W/O AUTHORIZATION LAWFUL","reporting_area":"337","street":"BOWDOIN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"3","incident_number":"I162027676","lat":"42.30183841","location":{"type":"Point","coordinates":[-71.061278,42.301838]},"long":"-71.06127819","month":"4","occurred_on_date":"2016-04-10T03:07:00.000","offense_code":"02619","offense_code_group":"Prisoner Related Incidents","offense_description":"FUGITIVE FROM JUSTICE","reporting_area":"352","street":"ARCADIA ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Tuesday","district":"A7","hour":"18","incident_number":"I162099576","lat":"42.3671278","location":{"type":"Point","coordinates":[-71.032013,42.367128]},"long":"-71.03201338","month":"12","occurred_on_date":"2016-12-06T18:50:00.000","offense_code":"01844","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS C","reporting_area":"33","street":"LAMSON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"B3","hour":"2","incident_number":"I162100892","lat":"42.28465991","location":{"type":"Point","coordinates":[-71.0784,42.28466]},"long":"-71.07839997","month":"12","occurred_on_date":"2016-12-24T02:06:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"434","street":"THETFORD AVE","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Friday","district":"A1","hour":"17","incident_number":"I152059176","location":{"type":"Point","coordinates":[0,0]},"month":"7","occurred_on_date":"2015-07-17T17:50:00.000","offense_code":"03111","offense_code_group":"License Violation","offense_description":"LICENSE PREMISE VIOLATION","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"19","incident_number":"I162104880","lat":"42.31252546","location":{"type":"Point","coordinates":[-71.073893,42.312525]},"long":"-71.07389321","month":"12","occurred_on_date":"2016-12-25T19:01:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"328","street":"QUINCY ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B3","hour":"19","incident_number":"I162104719","lat":"42.29746606","location":{"type":"Point","coordinates":[-71.082743,42.297466]},"long":"-71.0827431","month":"12","occurred_on_date":"2016-12-24T19:55:00.000","offense_code":"01504","offense_code_group":"Other","offense_description":"WEAPON - OTHER - OTHER VIOLATION","reporting_area":"444","street":"BICKNELL ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Sunday","district":"E5","hour":"15","incident_number":"I162104857","lat":"42.28446188","location":{"type":"Point","coordinates":[-71.141184,42.284462]},"long":"-71.14118365","month":"12","occurred_on_date":"2016-12-25T15:22:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"687","street":"ALDRICH ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Saturday","district":"B2","hour":"22","incident_number":"I162104754","lat":"42.32318974","location":{"type":"Point","coordinates":[-71.083564,42.32319]},"long":"-71.08356389","month":"12","occurred_on_date":"2016-12-24T22:53:00.000","offense_code":"02405","offense_code_group":"Disorderly Conduct","offense_description":"DISORDERLY CONDUCT","reporting_area":"282","street":"SAINT RICHARD ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Sunday","district":"D4","hour":"19","incident_number":"I162104898","lat":"42.34410718","location":{"type":"Point","coordinates":[-71.101803,42.344107]},"long":"-71.1018026","month":"12","occurred_on_date":"2016-12-25T19:30:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"628","street":"BROOKLINE AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Sunday","district":"B2","hour":"16","incident_number":"I162104863","lat":"42.32610373","location":{"type":"Point","coordinates":[-71.090429,42.326104]},"long":"-71.09042875","month":"12","occurred_on_date":"2016-12-25T16:48:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"293","street":"LOGAN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Sunday","district":"B2","hour":"14","incident_number":"I162104845","lat":"42.31466062","location":{"type":"Point","coordinates":[-71.076231,42.314661]},"long":"-71.07623072","month":"12","occurred_on_date":"2016-12-25T14:11:55.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"325","street":"BALFOUR ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Sunday","district":"D14","hour":"14","incident_number":"I162104842","lat":"42.34966751","location":{"type":"Point","coordinates":[-71.130487,42.349668]},"long":"-71.13048678","month":"12","occurred_on_date":"2016-12-25T14:12:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"796","street":"HARVARD AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Saturday","district":"E18","hour":"21","incident_number":"I162104741","lat":"42.27022181","location":{"type":"Point","coordinates":[-71.098927,42.270222]},"long":"-71.09892736","month":"12","occurred_on_date":"2016-12-24T21:54:00.000","offense_code":"02608","offense_code_group":"Offenses Against Child / Family","offense_description":"CHINS","reporting_area":"480","street":"CUMMINS HWY","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Wednesday","district":"B3","hour":"11","incident_number":"I162045148","location":{"type":"Point","coordinates":[0,0]},"month":"6","occurred_on_date":"2016-06-08T11:03:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","reporting_area":"465","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Sunday","district":"C11","hour":"3","incident_number":"I162104779","lat":"42.29641938","location":{"type":"Point","coordinates":[-71.068646,42.296419]},"long":"-71.06864617","month":"12","occurred_on_date":"2016-12-25T03:15:00.000","offense_code":"03802","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PROPERTY �DAMAGE","reporting_area":"358","street":"PARK ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","district":"E18","hour":"22","incident_number":"I162076526","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2016-09-18T22:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"B2","hour":"4","incident_number":"I162096977","lat":"42.31943966","location":{"type":"Point","coordinates":[-71.094675,42.31944]},"long":"-71.09467467","month":"11","occurred_on_date":"2016-11-28T04:27:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"304","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Tuesday","district":"C11","hour":"14","incident_number":"I162044851","location":{"type":"Point","coordinates":[0,0]},"month":"6","occurred_on_date":"2016-06-07T14:04:00.000","offense_code":"01848","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS D - INTENT TO MFR DIST DISP","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Monday","district":"B3","hour":"15","incident_number":"I162105023","lat":"42.27974263","location":{"type":"Point","coordinates":[-71.097716,42.279743]},"long":"-71.09771603","month":"12","occurred_on_date":"2016-12-26T15:31:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"469","street":"MATTAPAN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Friday","district":"E5","hour":"16","incident_number":"I162105042","lat":"42.29523194","location":{"type":"Point","coordinates":[-71.118781,42.295232]},"long":"-71.11878134","month":"12","occurred_on_date":"2016-12-23T16:54:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"564","street":"ARBORETUM RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Tuesday","district":"B3","hour":"15","incident_number":"I162099505","lat":"42.28104853","location":{"type":"Point","coordinates":[-71.072064,42.281049]},"long":"-71.0720644","month":"12","occurred_on_date":"2016-12-06T15:26:00.000","offense_code":"01109","offense_code_group":"Fraud","offense_description":"FRAUD - WIRE","reporting_area":"416","street":"FAIRMOUNT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Monday","district":"E13","hour":"1","incident_number":"I162104926","lat":"42.30469879","location":{"type":"Point","coordinates":[-71.114638,42.304699]},"long":"-71.11463791","month":"12","occurred_on_date":"2016-12-26T01:59:00.000","offense_code":"03802","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PROPERTY �DAMAGE","reporting_area":"651","street":"SOUTH ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Monday","district":"A7","hour":"2","incident_number":"I162104921","lat":"42.38043677","location":{"type":"Point","coordinates":[-71.02612,42.380437]},"long":"-71.02611991","month":"12","occurred_on_date":"2016-12-26T02:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"16","street":"NEPTUNE RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Monday","district":"A1","hour":"13","incident_number":"I162104983","lat":"42.35819342","location":{"type":"Point","coordinates":[-71.071275,42.358193]},"long":"-71.071275","month":"12","occurred_on_date":"2016-12-26T13:32:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"69","street":"MOUNT VERNON SQ","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Wednesday","district":"E18","hour":"8","incident_number":"I162101789","lat":"42.24831869","location":{"type":"Point","coordinates":[-71.116762,42.248319]},"long":"-71.11676234","month":"12","occurred_on_date":"2016-12-14T08:00:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"516","street":"WILLIAMS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Monday","district":"B3","hour":"1","incident_number":"I162104915","lat":"42.28197224","location":{"type":"Point","coordinates":[-71.089125,42.281972]},"long":"-71.08912459","month":"12","occurred_on_date":"2016-12-26T01:11:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"428","street":"SUTTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B2","hour":"16","incident_number":"I162105032","lat":"42.30714853","location":{"type":"Point","coordinates":[-71.082348,42.307149]},"long":"-71.08234796","month":"12","occurred_on_date":"2016-12-26T16:34:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"329","street":"BILODEAU RD","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Monday","district":"C6","hour":"1","incident_number":"I162104924","lat":"42.32445145","location":{"type":"Point","coordinates":[-71.058107,42.324451]},"long":"-71.0581068","month":"12","occurred_on_date":"2016-12-26T01:48:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"958","street":"BELLFLOWER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Tuesday","district":"B2","hour":"2","incident_number":"I162099320","lat":"42.31666791","location":{"type":"Point","coordinates":[-71.084017,42.316668]},"long":"-71.08401705","month":"12","occurred_on_date":"2016-12-06T02:08:00.000","offense_code":"02900","offense_code_group":"Other","offense_description":"VAL - VIOLATION OF AUTO LAW - OTHER","reporting_area":"313","street":"TOWNSEND ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Wednesday","district":"D14","hour":"1","incident_number":"I162072793","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2016-09-07T01:24:00.000","offense_code":"03109","offense_code_group":"Police Service Incidents","offense_description":"SERVICE TO OTHER PD INSIDE OF MA.","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Monday","district":"C11","hour":"11","incident_number":"I162097088","lat":"42.30748785","location":{"type":"Point","coordinates":[-71.065661,42.307488]},"long":"-71.06566102","month":"11","occurred_on_date":"2016-11-28T11:56:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"335","street":"BOWDOIN ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Tuesday","district":"B3","hour":"20","incident_number":"I162042840","lat":"42.28523643","location":{"type":"Point","coordinates":[-71.090479,42.285236]},"long":"-71.09047894","month":"5","occurred_on_date":"2016-05-31T20:30:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"430","street":"LIVINGSTONE ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Saturday","district":"E18","hour":"14","incident_number":"I162104993","lat":"42.25533058","location":{"type":"Point","coordinates":[-71.128595,42.255331]},"long":"-71.12859511","month":"12","occurred_on_date":"2016-12-24T14:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"543","street":"PERKINS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Monday","district":"C6","hour":"17","incident_number":"I162105049","lat":"42.33535781","location":{"type":"Point","coordinates":[-71.045909,42.335358]},"long":"-71.04590903","month":"12","occurred_on_date":"2016-12-26T17:42:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"220","street":"DORCHESTER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Tuesday","district":"B3","hour":"22","incident_number":"I162103826","lat":"42.29611583","location":{"type":"Point","coordinates":[-71.09122,42.296116]},"long":"-71.09121958","month":"12","occurred_on_date":"2016-12-20T22:00:00.000","offense_code":"00615","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT OF MV PARTS & ACCESSORIES","reporting_area":"908","street":"SHANDON RD","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"17236","day_of_week":"Monday","district":"D4","hour":"22","incident_number":"I162105105","lat":"42.34862382","location":{"type":"Point","coordinates":[-71.082776,42.348624]},"long":"-71.08277637","month":"12","occurred_on_date":"2016-12-26T22:08:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"138","street":"BOYLSTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Tuesday","district":"A1","hour":"10","incident_number":"I162099370","lat":"42.35165733","location":{"type":"Point","coordinates":[-71.064257,42.351657]},"long":"-71.06425694","month":"12","occurred_on_date":"2016-12-06T10:16:00.000","offense_code":"03125","offense_code_group":"Warrant Arrests","offense_description":"WARRANT ARREST","reporting_area":"117","street":"LAGRANGE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Tuesday","district":"D14","hour":"10","incident_number":"I162099359","lat":"42.34644303","location":{"type":"Point","coordinates":[-71.14698,42.346443]},"long":"-71.14697954","month":"12","occurred_on_date":"2016-12-06T10:02:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"777","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"14","incident_number":"I162105024","lat":"42.35346567","location":{"type":"Point","coordinates":[-71.150787,42.353466]},"long":"-71.15078651","month":"12","occurred_on_date":"2016-12-25T14:02:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"779","street":"MARKET ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"C11","hour":"17","incident_number":"I162105052","lat":"42.28755135","location":{"type":"Point","coordinates":[-71.059385,42.287551]},"long":"-71.05938499","month":"12","occurred_on_date":"2016-12-26T17:49:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"393","street":"BRUCE ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Wednesday","district":"D14","hour":"1","incident_number":"I162064128","location":{"type":"Point","coordinates":[0,0]},"month":"8","occurred_on_date":"2016-08-10T01:45:00.000","offense_code":"02407","offense_code_group":"Disorderly Conduct","offense_description":"ANNOYING AND ACCOSTING","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"C11","hour":"17","incident_number":"I162105052","lat":"42.28755135","location":{"type":"Point","coordinates":[-71.059385,42.287551]},"long":"-71.05938499","month":"12","occurred_on_date":"2016-12-26T17:49:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"393","street":"BRUCE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Sunday","district":"D14","hour":"2","incident_number":"I162067669","lat":"42.34984183","location":{"type":"Point","coordinates":[-71.136789,42.349842]},"long":"-71.13678902","month":"8","occurred_on_date":"2016-08-21T02:35:00.000","offense_code":"00615","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT OF MV PARTS & ACCESSORIES","reporting_area":"795","street":"ALLSTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Monday","district":"A7","hour":"16","incident_number":"I162105039","lat":"42.38051931","location":{"type":"Point","coordinates":[-71.040206,42.380519]},"long":"-71.04020563","month":"12","occurred_on_date":"2016-12-26T16:46:00.000","offense_code":"01841","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS A - INTENT TO MFR DIST DISP","reporting_area":"26","street":"BORDER ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Wednesday","district":"C11","hour":"13","incident_number":"I152101742","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2015-12-09T13:18:00.000","offense_code":"03018","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - POLICE","street":"CARNEY","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Tuesday","district":"E13","hour":"10","incident_number":"I162099382","lat":"42.32284485","location":{"type":"Point","coordinates":[-71.103848,42.322845]},"long":"-71.10384777","month":"12","occurred_on_date":"2016-12-06T10:00:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"581","street":"CENTRE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Saturday","district":"C6","hour":"14","incident_number":"I162105048","lat":"42.32231617","location":{"type":"Point","coordinates":[-71.058731,42.322316]},"long":"-71.05873107","month":"12","occurred_on_date":"2016-12-24T14:00:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"188","street":"MOUNT VERNON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9661","day_of_week":"Monday","district":"A1","hour":"21","incident_number":"I162105089","lat":"42.367271","location":{"type":"Point","coordinates":[-71.052728,42.367271]},"long":"-71.05272807","month":"12","occurred_on_date":"2016-12-26T21:21:00.000","offense_code":"00619","offense_code_group":"Larceny","offense_description":"LARCENY ALL OTHERS","reporting_area":"82","street":"COMMERCIAL ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Sunday","district":"D14","hour":"4","incident_number":"I162067680","lat":"42.35486542","location":{"type":"Point","coordinates":[-71.132593,42.354865]},"long":"-71.13259322","month":"8","occurred_on_date":"2016-08-21T04:00:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"801","street":"HARVARD AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Monday","district":"A7","hour":"14","incident_number":"I162105017","lat":"42.39035323","location":{"type":"Point","coordinates":[-71.005191,42.390353]},"long":"-71.0051911","month":"12","occurred_on_date":"2016-12-26T14:43:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"8","street":"ORIENT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Monday","district":"C6","hour":"17","incident_number":"I162105047","lat":"42.33407912","location":{"type":"Point","coordinates":[-71.051632,42.334079]},"long":"-71.05163223","month":"12","occurred_on_date":"2016-12-26T17:11:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"216","street":"GRIMES ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Tuesday","district":"D14","hour":"13","incident_number":"I162066194","lat":"42.36428664","location":{"type":"Point","coordinates":[-71.136756,42.364287]},"long":"-71.13675636","month":"8","occurred_on_date":"2016-08-16T13:58:00.000","offense_code":"03620","offense_code_group":"Other","offense_description":"REPORT AFFECTING OTHER DEPTS.","reporting_area":"807","street":"SOLDIERS FIELD RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Wednesday","district":"E13","hour":"2","incident_number":"I162077249","lat":"42.290892","location":{"type":"Point","coordinates":[-71.118061,42.290892]},"long":"-71.1180615","month":"9","occurred_on_date":"2016-09-21T02:30:00.000","offense_code":"03007","offense_code_group":"Medical Assistance","offense_description":"SUDDEN DEATH","reporting_area":"508","street":"HYDE PARK AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Monday","district":"E5","hour":"20","incident_number":"I162105082","lat":"42.29220756","location":{"type":"Point","coordinates":[-71.120434,42.292208]},"long":"-71.12043423","month":"12","occurred_on_date":"2016-12-26T20:24:00.000","offense_code":"02642","offense_code_group":"Missing Person Reported","offense_description":"TRUANCY / RUNAWAY","reporting_area":"941","street":"ARCHDALE RD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"E13","hour":"14","incident_number":"I162105014","lat":"42.31397418","location":{"type":"Point","coordinates":[-71.098584,42.313974]},"long":"-71.09858375","month":"12","occurred_on_date":"2016-12-26T14:48:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"572","street":"SCHOOL ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9657","day_of_week":"Monday","district":"A1","hour":"13","incident_number":"I162104977","lat":"42.35650174","location":{"type":"Point","coordinates":[-71.062,42.356502]},"long":"-71.0619996","month":"12","occurred_on_date":"2016-12-26T13:04:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"119","street":"PARK ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"C11","hour":"2","incident_number":"I162104927","lat":"42.30889362","location":{"type":"Point","coordinates":[-71.074105,42.308894]},"long":"-71.07410474","month":"12","occurred_on_date":"2016-12-26T02:33:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"337","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Tuesday","district":"D14","hour":"15","incident_number":"I162066200","lat":"42.36428664","location":{"type":"Point","coordinates":[-71.136756,42.364287]},"long":"-71.13675636","month":"8","occurred_on_date":"2016-08-16T15:06:00.000","offense_code":"03620","offense_code_group":"Other","offense_description":"REPORT AFFECTING OTHER DEPTS.","reporting_area":"807","street":"SOLDIERS FIELD RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Monday","district":"D4","hour":"6","incident_number":"I162104933","lat":"42.3457782","location":{"type":"Point","coordinates":[-71.084296,42.345778]},"long":"-71.08429595","month":"12","occurred_on_date":"2016-12-26T06:32:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"143","street":"DALTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Thursday","district":"E18","hour":"9","incident_number":"I162102176","lat":"42.24831869","location":{"type":"Point","coordinates":[-71.116762,42.248319]},"long":"-71.11676234","month":"12","occurred_on_date":"2016-12-15T09:00:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"516","street":"WILLIAMS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"B2","hour":"16","incident_number":"I162105028","lat":"42.31585979","location":{"type":"Point","coordinates":[-71.081223,42.31586]},"long":"-71.08122288","month":"12","occurred_on_date":"2016-12-26T16:10:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"311","street":"QUINCY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Monday","district":"E13","hour":"19","incident_number":"I162105073","lat":"42.31006809","location":{"type":"Point","coordinates":[-71.118051,42.310068]},"long":"-71.11805093","month":"12","occurred_on_date":"2016-12-26T19:03:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"644","street":"DUNSTER RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Saturday","district":"D14","hour":"18","incident_number":"I162065272","lat":"42.35174866","location":{"type":"Point","coordinates":[-71.129537,42.351749]},"long":"-71.12953705","month":"8","occurred_on_date":"2016-08-13T18:17:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"796","street":"REEDSDALE ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Sunday","district":"D4","hour":"12","incident_number":"I162098861","location":{"type":"Point","coordinates":[0,0]},"month":"12","occurred_on_date":"2016-12-04T12:50:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B3","hour":"17","incident_number":"I162105053","lat":"42.30272114","location":{"type":"Point","coordinates":[-71.079762,42.302721]},"long":"-71.07976167","month":"12","occurred_on_date":"2016-12-26T17:54:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"456","street":"ERIE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Monday","district":"B2","hour":"0","incident_number":"I152092952","lat":"42.315969","location":{"type":"Point","coordinates":[-71.066253,42.315969]},"long":"-71.066253","month":"11","occurred_on_date":"2015-11-09T00:34:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"258","street":"COLUMBIA RD","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Monday","district":"E18","hour":"18","incident_number":"I162105064","lat":"42.28534744","location":{"type":"Point","coordinates":[-71.110476,42.285347]},"long":"-71.11047633","month":"12","occurred_on_date":"2016-12-26T18:17:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Tuesday","district":"B2","hour":"22","incident_number":"I162087596","location":{"type":"Point","coordinates":[0,0]},"month":"10","occurred_on_date":"2016-10-25T22:56:33.000","offense_code":"01501","offense_code_group":"Firearm Violations","offense_description":"WEAPON - FIREARM - CARRYING / POSSESSING, ETC","reporting_area":"259","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"B3","hour":"1","incident_number":"I162104913","lat":"42.29268711","location":{"type":"Point","coordinates":[-71.080384,42.292687]},"long":"-71.08038427","month":"12","occurred_on_date":"2016-12-26T01:05:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"442","street":"TALBOT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Monday","district":"E18","hour":"11","incident_number":"I162104954","lat":"42.26273505","location":{"type":"Point","coordinates":[-71.110783,42.262735]},"long":"-71.11078287","month":"12","occurred_on_date":"2016-12-26T11:27:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"493","street":"FRAZER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Monday","district":"C11","hour":"17","incident_number":"I162097157","lat":"42.28410589","location":{"type":"Point","coordinates":[-71.046089,42.284106]},"long":"-71.04608937","month":"11","occurred_on_date":"2016-11-28T17:33:00.000","offense_code":"01848","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS D - INTENT TO MFR DIST DISP","reporting_area":"385","street":"GALLIVAN BLVD","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Monday","district":"D14","hour":"14","incident_number":"I162104999","lat":"42.3491109","location":{"type":"Point","coordinates":[-71.155273,42.349111]},"long":"-71.15527344","month":"12","occurred_on_date":"2016-12-26T14:21:00.000","offense_code":"03007","offense_code_group":"Medical Assistance","offense_description":"SUDDEN DEATH","reporting_area":"771","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Monday","district":"C6","hour":"16","incident_number":"I162097153","lat":"42.31878665","location":{"type":"Point","coordinates":[-71.041789,42.318787]},"long":"-71.04178884","month":"11","occurred_on_date":"2016-11-28T16:22:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"913","street":"WESTWIND RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"C11","hour":"14","incident_number":"I162105035","lat":"42.30154274","location":{"type":"Point","coordinates":[-71.072019,42.301543]},"long":"-71.07201939","month":"12","occurred_on_date":"2016-12-26T14:29:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"462","street":"BOWDOIN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Tuesday","district":"E13","hour":"14","incident_number":"I162099485","lat":"42.32027226","location":{"type":"Point","coordinates":[-71.099325,42.320272]},"long":"-71.09932525","month":"12","occurred_on_date":"2016-12-06T14:08:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"303","street":"AMORY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Wednesday","district":"D14","hour":"3","incident_number":"I162066407","lat":"42.34936718","location":{"type":"Point","coordinates":[-71.165542,42.349367]},"long":"-71.16554188","month":"8","occurred_on_date":"2016-08-17T03:55:00.000","offense_code":"03112","offense_code_group":"Landlord/Tenant Disputes","offense_description":"LANDLORD - TENANT SERVICE","reporting_area":"752","street":"LANGLEY RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10065","day_of_week":"Monday","district":"A15","hour":"21","incident_number":"I162105104","lat":"42.37515302","location":{"type":"Point","coordinates":[-71.058414,42.375153]},"long":"-71.05841364","month":"12","occurred_on_date":"2016-12-26T21:30:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"41","street":"MOUNT VERNON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Sunday","district":"C6","hour":"10","incident_number":"I162105000","lat":"42.33658292","location":{"type":"Point","coordinates":[-71.030276,42.336583]},"long":"-71.03027628","month":"12","occurred_on_date":"2016-12-25T10:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"223","street":"E THIRD ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9661","day_of_week":"Monday","district":"A1","hour":"9","incident_number":"I162104952","lat":"42.36407996","location":{"type":"Point","coordinates":[-71.055442,42.36408]},"long":"-71.0554425","month":"12","occurred_on_date":"2016-12-26T09:35:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"84","street":"PARMENTER ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Saturday","district":"A1","hour":"13","incident_number":"I162023484","lat":"42.35311007","location":{"type":"Point","coordinates":[-71.064323,42.35311]},"long":"-71.06432264","month":"3","occurred_on_date":"2016-03-26T13:30:00.000","offense_code":"01825","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSSESSION OF DRUG PARAPHANALIA","reporting_area":"111","street":"TREMONT ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"B3","hour":"18","incident_number":"I162105068","lat":"42.2965927","location":{"type":"Point","coordinates":[-71.073322,42.296593]},"long":"-71.07332173","month":"12","occurred_on_date":"2016-12-26T18:42:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"452","street":"SCHOOL ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Monday","district":"D14","hour":"10","incident_number":"I162068006","lat":"42.34194954","location":{"type":"Point","coordinates":[-71.144516,42.34195]},"long":"-71.14451594","month":"8","occurred_on_date":"2016-08-22T10:53:00.000","offense_code":"01102","offense_code_group":"Fraud","offense_description":"FRAUD - FALSE PRETENSE / SCHEME","reporting_area":"786","street":"COMMONWEALTH AVE","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Sunday","district":"A7","hour":"22","incident_number":"I162104905","lat":"42.3675874","location":{"type":"Point","coordinates":[-71.034905,42.367587]},"long":"-71.03490462","month":"12","occurred_on_date":"2016-12-25T22:11:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"33","street":"EVERETT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Sunday","district":"E5","hour":"23","incident_number":"I162104970","lat":"42.26617852","location":{"type":"Point","coordinates":[-71.159595,42.266179]},"long":"-71.15959472","month":"12","occurred_on_date":"2016-12-25T23:45:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"713","street":"GROVE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"B3","hour":"16","incident_number":"I162105059","lat":"42.28834693","location":{"type":"Point","coordinates":[-71.086077,42.288347]},"long":"-71.0860772","month":"12","occurred_on_date":"2016-12-26T16:57:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"439","street":"FLOYD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Saturday","district":"B2","hour":"20","incident_number":"I162104724","lat":"42.31286677","location":{"type":"Point","coordinates":[-71.078416,42.312867]},"long":"-71.07841587","month":"12","occurred_on_date":"2016-12-24T20:27:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"326","street":"LAWRENCE AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"22","incident_number":"I162104904","lat":"42.29990887","location":{"type":"Point","coordinates":[-71.064248,42.299909]},"long":"-71.06424768","month":"12","occurred_on_date":"2016-12-25T22:49:00.000","offense_code":"02007","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W NO ARREST","reporting_area":"356","street":"CHARLES ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Friday","district":"D14","hour":"2","incident_number":"I162071396","lat":"42.35934409","location":{"type":"Point","coordinates":[-71.153898,42.359344]},"long":"-71.1538978","month":"9","occurred_on_date":"2016-09-02T02:38:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"767","street":"SOLDIERS FIELD RD","ucr_part":"Part One","year":"2016"}
,{"day_of_week":"Monday","district":"E13","hour":"9","incident_number":"I162014014","location":{"type":"Point","coordinates":[0,0]},"month":"2","occurred_on_date":"2016-02-22T09:59:00.000","offense_code":"01846","offense_code_group":"Drug Violation","offense_description":"DRUGS - POSS CLASS E","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B2","hour":"8","incident_number":"I162105081","lat":"42.31024899","location":{"type":"Point","coordinates":[-71.091839,42.310249]},"long":"-71.0918393","month":"12","occurred_on_date":"2016-12-26T08:30:00.000","offense_code":"03501","offense_code_group":"Missing Person Reported","offense_description":"MISSING PERSON","reporting_area":"318","street":"HUMBOLDT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Sunday","district":"A1","hour":"16","incident_number":"I162099186","lat":"42.35131763","location":{"type":"Point","coordinates":[-71.058384,42.351318]},"long":"-71.05838367","month":"12","occurred_on_date":"2016-12-04T16:00:00.000","offense_code":"00617","offense_code_group":"Larceny","offense_description":"LARCENY THEFT FROM BUILDING","reporting_area":"116","street":"LINCOLN ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Monday","district":"E18","hour":"15","incident_number":"I162105013","lat":"42.28314714","location":{"type":"Point","coordinates":[-71.113742,42.283147]},"long":"-71.11374152","month":"12","occurred_on_date":"2016-12-26T15:18:00.000","offense_code":"03802","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PROPERTY �DAMAGE","reporting_area":"503","street":"AMERICAN LEGION HWY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"C11","hour":"20","incident_number":"I162105075","lat":"42.28575222","location":{"type":"Point","coordinates":[-71.064309,42.285752]},"long":"-71.06430857","month":"12","occurred_on_date":"2016-12-26T20:01:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"401","street":"ASHMONT ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"B2","hour":"8","incident_number":"I162104938","lat":"42.32396839","location":{"type":"Point","coordinates":[-71.079194,42.323968]},"long":"-71.07919432","month":"12","occurred_on_date":"2016-12-26T08:34:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"296","street":"MORELAND ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B2","hour":"21","incident_number":"I162097244","lat":"42.31739587","location":{"type":"Point","coordinates":[-71.090583,42.317396]},"long":"-71.09058328","month":"11","occurred_on_date":"2016-11-28T21:29:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"312","street":"HARRISHOF ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Monday","district":"D4","hour":"11","incident_number":"I162104951","lat":"42.3469826","location":{"type":"Point","coordinates":[-71.09112,42.346983]},"long":"-71.09111988","month":"12","occurred_on_date":"2016-12-26T11:16:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"591","street":"CHARLESGATE E","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Wednesday","district":"E13","hour":"9","incident_number":"I162038719","location":{"type":"Point","coordinates":[0,0]},"month":"5","occurred_on_date":"2016-05-18T09:20:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Monday","district":"C6","hour":"14","incident_number":"I162105003","lat":"42.32487582","location":{"type":"Point","coordinates":[-71.059848,42.324876]},"long":"-71.0598478","month":"12","occurred_on_date":"2016-12-26T14:41:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"186","street":"W BELLFLOWER ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"E18","hour":"7","incident_number":"I162096254","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-25T07:58:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"B2","hour":"14","incident_number":"I162104994","lat":"42.32337421","location":{"type":"Point","coordinates":[-71.09103,42.323374]},"long":"-71.09103005","month":"12","occurred_on_date":"2016-12-26T14:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"300","street":"THORNTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Wednesday","district":"D14","hour":"13","incident_number":"I162097690","lat":"42.34835708","location":{"type":"Point","coordinates":[-71.136453,42.348357]},"long":"-71.13645291","month":"11","occurred_on_date":"2016-11-30T13:23:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"794","street":"COMMONWEALTH AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"20","incident_number":"I162097174","lat":"42.29662295","location":{"type":"Point","coordinates":[-71.054918,42.296623]},"long":"-71.05491753","month":"11","occurred_on_date":"2016-11-27T20:30:00.000","offense_code":"02647","offense_code_group":"Other","offense_description":"THREATS TO DO BODILY HARM","reporting_area":"354","street":"NEWKIRK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Monday","district":"E5","hour":"10","incident_number":"I162104988","lat":"42.26204916","location":{"type":"Point","coordinates":[-71.156358,42.262049]},"long":"-71.15635818","month":"12","occurred_on_date":"2016-12-26T10:30:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"712","street":"WASHINGTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Thursday","district":"C11","hour":"21","incident_number":"I162104253","lat":"42.28397463","location":{"type":"Point","coordinates":[-71.055536,42.283975]},"long":"-71.05553564","month":"12","occurred_on_date":"2016-12-22T21:07:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"379","street":"ADAMS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Monday","district":"B2","hour":"20","incident_number":"I162105079","lat":"42.33809312","location":{"type":"Point","coordinates":[-71.098621,42.338093]},"long":"-71.09862137","month":"12","occurred_on_date":"2016-12-26T20:19:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"616","street":"EVANS WAY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Monday","district":"C6","hour":"17","incident_number":"I162105051","lat":"42.33129727","location":{"type":"Point","coordinates":[-71.049249,42.331297]},"long":"-71.04924949","month":"12","occurred_on_date":"2016-12-26T17:19:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"915","street":"MERCER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Friday","district":"C11","hour":"4","incident_number":"I162018977","lat":"42.35358129","location":{"type":"Point","coordinates":[-71.062367,42.353581]},"long":"-71.06236665","month":"3","occurred_on_date":"2016-03-11T04:34:00.000","offense_code":"00301","offense_code_group":"Robbery","offense_description":"ROBBERY - STREET","reporting_area":"112","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Monday","district":"A7","hour":"17","incident_number":"I162105045","lat":"42.38298068","location":{"type":"Point","coordinates":[-71.017304,42.382981]},"long":"-71.01730351","month":"12","occurred_on_date":"2016-12-26T17:46:00.000","offense_code":"02629","offense_code_group":"Harassment","offense_description":"HARASSMENT","reporting_area":"14","street":"BENNINGTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Monday","district":"B3","hour":"1","incident_number":"I162104915","lat":"42.28197224","location":{"type":"Point","coordinates":[-71.089125,42.281972]},"long":"-71.08912459","month":"12","occurred_on_date":"2016-12-26T01:11:00.000","offense_code":"00521","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - ATTEMPT","reporting_area":"428","street":"SUTTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Sunday","district":"A1","hour":"23","incident_number":"I162104908","lat":"42.34753377","location":{"type":"Point","coordinates":[-71.062756,42.347534]},"long":"-71.0627565","month":"12","occurred_on_date":"2016-12-25T23:46:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"123","street":"HARRISON AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Thursday","district":"E18","hour":"14","incident_number":"I162102177","lat":"42.24831869","location":{"type":"Point","coordinates":[-71.116762,42.248319]},"long":"-71.11676234","month":"12","occurred_on_date":"2016-12-15T14:55:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"516","street":"WILLIAMS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"C11","hour":"6","incident_number":"I162104931","lat":"42.30116123","location":{"type":"Point","coordinates":[-71.072843,42.301161]},"long":"-71.07284279","month":"12","occurred_on_date":"2016-12-26T06:53:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"462","street":"ROSSETER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Sunday","district":"B2","hour":"23","incident_number":"I162104910","lat":"42.33757656","location":{"type":"Point","coordinates":[-71.099452,42.337577]},"long":"-71.09945172","month":"12","occurred_on_date":"2016-12-25T23:37:00.000","offense_code":"00522","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - NO FORCE","reporting_area":"616","street":"TETLOW ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Monday","district":"E18","hour":"8","incident_number":"I162101217","lat":"42.24831869","location":{"type":"Point","coordinates":[-71.116762,42.248319]},"long":"-71.11676234","month":"12","occurred_on_date":"2016-12-12T08:00:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"516","street":"WILLIAMS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Monday","district":"E18","hour":"16","incident_number":"I162105029","lat":"42.24512703","location":{"type":"Point","coordinates":[-71.121626,42.245127]},"long":"-71.12162597","month":"12","occurred_on_date":"2016-12-26T16:16:00.000","offense_code":"03018","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - POLICE","reporting_area":"518","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Monday","district":"C11","hour":"22","incident_number":"I162105108","lat":"42.30402156","location":{"type":"Point","coordinates":[-71.064592,42.304022]},"long":"-71.0645917","month":"12","occurred_on_date":"2016-12-26T22:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"340","street":"DRAPER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"C11","hour":"23","incident_number":"I162104974","lat":"42.30467796","location":{"type":"Point","coordinates":[-71.079045,42.304678]},"long":"-71.07904517","month":"12","occurred_on_date":"2016-12-25T23:30:00.000","offense_code":"03802","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PROPERTY �DAMAGE","reporting_area":"460","street":"BRINSLEY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Monday","district":"E13","hour":"11","incident_number":"I162104966","lat":"42.30486115","location":{"type":"Point","coordinates":[-71.11634,42.304861]},"long":"-71.11633998","month":"12","occurred_on_date":"2016-12-26T11:59:00.000","offense_code":"03502","offense_code_group":"Missing Person Located","offense_description":"MISSING PERSON - LOCATED","reporting_area":"946","street":"SAINT ROSE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"C11","hour":"19","incident_number":"I162105072","lat":"42.27357721","location":{"type":"Point","coordinates":[-71.067704,42.273577]},"long":"-71.0677043","month":"12","occurred_on_date":"2016-12-26T19:41:00.000","offense_code":"00613","offense_code_group":"Larceny","offense_description":"LARCENY SHOPLIFTING","reporting_area":"405","street":"DORCHESTER AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9663","day_of_week":"Monday","district":"D4","hour":"20","incident_number":"I162105085","lat":"42.3470248","location":{"type":"Point","coordinates":[-71.085164,42.347025]},"long":"-71.08516365","month":"12","occurred_on_date":"2016-12-26T20:26:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"598","street":"DALTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Sunday","district":"D14","hour":"19","incident_number":"I162063427","lat":"42.34671041","location":{"type":"Point","coordinates":[-71.154674,42.34671]},"long":"-71.15467442","month":"8","occurred_on_date":"2016-08-07T19:24:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"771","street":"MOUNT VERNON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"D14","hour":"16","incident_number":"I162021152","location":{"type":"Point","coordinates":[0,0]},"month":"3","occurred_on_date":"2016-03-18T16:11:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"175","street":"SOUTHAMPTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"B3","hour":"1","incident_number":"I162104914","lat":"42.28783269","location":{"type":"Point","coordinates":[-71.090169,42.287833]},"long":"-71.09016904","month":"12","occurred_on_date":"2016-12-26T01:27:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"431","street":"ARBUTUS ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Monday","district":"A7","hour":"20","incident_number":"I162105083","lat":"42.38229155","location":{"type":"Point","coordinates":[-71.040364,42.382292]},"long":"-71.04036424","month":"12","occurred_on_date":"2016-12-26T20:01:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"26","street":"BORDER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10068","day_of_week":"Monday","district":"E5","hour":"20","incident_number":"I162105087","lat":"42.29505295","location":{"type":"Point","coordinates":[-71.137669,42.295053]},"long":"-71.13766917","month":"12","occurred_on_date":"2016-12-26T20:50:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"660","street":"BUCHANAN RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Tuesday","district":"E18","hour":"8","incident_number":"I162099354","lat":"42.26409","location":{"type":"Point","coordinates":[-71.117875,42.26409]},"long":"-71.117875","month":"12","occurred_on_date":"2016-12-06T08:34:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"492","street":"METROPOLITAN AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10645","day_of_week":"Wednesday","district":"D14","hour":"16","incident_number":"I162068789","lat":"42.35043273","location":{"type":"Point","coordinates":[-71.127105,42.350433]},"long":"-71.1271048","month":"8","occurred_on_date":"2016-08-24T16:21:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"796","street":"COMMONWEALTH AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Sunday","district":"A7","hour":"18","incident_number":"I162104944","lat":"42.37907259","location":{"type":"Point","coordinates":[-71.033867,42.379073]},"long":"-71.03386728","month":"12","occurred_on_date":"2016-12-25T18:00:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"824","street":"LEXINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Monday","district":"A7","hour":"11","incident_number":"I162104958","lat":"42.37662398","location":{"type":"Point","coordinates":[-71.033322,42.376624]},"long":"-71.03332247","month":"12","occurred_on_date":"2016-12-26T11:29:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"20","street":"BROOKS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Thursday","district":"B3","hour":"12","incident_number":"I162104451","lat":"42.27919289","location":{"type":"Point","coordinates":[-71.08072,42.279193]},"long":"-71.08072035","month":"12","occurred_on_date":"2016-12-01T12:24:00.000","offense_code":"02914","offense_code_group":"Violations","offense_description":"VAL - OPERATING W/O AUTHORIZATION LAWFUL","reporting_area":"419","street":"MORTON ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"17","incident_number":"I162104956","lat":"42.30648026","location":{"type":"Point","coordinates":[-71.066758,42.30648]},"long":"-71.06675783","month":"12","occurred_on_date":"2016-12-25T17:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"335","street":"BOWDOIN ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","district":"C6","hour":"16","incident_number":"I152065894","location":{"type":"Point","coordinates":[0,0]},"month":"8","occurred_on_date":"2015-08-09T16:43:00.000","offense_code":"03001","offense_code_group":"Medical Assistance","offense_description":"DEATH INVESTIGATION","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Monday","district":"D4","hour":"12","incident_number":"I162104963","lat":"42.33781618","location":{"type":"Point","coordinates":[-71.077326,42.337816]},"long":"-71.07732638","month":"12","occurred_on_date":"2016-12-26T12:10:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"156","street":"SHAWMUT AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Monday","district":"E5","hour":"6","incident_number":"I162104932","lat":"42.27620181","location":{"type":"Point","coordinates":[-71.137889,42.276202]},"long":"-71.13788919","month":"12","occurred_on_date":"2016-12-26T06:45:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"550","street":"BLUE LEDGE DR","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Monday","district":"D4","hour":"14","incident_number":"I162105001","lat":"42.34012548","location":{"type":"Point","coordinates":[-71.082233,42.340125]},"long":"-71.0822333","month":"12","occurred_on_date":"2016-12-26T14:45:00.000","offense_code":"00520","offense_code_group":"Residential Burglary","offense_description":"BURGLARY - RESIDENTIAL - FORCE","reporting_area":"597","street":"COLUMBUS AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Monday","district":"B3","hour":"18","incident_number":"I162105061","lat":"42.27855984","location":{"type":"Point","coordinates":[-71.091997,42.27856]},"long":"-71.09199697","month":"12","occurred_on_date":"2016-12-26T18:55:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"427","street":"FESSENDEN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"B2","hour":"14","incident_number":"I162105015","lat":"42.31851534","location":{"type":"Point","coordinates":[-71.095606,42.318515]},"long":"-71.09560596","month":"12","occurred_on_date":"2016-12-26T14:48:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"304","street":"WASHINGTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Monday","district":"B3","hour":"16","incident_number":"I162105058","lat":"42.28485608","location":{"type":"Point","coordinates":[-71.093657,42.284856]},"long":"-71.0936575","month":"12","occurred_on_date":"2016-12-26T16:27:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"466","street":"WELLINGTON HILL ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Tuesday","district":"B3","hour":"9","incident_number":"I162034532","lat":"42.28309574","location":{"type":"Point","coordinates":[-71.097767,42.283096]},"long":"-71.09776693","month":"5","occurred_on_date":"2016-05-03T09:30:00.000","offense_code":"00724","offense_code_group":"Auto Theft","offense_description":"AUTO THEFT","reporting_area":"467","street":"GILMER ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9661","day_of_week":"Monday","district":"A1","hour":"22","incident_number":"I162105106","lat":"42.36545556","location":{"type":"Point","coordinates":[-71.055903,42.365456]},"long":"-71.05590275","month":"12","occurred_on_date":"2016-12-26T22:21:00.000","offense_code":"03108","offense_code_group":"Fire Related Reports","offense_description":"FIRE REPORT - HOUSE, BUILDING, ETC.","reporting_area":"85","street":"PRINCE ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B3","hour":"16","incident_number":"I162105057","lat":"42.2994619","location":{"type":"Point","coordinates":[-71.083601,42.299462]},"long":"-71.08360148","month":"12","occurred_on_date":"2016-12-26T16:10:00.000","offense_code":"03106","offense_code_group":"Property Related Damage","offense_description":"PROPERTY - ACCIDENTAL DAMAGE","reporting_area":"457","street":"MCLELLAN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10064","day_of_week":"Saturday","district":"A7","hour":"20","incident_number":"I162104722","lat":"42.3819736","location":{"type":"Point","coordinates":[-71.037689,42.381974]},"long":"-71.03768922","month":"12","occurred_on_date":"2016-12-24T20:51:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"25","street":"FALCON ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Thursday","district":"C6","hour":"12","incident_number":"I152058787","location":{"type":"Point","coordinates":[0,0]},"month":"7","occurred_on_date":"2015-07-16T12:27:00.000","offense_code":"03116","offense_code_group":"Harbor Related Incidents","offense_description":"HARBOR INCIDENT / VIOLATION","street":"GEORGES ISLAND","ucr_part":"Part Three","year":"2015"}
,{":@computed_region_aywg_kpfh":"17239","day_of_week":"Monday","district":"D4","hour":"10","incident_number":"I162104950","lat":"42.3469826","location":{"type":"Point","coordinates":[-71.09112,42.346983]},"long":"-71.09111988","month":"12","occurred_on_date":"2016-12-26T10:07:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"591","street":"CHARLESGATE E","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Monday","district":"B3","hour":"14","incident_number":"I162105010","lat":"42.28414025","location":{"type":"Point","coordinates":[-71.093051,42.28414]},"long":"-71.09305138","month":"12","occurred_on_date":"2016-12-26T14:38:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"466","street":"DEERING RD","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Monday","district":"E18","hour":"13","incident_number":"I162104984","lat":"42.25442915","location":{"type":"Point","coordinates":[-71.126325,42.254429]},"long":"-71.1263254","month":"12","occurred_on_date":"2016-12-26T13:06:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"542","street":"BUSINESS ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Monday","district":"B2","hour":"20","incident_number":"I162105086","lat":"42.31587563","location":{"type":"Point","coordinates":[-71.083105,42.315876]},"long":"-71.08310526","month":"12","occurred_on_date":"2016-12-26T20:59:03.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"323","street":"WARREN ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Monday","district":"B3","hour":"16","incident_number":"I162105043","lat":"42.27967051","location":{"type":"Point","coordinates":[-71.088878,42.279671]},"long":"-71.08887826","month":"12","occurred_on_date":"2016-12-26T16:27:00.000","offense_code":"01402","offense_code_group":"Vandalism","offense_description":"VANDALISM","reporting_area":"427","street":"NORFOLK ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Tuesday","district":"B3","hour":"15","incident_number":"I162099495","lat":"42.29686162","location":{"type":"Point","coordinates":[-71.085842,42.296862]},"long":"-71.08584183","month":"11","occurred_on_date":"2016-11-22T15:00:00.000","offense_code":"03201","offense_code_group":"Property Lost","offense_description":"PROPERTY - LOST","reporting_area":"444","street":"ABBOT ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","hour":"6","incident_number":"I162102892","lat":"-1","location":{"type":"Point","coordinates":[-1,-1]},"long":"-1","month":"12","occurred_on_date":"2016-12-18T06:12:00.000","offense_code":"03008","offense_code_group":"Medical Assistance","offense_description":"SUICIDE / SUICIDE ATTEMPT","street":"MONSIGNOR DENNIS F O'CALL","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10057","day_of_week":"Saturday","district":"B2","hour":"22","incident_number":"I162104896","lat":"42.3323905","location":{"type":"Point","coordinates":[-71.099683,42.332391]},"long":"-71.09968329","month":"12","occurred_on_date":"2016-12-24T22:00:00.000","offense_code":"00616","offense_code_group":"Larceny","offense_description":"LARCENY THEFT OF BICYCLE","reporting_area":"587","street":"TREMONT ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10059","day_of_week":"Sunday","district":"C11","hour":"9","incident_number":"I162104804","lat":"42.30046668","location":{"type":"Point","coordinates":[-71.066475,42.300467]},"long":"-71.06647544","month":"12","occurred_on_date":"2016-12-25T09:59:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"357","street":"GENEVA AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Wednesday","district":"A1","hour":"5","incident_number":"I162097591","lat":"42.3578953","location":{"type":"Point","coordinates":[-71.056485,42.357895]},"long":"-71.05648542","month":"11","occurred_on_date":"2016-11-30T05:00:00.000","offense_code":"00561","offense_code_group":"Other Burglary","offense_description":"BURGLARY - OTHER - ATTEMPT","reporting_area":"98","street":"CONGRESS ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10061","day_of_week":"Monday","district":"C11","hour":"19","incident_number":"I162097226","lat":"42.31587074","location":{"type":"Point","coordinates":[-71.056683,42.315871]},"long":"-71.05668311","month":"11","occurred_on_date":"2016-11-28T19:51:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"244","street":"DORCHESTER AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"B2","hour":"14","incident_number":"I162105019","lat":"42.32667817","location":{"type":"Point","coordinates":[-71.071481,42.326678]},"long":"-71.0714811","month":"12","occurred_on_date":"2016-12-26T14:47:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","reporting_area":"181","street":"MAGAZINE ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Monday","district":"D4","hour":"7","incident_number":"I162015973","location":{"type":"Point","coordinates":[0,0]},"month":"2","occurred_on_date":"2016-02-29T07:35:00.000","offense_code":"03803","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - PERSONAL INJURY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10054","day_of_week":"Monday","district":"D4","hour":"16","incident_number":"I162105037","lat":"42.3505809","location":{"type":"Point","coordinates":[-71.083737,42.350581]},"long":"-71.08373707","month":"12","occurred_on_date":"2016-12-26T16:33:00.000","offense_code":"03820","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT INVOLVING PEDESTRIAN - INJURY","reporting_area":"136","street":"COMMONWEALTH AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10058","day_of_week":"Sunday","district":"B2","hour":"14","incident_number":"I162104923","lat":"42.30878855","location":{"type":"Point","coordinates":[-71.090556,42.308789]},"long":"-71.09055618","month":"12","occurred_on_date":"2016-12-25T14:31:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"318","street":"SEAVER ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Monday","district":"E5","hour":"18","incident_number":"I162105062","lat":"42.28309189","location":{"type":"Point","coordinates":[-71.131732,42.283092]},"long":"-71.131732","month":"12","occurred_on_date":"2016-12-26T18:08:00.000","offense_code":"00423","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED","reporting_area":"680","street":"WASHINGTON ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Tuesday","district":"D4","hour":"21","incident_number":"I162099651","lat":"42.33619626","location":{"type":"Point","coordinates":[-71.07787,42.336196]},"long":"-71.07787036","month":"12","occurred_on_date":"2016-12-06T21:42:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"273","street":"NORTHAMPTON ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Monday","district":"D4","hour":"12","incident_number":"I162104976","lat":"42.33455374","location":{"type":"Point","coordinates":[-71.075608,42.334554]},"long":"-71.07560801","month":"12","occurred_on_date":"2016-12-26T12:03:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"270","street":"HARRISON AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"C11","hour":"13","incident_number":"I162104978","lat":"42.29848866","location":{"type":"Point","coordinates":[-71.063133,42.298489]},"long":"-71.06313294","month":"12","occurred_on_date":"2016-12-26T13:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"356","street":"GENEVA AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10646","day_of_week":"Saturday","district":"D14","hour":"8","incident_number":"I162105021","lat":"42.3561883","location":{"type":"Point","coordinates":[-71.157516,42.356188]},"long":"-71.15751601","month":"12","occurred_on_date":"2016-12-24T08:30:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"766","street":"CRESTHILL RD","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Friday","district":"D14","hour":"15","incident_number":"I162052255","location":{"type":"Point","coordinates":[0,0]},"month":"7","occurred_on_date":"2016-07-01T15:32:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"B3","hour":"0","incident_number":"I162104918","lat":"42.28718205","location":{"type":"Point","coordinates":[-71.088404,42.287182]},"long":"-71.08840386","month":"12","occurred_on_date":"2016-12-26T00:20:00.000","offense_code":"00802","offense_code_group":"Simple Assault","offense_description":"ASSAULT SIMPLE - BATTERY","reporting_area":"431","street":"LUCERNE ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"10647","day_of_week":"Wednesday","district":"E18","hour":"9","incident_number":"I162101788","lat":"42.24831869","location":{"type":"Point","coordinates":[-71.116762,42.248319]},"long":"-71.11676234","month":"12","occurred_on_date":"2016-12-14T09:30:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"516","street":"WILLIAMS AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10056","day_of_week":"Monday","district":"B2","hour":"14","incident_number":"I162104996","lat":"42.31949163","location":{"type":"Point","coordinates":[-71.083319,42.319492]},"long":"-71.08331942","month":"12","occurred_on_date":"2016-12-26T14:08:00.000","offense_code":"02006","offense_code_group":"Restraining Order Violations","offense_description":"VIOL. OF RESTRAINING ORDER W ARREST","reporting_area":"309","street":"CHARLAME ST","ucr_part":"Part Two","year":"2016"}
,{"day_of_week":"Monday","district":"A15","hour":"16","incident_number":"I162072399","location":{"type":"Point","coordinates":[0,0]},"month":"9","occurred_on_date":"2016-09-05T16:00:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Saturday","district":"C11","hour":"14","incident_number":"I162098704","lat":"42.29019621","location":{"type":"Point","coordinates":[-71.07159,42.290196]},"long":"-71.07159012","month":"12","occurred_on_date":"2016-12-03T14:20:00.000","offense_code":"03831","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V - LEAVING SCENE - PROPERTY DAMAGE","reporting_area":"398","street":"TALBOT AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Monday","district":"C6","hour":"5","incident_number":"I162104929","lat":"42.33930487","location":{"type":"Point","coordinates":[-71.055215,42.339305]},"long":"-71.0552151","month":"12","occurred_on_date":"2016-12-26T05:43:00.000","offense_code":"03115","offense_code_group":"Investigate Person","offense_description":"INVESTIGATE PERSON","reporting_area":"936","street":"FLAHERTY WAY","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10062","day_of_week":"Thursday","district":"B3","hour":"10","incident_number":"I162104062","lat":"42.27967051","location":{"type":"Point","coordinates":[-71.088878,42.279671]},"long":"-71.08887826","month":"12","occurred_on_date":"2016-12-22T10:05:00.000","offense_code":"00614","offense_code_group":"Larceny From Motor Vehicle","offense_description":"LARCENY THEFT FROM MV - NON-ACCESSORY","reporting_area":"427","street":"NORFOLK ST","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10066","day_of_week":"Monday","district":"E13","hour":"15","incident_number":"I162105022","lat":"42.3215833","location":{"type":"Point","coordinates":[-71.115945,42.321583]},"long":"-71.11594502","month":"12","occurred_on_date":"2016-12-26T15:52:00.000","offense_code":"00616","offense_code_group":"Larceny","offense_description":"LARCENY THEFT OF BICYCLE","reporting_area":"610","street":"PERKINS SQ","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Monday","district":"A1","hour":"19","incident_number":"I162105076","lat":"42.35193461","location":{"type":"Point","coordinates":[-71.060486,42.351935]},"long":"-71.06048592","month":"12","occurred_on_date":"2016-12-26T19:20:00.000","offense_code":"03301","offense_code_group":"Verbal Disputes","offense_description":"VERBAL DISPUTE","reporting_area":"116","street":"OXFORD ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"9660","day_of_week":"Monday","district":"A1","hour":"16","incident_number":"I162105034","lat":"42.35145666","location":{"type":"Point","coordinates":[-71.061676,42.351457]},"long":"-71.06167557","month":"12","occurred_on_date":"2016-12-26T16:47:00.000","offense_code":"02610","offense_code_group":"Other","offense_description":"TRESPASSING","reporting_area":"117","street":"BEACH ST","ucr_part":"Part Two","year":"2016"}
,{":@computed_region_aywg_kpfh":"9658","day_of_week":"Monday","district":"A1","hour":"22","incident_number":"I162105107","lat":"42.361519","location":{"type":"Point","coordinates":[-71.055178,42.361519]},"long":"-71.055178","month":"12","occurred_on_date":"2016-12-26T22:15:00.000","offense_code":"03820","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT INVOLVING PEDESTRIAN - INJURY","reporting_area":"93","street":"JOHN F. FITZGERALD SURFAC","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10060","day_of_week":"Monday","district":"C11","hour":"18","incident_number":"I162105091","lat":"42.29557185","location":{"type":"Point","coordinates":[-71.061521,42.295572]},"long":"-71.06152074","month":"12","occurred_on_date":"2016-12-26T18:56:00.000","offense_code":"03410","offense_code_group":"Towed","offense_description":"TOWED MOTOR VEHICLE","reporting_area":"355","street":"DORCHESTER AVE","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Monday","district":"C6","hour":"11","incident_number":"I162104948","lat":"42.33280882","location":{"type":"Point","coordinates":[-71.067292,42.332809]},"long":"-71.06729226","month":"12","occurred_on_date":"2016-12-26T11:01:00.000","offense_code":"03114","offense_code_group":"Investigate Property","offense_description":"INVESTIGATE PROPERTY","reporting_area":"175","street":"TOPEKA ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10055","day_of_week":"Monday","district":"D4","hour":"14","incident_number":"I162104990","lat":"42.33806549","location":{"type":"Point","coordinates":[-71.06708,42.338065]},"long":"-71.06707972","month":"12","occurred_on_date":"2016-12-26T14:10:00.000","offense_code":"03006","offense_code_group":"Medical Assistance","offense_description":"SICK/INJURED/MEDICAL - PERSON","reporting_area":"172","street":"ALBANY ST","ucr_part":"Part Three","year":"2016"}
,{":@computed_region_aywg_kpfh":"10063","day_of_week":"Monday","district":"C6","hour":"1","incident_number":"I162104920","lat":"42.32890929","location":{"type":"Point","coordinates":[-71.0526,42.328909]},"long":"-71.05260009","month":"12","occurred_on_date":"2016-12-26T01:50:00.000","offense_code":"00413","offense_code_group":"Aggravated Assault","offense_description":"ASSAULT - AGGRAVATED - BATTERY","reporting_area":"192","street":"OLD COLONY AVE","ucr_part":"Part One","year":"2016"}
,{":@computed_region_aywg_kpfh":"10067","day_of_week":"Tuesday","district":"E5","hour":"12","incident_number":"I162105063","lat":"42.28463743","location":{"type":"Point","coordinates":[-71.144279,42.284637]},"long":"-71.14427894","month":"11","occurred_on_date":"2016-11-29T12:00:00.000","offense_code":"03207","offense_code_group":"Property Found","offense_description":"PROPERTY - FOUND","reporting_area":"686","street":"MONTVALE ST","ucr_part":"Part Three","year":"2016"}
,{"day_of_week":"Sunday","district":"B2","hour":"9","incident_number":"I162096790","location":{"type":"Point","coordinates":[0,0]},"month":"11","occurred_on_date":"2016-11-27T09:52:00.000","offense_code":"03801","offense_code_group":"Motor Vehicle Accident Response","offense_description":"M/V ACCIDENT - OTHER","ucr_part":"Part Three","year":"2016"}]