-
Notifications
You must be signed in to change notification settings - Fork 0
/
event-names.js
95 lines (82 loc) · 2.14 KB
/
event-names.js
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
/**
* The beginning of morning astronomical twilight,
* when the sun is 18° to 12° below the horizon.
*
* Also known as "astronomical dawn".
*/
module.exports.NIGHT_END = 'nightEnd';
/**
* The beginning of morning nautical twilight,
* when the sun is 12° to 6° below the horizon.
*/
module.exports.NAUTICAL_DAWN = 'nauticalDawn';
/**
* The beginning of morning civil twilight,
* when the sun is less than 6° below the horizon.
*
* Also known as "civil dawn".
*/
module.exports.DAWN = 'dawn';
/**
* The instant that the top edge of the sun
* has risen above the horizon.
*/
module.exports.SUNRISE = 'sunrise';
/**
* The instant that the bottom edge of the sun
* has risen above the horizon, and the whole
* sun becomes visible in the sky.
*/
module.exports.SUNRISE_END = 'sunriseEnd';
/**
* The morning golden hour, where the sun's low angle
* makes light soft and especially good for
* photography, ends.
*/
module.exports.GOLDEN_HOUR_END = 'goldenHourEnd';
/**
* The point where the sun has reached the peak
* of its arc in the sky.
*/
module.exports.SOLAR_NOON = 'solarNoon';
/**
* The evening golden hour, where the sun's low angle
* makes light soft and especially good for
* photography, ends.
*/
module.exports.GOLDEN_HOUR = 'goldenHour';
/**
* The instant that the bottom edge of the sun
* has meets the horizon.
*/
module.exports.SUNSET_START = 'sunsetStart';
/**
* The instant that the top edge of the sun
* has fallen below the horizon. This is the
* beginning of civil twilight.
*/
module.exports.SUNSET = 'sunset';
/**
* The beginning of nautical twilight, where
* the sun is 6° to 12° below the horizon.
*
* Also known as "civil dusk".
*/
module.exports.DUSK = 'dusk';
/**
* The beginning of astronomical twilight, where
* the sun is 12° to 18° below the horizon.
*/
module.exports.NAUTICAL_DUSK = 'nauticalDusk';
/**
* The end of astronomical twilight, when it has
* become dark enough for astronomical observations.
*
* Also known as "astronomical dusk".
*/
module.exports.NIGHT = 'night';
/**
* The darkest instant of night, when the sun is
* at its lowest point.
*/
module.exports.NADIR = 'nadir';