-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
59 lines (51 loc) · 2.91 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About This Project</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<!-- navigation menu here -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="documentation.html">Documentation</a></li>
</ul>
</nav>
</header>
<main>
<section>
<div class="container">
<div class="column">
<h1>About this Project</h1>
<p>Natural disasters are formidable events that have caused a lot of damage around the world. Presently, these disasters have become more persistent and peculiar, thus the pressing need to leverage geospatial technology to study and analyze these emerging patterns. The aim of this project is to create a python-based web application focused on identifying accessible routes during natural disasters. Specifically, this web application identifies the best path between points during the flood event that took place on Grand Bahama Island during Hurricane Dorian in 2019.</p>
<p>This app has two main focuses: <b>routing analysis</b> and <b>visualization</b> of the flood event caused by Hurricane Dorian. As such, the app includes an interactive web application that identifies the best path between user-defined starting and ending points during the flood event as well as a visualization of hurricane Dorian's path towards Grand Bahama Island. </p>
<p>To accomplish this, the app relies on OSMnx for routing analysis as well as Flask and Folium to build and visualize a web map of the data layers and routing results. Navigate to the <b>documentation page</b> to learn about how to deploy the web application.</p>
<h4>Read more about the inspiration for this project here:</h4>
<a href="https://storymaps.arcgis.com/stories/f819f3563aef4cad8cfae7072eed0d07">Foresight DRM: Disaster Mapping Hackathon 2023</a>
</div>
<div class="column">
<img src="Dorian.png" alt="Hurricane Dorian">
</div>
</div>
<h2>Objectives</h2>
<ol>
<li>To visualize the movement of Hurricane Dorian on its path towards Grand Bahama Island in 2019</li>
<li>To create an interactive web mapping application that conducts a network analysis of available routes during the flood event caused by Hurricane Dorian</li>
<li>To design a user interactive interface that allows users to choose two points of interest between which the best route will be calculated in the face of the flooding caused by Hurricane Dorian</li>
</ol>
<div class="banner">
<h2>Team Members</h2>
<img src="TeamMembers.png" alt="Team Members">
</div>
</section>
</main>
<footer>
<!-- Footer content goes here -->
<p>© 2023 FRESH Project. Apache License 2.0.</p>
</footer>
</body>
</html>