-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
238 lines (226 loc) · 9.84 KB
/
Copy pathindex.html
File metadata and controls
238 lines (226 loc) · 9.84 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./pages/index.css" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.8.0/dist/leaflet.css"
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
crossorigin=""
/>
<script
src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js"
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
crossorigin=""
></script>
<link rel="icon" type="favicon" href="./images/NYCTrees.svg" />
<title>NYC Trees</title>
</head>
<body class="page">
<nav class="nav">
<img src="./images/NYCTrees.svg" alt="NYC Trees Logo" class="nav__logo" />
<ul class="nav__links">
<li><a class="nav__link" href="#analysis">Analysis</a></li>
<li><a class="nav__link" href="#results">Results</a></li>
<li><a class="nav__link" href="#conclusions">Conclusions</a></li>
<li><a class="nav__link" href="#about">About</a></li>
</ul>
<button class="nav__menu-button"></button>
</nav>
<div class="modal">
<div class="modal__container">
<ul class="modal__links">
<li><a class="modal__link" href="#analysis">Analysis</a></li>
<li><a class="modal__link" href="#results">Results</a></li>
<li><a class="modal__link" href="#conclusions">Conclusions</a></li>
<li><a class="modal__link" href="#about">About</a></li>
</ul>
</div>
</div>
<header class="header">
<h1 class="header__title">
Concrete Jungle <br />
to Urban Forest
</h1>
<img
class="header__trees"
src="./images/trees.png"
alt="A row of lucious green trees"
/>
</header>
<main class="page__content">
<section class="analysis" id="analysis">
<img
class="analysis__subway"
src="./images/subway-map.svg"
alt="Subway map of NYC"
/>
<div class="analysis__content">
<h2 class="analysis__content-title">Growing a Greener NYC</h2>
<p>
In an effort to grow a "greener" New York City, the NYC Department
of Parks and Recreation began planting what is referred to as "urban
forests" throughout the different boroughs of the city.
</p>
<p>
The data analyzed is sourced from reports from the New York City
Tree Work Hub, which provided data about street tree planting in
several different New York neighborhoods. With this data, we wanted
to focus on the following information:
</p>
<ul>
<li>the overall distribution of trees planted in each borough</li>
<li>
the status of whether or not the scheduled planting was completed
or still pending
</li>
<li>
provide a visualization of boroughs that are greener based on the
number of trees in each.
</li>
</ul>
</div>
</section>
<section class="results" id="results">
<div class="results__header"></div>
<div class="results__static-map">
<img
src="./images/static_map.png"
class="results__static-map-image"
alt="A static map plotting each tree planted. The density of planted trees is heavily concentrated in the Brooklyn borough area, whereas the Manhattan area is almost clear."
/>
</div>
<ul class="results__container">
<li class="results__tree-status results__list-item">
<h3 class="results__tree-status_capt results__capt">
Thousands of trees have been planted, or plan to be planted across
the city. Interestingly, nearly all of Manhattan's trees are still
pending.
</h3>
<div class="results__tree-status_graph results__graph-back">
<img
src="./images/tree_status.jpg"
class="results__tree-status-image results__graph"
alt="Bar graph comparing completed tree planting projects with pending projects, by each borough. Most boroughs have successfully completed the majority of their planned planting, with the exception of Manhattan, which has completed almost none."
/>
</div>
</li>
<li class="results__trees-per-year results__list-item">
<div class="results__trees-per-year_graph results__graph-back">
<img
src="./images/trees_per_year.svg"
class="results__trees-per-year-image results__graph"
alt="Line graph showing the upward trend of trees planted on the streets of NYC. A sharp increase occured in 2022, showing that much more trees were planted in this year than all previous years by far."
/>
</div>
<h3 class="results__tree-per-year_capt results__capt">
A clear effort has been made to plant more trees overall. The
sharp increase in the recent year is particularly notable.
</h3>
</li>
<li class="results__borough-trees results__list-item">
<h3 class="results__borough-trees_capt results__capt">
Brooklyn and Queens account for the majority of trees planted so
far, with The Bronx not far behind. Staten Island and Manhattan,
on the other hand, make up a very small percentage.
</h3>
<div class="results__borough-trees_graph results__graph-back">
<img
src="./images/results__pie-chart.svg"
class="results__borough-trees-image results__graph"
alt="Circle graph showing the distribution of completed tree planting projects. Brooklyn and Queens share 73% of the completed tree plantings. The Bronx is responsible for 21%, and Staten Island for 6%. Manhattan has yet to plant a significant number of trees."
/>
</div>
</li>
</ul>
<div
class="results__heat-map folium-map"
id="map_fea1da6b902b2372709301d43bc769cf"
>
<script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@master/folium/templates/leaflet_heat.min.js"></script>
<script src="./scripts/heatmap.js"></script>
</div>
<p class="results__heat-map-caption">
The density of planned or planted trees on the streets of the five
boroughs is represented above. <br />
High-density areas are characterized by warm hues of orange and red,
while cooler greens and blues represent low-density.
</p>
</section>
<section class="conclusions" id="conclusions">
<div class="conclusions__content">
<h2 class="conclusions__content-title">Looking Forward</h2>
<p>
Street Tree Planting in NYC and other heavily urban areas creates a
more liveable environment as planting trees can remove air
pollutants, reduce CO2 emissions and keep the city cooler during the
summer. Based on the analysis, the implementation of planting a
considerable number of trees (over 6,000!) in NYC was not only a
relatively quick one but also effective, as we note that the status
of the majority of tree plantings have been successfully executed.
</p>
<p>
On the other hand, it also raises questions about why, for instance,
areas like Manhattan might be more resistant to this greener
implementation. Perhaps there are certain areas that might be too
urban to accommodate a greener environment.
</p>
<p>
A secondary exploration of how these newly planted trees might
improve or change urban life can also be useful in determining
whether or not city governments should invest in these types of
greener programs. These are questions for future projects that might
want to explore these factors on a deeper level.
</p>
</div>
<img
src="./images/street-view.webp"
class="conclusions__photo"
alt="A tree-lined view of NYC"
/>
</section>
</main>
<footer class="footer" id="about">
<div class="footer__content">
<img class="footer__logo" src="./images/NYCTrees.svg" alt="NYC Trees" />
<div class="footer__social">
<ul class="footer__list">
<li class="footer__list-item">
<img
class="footer__social-icon"
src="./images/data-science.svg"
alt="Data science symbol"
/>
<a
class="footer__social-link"
href="https://www.linkedin.com/in/dina-saadeh-234499128"
target="_blank"
>Data Science | Dina Saadeh</a
>
</li>
<li class="footer__list-item">
<img
class="footer__social-icon"
src="./images/web-dev.svg"
alt="Coding symbol"
/>
<a
class="footer__social-link"
href="https://www.linkedin.com/in/jendoc"
target="_blank"
>Web Dev | Jenny Doctor</a
>
</li>
</ul>
</div>
</div>
<p class="footer__copyright">
Created for Practicum's Fall 2022 Code Bridge
</p>
</footer>
<script src="./scripts/index.js"></script>
</body>
</html>