-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (101 loc) · 5.26 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
<!DOCTYPE html>
<html>
<head>
<title>SkyData</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="style.css"/>
<script src="https://d3js.org/d3.v4.js"></script>
<script>
d3v4 = d3
window.d3 = null
</script>
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand" href="#">SkyData</a>
</nav>
<br />
<div id="root" class="container-fluid">
<div id="top" class="container-fluid text-center">
<h1>SkyData</h1>
<h2 class="text-center">Where and when are you traveling?</h2>
<p>Select an origin and destination city using the dropdowns, or simply click the cities on the map.</p>
<div id="map">
<div id="selectFields" class="form-group justify-content-center row"></div>
<p id="noFlightsLabel" style="font-size:large">Sorry, no flights were found for your selected options.</h3>
</div>
<br>
<button type="button" class="btn btn-primary" id="scrollButton" onclick="scrollPressed()">See The Best Flights</button>
</div>
<div class="container-fluid" id="detail">
<br> <br>
<div id="chart">
<h2 id="selectedFlight" class="text-center"></h2>
<br>
<h2 class="text-center">Here are your options:</h2>
<br>
<div id="airlineButtons" class="btn-group-sm text-center"></div>
<br>
<p class="text-center">Select a specific airline to see more details.</p>
<div id="chartContainer" class="row">
<div id="leftChart" class="col px-md-5 text-center">
<h4>Flight Emptiness</h4>
</div>
<div id="rightChart" class="col px-md-5 text-center">
<h4>Flight Delay</h4>
</div>
</div>
<br> <br> <br>
<div class="text-center"><button type="button" class="btn btn-success" id="scrollToTop" onclick="scrollToTop()">Choose Another Flight</button></div>
</div>
</div>
<div class="modal fade" id="airlineModal" tabindex="-1" role="dialog" aria-labelledby="modalAirlineLabel" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Unknown Airline</h5>
</div>
<div class="modal-body">
<div class="container" id="airlineModalContainer">
<div class="row">
<div class="col text-center" id="seatMap">
<h5>Possible Seat Map:</h5>
<br> <br>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="350px" height="700px" viewBox="0 0 205 700" enable-background="new 0 0 351 351" xml:space="preserve">
<g id="prob_viz"> </g>
</svg>
<p>Note: Actual flights may have empty seats clustered towards the first class section of the plane, if applicable.</p>
</div>
<div class="col">
<div class="row text-center" id="flightDurations">
<h5>Average Flight Duration:</h5>
<br> <br>
</div>
<div class="row" id="availableFlights">
<h5 id="airlineDetailsTitle">Airline Details:</h5>
<br> <br>
<p style="font-size:large;" id="airlineBlurb"></p>
<p style="font-size:large;">On average, there are <span style="font-size: larger;" id="weeklyFlightsSpan1"></span> run from <span id="weeklyFlightsSpan2"></span></p>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="d3/d3.js"></script>
<script type="text/javascript" src="d3/d3.csv.js"></script>
<script type="text/javascript" src="d3/d3.geo.js"></script>
<script type="text/javascript" src="d3/d3.geom.js"></script>
<script type="text/javascript" src="index.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></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.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>