-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (100 loc) · 5.9 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="assets/img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Landing Page</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
<!-- Animation library for notifications -->
<link href="assets/css/animate.min.css" rel="stylesheet"/>
<!-- Fonts and icons -->
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700,300' rel='stylesheet' type='text/css'>
<link href="assets/css/pe-icon-7-stroke.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-fluid">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="./landing.html"><span class="latitude">Latitude</a>
<button class="navbar-toggler" 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>
<ul class="nav navbar-nav navbar-right">
<li>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Plots
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="./image-1.html">Latitude vs. Max Temperature</a></li>
<li><a href="./image-2.html">Latitude vs. Humidity</a></li>
<li><a href="./image-3.html">Latitude vs. Cloudiness</a></li>
<li><a href="./image-4.html">Latitude vs. Wind Speed</a></li>
</ul>
</div>
</li>
<li>
<a class="nav-link" href="./Comparisons.html"><span class="c-d">Comparison</a>
</li>
<li>
<a class="nav-link" href="./Data.html"><span class="c-d">Data</a>
</li>
</ul>
</div>
</nav>
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 col-md-8">
<div class="box">
<div class="page-header">
<h1 class="title">Summary: Latitude vs. X</h1>
</div>
<div class="box">
<img src="./assets/images/Fig1.png" alt="Latitude vs. Max Temperature" height="300" width="320" align="left">
<p class="category"> The purpose of this project was to analyze how weather patterns change as you get closer to the equater.
To accomplish this analysis. we first pulled data from the OpenWeatherMapAPI to assemble a dataset on over 500 cities.
</p>
<p class="category">After assembling the dataset, we used Matplotlib to plot various aspects of the weather vs. latitude. Factors we looked at included:temperature, cloudiness, windspeed, 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>
</div>
<div class="col-sm-12 col-md-4">
<div class="box">
<div class="page-header">
<h1 class="title">Visualizations</h1>
</div>
<div class="box">
<a href="./image-1.html"><img src="./assets/images/Fig1.png" alt="Latitude vs. Max Temperature" height="160" width="160"></a>
<a href="./image-2.html"><img src="./assets/images/Fig2.png" alt="Latitude vs. Humidity" height="160" width="160"></a>
<a href="./image-3.html"><img src="./assets/images/Fig3.png" alt="Latitude vs. Cloudiness" height="160" width="160"></a>
<a href="./image-4.html"><img src="./assets/images/Fig4.png" alt="Latitude vs. Wind Speed" height="160" width="160"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- Core JS Files -->
<script src="assets/js/jquery.3.2.1.min.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<!-- Charts Plugin -->
<script src="assets/js/chartist.min.js"></script>
<!-- Notifications Plugin -->
<script src="assets/js/bootstrap-notify.js"></script>
<!-- Google Maps Plugin -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_HERE"></script>
</html>