-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
845 lines (771 loc) · 32 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CS171 - Space Monkeys</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">
<!--Code Sources:
Fullpage library from https://github.com/alvarotrigo/fullPage.js
Parallax CSS Stars modified from https://codepen.io/saransh/details/BKJun
-->
<link rel="stylesheet" type="text/css" href="css/fullpage.css" />
<link rel="stylesheet" type="text/css" href="css/stars.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/fonts/stylesheet.css" charset="utf-8"/>
<style>
/* Style for our header texts
* --------------------------------------- */
</style>
<!--[if IE]>
<script type="text/javascript">
var console = { log: function() {} };
</script>
<![endif]-->
</head>
<body>
<div id="fullpage">
<!-- Title Page -->
<div class="section " id="section0">
<div class="intro" id = "star-intro">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<h5>THE HISTORY OF</h5>
<h5 style="font-size:8em; color:#ffb700">SPACE FLIGHT</h5>
<h3>BY THE SPACE MONKEYS</h3>
</div>
</div>
</div>
<!--<div id = "title"><span> A History of Space Flight </span><br/> by the space monkeys</div>-->
</div>
</div>
<div class="section " id="section1">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<h2>Most people know about the Space Race </h2>
<h3>It started on October 4, 1957 with the Soviet launch of Sputnik...</h3>
<!--<h3>This battle lasted over 40 years.</h3>
<h3>Starting with the Launch of Sputnik on October 4, 1957 and ending with the International Space Statio cooperation in 1998.</h3>-->
</div>
</div>
</div>
</div>
</div>
<!--Video from Space Race-->
<div class="section" id="section2">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100 video-parent">
<div class="video-container">
<video autoplay muted loop id="myVideo1">
<source src="videos/SaturnV.mov" type="video/mp4">
</video>
<!-- Optional: some overlay text to describe the video -->
<div class="content_video">
<div class="row align-items-center">
<div class="col">
<h2>Space Race</h2>
<h2 class="date-range">(1957-1975)</h2>
<p>The United States and the Soviet Union fought for space domination.</p>
<p>This led to the race to the Moon, propelled by the Saturn V, the largest rocket ever built.</p>
<p>The Space Race culminated in 1975, with the docking of the Russian Soyuz and American Apollo vehicles in Low-Earth Orbit.</p>
<!-- Use a button to pause/play the video with JavaScript -->
<button id="myBtn1" onclick="toggleVideo1()">Pause</button>
<p style="margin-bottom:2.5em; font-size:10px"><br><br>Video Source: videvo.net<br><br></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Cold War Images and Facts -->
<div class="section " id="section3">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100 video-parent">
<div class="video-container">
<!-- <video autoplay muted loop id="myVideo2">
<source src="videos/Shuttle.mp4" type="video/mp4">
</video> -->
<img src="images/Apollo11.jpg" class="bg">
<!-- Optional: some overlay text to describe the video -->
<div class="content_image">
<div class="row align-items-center">
<div class="col">
<p>"We choose to go to the moon. We choose to go to the moon in this decade and do the other things, not because they are easy, but because they are hard, because that goal will serve to organize and measure the best of our energies and skills, because that challenge is one that we are willing to accept, one we are unwilling to postpone, and one which we intend to win, and the others, too."</p>
<p>- John F. Kennedy</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Story Point 2 -->
<div class="section " id="section4">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<h2>What happened after the Space Race?</h2>
<h3>Once tensions eased and the Cold War subsided, countries continued to explore and expand their presence in space.</h3>
</div>
</div>
</div>
</div>
</div>
<!-- Story Point 3 -->
<div class="section " id="section5">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<h2>WHAT DOES THE SPACE INDUSTRY LOOK LIKE</h2>
<h2 style="font-size:5em; color:#ffb700">NOW?</h2>
<!--<h3>These two countries are commonly believed to be the two dominant players.</h3>
<h3>How many countries provide launch services?</h3>-->
</div>
</div>
</div>
</div>
</div>
<!-- Network Diagram -->
<div class="section " id="section6">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid" style = "padding-top: 0%;height: 10%">
<div class="row main-body">
<div class="col">
<div class="row">
<div class="col-3" style="height: 15vh; padding-left: 20pt; padding-top: 1vh;" >
<div class="row" >
<button id = "labelToggle" class="btn btn-light" type="button" value="OFF" onclick="toggleButton(this);" style="border: thin solid grey;";>Labels</button>
</div>
<div class="row" style="height: 5vh; padding-top: 5pt">
<select id='categorySelector' class="custom-select" style="width: 75%" onchange="categoryChange()">
<option value="default" selected>Default</option>
<option value="country">by Country</option>
<option value="status">by Status</option>
<option value="success">by % Successful Launches</option>
<option value="total">by Total Launches</option>
</select>
</div>
<div class="row" style="height: 50vh; padding-top: 5pt">
<div id="networkLegend-vis">
</div>
</div>
<div class ="row" style="height:40vh; padding-top: 10pt; text-align: left;">
<div id = "legendText">
</div>
</div>
</div>
<div class="col-9" style="padding-top: 1vh;">
<div class="align-self-center vis-holder">
<div id="network-vis"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Story Point 4 -->
<div class="section " id="section7">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<!-- <h2>The New Eras of Space Exploration</h2>-->
<h3>The end of the Space Race encouraged other nations to develop their own satellite and launch capabilities, and since then the industry has ballooned. Looking at the data, we believe there are, in fact, three ages that define the space industry: </h3>
<h2>Space Race Age</h2>
<h2>Exploration Age </h2>
<h3>&</h3>
<h2>Commercialization Age</h2>
</div>
</div>
</div>
</div>
</div>
<!-- Video: Age of Exploration -->
<div class="section" id="section8">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100 video-parent">
<div class="video-container">
<video autoplay muted loop id="myVideo2">
<source src="videos/Shuttle.mp4" type="video/mp4">
</video>
<!-- Optional: some overlay text to describe the video -->
<div class="content_video">
<div class="row align-items-center">
<div class="col">
<h2>Age of Exploration</h2>
<h2 class="date-range">(1976-2011)</h2>
<p>The diversification of activities in space led to the Age of Exploration, propelled by the Space Shuttle which began launching in 1981.</p>
<p>The Space Shuttle had the capacity to send up to 60,000 lbs of cargo to Low-Earth Orbit, which is equivalent to about 3 school buses.</p>
<p>The Shuttle famously put the Hubble Space Telescope in orbit in 1990, and enabled the construction of the International Space Station with its first module launching in 1998.</p>
<p>The Shuttle would launch from the Kennedy Space Center in Cape Canaveral, Florida.</p>
<!-- Use a button to pause/play the video with JavaScript -->
<button id="myBtn2" onclick="toggleVideo2()">Pause</button>
<p style="margin-bottom:2.5em; font-size:10px"><br><br>Video Source: videvo.net<br><br></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Intro to Map Vis -->
<div class="section " id="section9">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<h2>WHICH COUNTRIES</h2>
<h2 style="font-size:5em; color:#ffb700">LAUNCH ROCKETS?</h2>
<!--<h3>These two countries are commonly believed to be the two dominant players.</h3>
<h3>How many countries provide launch services?</h3>-->
</div>
</div>
</div>
</div>
</div>
<!-- World Map -->
<div class="section " id="section10">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid">
<div class="row justify-content-center header">
<div class="align-self-center">
<h2>The Evolution of the Space Industry</h2>
<h3>3 Distinct Eras. The Space Race. The Exploration Age. The Commercialization Age.</h3>
</div>
</div>
<div class="row main-body">
<div class="col">
<div class="row justify-content-center center-center">
<div class="align-self-center vis-holder">
<div id="world-bar"></div>
</div>
</div>
</div>
<div class="col col-8">
<div class="row justify-content-center center-center">
<div class="align-self-center vis-holder">
<div id="world-map"></div>
</div>
</div>
</div>
</div>
<div class="row footer">
<div class="col one-col">
<div class="row justify-content-center center-center">
<button id="map_animation">Click Here to Watch the Evolution</button>
</div>
</div>
<div class="vis-holder">
<div id="brush-plot"></div>
</div>
</div>
</div>
</div>
</div>
<div class="section " id="section11">
<div class="star-section">
<!-- <div class = "stars"></div>-->
<!-- <div class = "stars2"></div>-->
<!-- <div class = "stars3"></div>-->
<div class="container h-100">
<!-- <div class="video-container">-->
<!-- <video autoplay muted loop id="myVideo2">
<source src="videos/Shuttle.mp4" type="video/mp4">
</video> -->
<img src="images/hubbleiss.png" class="bg" style="height: 100%; width:100%">
<!-- Optional: some overlay text to describe the video -->
<div class="content_image2">
<div class="row " style="padding-top: 3vh">
<div class="col-4 offset-4 align-content-left" >
<p>The Exploration Age oversaw the launch of the Hubble Space Telescope (left), which was instrumental in determining the age of the universe, how planets form, and that nearly all galaxies have supermassive black holes at their center. The construction of the International Space Station (below) began in 1998 and took over 30 launches to assemble. Additionally, during this age, we launched the first satellites to explore Mercury, Venus, Jupiter, Neptune, Saturn, Pluto, multiple asteroids and comets, and even beyond our solar system. Voyager 1 launched in 1977 but took over 36 years to leave the solar system."</p>
</div>
</div>
</div>
<!-- </div>-->
</div>
</div>
</div>
<!-- Video: Age of Commercialization -->
<div class="section" id="section12">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100 video-parent">
<div class="video-container">
<video autoplay muted loop id="myVideo3">
<source src="videos/SpaceX.mp4" type="video/mp4">
</video>
<!-- Optional: some overlay text to describe the video -->
<div class="content_video">
<div class="row align-items-center">
<div class="col">
<h2>Commercial Space Age</h2>
<h2 class="date-range">(2012-Present)</h2>
<p>In 2011, SpaceX became the first private company to launch a rocket, the Falcon 9.</p>
<p>Since then, other nations and companies, like Blue Origin and Virgin Galactic, have joined the space industry and plan to expand it to include space tourism.</p>
<p>Their goal: get a share of the growing space economy which is projected to hit the $1.1 trillion mark by 2040, according to Morgan Stanley.</p>
<!-- Use a button to pause/play the video with JavaScript -->
<button id="myBtn3" onclick="toggleVideo3()">Pause</button>
<p style="margin-bottom:2.5em; font-size:10px"><br><br>Video Source: images.nasa.gov<br><br></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Story Point 5 -->
<div class="section " id="section13">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<h2>These three ages have lead to the development of 416 rockets.</h2>
<h3>Only some of which lasted the test of time.</h3>
</div>
</div>
</div>
</div>
</div>
<!-- Intro to Launch Vis -->
<div class="section " id="section14">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<h2>HOW LONG HAVE THESE</h2>
<h2 style="font-size:5em; color:#ffb700">ROCKETS FLOWN?</h2>
<!--<h3>These two countries are commonly believed to be the two dominant players.</h3>
<h3>How many countries provide launch services?</h3>-->
</div>
</div>
</div>
</div>
</div>
<!-- Cumulative Launch Diagram -->
<div class="section " id="section15">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid">
<div class="row main-body">
<div class="col">
<div class="row" style="height: 5vh; padding-top: 5pt">
<div class="col-3" style="height: 15vh; padding-left: 20pt; padding-top: 1vh;" >
<div class="row" style="height: 5vh; padding-top: 5pt">
<select id='countrySelector' class="custom-select" style="width: 75%; display:none;" onchange="countryChange()">
<option value="default" selected>All Countries</option>
<option value="USA">U.S.A.</option>
<option value="China">China</option>
<option value="Russia">Russia</option>
<option value="Japan">Japan</option>
<option value="Israel">Israel</option>
<option value="New Zealand">New Zealand</option>
<option value="Iran">Iran</option>
<option value="France">France</option>
<option value="India">India</option>
<option value="Mexico">Mexico</option>
<option value="Brazil">Brazil</option>
</select>
</div>
<div class="row" style="height: 5vh; padding-top: 10pt">
<select id='AgeSelector' class="custom-select" style="width: 75%; display:none;" onchange="AgeChange()">
<option value="all">All Ages</option>
<option value="space_race" selected>Space Race (1957-1975)</option>
<option value="exploration">Exploration (1976-2011)</option>
<option value="commercial">Commercialization (2012-Present)</option>
</select>
</div>
<!--<div class="row" style="height: 50vh; padding-top: 5pt">
<div id="FlightLegend-vis">
</div>
</div>-->
<div class="row" style="height: 5vh; padding-top: 50pt">
<button id="factbutton" onclick="FactClick()">Click for Fact</button>
</div>
<div class ="row" style="height:40vh; padding-top: 70pt; text-align: left;">
<div id = "FlightText">
</div>
</div>
</div>
<div class="col-7" style="padding-top: 1vh;">
<div class="align-self-center vis-holder">
<div id="launches-vis"></div>
</div>
</div>
<div class="col-2" style="padding-top: 1vh;">
<div class="align-self-center vis-holder">
<div id="FlightLegend-vis"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Fun Facts 3 -->
<div class="section " id="section16">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<img src="images/cosmosdelta.png" class="bg" style="height: 100%; width:100%">
<!-- Optional: some overlay text to describe the video -->
<div class="content_image2">
<div class="row " style="height: 20vh; padding-top: 5vh">
<div class="col-4 offset-4" style="background-color: black; opacity: 0.6; padding: 10pt;">
<h2>Delta II</h2>
<h3 class="rocket-stats">1989 to 2018</h3>
<p>(Right) After the Challenger disaster in 1986, NASA began contracting private companies to launch their payloads. The Delta II (158 launches) served as the US workhorse for nearly 3 decades, providing commercial and government payloads a ride to space.
</p>
</div>
</div>
<div class="row " style="height: 20vh; padding-top: 50vh">
<div class="col-4 offset-4 align-self-center" style="background-color: black; opacity: 0.9; padding: 10pt;">
<h2>Cosmos</h2>
<h3 class="rocket-stats">1961 to 2010</h3>
<p>(Left) The Cosmos (or Kosmos) rocket family are a series of Soviet and then Russian rockets that have racked up 629 Launches. The Cosmos span most of the 60 year history of launch vehicles. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Video: Orbits -->
<div class="section" id="section17">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100 video-parent">
<div class="video-container">
<video autoplay muted loop id="myVideo4">
<source src="videos/Earth.mov" type="video/mp4">
</video>
<!-- Optional: some overlay text to describe the video -->
<div class="content_video">
<div class="row align-items-center">
<div class="col">
<h2>Satellites in Orbit</h2>
<p>The first official satellite in space marked the beginning of the Space Race: Sputnik (1957).
</p>
<p>Since then, the Delta II, Cosmos, and 100s of other launch vehicles have contributed to the nearly 3000 satellites in orbit today.</p>
<p>Although the USA and USSR set the stage back in Space Race, the current ecosystem is contributed to by over a six dozen countries.</p>
<!-- Use a button to pause/play the video with JavaScript -->
<button id="myBtn4" onclick="toggleVideo4()">Pause</button>
<p style="margin-bottom:2.5em; font-size:10px"><br><br>Video Source: videvo.net<br><br></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Intro to Orbits Vis -->
<div class="section " id="section18">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100 justify-content-center">
<div class="align-self-center">
<h2>WHAT PAYLOADS HAVE</h2>
<h2 style="font-size:5em; color:#ffb700">ORBITED OUR PLANET?</h2>
<!--<h3>These two countries are commonly believed to be the two dominant players.</h3>
<h3>How many countries provide launch services?</h3>-->
</div>
</div>
</div>
</div>
</div>
<!-- Orbits -->
<div class="section " id="section19">
<div class="star-section">
<div id="orbitStar1" class = "stars"></div>
<div id="orbitStar2" class = "stars2"></div>
<div id="orbitStar3" class = "stars3"></div>
<div class="container-fluid">
<div class="row main-body">
<div class="col">
<!-- <div class="row">-->
<div class="row " style="height: 5vh; padding-top: 1vh;" >
<div class="col-2" style="height: 3vh; padding-top: 5pt; width:100%">
<button id = "starButton" type="button" class="btn btn-light">Toggle Stars</button>
</div>
<div class="col-2 justify-content-start" style="height: 5vh; padding-top: 5pt; ">
<select id='satColor' class="custom-select" style="width:100%" onchange="satCategoryChange()">
<option value="default" selected>Default (none)</option>
<option value="country">by Country </option>
<option value="purpose">by Purpose</option>
<!-- <option value="use">by Use</option>-->
<option value="orbit" >by Orbit</option>
<option value ="age"> by Age</option>
</select>
</div>
</div>
<div class="row" style="padding-top: 1vh;">
<div class="col-4" style="height: 75vh; padding-top: 10pt;">
<div class="row" style="height: 47vh; ">
<div id="orbitLegend-vis">
</div>
</div>
<hr style="width: 100%; background-color: white;">
<div class ="row" style="height:43vh; padding-top: 1vh;text-align: left;">
<div id = "orbitLegendText">
</div>
</div>
</div>
<div class="col-8"style="height: 85vh;">
<div id="orbit-vis">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Video: Future -->
<div class="section" id="section20">
<div class="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100 video-parent">
<div class="video-container">
<video autoplay muted loop id="myVideo5">
<source src="videos/Solar.mov" type="video/mp4">
</video>
<!-- Optional: some overlay text to describe the video -->
<div class="content_video">
<div class="row align-items-center">
<div class="col">
<h2>What will be the next</h2>
<h2 class="date-range">"Giant Leap"?</h2>
<p>Thus far, we've presented the idea that the history of the space flight industry includes not just one defining age, but currently three: the Space Race Age, the Exploration Age, and the Commercialization Age.</p>
<p>The Commercialization Age, however, is only just beginning, and it's off to a booming start. Just how far will it take us? </p>
<!-- Use a button to pause/play the video with JavaScript -->
<button id="myBtn5" onclick="toggleVideo5()">Pause</button>
<p style="margin-bottom:2.5em; font-size:10px"><br><br>Video Source: videvo.net<br><br></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section" id="section21">
<div class="intro" id="star-section">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<h2 style="font-size:50pt; padding-bottom: 40pt;"> The Space Monkeys</h2>
<div class="row h-100">
<div class="col-4 ">
<img src="images/juanmonkey.png" height=460 width=400><br>
<h2>Juan C. Lopez</h2>
<h3>MS/MBA Candidates at SEAS/Harvard Business School</h3>
</div>
<div class="col-4 ">
<img src="images/mikemonkey.png" height=460 width=400><br>
<h2>Mike Mancinelli</h2>
<h3>MS/MBA Candidates at SEAS/Harvard Business School</h3>
</div>
<div class="col-4 ">
<img src="images/zanemonkey.png" height=460 width=400><br>
<h2>Zane Wolf</h2>
<h3>Ph.D. Student in Organismic and Evolutionary Biology</h3>
</div>
</div>
</div>
</div>
</div>
<!-- Endnotes -->
<div class="section" id="section22">
<div class="intro" id="star-end">
<div class = "stars"></div>
<div class = "stars2"></div>
<div class = "stars3"></div>
<div class="container-fluid h-100">
<div class="row h-100">
<div class="col end-notes">
<h2 class="endnoteTitle">SOURCES</h2>
<hr style="width: 75%; background-color: white;">
<h3> Data</h3>
<div class="row">
<div class="col-4 offset-2 align-content-center">
<p><a href="https://www.kaggle.com/agirlcoding/all-space-missions-from-1957">“All Space Missions from 1957", Kraggle</a></p>
</div>
<div class="col-4 align-content-center">
<p><a href="https://www.ucsusa.org/resources/satellite-database">USC Satellite Database</a></p>
</div>
</div>
<h3> Media</h3>
<div class="row">
<div class="col-4 offset-2 align-content-center">
<p><a href="https://www.space.com/space-race.html">What Was the Space Race?</a> </p>
</div>
<div class="col-4 align-content-center">
<p><a href="https://en.wikipedia.org/wiki/Sputnik_1"> Sputnik 1</a> </p>
</div>
</div>
<div class="row">
<div class="col-4 offset-2 align-content-center">
<p><a href="https://buckleyschool.com/magazine/articles/on-this-day-we-choose-to-go-to-the-moon/">Moon Landing</a> </p>
</div>
<div class="col-4 align-content-center">
<p><a href="https://er.jsc.nasa.gov/seh/ricetalk.htm">John F. Kennedy Moon Speech - Rice Stadium</a></p>
</div>
</div>
<div class="row">
<div class="col-4 offset-2 align-content-center">
<p><a href=" https://en.wikipedia.org/wiki/Saturn_V">Saturn V</a> </p>
</div>
<div class="col-4 align-content-center">
<p><a href="https://en.wikipedia.org/wiki/Space_Shuttle">Space Shuttle </a> </p>
</div>
</div>
<div class="row">
<div class="col-4 offset-2 align-content-center">
<p><a href="https://www.forbes.com/sites/startswithabang/2019/05/09/we-have-now-reached-the-limits-of-the-hubble-space-telescope/?sh=67b6aa3a3208">Hubble Space Telescope</a> </p>
</div>
<div class="col-4 align-content-center">
<p><a href="https://en.wikipedia.org/wiki/Falcon_9">Falcon 9</a> </p>
</div>
</div>
<div class="row">
<div class="col-4 offset-2 align-content-center">
<p><a href="https://www.wired.com/story/the-delta-ii-rocket-that-gave-us-gps-and-the-mars-rovers-retires/">Delta II </a> </p>
</div>
<div class="col-4 align-content-center">
<p><a href="https://defpost.com/russia-launches-kosmos-2542-military-satellite-abroad-soyuz-2-rocket/">Kosmos-3</a></p>
</div>
</div>
<div class="row">
<div class="col-4 offset-2 align-content-center">
<p><a href="https://avatars.alphacoders.com/avatars/view/53341">Monkey Astronaut Profile Pic</a></p>
</div>
<div class="col-4 align-content-center">
<p><a href="https://wallpapercools.com/">Nebula Background</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- BOOTSTRAP -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/libraries/fullpage.js"></script>
<script src="//unpkg.com/d3-force-magnetic"></script>
<!--<script type="text/javascript" src="js/libraries/examples.js"></script>-->
<!-- d3 -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js"></script>
<script src="https://d3js.org/d3-geo.v1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-collection/1.0.5/d3-collection.min.js"></script>
<script src="https://d3js.org/d3-timer.v2.min.js"></script>
<script src="js/libraries/d3-tip.js"></script>
<script src="https://unpkg.com/d3-simple-slider"></script>
<script src="https://requirejs.org/docs/release/2.3.6/minified/require.js"></script>
<!--- Add Our JS Files --->
<script src="js/launchvis.js"></script>
<script src="js/brushvis.js"></script>
<script src="js/flightvis.js"></script>
<script src="js/mapbarvis.js"></script>
<script src="js/networkvis.js"></script>
<script src="js/treedata.js"></script>
<script src="js/orbitSystem.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript">
// <!-- toggle the stars on and off for the flight vis-->
$("#starButton").click(function(){
$("#orbitStar1").toggleClass("stars");
$("#orbitStar2").toggleClass("stars2");
$("#orbitStar3").toggleClass("stars3");
});
var myFullpage = new fullpage('#fullpage', {
anchors: ['1', '2', '3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20','21','22','23'],
sectionsColor: ['#C63D0F', '#1BBC9B', '#7E8F7C'],
navigation: true,
navigationPosition: 'right',
navigationTooltips: ['Title', 'Page 2','Space Race','Moon Landing','Post-Space Race','First Question','Industry Visualization','New Eras','Age of Exploration',
'Second Question','Launch Visualization','Hubble & ISS','Commercialization Age','Page 14','Third Question','Rocket Visualization','Delta II & Cosmos','Satellites','Fourth Question',
'Satellite Visualization',"What's next?", 'Creators','Sources']
});
</script>
<script>
var clicks = 0;
function FactClick() {
clicks += 1;
console.log(clicks)
flightVis.wrangleData();
if(clicks>=3) {
console.log("IT WORKS!")
document.getElementById('AgeSelector').style.display = "block";
document.getElementById('countrySelector').style.display = "block";
}
};
</script>
<script src="js/movies.js"></script>
</body>
</html>