-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.html
74 lines (60 loc) · 3.55 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
<!DOCTYPE html>
<html>
<head>
<title>Data | Health Facilities in Rohingya Refugee Camps</title>
<meta name="viewport" content="device-width; initial-scale=1.0">
<meta charset="utf-8">
<meta name="description" content="This is a webmap exploring healthcare facilities for the Rohingya population in the refugee camps of Cox's Bazar, Bangladesh." />
<meta name="title" property="og:title" content="Health Facilities in Rohingya refugee camps" />
<meta property="og:type" content="Website" />
<meta name="image" property="og:image" content="https://i.imgur.com/Xzpb9sx.png" />
<meta name="description" property="og:description" content="This is a webmap exploring healthcare facilities for the Rohingya population in the refugee camps of Cox's Bazar, Bangladesh." /><meta name="author" content="Binita Zaman"/>
<!-- Load Leaflet CSS -->
<link href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" rel="stylesheet">
<!-- Load our styles -->
<link href="./style.css" rel="stylesheet">
<!-- Load Leaflet and Carto libraries -->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="https://libs.cartocdn.com/carto.js/v4.2.0/carto.min.js"></script>
<!-- Load our JavaScript -->
<script defer src="./script.js"></script>
</head>
<header>
<h1>Mapping Health Facilities in Rohingya Refugee Camps</h1>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="data.html">data</a></li>
<li><a href="resources.html">resources</a></li>
</ul>
</nav>
</header>
<body>
<div class="bodytext">
<h3>
<center>Data</center>
</h3>
<strong>Rohingya refugee camp outline:</strong> <a href="https://data.humdata.org/dataset/outline-of-camps-sites-of-rohingya-refugees-in-cox-s-bazar-bangladesh" target="_blank">Humanitarian Data Exchange</a>
<p>
<strong>Fire affected area at Rohingya refugee camp (March 2021):</strong>
<a href="https://data.humdata.org/dataset/cox-s-bazar-fire-incident-area-at-rohingya-refugee-camps-in-march-2021" target="_blank">Humanitarian Data Exchange</a>
</p>
<strong>Rohingya UNHCR population (March 2021):</strong> <a href="https://data.humdata.org/dataset/d1cd6842-dfe1-44c7-a1f5-3769000073af" target="_blank">Humanitarian Data Exchange</a>
<p>
<strong>Health facilities at Rohingya refugee camps (Nov-Dec 2017):</strong>
<a href="https://data.humdata.org/dataset/reach-bangladesh-who-health-services" target="_blank">Humanitarian Data Exchange</a>
</p>
<br>
<h3><center>Methodology</center></h3>
<div style="text-align: justify;">Datasets on health facilities in the Rohingya camps were extracted and layered on top of the refugee camp polygon. Rohingya population data from UNHCR was also extracted and placed as a layer.
A polygon of a fire affected area was also added onto the map - this area within the refugee camps has
<a href="https://www.nytimes.com/2021/03/23/world/asia/bangladesh-rohingya-fire-refugees.html" target="_blank">
unfortunately suffered from a massive fire this past March</a>, resulting in enormous damage to numerous infrastructure, including healthcare facilities, and hundreds of casualties and displacement of Rohingya refugees. Numerous health sites within this fire affected area have been damaged or destroyed entirely.
<br>
<br>
<br>
</div>
</div>
</body>
</html>