-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
3263 lines (2029 loc) · 203 KB
/
index.html
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
<!DOCTYPE html>
<!-- begin doc -->
<html lang="en">
<!-- begin header -->
<head>
<!-- begin meta -->
<title>Explore KPCC's databases, maps and more | scpr.org</title>
<link rel="shortcut icon" href="/legacy/media/favicon.ico">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" id="meta-viewport" content="width=device-width,minimum-scale=1,maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="/legacy/media/assets/images/icon.png">
<meta name="format-detection" content="telephone=no"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="" />
<meta name="description" content="We've collected our interactive maps, databases and charts so you can explore past projects by topic." />
<meta name="keywords" content="KPCC, Southern California Public Radio, Crime & Public Safety, Culture, Economy & Money, Education, Environment & Science, General, Health, Politics, Seasonal, Transportation" />
<meta property="og:title" content="Explore KPCC's databases, maps and more" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://projects.scpr.org/static/static-files/v3-dependencies/images/kpcc-og-twitter-logo.png" />
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<meta property="og:url" content="https://projects.scpr.org/" />
<meta property="og:description" content="We've collected our interactive maps, databases and charts so you can explore past projects by topic." />
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="https://projects.scpr.org/">
<meta name="twitter:domain" content="https://projects.scpr.org/">
<meta name="twitter:site" content="KPCC">
<meta name="twitter:title" content="Explore KPCC's databases, maps and more">
<meta name="twitter:description" content="We've collected our interactive maps, databases and charts so you can explore past projects by topic.">
<meta name="twitter:image:src" content="https://projects.scpr.org/static/static-files/v3-dependencies/images/kpcc-og-twitter-logo.png">
<!-- end meta -->
<!-- begin css -->
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.3/css/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<link href="https://projects.scpr.org/static/static-files/css/jquery-alerts/jquery.alerts.css" rel="stylesheet" type="text/css" />
<link href="https://projects.scpr.org/static/static-files/v3-dependencies/css/main-foundation-style-v3.css" rel="stylesheet" type="text/css" />
<link href="projects_scpr_org/base.css" rel="stylesheet" type="text/css" />
<!-- end css -->
<!-- html5 shim and respond.js ie8 support of html5 elements and media queries -->
<!--[if lte IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.3.0/respond.js"></script>
<link href="https://projects.scpr.org/static/static-files/v3-dependencies/respond-proxy/respond-proxy.html" id="respond-proxy" rel="respond-proxy" />
<link href="projects_scpr_org/respond-proxy/respond.proxy.gif" id="respond-redirect" rel="respond-redirect" />
<script src="projects_scpr_org/respond-proxy/respond.proxy.js"></script>
<![endif]-->
<!-- begin base scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="//use.typekit.net/air8rql.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<!-- end base scripts -->
</head>
<!-- end header -->
<!-- begin body -->
<body class="minimal page-index">
<div class="kpcc-header">
<header>
<nav class="navbar navbar-default" role="navigation">
<div class="container data-container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<h3 id="site-title" ><a href="http://www.scpr.org/">KPCC 89.3</a></h3>
</div>
<div class="data-share navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right header-links clearfix">
<li class="projects-pledge">
<a href="https://scprcontribute.publicradio.org/" class="pledge-now icon">Contribute to KPCC</a>
<a href="https://scprcontribute.publicradio.org/" target="_blank"><b>Pledge now</b></a>
</li>
<li class="projects-share">
<div class="share-links clearfix">
<script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script>
<a class="facebook icon" href="https://www.facebook.com/sharer/sharer.php?u=https://projects.scpr.org/" onClick="return fbs_click()" target="_blank" title="Share This on Facebook"></a>
<a class="twitter icon" href="http://twitter.com/share?text=We've collected our interactive maps, databases and charts so you can explore past projects by topic.&url=https://projects.scpr.org/"></a>
</div>
<b>Share this</b>
</li>
<li class="projects-embed">
<a href="javascript:void(0)" class="embed-this icon" onclick="initializeProject.renderEmbedBox()">Embed This</a>
<a href="javascript:void(0)" target="_blank" onclick="initializeProject.renderEmbedBox()"><b>Embed This</b></a>
</li>
<li class="projects-home">
<a href="https://projects.scpr.org/" class="projects-home icon">Projects Home</a>
<a href="https://projects.scpr.org/"><b>All Projects</b></a>
</li>
</ul>
</div>
</div>
</nav>
</header>
</div>
<div class="container data-container">
<div class="row data-details">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="content-article">
<div class="headlines">
<h4 class="kicker">News & Data Interactives</h4>
<h1>Explore KPCC's databases, maps and more</h1>
</div>
<div class="text collapse">
<p>
<span class="credits">By <a href='http://www.scpr.org/about/people/staff/chris-keller'>Chris Keller</a> & <a href="https://www.scpr.org/about/people/staff/aaron-mendelson">Aaron Mendelson</a></span> |
<span class="pubdate">Updated January 5, 2018</span>
</p>
<p>We've collected our stories, maps, databases and charts so you can explore past projects by topic. To see some of the data we've made available, visit our GitHub <a href="https://github.com/SCPR/kpcc-data-team">repo</a>.</p>
</div>
<div class="about collapse">
<p>
<strong>Built using</strong>: <a href="http://tarbell.tribapps.com/" target="blank">Tarbell</a> & <a href="http://twitter.github.com/bootstrap/">Bootstrap</a>.
</p>
</div>
<div class="buttons btn-group btn-group-justified">
<a class="btn btn-primary" href="javascript:void(0)" data-toggle="collapse" data-target=".text"><span class="text glyphicon glyphicon-chevron-down"></span> About</a>
<a class="btn btn-primary" href="javascript:void(0)" data-toggle="collapse" data-target=".about"><span class="about glyphicon glyphicon-chevron-down"></span> Sources</a>
</div>
</div>
</div>
</div>
<div class="row data-visuals">
<!--
<div id="content-section-navigation">
<ul class="list-inline">
<li><a href="#crime-&-public-safety" class="name">Crime & Public Safety</a></li>
<li><a href="#culture" class="name">Culture</a></li>
<li><a href="#economy-&-money" class="name">Economy & Money</a></li>
<li><a href="#education" class="name">Education</a></li>
<li><a href="#environment-&-science" class="name">Environment & Science</a></li>
<li><a href="#general" class="name">General</a></li>
<li><a href="#health" class="name">Health</a></li>
<li><a href="#immigration" class="name">Immigration</a></li>
<li><a href="#politics-&-accountability" class="name">Politics & Accountability</a></li>
<li><a href="#seasonal" class="name">Seasonal</a></li>
<li><a href="#sports" class="name">Sports</a></li>
<li><a href="#transportation" class="name">Transportation</a></li>
</ul>
</div>
-->
<h4 class="section-title">Recent Projects</h4>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">investigation</h4>
<a href="http://laist.com/2018/06/19/lottery.php" target="_blank"><img class="placemark" src="https://laistassets.scprdev.org/i/984b689bee606001078766e7fd74ae1f/5b341136f862ac0009c0480e-thumb-640.jpg" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="http://laist.com/2018/06/19/lottery.php" target="_blank">How California Lawmakers Goosed Jackpots To Create Record-Setting Lottery Sales</a></h3>
<p><span class="credits">By Aaron Mendelson</span> | <span class="pubdate">June 19, 2018</span></p>
<p>The California Lottery is minting money. This year, revenues will soar to $6.9 billion. That should be good news for the state’s schools, the lottery's only beneficiary. Yet even as ticket sales have skyrocketed, California schools aren’t seeing much of a return on that investment. A KPCC/LAist investigation found contributions to education by the lottery are essentially unchanged from 12 years ago, even though revenues are up by billions.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://laist.com/2018/06/19/lottery.php" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">investigation</h4>
<a href="https://www.scpr.org/news/2017/08/23/74917/la-mayor-garcetti-behested-payments/" target="_blank"><img class="placemark" src="/legacy/assethost/i/ce4639c184481fd14d89a5fccb4d6b04/168489-full.jpg" alt="LA mayor solicits millions for his favored causes" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2017/08/23/74917/la-mayor-garcetti-behested-payments/" target="_blank">'A tricky area of philanthropy': LA mayor solicits millions for his favored causes</a></h3>
<p><span class="credits">By Aaron Mendelson & Mary Plummer</span> | <span class="pubdate">August 23, 2017</span></p>
<p>Los Angeles Mayor Eric Garcetti — a longtime critic of big money in local politics — has set a surprising city record requesting large contributions, using a little-known and largely unregulated process called “behested payments,” KPCC has found. Since his election as mayor, records show Garcetti has used the mechanism to raise $31.9 million in large donations.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2017/08/23/74917/la-mayor-garcetti-behested-payments/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">special presentation</h4>
<a href="https://projects.scpr.org/officer-involved-sb/" target="_blank"><img class="placemark" src="/legacy/assethost/i/1bd217f61844b4734b32e742c3b785f0/158870-full.jpg" alt="Officer Involved San Bernardino: A KPCC investigation into police shootings in San Bernardino County" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/officer-involved/" target="_blank">Officer Involved San Bernardino</a></h3>
<p><span class="credits">By KPCC Staff</span> | <span class="pubdate">May 14, 2017</span></p>
<p>San Bernardino County is the largest geographic county in the U.S. Law enforcement serves more than 2 million people. Yet, officials made little public about officer shootings. At a time of a national debate, KPCC wanted to uncover facts.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/officer-involved-sb/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://projects.scpr.org/officer-involved-sb/stories/substance-abuse/" target="_blank"><strong>Read the stories</strong></a><p>
</div>
</div>
</div>
<h4 class="section-title">Crime & Public Safety</h4>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">special presentation</h4>
<a href="https://projects.scpr.org/officer-involved/" target="_blank"><img class="placemark" src="/legacy/assethost/i/c1aa54555cf98edd43a285c5530894fa/114325-full.jpg" alt="Officer Involved: A KPCC investigation into police shootings in Los Angeles County" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/officer-involved/" target="_blank">Officer Involved: A KPCC investigation into police shootings in Los Angeles County</a></h3>
<p><span class="credits">By KPCC Staff</span> | <span class="pubdate">Nov. 10, 2015</span></p>
<p>As KPCC set out to analyze how often on-duty police officers and sheriff's deputies in Los Angeles County shot another person, one thing became clear:
This isn't data you can simply look up. So KPCC analyzed district attorney summaries of ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/officer-involved/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/officer-involved/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">article</h4>
<a href="https://www.scpr.org/news/2017/11/27/78179/trump-effect-keeps-ca-gun-sales-lower-after-vegas/" target="_blank"><img class="placemark" src="/legacy/assethost/i/8e90a36e441325bac313b8e4677c8945/153135-full.jpg" alt="Trump effect keeps CA gun sales lower after Vegas shooting" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2017/11/27/78179/trump-effect-keeps-ca-gun-sales-lower-after-vegas/" target="_blank">Trump effect keeps California gun sales lower after Vegas shooting</a></h3>
<p><span class="credits">By Aaron Mendelson</span> | <span class="pubdate">November 27, 2017</span></p>
<p>Californians purchased 17,226 firearms in the week after the Las Vegas shooting, according to data obtained by KPCC from the California Bureau of Firearms. That was a 12 percent jump from the previous week, but represented only the fifth highest week of gun sales this year. After the shooting at the Pulse nightclub in Orlando last year, firearms sales jumped 45 percent the following week in California, setting the highest weekly total of the year to that point.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2017/11/27/78179/trump-effect-keeps-ca-gun-sales-lower-after-vegas/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">article</h4>
<a href="https://www.scpr.org/news/2017/08/17/74785/police-use-force-against-blacks-in-california-at-h/" target="_blank"><img class="placemark" src="/legacy/assethost/i/1d45fe10d1ca5feb6bf9e714a7b03459/114124-full.jpg" alt="California police use force at a higher rate against blacks, data shows" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2017/08/17/74785/police-use-force-against-blacks-in-california-at-h/" target="_blank">California police use force at a higher rate against blacks, data shows</a></h3>
<p><span class="credits">By Annie Gilbertson & Aaron Mendelson</span> | <span class="pubdate">August 17, 2017</span></p>
<p>Police in California shot at or used force against black people last year at triple the rate relative to their portion of the population, according to a first ever report on use of force released Thursday afternoon by the state Department of Justice.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2017/08/17/74785/police-use-force-against-blacks-in-california-at-h/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">article</h4>
<a href="https://www.scpr.org/news/2017/06/21/73091/legal-pot-could-cut-police-vehicle-searches-dramat/" target="_blank"><img class="placemark" src="/legacy/assethost/i/b1d94009e0dd34ca0e0d71e8b69bada2/163351-full.jpg" alt="Legal pot could cut police vehicle searches dramatically in California
" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2017/06/21/73091/legal-pot-could-cut-police-vehicle-searches-dramat/" target="_blank">Legal pot could cut police vehicle searches dramatically in California
</a></h3>
<p><span class="credits">By Aaron Mendelson</span> | <span class="pubdate">August 17, 2017</span></p>
<p>Colorado and Washington saw vehicle searches by police officers fall dramatically after legalizing marijuana — a trend that could have implications in California, where voters legalized recreational pot last November.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2017/06/21/73091/legal-pot-could-cut-police-vehicle-searches-dramat/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">article</h4>
<a href="https://www.scpr.org/news/2017/02/02/67868/lapd-moves-to-share-body-camera-footage-will-other/" target="_blank"><img class="placemark" src="/legacy/assethost/i/3537b5fa7ca29df7f7431f44e4397109/76832-full.jpg" alt="LA police commission reviews body-cam policy. Other cities' rules vary, KPCC finds." /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2017/02/02/67868/lapd-moves-to-share-body-camera-footage-will-other/" target="_blank">LA police commission reviews body-cam policy. Other cities' rules vary, KPCC finds.</a></h3>
<p><span class="credits">By Aaron Mendelson</span> | <span class="pubdate">August 17, 2017</span></p>
<p>The civilian body that oversees the Los Angeles Police Department this week announced it plans to roll back the department’s prohibition on the release of body worn camera video, a move police reform activists have been lobbying for ever since officers started wearing cameras last year.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2017/02/02/67868/lapd-moves-to-share-body-camera-footage-will-other/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">special presentation</h4>
<a href="https://projects.scpr.org/static/prison-pregnancy/" target="_blank"><img class="placemark" src="https://projects.scpr.org/static/prison-pregnancy/media/imgs/zodiacal/01_ReginaZodiacal.jpg" alt="Pregnant In Prison: Should newborns live with their incarcerated mothers?" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/prison-pregnancy/" target="_blank">Pregnant In Prison: Should newborns live with their incarcerated mothers?</a></h3>
<p><span class="credits">By Deepa Fernandes, Mae Ryan & Eric Zassenhaus</span> | <span class="pubdate">Dec. 12, 2013</span></p>
<p>Two hundred thirty three inmates gave birth while incarcerated in California’s prison system in 2011 and 2012, the most recent data available. Most were back in shackles two days later, their infants off to live with relatives or foster parents. ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/prison-pregnancy/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/prison-pregnancy/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">article</h4>
<a href="http://www.scpr.org/news/2015/03/31/50586/ucla-blasts-military-style-siren-to-break-up-crowd/" target="_blank"><img class="placemark" src="/legacy/assethost/i/9eea3ea52c53ca4ae11cad3ad274b91e/33873-full.jpg" alt="UCLA blasts military-style siren to break up crowds" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="http://www.scpr.org/news/2015/03/31/50586/ucla-blasts-military-style-siren-to-break-up-crowd/" target="_blank">UCLA blasts military-style siren to break up crowds</a></h3>
<p><span class="credits">By Aaron Mendelson</span> | <span class="pubdate">Mar. 31, 2015</span></p>
<p>Since 2014, all ten University of California campuses have been equipped with the devices, called LRADs for short. They double as a powerful megaphone and UC San Francisco, Berkeley and UCLA have all used them to make announcements. Of the ten ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2015/03/31/50586/ucla-blasts-military-style-siren-to-break-up-crowd/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2015/03/31/50586/ucla-blasts-military-style-siren-to-break-up-crowd/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">map</h4>
<a href="https://projects.scpr.org/static/maps/anniversary-of-oj-simpson-pursuit/" target="_blank"><img class="placemark" src="https://projects.scpr.org/static-files/images/main/logo-masthead.png" alt="Track the O.J. Simpson chase 20 years later" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/maps/anniversary-of-oj-simpson-pursuit/" target="_blank">Track the O.J. Simpson chase 20 years later</a></h3>
<p><span class="credits">By Chris Keller</span> | <span class="pubdate">Jun. 16, 2014</span></p>
<p>It's been 20 years since O.J. Simpson led police on an infamous low-speed chase in a white Bronco, when he was suspected of killing his ex-wife, Nicole Brown Simpson, and her friend Ron Goldman. (He was famously acquitted the following year.) ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/maps/anniversary-of-oj-simpson-pursuit/" target="_blank"><strong>View the project</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">database</h4>
<a href="https://projects.scpr.org/static/databases/california-motor-carriers/" target="_blank"><img class="placemark" src="/legacy/assethost/i/86a6fcc75e34b8fc290cd2a3b65d1aba/54434-full.jpg" alt="Search details of California's commercial bus companies" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/databases/california-motor-carriers/" target="_blank">Search details of California's commercial bus companies</a></h3>
<p><span class="credits">By Chris Keller and Lauren Osen</span> | <span class="pubdate">Feb. 11, 2013</span></p>
<p>This database shows the more than 300 commercial bus companies legally operating in California, beginning with those on the so-called watch list, which are noted by the "further monitoring" designation, and whether the DOT has issued a "violation", ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/databases/california-motor-carriers/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/programs/take-two/2013/02/11/30452/safety-concerns-surface-as-discount-buses-boom-in-/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">application</h4>
<a href="https://projects.scpr.org/firetracker" target="_blank"><img class="placemark" src="https://projects.scpr.org/firetracker/static/meta/firetracker-opengraph.jpg" alt="Fire Tracker" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/firetracker" target="_blank">Fire Tracker</a></h3>
<p><span class="credits">By Jon White, Bryan Ricker & Chris Keller</span> | <span class="pubdate">Jul. 19, 2013</span></p>
<p>Fire Tracker, KPCC's tool for following & researching California wildfires, contains fire information displayed by the California Department of Forestry and Fire Protection -- also known as CalFire -- which protects more than 31 million acres of ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/firetracker" target="_blank"><strong>View the project</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">timeline</h4>
<a href="https://projects.scpr.org/static/timelines/sheriff-lee-baca/" target="_blank"><img class="placemark" src="/legacy/assethost/i/424519ecc924a7c73daa164a8c3ddeda/75427-eight.jpg" alt="A look back at Sheriff Lee Baca's career" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/timelines/sheriff-lee-baca/" target="_blank">A look back at Sheriff Lee Baca's career</a></h3>
<p><span class="credits">By Nuran Alteir</span> | <span class="pubdate">Jan. 07, 2014</span></p>
<p>After several scandal-plagued years that included investigations into Sheriff's department hiring practices, personnel probes, and an FBI probe into deputy-monitored jails, the embattled sheriff has told the L.A. County Board of Supervisors and the ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/timelines/sheriff-lee-baca/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2014/01/07/41415/reports-la-county-sheriff-lee-baca-expected-to-res/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">chart</h4>
<a href="https://projects.scpr.org/static/charts/lapd-helicopters/" target="_blank"><img class="placemark" src="/legacy/assethost/i/a1792f1863664b16388022602cb849fe/60792-wide.jpg" alt="LAPD helicopter force by the numbers" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/charts/lapd-helicopters/" target="_blank">LAPD helicopter force by the numbers</a></h3>
<p><span class="credits">By Erika Aguilar & Chris Keller</span> | <span class="pubdate">May. 22, 2013</span></p>
<p>This infographic takes a By The Numbers look at the LAPD's Air Support Division and its helicopter fleet.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/charts/lapd-helicopters/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2013/05/22/37357/how-effective-are-police-helicopters-at-fighting-c/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">chart</h4>
<a href="https://projects.scpr.org/static/charts/calif-dros-transactions/" target="_blank"><img class="placemark" src="/legacy/assethost/i/58b9859acf78ef14e1a16fda97ebae70/52735-full.jpg" alt="Charting California gun sales" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/charts/calif-dros-transactions/" target="_blank">Charting California gun sales</a></h3>
<p><span class="credits">By Wendy Lee & Chris Keller</span> | <span class="pubdate">Dec. 22, 2012</span></p>
<p>The state processed more applications to buy guns in 2012 -- in excess of 800,000 -- than at any time since the California Department of Justice began its current regimen of record-keeping in 1991, according to DOJ data. Moreover, the number of ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/charts/calif-dros-transactions/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2012/12/22/35350/southern-california-firing-ranges-get-busier-after/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">chart</h4>
<a href="https://projects.scpr.org/static/charts/gun-laws/" target="_blank"><img class="placemark" src="/legacy/assethost/i/bca4ab76c7898a2ce5b6554fb8b744bd/47497-full.jpg" alt="Comparing California and federal gun laws" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/charts/gun-laws/" target="_blank">Comparing California and federal gun laws</a></h3>
<p><span class="credits">By Frank Stoltze & Chris Keller</span> | <span class="pubdate">Dec. 20, 2012</span></p>
<p>This charts shows how California gun laws compare to those on the federal books.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/charts/gun-laws/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/blogs/politics/2012/12/20/11649/comparing-california-and-federal-gun-laws-after-sa/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">map</h4>
<a href="https://projects.scpr.org/static/maps/pedestrian-safety/" target="_blank"><img class="placemark" src="/legacy/assethost/i/a731eaaab6e7b5c316b30b3c5bc3466b/19204-full.jpg" alt="The most dangerous intersections in Los Angeles" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/maps/pedestrian-safety/" target="_blank">The most dangerous intersections in Los Angeles</a></h3>
<p><span class="credits">By Kim Bui & Chris Keller</span> | <span class="pubdate">Oct. 02, 2012</span></p>
<p>This map shows which intersections the city considers dangerous, and those designated as hazardous by our audience. Please submit your own hazardous intersection, and other locations you believe are the most dangerous for pedestrians and cyclists.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/maps/pedestrian-safety/" target="_blank"><strong>View the project</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">timeline</h4>
<a href="https://projects.scpr.org/static/timelines/christopher-dorner-timeline/" target="_blank"><img class="placemark" src="/legacy/assethost/i/cb46170ead70e60e43d9c9035349ee4c/54821-full.jpg" alt="The search for Christopher Dorner" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/timelines/christopher-dorner-timeline/" target="_blank">The search for Christopher Dorner</a></h3>
<p><span class="credits">By Chris Keller and KPCC staff</span> | <span class="pubdate">Feb. 07, 2013</span></p>
<p>This curated timeline tracks key events from the life of murder suspect 33-year-old Christopher Dorner, as well as events from the last week, including the shooting deaths of a couple in Irvine and the manhunt following two shooting incidents over ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/timelines/christopher-dorner-timeline/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/manhunt" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<h4 class="section-title">Culture</h4>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">interactive</h4>
<a href="https://projects.scpr.org/interactives/2016-academy-awards-preview/" target="_blank"><img class="placemark" src="/legacy/assethost/i/15bc70e92d05340ec8650e9e851b9c38/112517-full.jpg" alt="Oscars 2016: Predicting the winners" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/interactives/2016-academy-awards-preview/" target="_blank">Oscars 2016: Predicting the winners</a></h3>
<p><span class="credits">By Mike Roe</span> | <span class="pubdate">Jan. 20, 2016</span></p>
<p>Who will take home the coveted Oscars for best picture, director, actor and actress and supporting actor and actress at the 2016 Academy Awards?</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/interactives/2016-academy-awards-preview/" target="_blank"><strong>View the project</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">map</h4>
<a href="http://www.scpr.org/news/2012/12/06/35143/help-us-what-does-california-accent-sound/" target="_blank"><img class="placemark" src="/legacy/assethost/i/5f1f23dab858a6ac65950110a716bdde/53796-full.jpg" alt="What does a California accent sound like?" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/maps/california-accents/" target="_blank">What does a California accent sound like?</a></h3>
<p><span class="credits">By Kim Bui, Ian Hill & Chris Keller</span> | <span class="pubdate">Dec. 06, 2012</span></p>
<p>The California accent. In pop culture, it's one of a few things: The long, slow drawl of the surfer, or how a valley girl ends her sentences, or the slang of East L.A. But c'mon, Californians don't really have an accent or dialect. Right?</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/maps/california-accents/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2012/12/06/35143/help-us-what-does-california-accent-sound/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">timeline</h4>
<a href="https://projects.scpr.org/static/timelines/huell-howser/" target="_blank"><img class="placemark" src="/legacy/assethost/i/f89aa8ae1baaa6f50e219ab1a9e16f5c/24036-full.jpg" alt="Timeline: Huell Howser" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/timelines/huell-howser/" target="_blank">Timeline: Huell Howser</a></h3>
<p><span class="credits">By Eric Zassenhaus</span> | <span class="pubdate">Jan. 07, 2013</span></p>
<p>This timelines shows key dates in the life of Huell Howser -- the longtime California TV personality and host of "California's Gold."</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/timelines/huell-howser/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/blogs/news/2013/01/07/11878/california-television-legend-huell-howser-has-died/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<h4 class="section-title">Economy & Money</h4>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">Article</h4>
<a href="https://www.scpr.org/news/2017/08/30/75123/affordable-housing-in-la-reinforces-economic-segre/" target="_blank"><img class="placemark" src="/legacy/assethost/i/671829da59965961584766077b63b37e/166671-full.jpg" alt="California economic segregation" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2017/08/30/75123/affordable-housing-in-la-reinforces-economic-segre/" target="_blank">How affordable housing in LA reinforces economic segregation</a></h3>
<p><span class="credits">By Aaron Mendelson & Jill Replogle</span> | <span class="pubdate">December 5, 2017</span></p>
<p>KPCC found publicly-funded affordable housing developments in Los Angeles County have overwhelmingly been built in L.A.’s very poorest neighborhoods.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2017/08/30/75123/affordable-housing-in-la-reinforces-economic-segre/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">Article</h4>
<a href="https://www.scpr.org/news/2017/12/05/78423/buying-legal-marijuana-california/" target="_blank"><img class="placemark" src="/legacy/assethost/i/e4cbcf4f2085bc909874e3ef604a382d/180943-full.jpg" alt="California marijuana policy" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2017/12/05/78423/buying-legal-marijuana-california/" target="_blank">As California embraces legal marijuana, many cities and counties say 'no'</a></h3>
<p><span class="credits">By Aaron Mendelson & Jill Replogle</span> | <span class="pubdate">December 5, 2017</span></p>
<p>While California prepares to open the doors to the recreational cannabis industry in 2018, only one of Orange County’s 34 cities, Santa Ana, plans to allow for retail cannabis shops. And no marijuana-related businesses are allowed on unincorporated county land.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2017/12/05/78423/buying-legal-marijuana-california/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">Article</h4>
<a href="https://www.scpr.org/news/2017/03/15/69644/california-gun-sales-shattered-records-last-year-w/" target="_blank"><img class="placemark" src="/legacy/assethost/i/ea68e6b6419941906b0b3de28112be10/153333-full.jpg" alt="Politics, gun-control anxiety cited for California's record 2016 gun sales" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2017/03/15/69644/california-gun-sales-shattered-records-last-year-w/" target="_blank">Politics, gun-control anxiety cited for California's record 2016 gun sales</a></h3>
<p><span class="credits">By Aaron Mendelson</span> | <span class="pubdate">March 15, 2017</span></p>
<p>Californians bought guns at a blazing-fast pace in 2016, setting a record for the most guns ever sold in the state with 1.3 million. It was the first year Californians had ever purchased more than a million firearms.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2017/03/15/69644/california-gun-sales-shattered-records-last-year-w/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">special presentation</h4>
<a href="https://projects.scpr.org/static/longreads/high-rent-few-options/" target="_blank"><img class="placemark" src="https://projects.scpr.org/static/longreads/high-rent-few-options/meta/kpcc-rent-og.jpg" alt="High rent, few options" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/longreads/high-rent-few-options/" target="_blank">High rent, few options</a></h3>
<p><span class="credits">By Ben Bergman, Kristen Lepore, Ashley Alvarado, Eric Zassenhaus & Chris Keller</span> | <span class="pubdate">Apr. 17, 2014</span></p>
<p>Rising rents and short supply have Angelenos weighing their choices.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/longreads/high-rent-few-options/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/longreads/high-rent-few-options/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">article</h4>
<a href="http://www.scpr.org/news/2015/02/27/50066/report-downtown-areas-powering-job-growth-across-t/" target="_blank"><img class="placemark" src="/legacy/assethost/i/09df7dc3e0ddcfc442d1c91edc63419d/87292-full.jpg" alt="Report: Downtown areas powering job growth across the country — but not LA" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="http://www.scpr.org/news/2015/02/27/50066/report-downtown-areas-powering-job-growth-across-t/" target="_blank">Report: Downtown areas powering job growth across the country — but not LA</a></h3>
<p><span class="credits">By Aaron Mendelson</span> | <span class="pubdate">Feb. 27, 2015</span></p>
<p>For the first time in decades, city centers aren't losing out to suburbs when it comes to job growth; they're powering it. It's happening in lots of cities all across the country — but not in Los Angeles. A report by the think tank City Observatory, ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2015/02/27/50066/report-downtown-areas-powering-job-growth-across-t/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2015/02/27/50066/report-downtown-areas-powering-job-growth-across-t/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">map</h4>
<a href="https://projects.scpr.org/static/maps/downtown-la-development-projects/" target="_blank"><img class="placemark" src="/legacy/assethost/i/540eb906d6e46473c61b36d6112506ea/43699-full.jpg" alt="Blogdowntown: Development map" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/maps/downtown-la-development-projects/" target="_blank">Blogdowntown: Development map</a></h3>
<p><span class="credits">By Machiko Yasuda and Chris Keller</span> | <span class="pubdate">Apr. 04, 2013</span></p>
<p>We map downtown development projects by status and type.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/maps/downtown-la-development-projects/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/news/2013/03/09/36277/map-streetcar-latest-project-downtown-LA/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">chart</h4>
<a href="https://projects.scpr.org/static/charts/la-county-jobs-by-sector/" target="_blank"><img class="placemark" src="https://projects.scpr.org/static-files/images/main/logo-masthead.png" alt="L.A. County health care jobs growing, construction and retail rebounding" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/static/charts/la-county-jobs-by-sector/" target="_blank">L.A. County health care jobs growing, construction and retail rebounding</a></h3>
<p><span class="credits">By Chris Keller</span> | <span class="pubdate">Sep. 13, 2013</span></p>
<p>This chart shows the last 10 years of Los Angeles County employment data from the California Employment Development Department, arranged by sector. At a glance, it reveals which sectors provided the largest portion of jobs. When each sector is ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/static/charts/la-county-jobs-by-sector/" target="_blank"><strong>View the project</strong></a><p>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="http://www.scpr.org/blogs/economy/2013/09/13/14716/l-a-s-economy-still-recouping-losses-five-years-af/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<h4 class="section-title">Education</h4>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">article</h4>
<a href="https://www.scpr.org/news/2016/11/02/65883/eyes-on-reshaping-charter-school-oversight-advocat/" target="_blank"><img class="placemark" src="/legacy/assethost/i/dcd5f6278439818e348b0544202aef2a/97679-full.jpg" alt="Eyes on reshaping charter school oversight, advocates become top spenders in state races" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://www.scpr.org/news/2016/11/02/65883/eyes-on-reshaping-charter-school-oversight-advocat/" target="_blank">Eyes on reshaping charter school oversight, advocates become top spenders in state races</a></h3>
<p><span class="credits">By Aaron Mendelson & Kyle Stokes</span> | <span class="pubdate">November 2, 2016</span></p>
<p>Californians are used to seeing outside groups — from oil and business interests to environmental and labor groups — spend millions of dollars in hopes of swaying state legislative races. But in 2016, another sector came on the scene and surpassed them all: charter school advocates.</p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://www.scpr.org/news/2016/11/02/65883/eyes-on-reshaping-charter-school-oversight-advocat/" target="_blank"><strong>Read the story</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">database</h4>
<a href="https://projects.scpr.org/databases/2015-lausd-ag-college-prep/" target="_blank"><img class="placemark" src="https://projects.scpr.org/static-files/images/main/logo-masthead.png" alt="How your LAUSD school fares in college prep graduation requirements" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/databases/2015-lausd-ag-college-prep/" target="_blank">How your LAUSD school fares in college prep graduation requirements</a></h3>
<p><span class="credits">By Chris Keller</span> | <span class="pubdate">May. 07, 2015</span></p>
<p>The Los Angeles Unified School District requires students, starting with the Class of 2017, to successfully complete a slate of college preparation courses before they graduate. The course load called "A-G” may prevent half of students from ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/databases/2015-lausd-ag-college-prep/" target="_blank"><strong>View the project</strong></a><p>
</div>
</div>
</div>
<div id="project-container" class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="image-container" class="col-xs-12 col-sm-2 col-md-4 col-lg-4">
<h4 class="kicker">database</h4>
<a href="https://projects.scpr.org/databases/2014-2015-kindergarten-immunizations/" target="_blank"><img class="placemark" src="https://projects.scpr.org/static-files/images/main/logo-masthead.png" alt="Search 2014-2015 kindergarten immunization levels in Southern California" /></a>
</div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<h3><a href="https://projects.scpr.org/databases/2014-2015-kindergarten-immunizations/" target="_blank">Search 2014-2015 kindergarten immunization levels in Southern California</a></h3>
<p><span class="credits">By Chris Keller</span> | <span class="pubdate">Feb. 05, 2015</span></p>
<p>A parent-led movement to stop vaccinations is showing up in schools. This user-friendly database shows 2014-15 vaccination exemption rates for incoming kindergartners at schools in Los Angeles, Orange, Riverside, San Bernardino and Ventura counties, ... </p>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<p><a href="https://projects.scpr.org/databases/2014-2015-kindergarten-immunizations/" target="_blank"><strong>View the project</strong></a><p>
</div>