diff options
author | Mattias Andrée <maandree@kth.se> | 2016-07-06 20:18:11 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-07-06 20:18:11 +0200 |
commit | bee253f496498c658c89e70611eb51b4fbf8cca3 (patch) | |
tree | 7f4f5366c18b19c8cee335b208a70b8580798200 /src/plugins | |
parent | Use the constants from solar-python (diff) | |
download | xpybar-bee253f496498c658c89e70611eb51b4fbf8cca3.tar.gz xpybar-bee253f496498c658c89e70611eb51b4fbf8cca3.tar.bz2 xpybar-bee253f496498c658c89e70611eb51b4fbf8cca3.tar.xz |
Doc solar-python dep + add golden hour and blue hour1.15
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/solar.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/plugins/solar.py b/src/plugins/solar.py index 6873189..038e71b 100644 --- a/src/plugins/solar.py +++ b/src/plugins/solar.py @@ -86,6 +86,21 @@ class Solar: amateur astronomical twilight, measured in degrees ''' + SOLAR_ELEVATION_RANGE_GOLDEN_HOUR = solar_python.SOLAR_ELEVATION_RANGE_GOLDEN_HOUR + ''' + :(float, float) The Sun's lowest and highest elevation during + the golden "hour" (also known as magic hour), + measured in degrees. These elevations are + approximate. + ''' + + SOLAR_ELEVATION_RANGE_BLUE_HOUR = solar_python.SOLAR_ELEVATION_RANGE_BLUE_HOUR + ''' + :(float, float) The Sun's lowest and highest elevation during + the blue "hour", measured in degrees. These + elevations are approximate. + ''' + EQUINOX = 0 SUMMER = 1 |