-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
159 lines (145 loc) · 5.69 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
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rorr's Web Visualization Dashboard (Latitude)</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="bs-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="page_landing.html">Navigation Bar</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Visualizations
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>
<a href="page_wind.html">Latitude vs. Wind Speed</a>
</li>
<li>
<a href="page_temp.html">Latitude vs. Temperature</a>
</li>
<li>
<a href="page_humidity.html">Latitude vs. Humidity</a>
</li>
<li>
<a href="page_clouds.html">Latitude vs. Cloudiness</a>
</li>
</ul>
</li>
<li>
<a href="page_weather_data.html">Data</a>
</li>
<li>
<a href="page_comparison.html">Comparison</a>
</li>
<li>
<a target="_blank" href="https://github.com/Thirdhuman/python-challenge/tree/master/WeatherPy">Repository</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="container">
<div class="row">
<div class="col-md-9 pad top">
<br>
<div class="pull-center">
<div class="text-left">
<p> WeatherPy, by Robert Orr </p>
<br>
<p>My objective is to build a series of scatter plots to showcase the following relationships:</p>
<br>
<p>Temperature (F) vs. Latitude</p>
<p>Humidity (%) vs. Latitude</p>
<p>Cloudiness (%) vs. Latitude</p>
<p>Wind Speed (mph) vs. Latitude</p>
<br>
<div class="col-md-9 pad top">
<br>
<div class="pull-center">
<div class="text-left">
<p>Key Takeaways</p>
<br>
<p>1. Temperature increases as one moves north the equator, but most cities are in the north so this relationship
could be symetric I know it actually is).</p>
<br>
<p>2. Windspeed seems to increase as latitude increase, and, once again the bias from cities disproportionately
being situated in the norther hemisphere.</p>
<br>
<p>3. There does not seem to be any discernable relationship in regarding latitude and cloudiness</p>
<p> 4. Humidity appears to a non-linear relationship with latitude. It is low at the equator, but grows as
you move in either direction, and then declines once again when moving towards the poles.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 pad top">
<br>
<div class="pull-center">
<a href="page_temp.html">
<img src="https://github.com/Thirdhuman/HTML-Web-Visualization/blob/master/Images/image_temp_lat.png?raw=true" alt="Latitude vs. Temperature"
width="100%" height="100%">
</a>
<a href="page_wind.html">
<img src="https://github.com/Thirdhuman/HTML-Web-Visualization/blob/master/Images/image_wind_lat.png?raw=true" alt="Latitude vs. Wind"
width="100%" height="100%">
</a>
</div>
</div>
<div class="col-md-3 pad top">
<br>
<div class="row">
<div class="col-md-3 pad top">
<div class="pull-center">
<a href="page_humidity.html">
<img src="https://github.com/Thirdhuman/HTML-Web-Visualization/blob/master/Images/image_humidity_lat.png?raw=true" alt="Latitude vs. Humidity"
width="100%" height="100%">
</a>
<a href="page_clouds.html">
<img src="https://github.com/Thirdhuman/HTML-Web-Visualization/blob/master/Images/image_cloud_lat.png?raw=true" alt="Latitude vs. Cloudiness"
width="100%" height="100%">
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 pad top">
<br>
<!-- Nothing here, blank columns -->
</div>
<div class="col-md-3 pad top">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</html>