-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLatitudevsMaxTemperature.html
More file actions
44 lines (42 loc) · 2.15 KB
/
LatitudevsMaxTemperature.html
File metadata and controls
44 lines (42 loc) · 2.15 KB
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
<!DOCTYPE html>
<!-- the doctype declaration should be included at the start of the HTML document -->
<html lang="en">
<head>
<title>Latitude vs. Max Temperature</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="static/style.css" media="screen">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<
<!--start of header div-->
<div class="btn-group">
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
Plots
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="LatitudevsMaxTemperature.html">Max Temp</a>
<a class="dropdown-item" href="LatitudevsHumidity.html">Humidity</a>
<a class="dropdown-item" href="LatitudevsCloud.html">Cloudiness</a>
<a class="dropdown-item" href="LatitudevsWind.html">Wind</a>
</div>
</div>
</div>
</div>
<li><a href="index.html">Home</a></li>
<li><a href="cities_data.html">Data</a></li>
<li><a href="comparisons.html">Comparisons</a></li>
<!--end of header div-->
<h1 style="background-color:#008B8B; color:#FFFFFF;">Latitude: A Study of Weather Patterns</h1>
<br>
<br>
<h3 style="background-color:#008B8B; color:#FFFFFF;">MAX TEMPERATURE</h3>
<img src="Fig1.png" alt="Lat vs Max Temp" style="width:800px;height:500px;">
<p>In this visualization, the max temperatures collected for the 547 cities was plotted. What this plot was attempting to display was a hypothesis of whether temperatures<br>
closer to the equater are higher. As you can see from the plot, the hypothesis appears to have been proven as the highest temperatures are those between<br> Latitudes 0 and 20.
</body>
</html>