-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.html
66 lines (66 loc) · 4.9 KB
/
credits.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--add descriptive attributes to improve SEO-->
<meta charset="UTF-8">
<meta name="author" content="Newt Powers, Calvin Crady">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<!--responsive web design-->
<title>Orrery Education</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Orrery Model</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="app.html">Play</a>
</li>
<li class="nav-item">
<a class="nav-link" href="learn.html">Learn</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="credits.html">Credits</a>
</li>
</ul>
</div>
</div>
</nav>
<h2>About This Project</h2>
<p>This project was originally created in 48 hours for the 2024 <a href="https://www.spaceappschallenge.org/">NASA Space Apps Challenge</a> hackathon by <a href="https://github.com/CCrady">Calvin Crady</a> and <a href="https://github.com/newt-powers">Newt Powers</a>. It has since been expanded upon by Calvin. <a href="https://github.com/CCrady/orrery/">The source is available on Github.</a></p>
<h2>Sources</h2>
<p>We took information from the following sources:</p>
<ul>
<li><a href="https://ssd.jpl.nasa.gov/planets/approx_pos.html">Approximate Positions of the Planets</a> (NASA)</li>
<li><a href="https://ssd.jpl.nasa.gov/sb/elem_tables.html">Small-Body Element Tables</a> (NASA)</li>
<li><a href="https://ssd.jpl.nasa.gov/tools/sbdb_query.html">Small-Body Database Query</a> (NASA)</li>
<li><a href="https://www.britannica.com/science/orrery-astronomical-model">Orrery</a> (Encyclopedia Britannica</li>
<li><a href="https://en.wikipedia.org/wiki/Semi-major_and_semi-minor_axes">Semi-major and semi-minor axes</a> (Wikipedia)</li>
<li><a href="https://en.wikipedia.org/wiki/Longitude_of_periapsis">Longitude of periapsis</a> (Wikipedia)</li>
<li><a href="https://waelyasmina.net/articles/how-to-make-an-object-rotate-around-another-object-in-three-js/">How to Make an Object Rotate Around Another Object in Three.js</a> (Wael Yasmina)</li>
<li><a href="https://nasa.github.io/mission-viz/X3Dom/20150611_WebBasedMissionVisualizationSystem.pdf">Web Based Space Mission Visualization System</a> (Daniel O’Neil)</li>
<li><a href="https://w3schools.com/">W3Schools</a></li>
<li><a href="https://threejs.org/docs/">three.js documentation</a></li>
<li><a href="https://vite.dev/config/">Vite config documentation</a></li>
</ul>
<p>The images on the website were taken from the following sources:</p>
<ul>
<li><a href="Orbit1.svg.png">Orbit1.svg.png</a> from <a href="https://commons.wikimedia.org/wiki/File:Orbit1.svg">File:Orbit1.svg</a> (Wikimedia Commons), licenced under the <a href="https://creativecommons.org/licenses/by-sa/3.0/deed.en">Creative Commons Attribution-Share Alike 3.0 Unported</a> license and used as-is.</li>
<li><a href="space.jpg">space.jpg</a> from <a href="https://blenderartists.org/t/space-background/660743">"Space Background"</a> (blenderartists.org). It has no formal license, but the author allows its use in non-commercial projects.</li>
<li><a href="Keplerian-formula.png">Keplerian-formula.png</a> is a screenshot of the web page <a href="https://ssd.jpl.nasa.gov/planets/approx_pos.html">"Approximate Positions of the Planets"</a> (NASA).</li>
</ul>
<p>The textures of the planets and skymap were taken from the following sources:</p>
<ul>
<li>Skymap downloaded from <a href="https://commons.wikimedia.org/wiki/File:ESO_-_Milky_Way.jpg">Wikimedia Commons</a>, ultimately from <a href="https://www.eso.org/public/images/eso0932a/">The European Southern Observatory</a>. Created by Serge Brunier and licensed under the <a href="https://creativecommons.org/licenses/by/4.0/deed.en">Creative Commons Attribution 4.0 International</a> license. The version hosted here is downscaled from the original.</li>
<!-- TODO: credit the planet texture sources -->
</u>
</body>