-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (104 loc) · 4.75 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>index</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="style\style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" style="color: #ffffff;" href="index.html">Latitude</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Plots
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="html\maxTemp.html">Max Temperature</a></li>
<li><a class="dropdown-item" href="html\humidity.html">Humidity</a></li>
<li><a class="dropdown-item" href="html\cloudiness.html">Cloudiness</a></li>
<li><a class="dropdown-item" href="html\windSpeed.html">Wind Speed</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="html\comparison.html">Comparison</a>
</li>
<li class="nav-item">
<a class="nav-link" href="html\data.html">Data</a>
</li>
</ul>
</div>
</div>
</nav>
<br />
<br />
<br />
<div class="container">
<div class="row">
<div class="col-lg-8 summary">
<h1>
Summary: Latitude vs. X
</h1>
<hr />
<br />
<img src="Resources\assets\images\Fig1.png" class="img-thumbnail" id="summary-graph" alt="graph-lat-v-temp">
<br />
<p class="summary">
The purpose of this project was to analyze how weather changes as you get closer to the equator. To accomplish this analysis, we first pulled data from he OpenWeatherMap API to assemble a dataset on over 500 cities.
<br />
<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-lg-1"></div>
<div class="col-lg-3">
<div class="row box">
<h2>
Visualizations
</h2>
<hr />
<div class="col-lg-6">
<a href="html\maxTemp.html">
<img src="Resources\assets\images\Fig1.png" class="img-thumbnail vis" alt="graph-lat-v-temp">
</a>
</div>
<div class="col-lg-6">
<a href="html\humidity.html">
<img src="Resources\assets\images\Fig2.png" class="img-thumbnail vis" alt="graph-lat-v-humidity">
</a>
</div>
</div>
<div class="row box">
<div class="col-lg-6">
<a href="html\cloudiness.html">
<img src="Resources\assets\images\Fig3.png" class="img-thumbnail vis" alt="graph-lat-v-cloudiness">
</a>
</div>
<div class="col-lg-6">
<a href="html\windSpeed.html">
<img src="Resources\assets\images\Fig4.png" class="img-thumbnail vis" alt="graph-lat-v-wind-speed">
</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj"
crossorigin="anonymous"></script>
</body>
</html>