-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.html
115 lines (97 loc) · 3.1 KB
/
data.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>LA Waterkeeper Practicum (Data)</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header>
<h1>LA Waterkeeper Practicum</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Meet the Team</a></li>
<li><a class="active" href="data.html">Data</a></li>
<li><a href="site-visit.html">Site Visit</a></li>
<li><a href="report.html">Report</a></li>
</ul>
</nav>
</header>
<main>
<h1 class="maptitle">Potential Park Location Tables</h1>
<iframe src="/Users/rubenbergtraun/Documents/GitHub/la-waterkeeper-practicum/img/appendix_a.pdf" height="900" width="1000"></iframe>
<h1 class="maptitle">Maps</h1>
<p style="text-align:center">*All maps created using R and RStudio</p>
<section class="maps">
<figure>
<img src="img/ndvi.png" />
<figcaption>
<h2>NDVI in the LA River region</h2>
</figcaption>
</figure>
<figure>
<img src="img/publicparks_basemap.png" />
<figcaption>
<h2>Current parks within 2km of the LA River</h2>
</figcaption>
</figure>
<figure>
<img src="img/parkcount_basemap.png" />
<figcaption>
<h2>Park Count by Census Tract within 2km of the LA River</h2>
</figcaption>
</figure>
</figure>
<figure>
<img src="img/ces_pctl_basemap.png" />
<figcaption>
<h2>CalEnviroScreen Percentile by Census Tract within 2km of the LA River</h2>
</figcaption>
</figure>
<figure>
<img src="img/pm25_pctl_basemap.png" />
<figcaption>
<h2>PM 2.5 Percentile by Census Tract within 2km of the LA River</h2>
</figcaption>
</figure>
<figure>
<img src="img/cardiovascular_pctl_basemap.png" />
<figcaption>
<h2>Cardiovascular Disease Percentile by Census Tract within 2km of the LA River</h2>
</figcaption>
</figure>
<figure>
<img src="img/asthma_pctl_basemap.png" />
<figcaption>
<h2>Asthma Percentile by Census Tract within 2km of the LA River</h2>
</figcaption>
</figure>
<figure>
<img src="img/ej_basemap.png" />
<figcaption>
<h2>Environmental Justice Cases along the LA River</h2>
</figcaption>
</figure>
<figure>
<img src="img/soil_type_basemap.png" />
<figcaption>
<h2>Soil Types within 2km of the LA River</h2>
</figcaption>
</section>
</main>
<aside>
</aside>
<footer>
<img class="ioes-logo" src="img/ucla-ioes-logo.svg" alt="">
<nav>
<ul>
<li><a href="https://www.ioes.ucla.edu">UCLA IoES</a></li>
<li><a href="https://github.com/uclaioes/la-waterkeeper-practicum">GitHub</a></li>
</ul>
</nav>
</footer>
</body>
</html>