-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1.44 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
<!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>midnightgospel</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="preamble">
<h1>Clancy's Multiverse Simulator</h1>
<p>Exoplanets cast as "Dying Worlds" from <span style="font-style: italic;">The Midnight Gospel</span>
(Watch from 0:41 in this <a
href="https://www.youtube.com/watch?v=ka-8KJOtFBk&ab_channel=Netflix">video</a>).
Data Source: <a
href="https://exoplanetarchive.ipac.caltech.edu/cgi-bin/TblView/nph-tblView?app=ExoTbls&config=cumulative">Kepler
Objects of Interest table (cumulative)</a>,
NASA Exoplanet Archive.</p>
<p>Continents are generated from randomly placed vertices. The number of vertices are the full earth days
between planetary transits (orbital period). </p>
<p>Depth of atmosphere is a function of the temperature of the planet.</p>
<p>Red <mark>X</mark> is a FALSE POSITIVE; disproved as an exoplanet.</p>
<p>New planets generated on load. Kepler name if available.</p>
</div>
<div class="gridcontainer"></div>
<script src="midnightgospel.js"></script>
</body>
</html>