-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (148 loc) · 9.11 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootswatch CSS -->
<link rel="stylesheet" href=https://stackpath.bootstrapcdn.com/bootswatch/4.5.0/litera/bootstrap.min.css>
<!-- Using font awesome instead of glyphicon as bootstrap was classhing with bootswatch -->
<script src="https://use.fontawesome.com/e9c0b42f7c.js"></script>
<!-- Linking custom style sheet-->
<link rel="stylesheet" href="WebVisualizations/style.css">
<!-- Website title -->
<title>Viso - Web Visualization Challenge</title>
</head>
<body>
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light" id = 'nav'>
<div class= "container">
<a class="navbar-brand" href="index.html"><img src="WebVisualizations/Resources/assets/images/Viso_logo.png" class="img-responsive logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor03" aria-controls="navbarColor03" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor03">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown show">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="true">Plots</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="WebVisualizations/temperature.html">Temperature</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="WebVisualizations/humidity.html">Humidity</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="WebVisualizations/cloudiness.html">Cloudines</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="WebVisualizations/windspeed.html">Windspeed</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="WebVisualizations/comparison.html">Comparison</a>
</li>
<li class="nav-item">
<a class="nav-link" href="WebVisualizations/data.html">Data</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Top Jumbotron Intro to Site -->
<div class="jumbotron" id = "jumbo1_home">
<div class="container" id = "jumbo1_home_content">
<div class="row">
<div class="col-md-6">
<h1 class="display-3">Welcome to <span class ="gradient">Viso</span></h1>
<p class="lead"> Data analytics and visualization website brought to you by aspiring data analyst.</p>
<hr class="my-4">
<p> The site visualizes some of the graphs plotted using the cities data set. The purpose of this project was to analyze how weather changes as you get closer to the equator.</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="#jumbo2_home" role="button">LEARN MORE<i class="fa fa-arrow-down"></i></a>
</p>
</div>
</div>
</div>
</div>
<!-- Second Jumbotron Lat vs Temp -->
<div class="jumbotron" id = "jumbo2_home">
<div class="container" id = "jumbo2_home_content">
<div class = 'row justify-content-end'>
<div class = 'col-md-6' id="fig_temp">
<a href = "WebVisualizations/temperature.html">
<img src="WebVisualizations/Resources/assets/images/Fig1.png" id = 'fig1' alt="latitiude vs max temperature graph">
</a>
</div>
<div class = 'col-md-6'>
<h1>Summary: Latitude vs <span class ="gradient">X</span></h1>
<p class="lead" id = "sum_text_1">The purpose of this project was to analyze how whether changes as you get closer to the equator. To accomplish this analysis we first pulled data from OpenWhetherMap API to assemble a dataset on over 500 cities.</p>
<p id = "sum_text_1">After assembling the dataset, we used Matplotlib to plot various aspects of the whether 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 explanation and description of any trends and correlation witnessed</p>
<p class="lead">
<a class="btn btn-primary btn-lg" id="btn_2" href="WebVisualizations/temperature.html" role="button">VIEW LATITUDE VS TEMPERATURE GRAPH<i class="fa fa-arrow-right"></i></a>
</p>
</div>
</div>
</div>
</div>
<!-- Cards Lat vs Cloudines, Humidity and WindSpeed -->
<div class="container" id = "cards">
<h1 class = "text-center" id="lat_heading">VISUALIZATION OF LATITUDE</h1>
<div class="row">
<div class="col-md-4">
<div class="card mb-3">
<h3 class="card-header">VS <span class ="gradient">HUMIDITY</span></h3>
<br>
<a href = "WebVisualizations/humidity.html">
<img style="height: 200px; width: 100%; display: block;" src="WebVisualizations/Resources/assets/images/Fig2.png" alt="latitude vs humidity image">
</a>
<div class="card-body">
<p class="card-text">The graph represents a scatter plot drawn for datapoints of latitude vs humidity.</p>
</div>
<div class="card-body">
<p class="lead">
<a class="btn btn-primary btn-lg" href="WebVisualizations/humidity.html" role="button">VIEW GRAPH<i class="fa fa-arrow-right"></i></a>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-3">
<h3 class="card-header"> VS <span class ="gradient">CLOUDINESS</span></h3>
<br>
<a href = "WebVisualizations/cloudiness.html">
<img style="height: 200px; width: 100%; display: block;" src="WebVisualizations/Resources/assets/images/Fig3.png" alt="latitude vs cloudiness image">
</a>
<div class="card-body">
<p class="card-text">The graph represents a scatter plot drawn for datapoints of latitude vs cloudiness.</p>
</div>
<div class="card-body">
<p class="lead">
<a class="btn btn-primary btn-lg" href="WebVisualizations/cloudiness.html" role="button">VIEW GRAPH<i class="fa fa-arrow-right"></i></a>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-3">
<h3 class="card-header">VS <span class ="gradient">WINDSPEED</span></h3>
<br>
<a href = "WebVisualizations/windspeed.html">
<img style="height: 200px; width: 100%; display: block;" src="WebVisualizations/Resources/assets/images/Fig4.png" alt="latitude vs wind speed image">
</a>
<div class="card-body">
<p class="card-text">The graph represents a scatter plot drawn for datapoints of latitude vs windspeed.</p>
</div>
<div class="card-body">
<p class="lead">
<a class="btn btn-primary btn-lg" href="WebVisualizations/windspeed.html" role="button">VIEW GRAPH<i class="fa fa-arrow-right"></i></a>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- JavaScript to recall footer -->
<script language="javascript" type="text/javascript" src="WebVisualizations/footer.txt"></script>
<!-- JavaScript for bootstrap functionality-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html>