-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
194 lines (188 loc) · 7.1 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rocket Launches</title>
<link rel="icon" type="image/x-icon" href="./assets/launch.ico" />
<link rel="stylesheet" href="css/dashboard.css" />
<link rel="stylesheet" href="css/loader.css" />
<link rel="stylesheet" href="css/inline-selection.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts.min.js"></script>
<script src="js/inline-selection.js" defer></script>
<script type="module" src="js/common.js"></script>
<script type="module" src="js/barrace.js"></script>
<script type="module" src="js/maprace.js"></script>
<script type="module" src="js/linerace.js"></script>
<script type="module" src="js/stackedarea.js"></script>
<script type="module" src="js/mission-types.js"></script>
<script
type="text/javascript"
src="https://fastly.jsdelivr.net/npm/echarts-gl@2/dist/echarts-gl.min.js"
></script>
<!-- <script src="./js/pads-globe.js" type="module" defer></script> -->
<script type="module" src="js/pad-locations.js" defer></script>
<script type="module" src="js/pad-mission-type-graph.js" defer></script>
<script type="module" src="js/rocket-info.js"></script>
<script type="module" src="js/leo-capabilities-over-time.js" defer></script>
</head>
<body>
<div class="moon" id="loader">
<img
src="https://cdn2.iconfinder.com/data/icons/thesquid-ink-40-free-flat-icon-pack/64/space-rocket-512.png"
style="width: 30px; height: 20px"
class="loader"
/>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div id="content" style="opacity: 0">
<div class="spacer" style="padding-top: 0; padding-bottom: 0; height: auto; color: rgb(151, 151, 151);">
Source code, Data, <a href="report.pdf">Manual/Report</a>, <a href="https://youtu.be/_yBXvVh-Jrs">Demo</a>, and more at <a href="https://github.com/Victor4X/datavis-project">Github</a>
</div>
<div class="spacer" style="padding-top: 0; color: rgb(151, 151, 151)">
Data from <a href="https://thespacedevs.com/llapi">Launch Library 2</a>
</div>
<div class="spacer" style="padding-top: 4em">
What are the biggest nations in space travel over time?
</div>
<div id="line-race-container" style="width: 100%; height: 600px"></div>
<div class="spacer" style="padding-top: 10em">
What are the most frequent objectives of space travel?
</div>
<div
id="mission-types-container"
style="min-height: 1080px; width: 100%; overflow: hidden"
></div>
<div
id="mission-types-settings-spacer"
class="spacer"
style="display: flex; justify-content: center; align-items: center"
>
<div id="mission-types-settings-extra" style="width: 30%">
<span class="inline-sentence">
Normalize by
<span class="inline-dropdown">
<span class="inline-selected" id="mission-types-normalize-state"
>mission</span
>
<ul class="inline-selections">
<li class="inline-selection">mission</li>
<li class="inline-selection">orbit</li>
</ul>
</span>
type
</span>
</div>
<div
id="mission-types-settings-container"
style="height: 100px; width: 30%"
></div>
</div>
<div class="spacer" style="padding-top: 10em">
How has space travel market share evolved over time?
</div>
<div id="stacked-area" style="width: 100%; height: 600px"></div>
<div class="spacer" style="padding-top: 10em">
How have rocket launch capabilities evolved over time?
</div>
<div
id="leo-capabilities-settings-spacer"
class="spacer"
style="
display: flex;
justify-content: center;
align-items: center;
height: 30%;
"
>
<span class="inline-sentence">
Classify by
<span class="inline-dropdown">
<span
class="inline-selected"
id="leo-capabilities-classification-state"
>
Active/Inactive
</span>
<ul class="inline-selections">
<li class="inline-selection">Active/Inactive</li>
<li class="inline-selection">Manufacturer Type</li>
<li class="inline-selection">Manufacturer Country</li>
</ul>
</span>
</span>
</div>
<div
id="leo-capabilities-over-time"
style="width: 100%; height: 90vh"
></div>
</div>
<div style="display: none">
<div id="settings"></div>
<input
class="form-check-input"
type="checkbox"
value=""
id="animationCheckbox"
checked
/>
<label class="form-check-label" for="animationCheckbox">
Enable animations
</label>
<input type="range" name="" id="year_slider" />
</div>
<div class="spacer"></div>
<div class="spacer" style="padding-top: 5em">
Launches per year per country
</div>
<div style="display: flex">
<div id="barrace" style="width: 50%; height: 400px"></div>
<div id="maprace" style="width: 50%; height: 400px"></div>
</div>
<div class="spacer" style="padding-top: 10em"></div>
<div class="spacer" style="padding-top: 5em">
Cumulative launches by locations
</div>
<div
id="pad-locations-container"
style="width: 100%; height: 100vh"
></div>
<div class="spacer" style="padding-top: 10em"></div>
<div class="spacer" style="padding-top: 5em">
Relation between launch pads and mission types
</div>
<div id="pad-mission-container" style="width: 100%; height: 100vh"></div>
<div class="spacer" style="padding-top: 10em">Rocket family info</div>
<div id="rocket-info-container" style="width: 100%; height: 700px"></div>
<!-- <div class="spacer" style="padding-top: 10em"></div>
<div class="spacer" style="padding-top: 5em">
Cumulative launches by pads
</div>
<div id="pad-globe-container" style="height: 100vh"></div> -->
</div>
<script>
const loader = document.getElementById("loader");
const content = document.getElementById("content");
// Check if chrome https://bugzilla.mozilla.org/show_bug.cgi?id=1736059
if (window.chrome) {
document.body.onload = () => {
loader.style.display = "none";
content.style.opacity = "1";
};
} else {
alert(
"This page only works in chrome. More info here:\nhttps://bugzilla.mozilla.org/show_bug.cgi?id=1736059"
);
}
</script>
</body>
</html>