-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
171 lines (128 loc) · 5.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>All about ISS</title>
<link rel="icon" href="components/favicon.ico">
<link
href='https://fonts.googleapis.com/css?family=Lato:300,400,700'
rel="stylesheet"
/>
<link
rel="stylesheet"
href="styles.css"
type="text/css"
media="all"
/>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
</head>
<body>
<div id="loader"></div>
<div id="particles-js"></div>
<div class = "title">
<span>INTERNATIONAL SPACE STATION</span>
</div>
<div id="match-details-curtain">
<div class="app-main">
<div class="chart-row three">
<div class="chart-container-wrapper">
<div class="chart-container">
<div class="chart-info-wrapper">
<h2>Ground Point</h2>
<span id="1">...° North</span><br>
<span id="2">...° West</span>
</div>
<div class="chart-svg">
<img src="/components/ss/compass (3).png"></img>
</div>
</div>
</div>
<div class="chart-container-wrapper">
<div class="chart-container">
<div class="chart-info-wrapper">
<h2>Orbital Speed</h2>
<span id="ms">...M/s </span><br>
<span id="kms"> ...Km/h</span>
</div>
<div class="chart-svg">
<img src="/components/ss/speedometer.png"></img>
</div>
</div>
</div>
<div class="chart-container-wrapper">
<div class="chart-container">
<div class="chart-info-wrapper">
<h2>Altitude & Time</h2>
<span id = "alt">Calculating</span> <span id="show-km">KM</span><br>
<span id = "time">08:30 AM</span>
</div>
<div class="chart-svg">
<img src="/components/ss/internet.png"></img>
</div>
</div>
</div>
</div>
<div class="chart-row two">
<div class="chart-container-wrapper big">
<div class="chart-container">
<div class="chart-container-header">
<div id="match-details-container">
<div class = "vertical"></div>
<span id="tit">CURRENT LOCATION</span>
<ul>
<li class = "long">Longitude : <span id= "longi"></span> </li> <span id="human-loc" > Human Readable Location will be available within seconds.</span>
<li class = "lat">Latitude : <span id = lati></span></li>
</ul>
<div class="btn-container">
<button id="srch">Locate on Globe</button><button id="srch2">Locate on Maps</button>
</div>
</div>
</div>
</div>
</div>
<div class="chart-container-wrapper small">
<div class="chart-container applicants">
<div class="chart-container-header">
<h2>Astronauts Currently at ISS : <span id="num"> 7</span></h2>
</div>
<ul id="peeps">
<span>Loading Names of Astronauts...</span>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="ccontainer">
<img src="components/ss/placeholder (2).png" class="iss" width="50" height="50">
<img src="/components/ss/Webp.net-resizeimage.jpg" alt="Nature" class="responsive" width="1075" height="500">
<div class="container2">
<p id="texxt">The <img src="components/ss/placeholder (2).png" width="20" height="20"> Shows the current position of ISS on the World Map with a refresh rate of 1/2/s </p>
</div>
</div>
<div class='header'>
<div class='header-img'></div>
<div class='overlay'></div>
<div class='catch'>
<h1>INTERNATION SPACE STATION</h1>
<h3>The International Space Station is moving at close to 28,000 km/h so its location changes really fast! Where is it right now?</h3>
<div class="button" id = "btn-link">Read More</div>
</div>
</div>
<div class='content'>
<div class='container'>
<p class='bold'>"For once you have tasted flight you will walk the earth with your eyes turned skywards, for there you have been and there you will long to return."<br><br>Leonardo Da Vinci</p>
</div>
<div id= "content-faq">
<span id = "faq">Some Frequently Asked Questions :</span>
</div>
<button type="button" class="collapsible">What is "Currently, ISS is above a place on Globe that can't be Geocoded." Error ?</button>
<div class="clpscontent">"Currently, ISS is above a place on Globe that can't be Geocoded" means ISS is at some place where humans don't/can't live, examples : Indain Ocean, Antarctica, Atlantic Ocean and many other oceans and continents, which don't have subregions, cities, substates so API is usually unable to Reverse Geocode these kind of locations. Because of the path which ISS follows 60-70% of time it will show the same error.</div>
<button type="button" class="collapsible">If a location can't be Reverse Geocoded, how can we locate it on the globe ?</button>
<div class="clpscontent">Pretty naive question, but we can locate any Longitude and Latitude on globe it does not needs proper name to that region. </div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="script.js"></script>
</html>