-
Notifications
You must be signed in to change notification settings - Fork 0
/
2015-02-03Incidents.json
2489 lines (2489 loc) · 75.7 KB
/
2015-02-03Incidents.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
[
{
"incident": {
"lat": "40.482879021356389",
"lng": "-80.04453300763744",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "00:15:00",
"incidentnumber": "15017078",
"address": "2000 block Termon Ave",
"type": "ARREST",
"age": "16",
"gender": "F",
"neighbornood": "Brighton Heights",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "4905",
"description": "False Alarms to Agencies of Public Safety."
}
]
}
},
{
"incident": {
"lat": "40.455036812870759",
"lng": "-80.001981652122481",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "00:46:00",
"incidentnumber": "15020047",
"address": "900 block Cedar Ave",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "East Allegheny",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "9488",
"description": "False Burglar Alarm"
}
]
}
},
{
"incident": {
"lat": "40.473927946275474",
"lng": "-80.028829566091972",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "01:20:00",
"incidentnumber": "15020055",
"address": "3100 block Brighton Rd",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Marshall-Shadeland",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "9488",
"description": "False Burglar Alarm"
}
]
}
},
{
"incident": {
"lat": "40.454045817911506",
"lng": "-79.997808108630522",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "01:51:00",
"incidentnumber": "15020076",
"address": "700 block East St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "East Allegheny",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "2702",
"description": "Aggravated Assault."
},
{
"section": "3702",
"description": "Robbery of Motor Vehicle."
},
{
"section": "3701",
"description": "Robbery."
},
{
"section": "903",
"description": "Criminal Conspiracy."
},
{
"section": "2901",
"description": "Kidnapping."
}
]
}
},
{
"incident": {
"lat": "40.466877756870879",
"lng": "-79.994177935104844",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "09:30:00",
"incidentnumber": "15020183",
"address": "100 block Rhine Pl",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Spring Hill-City View",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "2709(a)",
"description": "Harassment."
}
]
}
},
{
"incident": {
"lat": "40.480061447617878",
"lng": "-80.027129768412976",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "16:22:00",
"incidentnumber": "15020379",
"address": "900 block Woods Run Ave",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Marshall-Shadeland",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "2701",
"description": "Simple Assault."
}
]
}
},
{
"incident": {
"lat": "40.454207988839954",
"lng": "-79.997316632977075",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "16:37:00",
"incidentnumber": "14222569",
"address": "200 block East Ohio St",
"type": "ARREST",
"age": "20",
"gender": "M",
"neighbornood": "Marshall-Shadeland",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "2701(a)(1)",
"description": "Simple Assault - Intent., Know., Reckless.Cause Bod. Injury"
}
]
}
},
{
"incident": {
"lat": "40.473359809023023",
"lng": "-80.031376434798332",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "16:37:00",
"incidentnumber": "14063562",
"address": "3100 block Shadeland Ave",
"type": "ARREST",
"age": "20",
"gender": "M",
"neighbornood": "Marshall-Shadeland",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "13(a)(30)",
"description": "Possession w\/ Intent to Del. Controlled Substance"
},
{
"section": "13(a)(16)",
"description": "Possession of Controlled Substance"
}
]
}
},
{
"incident": {
"lat": "40.473359809023023",
"lng": "-80.031376434798332",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "16:37:00",
"incidentnumber": "15020425",
"address": "3100 block Shadeland Ave",
"type": "ARREST",
"age": "20",
"gender": "M",
"neighbornood": "Marshall-Shadeland",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "9501",
"description": "Bench Warrant"
}
]
}
},
{
"incident": {
"lat": "40.473359809023023",
"lng": "-80.031376434798332",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "16:37:00",
"incidentnumber": "15020425",
"address": "3100 block Shadeland Ave",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Marshall-Shadeland",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "9501",
"description": "Bench Warrant"
}
]
}
},
{
"incident": {
"lat": "40.463252273354115",
"lng": "-80.014695833087771",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "17:00:00",
"incidentnumber": "15020417",
"address": "2100 block Holyoke St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Perry South",
"councildistrict": "6",
"zipcode": "15214",
"sections": [
{
"section": "2709(a)(1)",
"description": "Harassment by Physical Contact, or Attempts or Threats"
}
]
}
},
{
"incident": {
"lat": "40.48141917173249",
"lng": "-80.036277442332121",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "17:00:00",
"incidentnumber": "15020454",
"address": "1400 block Davis Ave",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Brighton Heights",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "3304",
"description": "Criminal Mischief."
}
]
}
},
{
"incident": {
"lat": "40.475511441638318",
"lng": "-80.027104635738425",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "17:09:00",
"incidentnumber": "15020419",
"address": "3200 block Mitchell St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Marshall-Shadeland",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "2709(a)",
"description": "Harassment."
}
]
}
},
{
"incident": {
"lat": "40.452586702572219",
"lng": "-79.99197976328243",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "18:45:00",
"incidentnumber": "15020494",
"address": "Chestnut St & 16th St Brg",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "North Shore",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "7728",
"description": "Accidents and Accident Reports."
}
]
}
},
{
"incident": {
"lat": "40.466616756829907",
"lng": "-79.993676874083434",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "19:40:00",
"incidentnumber": "15020530",
"address": "2100 block Rhine Pl",
"type": "ARREST",
"age": "37",
"gender": "F",
"neighbornood": "Perry North",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "13(a)(31)",
"description": "Marijuana: Possession Small Amount"
},
{
"section": "13(a)(16)",
"description": "Possession of Controlled Substance"
},
{
"section": "13(a)(30)",
"description": "Possession w\/ Intent to Del. Controlled Substance"
},
{
"section": "13(a)(32)",
"description": "Paraphernalia - Use or Possession"
},
{
"section": "3334",
"description": "Turning Movements and Required Signals."
},
{
"section": "13(a)(30)*",
"description": "Delivery of Controlled Substance"
}
]
}
},
{
"incident": {
"lat": "40.466616756829907",
"lng": "-79.993676874083434",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "20:55:00",
"incidentnumber": "15020530",
"address": "2100 block Rhine Pl",
"type": "ARREST",
"age": "27",
"gender": "M",
"neighbornood": "Perry North",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "13(a)(31)",
"description": "Marijuana: Possession Small Amount"
},
{
"section": "13(a)(16)",
"description": "Possession of Controlled Substance"
},
{
"section": "13(a)(30)",
"description": "Possession w\/ Intent to Del. Controlled Substance"
},
{
"section": "13(a)(32)",
"description": "Paraphernalia - Use or Possession"
},
{
"section": "3334",
"description": "Turning Movements and Required Signals."
},
{
"section": "13(a)(30)*",
"description": "Delivery of Controlled Substance"
}
]
}
},
{
"incident": {
"lat": "40.466616756829907",
"lng": "-79.993676874083434",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "21:00:00",
"incidentnumber": "15020530",
"address": "2100 block Rhine Pl",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Perry North",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "13(a)(31)",
"description": "Marijuana: Possession Small Amount"
},
{
"section": "13(a)(16)",
"description": "Possession of Controlled Substance"
},
{
"section": "13(a)(30)",
"description": "Possession w\/ Intent to Del. Controlled Substance"
},
{
"section": "13(a)(32)",
"description": "Paraphernalia - Use or Possession"
},
{
"section": "3334",
"description": "Turning Movements and Required Signals."
},
{
"section": "13(a)(30)*",
"description": "Delivery of Controlled Substance"
}
]
}
},
{
"incident": {
"lat": "40.451209746298005",
"lng": "-80.021965140261187",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "21:03:00",
"incidentnumber": "15020574",
"address": "1200 block Western Ave",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Chateau",
"councildistrict": "6",
"zipcode": "15233",
"sections": [
{
"section": "9999",
"description": "9999 - (Misc. Incident):"
}
]
}
},
{
"incident": {
"lat": "40.454207988839954",
"lng": "-79.997316632977075",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "22:30:00",
"incidentnumber": "15020608",
"address": "200 block East Ohio St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Allegheny Center",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "9093",
"description": "Indirect Criminal Contempt"
},
{
"section": "9501",
"description": "Bench Warrant"
}
]
}
},
{
"incident": {
"lat": "40.454207988839954",
"lng": "-79.997316632977075",
"zone": "Zone 1",
"incidentdate": "2015-02-03",
"incidenttime": "22:35:00",
"incidentnumber": "15020608",
"address": "200 block East Ohio St",
"type": "ARREST",
"age": "20",
"gender": "M",
"neighbornood": "Allegheny Center",
"councildistrict": "1",
"zipcode": "15212",
"sections": [
{
"section": "9093",
"description": "Indirect Criminal Contempt"
},
{
"section": "9501",
"description": "Bench Warrant"
}
]
}
},
{
"incident": {
"lat": "40.447945529163249",
"lng": "-79.990418897762424",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "07:40:00",
"incidentnumber": "15020146",
"address": "1400 block Smallman St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Strip District",
"councildistrict": "7",
"zipcode": "15222",
"sections": [
{
"section": "3502",
"description": "Burglary."
}
]
}
},
{
"incident": {
"lat": "40.434696587775576",
"lng": "-79.996300985228572",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "08:00:00",
"incidentnumber": "14017527",
"address": "600 block 1st Ave",
"type": "ARREST",
"age": "20",
"gender": "M",
"neighbornood": "Golden Triangle\/Civic",
"councildistrict": "6",
"zipcode": "15219",
"sections": [
{
"section": "3921",
"description": "Theft by Unlawful Taking or Disposition."
},
{
"section": "2701",
"description": "Simple Assault."
}
]
}
},
{
"incident": {
"lat": "40.458385959041038",
"lng": "-79.963190327744655",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "10:00:00",
"incidentnumber": "15020223",
"address": "3700 block Melwood Ave",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Polish Hill",
"councildistrict": "7",
"zipcode": "15219",
"sections": [
{
"section": "3745",
"description": "Accidents Involving Damage to Unattended Veh.or Prop."
}
]
}
},
{
"incident": {
"lat": "40.459715082804635",
"lng": "-79.971037996234898",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "11:30:00",
"incidentnumber": "15020265",
"address": "3100 block Penn Ave",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Strip District",
"councildistrict": "7",
"zipcode": "15201",
"sections": [
{
"section": "2709",
"description": "Harassment (Non-Specific)"
}
]
}
},
{
"incident": {
"lat": "40.434696587775576",
"lng": "-79.996300985228572",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "12:40:00",
"incidentnumber": "15017957",
"address": "600 block First Ave",
"type": "ARREST",
"age": "16",
"gender": "M",
"neighbornood": "Perry North",
"councildistrict": "6",
"zipcode": "15219",
"sections": [
{
"section": "13(a)(31)",
"description": "Marijuana: Possession Small Amount"
}
]
}
},
{
"incident": {
"lat": "40.434696587775576",
"lng": "-79.996300985228572",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "14:00:00",
"incidentnumber": "15015202",
"address": "600 block 1st Ave",
"type": "ARREST",
"age": "13",
"gender": "M",
"neighbornood": "East Liberty",
"councildistrict": "6",
"zipcode": "15219",
"sections": [
{
"section": "2701",
"description": "Simple Assault."
},
{
"section": "2709(b)",
"description": "Stalking"
},
{
"section": "4952",
"description": "Intimidation of Witnesses or Victims"
}
]
}
},
{
"incident": {
"lat": "40.465913053577324",
"lng": "-79.953250701447303",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "14:00:00",
"incidentnumber": "15017271",
"address": "4400 block Penn Ave",
"type": "ARREST",
"age": "16",
"gender": "M",
"neighbornood": "Central Lawrenceville",
"councildistrict": "7",
"zipcode": "15224",
"sections": [
{
"section": "2701",
"description": "Simple Assault."
},
{
"section": "2902",
"description": "Unlawful Restraint."
},
{
"section": "2903",
"description": "False Imprisonment."
}
]
}
},
{
"incident": {
"lat": "40.434696587775576",
"lng": "-79.996300985228572",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "18:00:00",
"incidentnumber": "15015667",
"address": "600 block 1st Ave NW",
"type": "ARREST",
"age": "22",
"gender": "M",
"neighbornood": "Central Northside",
"councildistrict": "6",
"zipcode": "15219",
"sections": [
{
"section": "3921",
"description": "Theft by Unlawful Taking or Disposition."
},
{
"section": "3925",
"description": "Receiving Stolen Property."
}
]
}
},
{
"incident": {
"lat": "40.441234571705877",
"lng": "-80.003477050749922",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "19:55:00",
"incidentnumber": "15020577",
"address": "500 block Liberty Ave",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Golden Triangle\/Civic",
"councildistrict": "6",
"zipcode": "15222",
"sections": [
{
"section": "2709",
"description": "Harassment (Non-Specific)"
}
]
}
},
{
"incident": {
"lat": "40.439889950633201",
"lng": "-79.983923650962936",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "20:00:00",
"incidentnumber": "15020567",
"address": "Vine St & Reed St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Crawford-Roberts",
"councildistrict": "6",
"zipcode": "15219",
"sections": [
{
"section": "3304",
"description": "Criminal Mischief."
},
{
"section": "3934",
"description": "Theft from Vehicle"
}
]
}
},
{
"incident": {
"lat": "40.457070421992924",
"lng": "-79.955168912479252",
"zone": "Zone 2",
"incidentdate": "2015-02-03",
"incidenttime": "21:25:00",
"incidentnumber": "15020582",
"address": "Bigelow Blvd & N Craig St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Upper Hill",
"councildistrict": "6",
"zipcode": "15213",
"sections": [
{
"section": "3743",
"description": "Accidents Involving Damage to Attended Veh. or Property"
}
]
}
},
{
"incident": {
"lat": "40.425857468272447",
"lng": "-80.019865907738037",
"zone": "Zone 3",
"incidentdate": "2015-02-03",
"incidenttime": "00:01:00",
"incidentnumber": "15018902",
"address": "Saw Mill Run Blvd & Woodruff St",
"type": "ARREST",
"age": "45",
"gender": "M",
"neighbornood": "Duquesne Heights",
"councildistrict": "2",
"zipcode": "15211",
"sections": [
{
"section": "3746",
"description": "Immediate Notice of Accident to Police Department"
},
{
"section": "3714",
"description": "Careless Driving"
},
{
"section": "3742",
"description": "Accidents Involving Death or Personal Injury"
},
{
"section": "3743",
"description": "Accidents Involving Damage to Attended Veh. or Property"
}
]
}
},
{
"incident": {
"lat": "40.429494048812053",
"lng": "-79.997092925763596",
"zone": "Zone 3",
"incidentdate": "2015-02-03",
"incidenttime": "00:01:00",
"incidentnumber": "15020433",
"address": "4600 block E Carson St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "South Side Flats",
"councildistrict": "3",
"zipcode": "15203",
"sections": [
{
"section": "3921",
"description": "Theft by Unlawful Taking or Disposition."
},
{
"section": "4101",
"description": "Forgery."
}
]
}
},
{
"incident": {
"lat": "40.38515772475057",
"lng": "-79.995148189584569",
"zone": "Zone 3",
"incidentdate": "2015-02-03",
"incidenttime": "06:50:00",
"incidentnumber": "15020155",
"address": "2400 block Saw Mill Run Blvd",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Overbrook",
"councildistrict": "4",
"zipcode": "15234",
"sections": [
{
"section": "3743",
"description": "Accidents Involving Damage to Attended Veh. or Property"
}
]
}
},
{
"incident": {
"lat": "40.423055439338114",
"lng": "-79.998574242741796",
"zone": "Zone 3",
"incidentdate": "2015-02-03",
"incidenttime": "07:20:00",
"incidentnumber": "15020158",
"address": "Craighead St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Mount Washington",
"councildistrict": "3",
"zipcode": "15211",
"sections": [
{
"section": "3934",
"description": "Theft from Vehicle"
}
]
}
},
{
"incident": {
"lat": "40.399558412564815",
"lng": "-79.986432037453355",
"zone": "Zone 3",
"incidentdate": "2015-02-03",
"incidenttime": "09:22:00",
"incidentnumber": "15020181",
"address": "1700 block Leolyn St",
"type": "OFFENSE 2.0",
"age": "",
"gender": "",
"neighbornood": "Carrick",
"councildistrict": "4",
"zipcode": "15210",
"sections": [
{
"section": "4120",
"description": "Identity Theft"
}
]
}
},
{
"incident": {
"lat": "40.414378931083867",
"lng": "-79.988051306016501",
"zone": "Zone 3",
"incidentdate": "2015-02-03",
"incidenttime": "10:00:00",
"incidentnumber": "15012192",
"address": "100 block Bausman St",
"type": "ARREST",
"age": "32",
"gender": "F",
"neighbornood": "Knoxville",
"councildistrict": "0",
"zipcode": "15210",
"sections": [
{
"section": "2702",
"description": "Aggravated Assault."
}
]
}
},
{
"incident": {
"lat": "40.428695537448661",
"lng": "-79.986387155223355",
"zone": "Zone 3",
"incidentdate": "2015-02-03",
"incidenttime": "12:15:00",
"incidentnumber": "15018955",
"address": "1200 block East Carson St",
"type": "ARREST",
"age": "22",
"gender": "F",
"neighbornood": "South Side Flats",
"councildistrict": "3",
"zipcode": "15203",
"sections": [