-
Notifications
You must be signed in to change notification settings - Fork 0
/
wind_speed.html
112 lines (103 loc) · 4.68 KB
/
wind_speed.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Bootstrap Visualization Dashboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap & CSS Links -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<!-- Bootstrap JS Links -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Nav -->
<div class="navigation">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" style="background-color: #094414;" href="index.html">Latitude</a>
<button class="navbar-toggler border border-white" type="button" data-toggle="collapse" data-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 ml-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Plots
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="Max_temp.html">Max Temperature</a>
<a class="dropdown-item" href="humidity.html">Humidity</a>
<a class="dropdown-item" href="cloudiness.html">Cloudiness</a>
<a class="dropdown-item active" href="wind_speed.html">Wind Speed</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="comparisons.html">Comparison</a>
</li>
<li class="nav-item">
<a class="nav-link" href="data.html">Data</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- Content -->
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-12">
<!-- Left Box -->
<div class="box">
<h3 class="title">Wind Speed</h3>
<hr>
<img src="Instructions/Resources/assets/images/Fig4.png" alt="Wind Speed Graph">
<p>Wind speed increases slightly the further the latitude is from the equator. However, we cannot
determine if there is a significant correlation, as the data lacks cities that are close to the
North and South poles.</p>
</div>
</div>
<div class="col-lg-5 col-md-12">
<!-- Right Box -->
<div class="box">
<h5 class="title">Visualizations</h5>
<hr>
<div class="container">
<div class="row" style="padding-bottom: 30px;">
<div class="col-6">
<a href="Max_temp.html">
<img class="panel" src="Instructions/Resources/assets/images/Fig1.png" alt="Max Temperature Image">
</a>
</div>
<div class="col-6">
<a href="humidity.html">
<img class="panel" src="Instructions/Resources/assets/images/Fig2.png" alt="Humidity Graph">
</a>
</div>
</div>
<div class="row" style="padding-bottom: 30px;">
<div class="col-6">
<a href="cloudiness.html">
<img class="panel" src="Instructions/Resources/assets/images/Fig3.png" alt="Cloudiness Graph">
</a>
</div>
<div class="col-6">
<a href="wind_speed.html">
<img class="panel active" src="Instructions/Resources/assets/images/Fig4.png" alt="Wind Speed Graph">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>