-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (74 loc) · 3.41 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<!-- Begin Jekyll SEO tag v2.3.0 -->
<title>US Flight Delay Visualization | us-flight-delays</title>
<meta property="og:title" content="US Flight Delay Visualization" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Visualize departure and arrival delays for the USA by state" />
<meta property="og:description" content="Visualize departure and arrival delays for the USA by state" />
<link rel="canonical" href="https://lrakai.github.io/us-flight-delays/" />
<meta property="og:url" content="https://lrakai.github.io/us-flight-delays/" />
<meta property="og:site_name" content="us-flight-delays" />
<script type="application/ld+json">
{"name":"us-flight-delays","description":"Visualize on-time flight performance for the USA","author":"Logan Rakai","@type":"WebSite","url":"https://lrakai.github.io/us-flight-delays/","image":null,"publisher":null,"headline":"Visualize US Domestic Flight Delays","dateModified":null,"datePublished":null,"sameAs":null,"mainEntityOfPage":null,"@context":"http://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/us-flight-delays/assets/css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="/us-flight-delays/assets/css/ie.css">
<![endif]-->
<script src='https://api.mapbox.com/mapbox-gl-js/v0.44.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v0.44.0/mapbox-gl.css' rel='stylesheet' />
<link rel="stylesheet" href="/us-flight-delays/assets/css/map.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<div id="header">
<nav>
<li class="fork">
<a href="https://github.com/lrakai/us-flight-delays">View On GitHub</a>
</li>
</nav>
</div>
<!-- end header -->
<div class="wrapper">
<section>
<div id="title">
<h1>US Flight Delays</h1>
<p>Visualize US flight delay data</p>
<hr>
<span class="credits left">Project maintained by
<a href="https://github.com/lrakai/us-flight-delays">lrakai</a>
</span>
<span class="credits right">Hosted on GitHub Pages — Theme by
<a href="https://twitter.com/michigangraham">mattgraham</a>
</span>
</div>
<h2 id="welcome-to-github-pages">US Flight Delay Visualization</h2>
<h3 id="markdown">Percentage of Flights Arriving On Time (2017)</h3>
<div class="map-container">
<div id="on-time-arrival-map" class="map"></div>
<div id="on-time-arrival-features" class="map-overlay map-feature-panel">
<h3>Percentage of flights on-time</h3>
<div id="on-time-arrival-feature">
<p>Hover over a state!</p>
</div>
</div>
<div id="on-time-arrival-legend" class="map-overlay legend">
<div>
<strong>Legend</strong>
</div>
</div>
</div>
</section>
</div>
<script src="/us-flight-delays/assets/js/map.js"></script>
</body>
</html>