-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (68 loc) · 3.86 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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>Latitude</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<a class="navbar-brand" href="index.html">Latitude</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="Dropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">Plots</a>
<ul class="dropdown-menu">
<a class="dropdown-item" href="layouts/Visual_1.html">Max Temperature</a>
<a class="dropdown-item" href="layouts/Visual_2.html">Humidity</a>
<a class="dropdown-item" href="layouts/Visual_3.html">Cloudiness</a>
<a class="dropdown-item" href="layouts/Visual_4.html">Wind Speed</a>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="layouts/comparison.html">Comparison</a>
</li>
<li class="nav-item">
<a class="nav-link" href="layouts/data.html">Data</a>
</li>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-8">
<h1>Summary: Latitude vs. X</h1>
<p>The purpose of this project was to analyze how weather changes as you get closer to the equatro. To accomplish this analysis, we first pulled data from the
OpenWeatherMap API to assemble a dataset on over 500 cities.
<img src="https://images.twinkl.co.uk/tw1n/image/private/t_630/u/ux/world-climate-zones-colour-map-geography-ks3-ks4_ver_1.jpg" style ="width:150;height:100;" alt="Map">
<br>
After assembling the dataset, we used Matplotlib to plot various aspects of the weather vs. latitude.
Factors we looked at included: temperature, cloudiness, wind speed, and humidity. This site provides the source data and visualizations created as part of the analysis,
as well as explanations and descriptions of any trends and correlations witnessed.
</p>
</div>
<div class="col-md-4">
<h3 class="text-center">Visualizations</h3>
<div class="img">
<a href="layouts/Visual_1.html"><img src="Resources/Fig1.png" style="width:350px;height:300px;" alt="City Latitude vs. Max Temperature"></a>
<br>
<a href="layouts/Visual_2.html"><img src="Resources/Fig2.png" style="width:350px;height:300px;" alt="City Latitude vs. Humidity"></a>
<br>
<a href="layouts/Visual_3.html"><img src="Resources/Fig3.png" style="width:350px;height:300px;" alt="City Latitude vs. Cloudiness"></a>
<br>
<a href="layouts/Visual_4.html"><img src="Resources/Fig4.png" style="width:350px;height:300px;" alt="City Latitude vs. Wind Speed"></a>
</div>
</body>
</html>