-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (65 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="libraries/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href='https://unpkg.com/[email protected]/dist/maplibre-gl.css' rel='stylesheet' />
<script src='https://unpkg.com/[email protected]/dist/maplibre-gl.js'></script>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/global/luxon.min.js"></script>
<script src="libraries/js/astronomy.browser.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>astro_photo_suitability</title>
</head>
<body class="d-flex flex-column">
<!-- Header Row -->
<header class=" container-fluid bg-dark text-white">
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="text-center">Astrophotography Suitability Dashboard
<a href="https://github.com/rue-a/AstroPhotoSuitability/blob/master/README.md">ⓘ</a>
</h1>
</div>
</div>
</div>
</header>
<!-- Main Content Area -->
<div id="main" class="main row">
<div class="col-md-6">
<div class="row justify-content-center">
<div id='map'></div>
<script src="map.js"></script>
</div>
<div class="row justify-content-center">
<div id="heatmap"></div>
<script src="js/aggregate_data.js"></script>
<script src="js/build_heatmap.js"></script>
</div>
</div>
<div class="col-md-6">
<div id="skymap" class="row justify-content-center"></div>
<script src="js/build_sky_map.js"></script>
</div>
</div>
<!-- Footer Row -->
<footer class="container-fluid bg-dark text-white mt-auto">
<div class="container">
<div class="row">
<div class="col-12 footer-text">
<a href="https://github.com/rue-a/AstroPhotoSuitability">source code</a>,
<a href="https://github.com/rue-a/AstroPhotoSuitability/blob/master/LICENSE">license</a>,
<!-- <a
href="https://www.paypal.com/donate/?hosted_button_id=WGQEMQLK6PRQ8">donate</a> | -->
<b>Attributions:</b>
<a href="https://github.com/cosinekitty/astronomy">Astronomy Engine</a>,
<a href="https://open-meteo.com/">Open-Meteo</a>,
<a href="https://d3js.org/">D3</a>,
<a href="https://getbootstrap.com/">Bootstrap</a>
</div>
</div>
</div>
</footer>
</body>
</html>