-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (125 loc) · 4.29 KB
/
Copy pathindex.html
File metadata and controls
125 lines (125 loc) · 4.29 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, viewport-fit=cover" />
<title>Satvis - 3D Satellite Tracker & Sky View</title>
<link rel="canonical" href="https://satvis.space/" />
<meta
name="description"
content="Track 12,000+ satellites live on a 3D globe, or point your phone at the sky to spot them. Starlink, GPS, the ISS and more. Pass prediction, alerts, offline PWA."
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Satvis" />
<meta property="og:url" content="https://satvis.space/" />
<meta property="og:title" content="Satvis - 3D Satellite Tracker & Sky View" />
<meta property="og:description" content="Track 12,000+ satellites live on a 3D globe, or point your phone at the sky to spot them. Pass prediction, alerts, offline PWA." />
<meta name="twitter:card" content="summary" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"@id": "https://satvis.space/#app",
"name": "Satvis",
"url": "https://satvis.space/",
"description": "Satellite orbit visualization and pass prediction. Tracks 12,000+ satellites on a 3D globe from CelesTrak element sets, predicts passes for a ground station, and aims a ground-level sky view with a phone's compass.",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Web, iOS",
"browserRequirements": "Requires WebGL",
"isAccessibleForFree": true,
"license": "https://opensource.org/licenses/MIT",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "EUR" },
"author": { "@type": "Person", "name": "Florian Mauracher" },
"sameAs": ["https://github.com/Flowm/satvis", "https://apps.apple.com/us/app/satvis/id1441084766"]
}
</script>
<style>
/* iOS samples a home-screen app's status bar from the page's top edge once at
launch and never re-samples, so the top edge has to stay black. The padding is
what keeps the teal card off it. */
#shell {
position: fixed;
inset: 0;
z-index: 10;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1.25rem;
background: #000000;
color: #edffffcc;
font: 1.05rem/1.4 sans-serif;
text-align: center;
transition: opacity 0.25s ease-out;
}
#shell.is-done {
opacity: 0;
pointer-events: none;
}
.shell-card {
max-width: min(26rem, 100%);
padding: 2rem 1.75rem 1.75rem;
border-radius: 20px;
background: #0b222d;
}
#shell h1 {
margin: 0;
color: #edffff;
font-weight: 400;
font-size: clamp(2.25rem, 10vw, 4rem);
line-height: 1.1;
}
#shell h1 span {
display: block;
margin-top: 0.6rem;
color: #edffffcc;
font-size: 0.85rem;
line-height: 1.4;
}
#shell p {
margin: 0.6rem 0 0;
font-size: 0.85rem;
}
#shell a {
color: #7fd2ea;
}
.shell-pulse {
color: #7fd2ea99;
animation: shell-pulse 1.4s ease-in-out infinite;
}
.shell-about {
position: absolute;
inset: auto 0 1.25rem;
margin: 0;
}
@keyframes shell-pulse {
50% {
opacity: 0.35;
}
}
@media (prefers-reduced-motion: reduce) {
#shell,
.shell-pulse {
transition: none;
animation: none;
}
}
</style>
</head>
<body>
<div id="cesiumContainer"></div>
<div id="shell">
<div class="shell-card">
<h1>
satvis.space
<span>3D satellite tracker and pass predictor</span>
</h1>
<p class="shell-pulse">Loading the globe…</p>
<noscript><p>The globe needs JavaScript.</p></noscript>
</div>
<p class="shell-about"><a href="/about">About</a></p>
</div>
<div id="app" class="dark isolate" v-cloak></div>
<script type="module" src="/src/app.ts"></script>
</body>
</html>