-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.62 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
<!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="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css"
type="text/css"
/>
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
<script src="data.js" defer></script>
<script src="app.js" defer></script>
<link rel="stylesheet" href="styles.css" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>HKD</title>
</head>
<body>
<div id="content">
<div id="header">
<h2>Belfast Air Quality vs. Trees</h2>
<button id="btn">disable heatmap</button>
<p>
This was built as a part of the 2022 HKD hackathon, by Group21. The
larger the heatmap circle is, the worse the air quality in that area.
Each cylinder on the map is a real tree in Belfast city. We used <a href="https://www.airqualityni.co.uk/" rel="noopener noreferrer" target="_blank" >this</a>
and <a href="https://www.opendatani.gov.uk/dataset/belfast-trees" rel="noopener noreferrer" target="_blank" >this</a> as our datasets. The graphic shows that there is
a link between tree density and air quality, and could be used by
councils to make infomred decisions about improving air quality in a
given area
</p>
</div>
<div id="map">loading</div>
</div>
</body>
</html>