-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathoptions.html
More file actions
91 lines (87 loc) · 3.07 KB
/
Copy pathoptions.html
File metadata and controls
91 lines (87 loc) · 3.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Satellite New Tab Page Options</title>
<style type="text/css">
label {
font-weight: bold;
}
.control {
margin-top: 2em;
}
.top-links {
text-align: right;
margin-bottom: 1.5em;
}
.desc {
padding-top: 0.5em;
font-size: 0.9em;
color: #444;
}
.desc p {
margin-top: 0;
margin-bottom: 0.5em;
}
.extraOptions {
margin-top: 2em;
}
.extraOptions small {
margin-left: 18px;
}
</style>
</head>
<body>
<div class="top-links">
<a target="_blank" href="https://github.com/domoritz/satellite-new-tab/">Website</a>
|
<a target="_blank" href="https://github.com/domoritz/satellite-new-tab/issues/new">Send feedback</a>
</div>
<div>
<label for="image">Image type:</label>
<select id="image">
<option value="HIMAWARI_9">Himawari-9 (140.7°E)</option>
<option value="GOES_EAST">GOES-East (75.2°W)</option>
<option value="GOES_WEST">GOES-West (137°W)</option>
<option value="METEOSAT">Meteosat 0°</option>
<option value="METEOSAT_IODC">Meteosat IODC (45.5°E)</option>
<option value="MTG">Meteosat-12 / MTG (0°)</option>
<option value="GK2A">GK2A (128°E)</option>
<option value="EPIC">DSCOVR EPIC</option>
<option value="EPIC_ENHANCED">DSCOVR EPIC Enhanced</option>
</select>
<div class="desc">
<p>
Geostationary satellites — <a href="https://en.wikipedia.org/wiki/Himawari_(satellites)">Himawari-9</a> (Asia/Pacific),
<a href="https://en.wikipedia.org/wiki/Geostationary_Operational_Environmental_Satellite">GOES-East/West</a> (Americas/Pacific),
<a href="https://www.eumetsat.int/meteosat-second-generation">Meteosat</a> (Europe/Africa, 0° and Indian Ocean),
<a href="https://www.eumetsat.int/meteosat-third-generation">MTG</a>, and
<a href="https://en.wikipedia.org/wiki/GEO-KOMPSAT-2">GK2A</a> (Korea) —
shown as clean GeoColor full-disk imagery (true color by day, infrared at night)
via <a href="https://rammb-slider.cira.colostate.edu/">CIRA SLIDER</a>.
</p><p>
<a href="https://en.wikipedia.org/wiki/Deep_Space_Climate_Observatory#EPIC">DSCOVR EPIC</a>
shows the whole sunlit Earth from ~1.5 million km away.
</p>
</div>
<div class="extraOptions">
<label><input type="checkbox" id="animated"> Animated</label><br/>
<small>Animate the earth when it moves in.</small>
</div>
</div>
<div class="control">
<button id="save" class="default">Save</button> <span id="status"></span>
</div>
<p>
<small>
Imagery: NOAA / CIRA / RAMMB SLIDER,
Japan Meteorological Agency (JMA),
National Aeronautics and Space Administration (NASA),
Korea Meteorological Administration (KMA).
Meteosat imagery contains modified <span id="year"></span> EUMETSAT data.
</small>
</p>
<script type="text/javascript" src="lib/browser-polyfill.js"></script>
<script type="text/javascript" src="options.js"></script>
</body>
</html>