-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eddie
committed
Oct 28, 2020
1 parent
dbf5586
commit 7cc6af5
Showing
14 changed files
with
6,801 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Landing Page</title> | ||
<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"> | ||
|
||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class = "navigation"> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | ||
<a class="navbar-brand" href="index.html">Latitude</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
|
||
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | ||
<ul class="navbar-nav ml-auto"> | ||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
Plot | ||
</a> | ||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown"> | ||
<a class="dropdown-item" href="temperature.html">Max Temperature</a> | ||
<a class="dropdown-item" href="humdity.html">Humidity</a> | ||
<a class="dropdown-item" href="cloudiness.html">Cloudiness</a> | ||
<a class="dropdown-item" href="windspeed.html">Wind Speed</a> | ||
</div> | ||
</li> | ||
<li class = "nav-item"> | ||
<a class="dropdown-item" href="comparison.html">Comparison</a> | ||
</li> | ||
<li class = "nav-item"> | ||
<a class="dropdown-item" href="data.html">Data</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</div> | ||
|
||
<div class = "container"> | ||
<div class = "row"> | ||
<div class = "col-lg-7"> | ||
<div class = "col-md-12"> | ||
<div class ="h1">Cloudiness</div> | ||
<hr> | ||
<img src="Resources/Assets/City Lat vs Cloudiness.png" class="vizualization rounded float-left" alt="Cloudiness Graph"> | ||
<p> | ||
Based on the graph, there is no correlation between latitude and cloudiness. | ||
</p> | ||
|
||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class = "col-lg-5"> | ||
<div class = "col-md-12"> | ||
<div class = "box"> | ||
<div class ="h1">Visualizations</div> | ||
<hr> | ||
<div class = "row"> | ||
<div class = "col-6"> | ||
<a href="temperature.html"><img src="Resources/Assets/City Lat vs Max Temp.png" width="100%" alt="Max Temperature"> | ||
</div> | ||
|
||
<div class = "col-6"> | ||
<a href="humdity.html"><img src="Resources/Assets/City Lat vs Humidity.png" width="100%" alt="Humidity"> | ||
</div> | ||
|
||
<div class = "col-6"> | ||
<a href="cloudiness.html"><img src="Resources/Assets/City Lat vs Cloudiness.png" width="100%" alt="Cloudiness"> | ||
</div> | ||
|
||
<div class = "col-6"> | ||
<a href="windspeed.html"><img src="Resources/Assets/City Latitude vs Wind Speed.png" width="100%" alt="Wind Speed"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
|
||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Landing Page</title> | ||
<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"> | ||
|
||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class = "navigation"> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | ||
<a class="navbar-brand" href="index.html">Latitude</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
|
||
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | ||
<ul class="navbar-nav ml-auto"> | ||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
Plot | ||
</a> | ||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown"> | ||
<a class="dropdown-item" href="temperature.html">Max Temperature</a> | ||
<a class="dropdown-item" href="humdity.html">Humidity</a> | ||
<a class="dropdown-item" href="cloudiness.html">Cloudiness</a> | ||
<a class="dropdown-item" href="windspeed.html">Wind Speed</a> | ||
</div> | ||
</li> | ||
<li class = "nav-item"> | ||
<a class="dropdown-item" href="comparison.html">Comparison</a> | ||
</li> | ||
<li class = "nav-item"> | ||
<a class="dropdown-item" href="data.html">Data</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</div> | ||
<div class = "container"> | ||
<div class = "h1">Comparison: Latitude vs X</div> | ||
<hr> | ||
<p>Please click any plot graph to get an in-depth analysis</p> | ||
<div class = "row"> | ||
<div class = "col-6"> | ||
<a href="temperature.html"><img src="Resources/Assets/City Lat vs Max Temp.png" width="100%" alt="Max Temperature"> | ||
</div> | ||
|
||
<div class = "col-6"> | ||
<a href="humdity.html"><img src="Resources/Assets/City Lat vs Humidity.png" width="100%" alt="Humidity"> | ||
</div> | ||
|
||
<div class = "col-6"> | ||
<a href="cloudiness.html"><img src="Resources/Assets/City Lat vs Cloudiness.png" width="100%" alt="Cloudiness"> | ||
</div> | ||
|
||
<div class = "col-6"> | ||
<a href="windspeed.html"><img src="Resources/Assets/City Latitude vs Wind Speed.png" width="100%" alt="Wind Speed"> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
</body> |
Oops, something went wrong.