-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstarchart_old.html
73 lines (65 loc) · 2.96 KB
/
starchart_old.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<title>Park★Sky</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<!-- Font Awesome Pro (Angel) -->
<script src="https://kit.fontawesome.com/9338ddc728.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/css/style.css" />
<!-- styling specifically for star chart & associated table -->
<link rel="stylesheet" href="assets/css/starChart.css" />
</head>
<body>
<!-- Site Header -->
<header id="site-header"></header>
<!-- Main -->
<main class="columns">
<aside id="infobox" class="column is-5 ml-5"></aside>
<div id="starChartContainer" class="column">
<div class="container mt-5" id="starchartOptions">
<!-- STAR CHART OPTIONS
showPlanets: true,
showEquator: false,
showEcliptic: false,
showMilkyWay: false,
showConLines: false,
showConLab: false,
showDayNight: false (do not provide to user [for now])
-->
<button id="showPlanets" data-toggle="Planets" class="button is-info is-light mx-2">Planets</button>
<button id="showEquator" data-toggle="Equator" class="button is-info is-light mx-2">Equator</button>
<button id="showEcliptic" data-toggle="Ecliptic" class="button is-info is-light mx-2">Ecliptic</button>
<button id="showMilkyWay" data-toggle="MilkyWay" class="button is-info is-light mx-2">Milky Way</button>
<button id="showConLines" data-toggle="ConLines" class="button is-info is-light mx-2">Constellation Lines</button>
<button id="showConLab" data-toggle="ConLab" class="button is-info is-light mx-2">Constellation Labels</button>
</div>
</div>
</main>
<!-- Site Footer -->
<footer id="site-footer" class="footer"></footer>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<!-- dayjs -->
<script src="https://unpkg.com/[email protected]/dayjs.min.js"></script>
<!-- starChart -->
<script src="assets/js/starChart/core_min.js"></script>
<script src="assets/js/starChart/sseph_min.js"></script>
<script src="assets/js/starChart/src/brightStars.js"></script>
<script src="assets/js/starChart/src/riseSetTimes.js"></script>
<script src="assets/js/starChart/src/sidereal.js"></script>
<!--
Team Scripts
* FUNCTIONS is for the functions that can be called
* script.js has where "setup" functionality (e.g. the search dropdown) is handled
* starChart.js is where the star chart related functions are called
* parkData.js is where the park data from both NPS & Wikipedia is handled
-->
<script src="assets/js/functions.js"></script>
<script src="assets/js/script.js"></script>
<script src="assets/js/starChart.js"></script>
</body>
</html>