-
Notifications
You must be signed in to change notification settings - Fork 13
/
options.html
100 lines (96 loc) · 3.5 KB
/
options.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Himawari 8 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/himawari-8-chrome/">Website</a>
|
<a target="_blank" href="https://github.com/domoritz/himawari-8-chrome/issues/new">Send feedback</a>
</div>
<div>
<label for="image">Image type:</label>
<select id="image">
<option value="D531106">Himawari 8 Visible Light</option>
<option value="INFRARED_FULL">Himawari 8 Infrared</option>
<option value="HIMAWARI_9">Himawari 9</option>
<option value="EPIC">DSCOVR EPIC</option>
<option value="EPIC_ENHANCED">DSCOVR EPIC Enhanced</option>
<option value="GOES_16">GOES 16 (East)</option>
<option value="GOES_16_NATURAL">GOES 16 (East) Natural</option>
<option value="GOES_18">GOES 18 (West)</option>
<option value="GOES_18_NATURAL">GOES 18 (West) Natural</option>
<option value="GOES_19">GOES 19 (Central)</option>
<option value="GOES_19_NATURAL">GOES 19 (Central) Natural</option>
<option value="METEOSAT">Meteosat Prime Natural Colour</option>
<option value="METEOSAT_IODC">Meteosat IODC Natural Colour</option>
</select>
<div class="desc">
<p>
The <a href="https://en.wikipedia.org/wiki/Himawari_(satellites)">Japanese Himawari Satellites</a>
take images of different parts of the spectrum.
</p><p>
You can also choose images from the NASA's
<a href="https://en.wikipedia.org/wiki/Deep_Space_Climate_Observatory#EPIC">EPIC camera on board of the DSCOVR satellite</a>.
This satellite always faces the sunlit side of the Earth.
</p><p>
The <a href="https://en.wikipedia.org/wiki/Geostationary_Operational_Environmental_Satellite">NOAA GOES</a> satellites are geostationary
like Himawari but show the pacific (GOES West) and the Americas (GOES East).
</p>
</p><p>
The <a href="https://www.eumetsat.int/website/home/Satellites/CurrentSatellites/Meteosat/index.html">Meteosat</a>
satellites are geostationary as well, but the Meteosat Prime satellite
is centered at 0°E, while the Indian Ocean Data Coverage (IODC) is
centered at 41.5°E41.5°E41.5°E41.5°E.
</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>
Image credit:
Japan Meteorological Agency (JMA),
National Aeronautics and Space Administration (NASA),
National Oceanic and Atmospheric Adminstration (NOAA),
<span id="year"></span> European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT).
</small>
</p>
<script type="text/javascript" src="lib/browser-polyfill.js"></script>
<script type="text/javascript" src="options.js"></script>
</body>
</html>