-
Notifications
You must be signed in to change notification settings - Fork 11
/
portaldata.json
1702 lines (1702 loc) · 86.9 KB
/
portaldata.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
{
"name": "Chicago Data Portal",
"children": [
{
"name": "FOIA",
"children": [
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Budget-Management/c323-fb2i",
"name": "FOIA Log - Budget & Management",
"size": 104,
"value": 4.6443908991413725
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Business-Affairs-Consumer-Protect/ybhx-inqb",
"name": "FOIA Log - Business Affairs & Consumer Protection",
"size": 3250,
"value": 8.086410275323782
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Compliance/pv55-neb6",
"name": "FOIA Log - Compliance",
"size": 55,
"value": 4.007333185232471
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Cultural-Affairs/npw8-6cq9",
"name": "FOIA Log - Cultural Affairs",
"size": 35,
"value": 3.5553480614894135
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Community-Development/rpya-q7ut",
"name": "FOIA Log - Community Development",
"size": 114,
"value": 4.736198448394496
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Mayor-s-Office-for-People-with-Di/fazv-a8mb",
"name": "FOIA Log - Mayors Office for People with Disabilities",
"size": 6,
"value": 1.791759469228055
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Environment/s7ek-ru5b",
"name": "FOIA Log - Environment",
"size": 1751,
"value": 7.467942332285852
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Fleet-Management/ten5-q8vs",
"name": "FOIA Log - Fleet Management",
"size": 52,
"value": 3.9512437185814275
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Graphics-and-Reproduction-Center/57s6-wkzs",
"name": "FOIA Log - Graphics & Reproduction Center",
"size": 5,
"value": 1.6094379124341003
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Health/4h87-zdcp",
"name": "FOIA Log - Health",
"size": 1440,
"value": 7.272398392570047
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Human-Relations/52q7-yupi",
"name": "FOIA Log - Human Relations",
"size": 73,
"value": 4.290459441148391
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Human-Resources/7zkx-3pp7",
"name": "FOIA Log - Human Resources",
"size": 496,
"value": 6.206575926724928
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Independent-Police-Review-Authori/gzxp-vdqf",
"name": "FOIA Log - Independent Police Review Authority",
"size": 372,
"value": 5.918893854273146
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Law/44bx-ncpi",
"name": "FOIA Log - Law",
"size": 378,
"value": 5.934894195619588
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Revenue/zrv6-shhf",
"name": "FOIA Log - Revenue",
"size": 303,
"value": 5.713732805509369
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Special-Events/kpzx-wx3r",
"name": "FOIA Log - Special Events",
"size": 15,
"value": 2.70805020110221
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Zoning-and-Land-Use-Planning/2nra-kpzu",
"name": "FOIA Log - Zoning & Land Use Planning",
"size": 414,
"value": 6.025865973825314
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Chicago-Public-Library/n379-5uzu",
"name": "FOIA Log - Chicago Public Library",
"size": 41,
"value": 3.713572066704308
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Police/wjkc-agnm",
"name": "FOIA Log - Police",
"size": 14247,
"value": 9.564301637217232
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-City-Clerk/72qm-3bwf",
"name": "FOIA Log - City Clerk",
"size": 407,
"value": 6.008813185442595
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Housing-And-Economic-Development/5ztz-espx",
"name": "FOIA Log - Housing & Economic Development",
"size": 1528,
"value": 7.331714969726466
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Chicago-Police-Board/9pd8-s9t4",
"name": "FOIA Log - Chicago Police Board",
"size": 131,
"value": 4.875197323201151
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Family-and-Support-Services/yfhi-bd8g",
"name": "FOIA Log - Family & Support Services",
"size": 79,
"value": 4.3694478524670215
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Fire/un3c-ixb7",
"name": "FOIA Log - Fire",
"size": 18874,
"value": 9.845540592581278
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Aviation/jbth-h7cm",
"name": "FOIA Log - Aviation",
"size": 416,
"value": 6.030685260261263
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Innovation-and-Technology/4nng-j9hd",
"name": "FOIA Log - Innovation & Technology",
"size": 120,
"value": 4.787491742782046
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-311/j2p9-gdf5",
"name": "FOIA Log - 311",
"size": 597,
"value": 6.391917113392602
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Ethics/fhb6-wwuu",
"name": "FOIA Log - Ethics",
"size": 236,
"value": 5.4638318050256105
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-License-Appeal-Commission/4nkr-n688",
"name": "FOIA Log - License Appeal Commission",
"size": 11,
"value": 2.3978952727983707
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Finance/7avf-ek45",
"name": "FOIA Log - Finance",
"size": 463,
"value": 6.137727054086234
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Buildings/ucsz-xe6d",
"name": "FOIA Log - Buildings",
"size": 69277,
"value": 11.145868239758318
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Streets-Sanitation/zpd8-zq4w",
"name": "FOIA Log - Streets & Sanitation",
"size": 5459,
"value": 8.605020901781758
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Administrative-Hearings/t58s-ja5s",
"name": "FOIA Log - Administrative Hearings",
"size": 3023,
"value": 8.014004994779459
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Procurement-Services/bcyv-67qk",
"name": "FOIA Log - Procurement Services",
"size": 791,
"value": 6.673297967767654
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Water-Management/cxfr-dd4a",
"name": "FOIA Log - Water Management",
"size": 958,
"value": 6.86484777797086
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Transportation/u9qt-tv7d",
"name": "FOIA Log - Transportation",
"size": 1872,
"value": 7.534762657037537
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-OEMC/8pxc-mzcv",
"name": "FOIA Log - OEMC",
"size": 4434,
"value": 8.397057390176256
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Chicago-Treasurer-s-Office/8gyi-fawp",
"name": "FOIA Log - Chicago Treasurers Office",
"size": 40,
"value": 3.6888794541139363
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Animal-Care-and-Control/b989-387c",
"name": "FOIA Log - Animal Care & Control",
"size": 1727,
"value": 7.454141078146678
},
{
"url": "https://data.cityofchicago.org/dataset/CTA-Performance-Unscheduled-Days-Off/spus-59r8",
"name": "CTA - Performance - Unscheduled Days Off",
"size": 4,
"value": 1.3862943611198906
},
{
"url": "https://data.cityofchicago.org/dataset/CTA-Performance-Bus-Runs-Held-Due-to-Absenteeism-2/t58d-f8en",
"name": "CTA - Performance - Bus Runs Held Due to Absenteeism (2011- Jan-Aug)",
"size": 7,
"value": 1.9459101490553132
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Fleet-Facility-Management/nd4p-ckx9",
"name": "FOIA Log - Fleet & Facility Management",
"size": 85,
"value": 4.442651256490317
},
{
"url": "https://data.cityofchicago.org/FOIA/FOIA-Request-Log-Cultural-Affairs-Special-Events/ikdf-ernx",
"name": "FOIA Log - Cultural Affairs & Special Events",
"size": 41,
"value": 3.713572066704308
}
]
},{
"name": "Transportation",
"children": [
{
"url": "https://data.cityofchicago.org/Transportation/Average-Daily-Traffic-Counts/pfsx-4n4m",
"name": "Average Daily Traffic Counts",
"size": 1279,
"value": 7.153833801578843
},
{
"url": "https://data.cityofchicago.org/Transportation/Chicago-Street-Names/i6bp-fvbx",
"name": "Chicago Street Names",
"size": 2582,
"value": 7.856319571406588
},
{
"url": "https://data.cityofchicago.org/Transportation/Bike-Racks/cbyb-69xx",
"name": "Bike Racks",
"size": 5164,
"value": 8.549466751966532
},
{
"url": "https://data.cityofchicago.org/Transportation/CTA-System-Information-List-of-L-Stops/8pix-ypme",
"name": "CTA - System Information - List of L Stops",
"size": 298,
"value": 5.697093486505405
},
{
"url": "https://data.cityofchicago.org/Transportation/CTA-Ridership-Bus-Routes-Monthly-Day-Type-Averages/bynn-gwxy",
"name": "CTA - Ridership - Bus Routes - Monthly Day-Type Averages & Totals",
"size": 21140,
"value": 9.958922259424229
},
{
"url": "https://data.cityofchicago.org/Transportation/CTA-Ridership-L-Station-Entries-Monthly-Day-Type-A/t2rn-p8d7",
"name": "CTA - Ridership - L Station Entries - Monthly Day-Type Averages & Totals",
"size": 20986,
"value": 9.951610827717856
},
{
"url": "https://data.cityofchicago.org/Transportation/CTA-Ridership-Bus-Routes-Daily-Totals-by-Route/jyb9-n7fm",
"name": "CTA - Ridership - Bus Routes - Daily Totals by Route",
"size": 562715,
"value": 13.24052856225463
},
{
"url": "https://data.cityofchicago.org/Transportation/CTA-Ridership-L-Station-Entries-Daily-Totals/5neh-572f",
"name": "CTA - Ridership - L Station Entries - Daily Totals",
"size": 639134,
"value": 13.36786941403555
},
{
"url": "https://data.cityofchicago.org/Transportation/CTA-Ridership-Annual-Boarding-Totals/w8km-9pzd",
"name": "CTA - Ridership - Annual Boarding Totals",
"size": 25,
"value": 3.2188758248682006
},
{
"url": "https://data.cityofchicago.org/Transportation/CTA-Ridership-Avg-Weekday-Bus-Stop-Boardings-in-Oc/mq3i-nnqe",
"name": "CTA - Ridership - Avg. Weekday Bus Stop Boardings in October 2012",
"size": 11593,
"value": 9.358156746670401
},
{
"url": "https://data.cityofchicago.org/Transportation/CTA-Ridership-Daily-Boarding-Totals/6iiy-9s97",
"name": "CTA - Ridership - Daily Boarding Totals",
"size": 4535,
"value": 8.419580362549237
},
{
"url": "https://data.cityofchicago.org/Transportation/Towed-Vehicles/ygr5-vcbg",
"name": "Towed Vehicles",
"size": 5937,
"value": 8.688959234270676
},
{
"url": "https://data.cityofchicago.org/Transportation/Relocated-Vehicles/5k2z-suxx",
"name": "Relocated Vehicles",
"size": 3876,
"value": 8.262558973010657
},
{
"url": "https://data.cityofchicago.org/Transportation/Street-Closure-Permits-Current/avwc-kf7i",
"name": "Street Closure Permits - Current",
"size": 108,
"value": 4.68213122712422
},
{
"url": "https://data.cityofchicago.org/Transportation/Chicago-Traffic-Tracker-Congestion-Estimates-by-Se/n4j6-wkkf",
"name": "Chicago Traffic Tracker - Congestion Estimates by Segments",
"size": 1257,
"value": 7.136483208590247
},
{
"url": "https://data.cityofchicago.org/Transportation/Chicago-Traffic-Tracker-Congestion-Estimates-by-Re/t2qc-9pjd",
"name": "Chicago Traffic Tracker - Congestion Estimates by Regions",
"size": 29,
"value": 3.367295829986474
},
{
"url": "https://data.cityofchicago.org/Transportation/Public-Right-of-Way-Use-Permits/hwmb-iu8j",
"name": "Public Right-of-Way Use Permits",
"size": 505242,
"value": 13.132792801394842
},
{
"url": "https://data.cityofchicago.org/Transportation/Chicago-Traffic-Tracker-Historical-Congestion-Esti/77hq-huss",
"name": "Chicago Traffic Tracker - Historical Congestion Estimates by Segment",
"size": 6768091,
"value": 15.727729625804281
},
{
"url": "https://data.cityofchicago.org/Transportation/Chicago-Traffic-Tracker-Historical-Congestion-Esti/emtn-qqdi",
"name": "Chicago Traffic Tracker - Historical Congestion Estimates by Region",
"size": 2168225,
"value": 14.589419418444487
}
]
},{
"name": "Historic Preservation",
"children": [
{
"url": "https://data.cityofchicago.org/Historic-Preservation/Landmark-Districts/zidz-sdfj",
"name": "Landmark Districts",
"size": 59,
"value": 4.07753744390572
},
{
"url": "https://data.cityofchicago.org/Historic-Preservation/Individual-Landmarks/tdab-kixi",
"name": "Individual Landmarks",
"size": 317,
"value": 5.75890177387728
}
]
},{
"name": "Facilities & Geographic Boundaries",
"children": [
{
"url": "https://data.cityofchicago.org/Facilities-Geographic-Boundaries/Ward-Offices/htai-wnw4",
"name": "Ward Offices",
"size": 50,
"value": 3.912023005428146
},
{
"url": "https://data.cityofchicago.org/Facilities-Geographic-Boundaries/Public-Technology-Resources/nen3-vcxj",
"name": "Public Technology Resources",
"size": 250,
"value": 5.521460917862246
}
]
},{
"name": "Public Safety",
"children": [
{
"url": "https://data.cityofchicago.org/Public-Safety/Fire-Stations/28km-gtjn",
"name": "Fire Stations",
"size": 92,
"value": 4.5217885770490405
},
{
"url": "https://data.cityofchicago.org/Public-Safety/Police-Stations/z8bn-74gv",
"name": "Police Stations",
"size": 23,
"value": 3.1354942159291497
},
{
"url": "https://data.cityofchicago.org/Public-Safety/Chicago-Police-Department-Illinois-Uniform-Crime-R/c7ck-438e",
"name": "Chicago Police Department - Illinois Uniform Crime Reporting (IUCR) Codes",
"size": 384,
"value": 5.950642552587727
},
{
"url": "https://data.cityofchicago.org/Public-Safety/Sex-Offenders/vc9r-bqvy",
"name": "Sex Offenders",
"size": 1616,
"value": 7.38770923908104
},
{
"url": "https://data.cityofchicago.org/Public-Safety/Crimes-One-year-prior-to-present/x2n5-8w5q",
"name": "Crimes - One year prior to present",
"size": 313022,
"value": 12.654028754592172
},
{
"url": "https://data.cityofchicago.org/Public-Safety/Crimes-2001-to-present/ijzp-q8t2",
"name": "Crimes - 2001 to present",
"size": 5256320,
"value": 15.47494172009391
}
]
},{
"name": "Health & Human Services",
"children": [
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Community-Service-Centers/bspy-6mw8",
"name": "Community Service Centers",
"size": 6,
"value": 1.791759469228055
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Neighborhood-Health-Clinics/mw69-m6xi",
"name": "Neighborhood Health Clinics",
"size": 7,
"value": 1.9459101490553132
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Workforce-Centers/cs4s-nsna",
"name": "Workforce Centers",
"size": 5,
"value": 1.6094379124341003
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/STI-Speciality-Clinics/ajzs-akmm",
"name": "STI Speciality Clinics",
"size": 5,
"value": 1.6094379124341003
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Mental-Health-Clinics/v56e-cy8y",
"name": "Mental Health Clinics",
"size": 6,
"value": 1.791759469228055
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Women-Infant-Children-Health-Clinics/g85x-gwmp",
"name": "Women- Infant- Children Health Clinics",
"size": 19,
"value": 2.9444389791664403
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Senior-Centers/qhfc-4cw2",
"name": "Senior Centers",
"size": 21,
"value": 3.044522437723423
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Youth-Centers/meks-hp6f",
"name": "Youth Centers",
"size": 221,
"value": 5.3981627015177525
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Food-Inspections/4ijn-s7e5",
"name": "Food Inspections",
"size": 63418,
"value": 11.05750301180195
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Condom-Distribution-Sites/azpf-uc4s",
"name": "Condom Distribution Sites",
"size": 222,
"value": 5.402677381872279
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Services-Licensed-Substance-Abuse-Tr/9zqv-3uhs",
"name": "Public Health Services - Licensed Substance Abuse Treatment Providers in Chicago- 2011",
"size": 204,
"value": 5.318119993844216
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-General-fertility-rates-i/g5zk-9ycw",
"name": "Public Health Statistics - General fertility rates in Chicago- by year- 1999-2009",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/dataset/Snow-Alerts/jpfu-k3rv",
"name": "Snow Alerts",
"size": 1,
"value": 0.0
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Births-to-mothers-aged-15/9kva-bt6k",
"name": "Public Health Statistics - Births to mothers aged 15-19 years old in Chicago- by year- 1999-2009",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Prenatal-care-in-Chicago-/2q9j-hh6g",
"name": "Public Health Statistics - Prenatal care in Chicago- by year- 1999 2009",
"size": 389,
"value": 5.963579343618446
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Preterm-births-in-Chicago/rhy3-4x2f",
"name": "Public Health Statistics - Preterm births in Chicago- by year- 1999 2009",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Births-and-birth-rates-in/4arr-givg",
"name": "Public Health Statistics - Births & birth rates in Chicago- by year- 1999 2009",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Census-Data-Selected-socioeconomic-indicators-in-C/kn9c-c2s2",
"name": "Census Data - Selected socioeconomic indicators in Chicago- 2007 2011",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Census-Data-Languages-spoken-in-Chicago-2007-2011/a2fk-ec6q",
"name": "Census Data - Languages spoken in Chicago- 2007 2011",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Screening-for-elevated-bl/v2z5-jyrq",
"name": "Public Health Statistics - Screening for elevated blood lead levels in children aged 0-6 years by year- Chicago- 1999 - 2011",
"size": 79,
"value": 4.3694478524670215
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Asthma-hospitalizations-i/vazh-t57q",
"name": "Public Health Statistics - Asthma hospitalizations in Chicago- by year- 2000 - 2011",
"size": 49,
"value": 3.8918202981106265
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Tuberculosis-cases-and-av/ndk3-zftj",
"name": "Public Health Statistics- Tuberculosis cases & average annual incidence rate- Chicago- 2007- 2011",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Diabetes-hospitalizations/vekt-28b5",
"name": "Public Health Statistics- Diabetes hospitalizations in Chicago- 2000 - 2011",
"size": 49,
"value": 3.8918202981106265
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-health-statistics-Gonorrhea-cases-for-males/m5qn-gmjx",
"name": "Public health statistics- Gonorrhea cases for males aged 15-44 in Chicago- by year- 2000 - 2011",
"size": 79,
"value": 4.3694478524670215
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Gonorrhea-cases-for-femal/cgjw-mn43",
"name": "Public Health Statistics- Gonorrhea cases for females aged 15 - 44 in Chicago- by year- 2000 - 2011",
"size": 79,
"value": 4.3694478524670215
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Chlamydia-cases-among-fem/bz6k-73ti",
"name": "Public Health Statistics- Chlamydia cases among females aged 15-44 in Chicago- by year- 2000-2011.",
"size": 79,
"value": 4.3694478524670215
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Selected-public-health-in/iqnk-2tcu",
"name": "Public Health Statistics- Selected public health indicators by Chicago community area",
"size": 77,
"value": 4.343805421853684
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Infant-mortality-in-Chica/bfhr-4ckq",
"name": "Public Health Statistics- Infant mortality in Chicago- 2005 2009",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Selected-underlying-cause/j6cj-r444",
"name": "Public Health Statistics- Selected underlying causes of death in Chicago- 2005 2009",
"size": 1404,
"value": 7.247080584585756
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Public-Health-Statistics-Low-birth-weight-in-Chica/fbxr-9u99",
"name": "Public Health Statistics - Low birth weight in Chicago- by year- 1999 2009",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Cooling-Centers/msrk-w9ih",
"name": "Cooling Centers",
"size": 113,
"value": 4.727387818712341
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Flu-Shot-Clinic-Locations-2012/4jy7-7m68",
"name": "Flu Shot Clinic Locations - 2012",
"size": 1058,
"value": 6.964135612418245
},
{
"url": "https://data.cityofchicago.org/Health-Human-Services/Warming-Centers/h243-v2q5",
"name": "Warming Centers",
"size": 113,
"value": 4.727387818712341
}
]
},{
"name": "Education",
"children": [
{
"url": "https://data.cityofchicago.org/Education/Schools/kqmn-byj8",
"name": "Schools",
"size": 1021,
"value": 6.928537818164665
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-Summer-Reads-for-Adults/8kfs-9r64",
"name": "Libraries - Summer Reads for Adults",
"size": 2,
"value": 0.6931471805599453
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2011-Circulation-by-Location/tfmt-mmy2",
"name": "Libraries - 2011 Circulation by Location",
"size": 83,
"value": 4.418840607796598
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2011-Computer-Sessions-by-Location/6uah-qehh",
"name": "Libraries - 2011 Computer Sessions by Location",
"size": 80,
"value": 4.382026634673881
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2011-Holds-Filled-by-Location/ngxm-jbc3",
"name": "Libraries - 2011 Holds Filled by Location",
"size": 80,
"value": 4.382026634673881
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2011-Holds-Placed-by-Location/rgy2-2ae9",
"name": "Libraries - 2011 Holds Placed by Location",
"size": 82,
"value": 4.406719247264253
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2011-Children-s-Summer-Reading-Program/vuf2-qfik",
"name": "Libraries - 2011 Childrens Summer Reading Program",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2011-Visitors-by-Location/xxwy-zyzu",
"name": "Libraries - 2011 Visitors by Location",
"size": 81,
"value": 4.394449154672439
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-WiFi-Usage/vbts-zqt4",
"name": "Libraries - WiFi Usage",
"size": 28,
"value": 3.332204510175204
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-Popular-Fiction-Titles-at-the-Chicago-Pu/nv46-bxa3",
"name": "Libraries - Popular Fiction Titles at the Chicago Public Library",
"size": 25,
"value": 3.2188758248682006
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-Popular-Nonfiction-Titles-at-the-Chicago/y4km-wdbp",
"name": "Libraries - Popular Nonfiction Titles at the Chicago Public Library",
"size": 25,
"value": 3.2188758248682006
},
{
"url": "https://data.cityofchicago.org/Education/Chicago-Public-Schools-Progress-Report-Cards-2011-/9xs2-f89t",
"name": "Chicago Public Schools - Progress Report Cards (2011-2012)",
"size": 566,
"value": 6.338594078203183
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2012-Circulation-by-Location/jsdv-pwf2",
"name": "Libraries - 2012 Circulation by Location",
"size": 82,
"value": 4.406719247264253
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2012-Computer-Sessions-by-Location/7fu8-t497",
"name": "Libraries - 2012 Computer Sessions by Location",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2012-Holds-Filled-by-Location/egku-46f2",
"name": "Libraries - 2012 Holds Filled by Location",
"size": 79,
"value": 4.3694478524670215
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2012-Holds-Placed-by-Location/cpva-49fs",
"name": "Libraries - 2012 Holds Placed by Location",
"size": 81,
"value": 4.394449154672439
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2012-Visitors-by-Location/zh3n-jtnt",
"name": "Libraries - 2012 Visitors by Location",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-Children-s-Summer-Reading-Program/gy9e-qh3y",
"name": "Libraries - Childrens Summer Reading Program",
"size": 2,
"value": 0.6931471805599453
},
{
"url": "https://data.cityofchicago.org/Education/Connect-Chicago-Locations/bmus-hp7e",
"name": "Connect Chicago Locations",
"size": 273,
"value": 5.60947179518496
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2013-Holds-Placed-by-Location/dgeh-7h9y",
"name": "Libraries - 2013 Holds Placed by Location",
"size": 81,
"value": 4.394449154672439
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2013-Holds-Filled-by-Location/7pb7-6889",
"name": "Libraries - 2013 Holds Filled by Location",
"size": 79,
"value": 4.3694478524670215
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2013-Computer-Sessions-by-Location/qrxi-q28n",
"name": "Libraries - 2013 Computer Sessions by Location",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2013-Visitors-by-Location/x74m-smqb",
"name": "Libraries - 2013 Visitors by Location",
"size": 78,
"value": 4.356708826689592
},
{
"url": "https://data.cityofchicago.org/Education/Libraries-2013-Circulation-by-Location/ti44-vee7",
"name": "Libraries - 2013 Circulation by Location",
"size": 82,
"value": 4.406719247264253
}
]
},{
"name": "Community & Economic Development",
"children": [
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/TIF-Projection-Reports/zai4-r88e",
"name": "TIF Projection Reports",
"size": 3035,
"value": 8.017966703493599
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/TIF-Balance-Sheets/hezc-e4be",
"name": "TIF Balance Sheets",
"size": 4588,
"value": 8.431199478249262
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/Small-Business-Improvement-Fund-SBIF-Grant-Agreeme/jp7n-tgmf",
"name": "Small Business Improvement Fund (SBIF) Grant Agreements",
"size": 1238,
"value": 7.121252453244542
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/Business-Owners/ezma-pppn",
"name": "Business Owners",
"size": 216042,
"value": 12.283228112208876
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/Business-Licenses/r5kz-chrr",
"name": "Business Licenses",
"size": 413978,
"value": 12.933568111298849
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf",
"name": "TIF Status & Eligibility",
"size": 174,
"value": 5.159055299214529
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/TIF-Funding-Sources-and-Uses-by-TIF-Fiscal-Year-an/pner-h2in",
"name": "TIF Funding Sources & Uses by TIF- Fiscal Year- and Type",
"size": 7192,
"value": 8.880724576151456
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/City-Owned-Land-Inventory/aksk-kvfp",
"name": "City-Owned Land Inventory",
"size": 15373,
"value": 9.640368002912599
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/TIF-Balances-by-Fiscal-Year/hz8p-ewk5",
"name": "TIF Balances by Fiscal Year",
"size": 980,
"value": 6.887552571664617
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/Public-Chauffeurs/97wa-y6ff",
"name": "Public Chauffeurs",
"size": 28607,
"value": 10.26140672210502
},
{
"url": "https://data.cityofchicago.org/Community-Economic-Development/Affordable-Rental-Housing-Developments/s6ha-ppgi",
"name": "Affordable Rental Housing Developments",
"size": 229,
"value": 5.43372200355424
}
]
},{
"name": "Administration & Finance",
"children": [
{
"url": "https://data.cityofchicago.org/Administration-Finance/Budget-2011-Budget-Ordinance-Appropriations/drv3-jzqp",
"name": "Budget - 2011 Budget Ordinance - Appropriations",
"size": 4271,
"value": 8.359603270841466
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Budget-2011-Budget-Ordinance-Positions-and-Salarie/g398-fhbm",
"name": "Budget - 2011 Budget Ordinance - Positions & Salaries",
"size": 8216,
"value": 9.013838751608395
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Public-Health-Immunization-Pro/7g62-yrf5",
"name": "Performance Metrics - Public Health - Immunization Program - Monthly Vaccine Distribution",
"size": 15,
"value": 2.70805020110221
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Employee-Overtime-and-Supplemental-Earnings/92xk-4rg9",
"name": "Employee Overtime & Supplemental Earnings",
"size": 13385,
"value": 9.501889955954454
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Housing-Economic-Development-L/2wk4-c5se",
"name": "Performance Metrics - Housing & Economic Development - Landmark Permitting Review",
"size": 19,
"value": 2.9444389791664403
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Public-Health-School-Based-Ora/uvy2-xbnp",
"name": "Performance Metrics - Public Health - School-Based Oral Health Programming",
"size": 15,
"value": 2.70805020110221
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Public-Health-Lead-Inspections/3mg2-a24n",
"name": "Performance Metrics - Public Health - Lead Inspections Performed",
"size": 17,
"value": 2.833213344056216
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Public-Health-Percent-Served-a/5t3t-6y9q",
"name": "Performance Metrics - Public Health - Percent Served at STI Specialty Clinics",
"size": 16,
"value": 2.772588722239781
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Family-Support-Services-Childe/vjbu-ywct",
"name": "Performance Metrics - Family & Support Services - Childen Services Program Monthly Utilization",
"size": 28,
"value": 3.332204510175204
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Family-Support-Services-Youth-/xczi-kmtf",
"name": "Performance Metrics - Family & Support Services - Youth Services Program Monthly Utilization",
"size": 28,
"value": 3.332204510175204
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Family-Support-Services-Senior/m3we-umj3",
"name": "Performance Metrics - Family & Support Services - Senior Services Nutrition Monthly Utilization",
"size": 28,
"value": 3.332204510175204
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Family-Support-Services-Homele/vg8w-2w9y",
"name": "Performance Metrics - Family & Support Services - Homeless Shelter System Monthly Utilization",
"size": 28,
"value": 3.332204510175204
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Family-Support-Services-Domest/hbuv-eka5",
"name": "Performance Metrics - Family & Support Services - Domestic Violence Service Help Line Monthly Utilization",
"size": 28,
"value": 3.332204510175204
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Family-Support-Services-Workfo/uava-8jbh",
"name": "Performance Metrics - Family & Support Services - Workforce Services Monthly Utilization",
"size": 28,
"value": 3.332204510175204
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Housing-Economic-Development-Z/icic-3jsa",
"name": "Performance Metrics - Housing & Economic Development - Zoning Permit Scheduling & Review",
"size": 19,
"value": 2.9444389791664403
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Housing-Economic-Development-A/dsvs-yfj6",
"name": "Performance Metrics - Housing & Economic Development - Affordable Multi Family Homes",
"size": 7,
"value": 1.9459101490553132
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Housing-Economic-Development-S/mvrj-qzai",
"name": "Performance Metrics - Housing & Economic Development - Single Family Homes",
"size": 7,
"value": 1.9459101490553132
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-Business-Affairs-Consumer-Prot/emvs-38e6",
"name": "Performance Metrics - Business Affairs & Consumer Protection - Business Licenses",
"size": 509,
"value": 6.2324480165505225
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-City-Colleges-of-Chicago-Cours/vz8e-347q",
"name": "Performance Metrics - City Colleges of Chicago - Course Success Rates",
"size": 22,
"value": 3.091042453358316
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Performance-Metrics-City-Colleges-of-Chicago-Gradu/vvxi-nsph",
"name": "Performance Metrics - City Colleges of Chicago - Graduation Rates",
"size": 12,
"value": 2.4849066497880004
},
{
"url": "https://data.cityofchicago.org/Administration-Finance/Town-Hall-Answers/8piv-mrrj",