-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaylight.py
executable file
·94 lines (76 loc) · 2.89 KB
/
daylight.py
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
#!/usr/bin/env python3
# coding: utf-8
# libraries
from astroplan import Observer
from astropy.time import Time
import datetime
from astroplan import download_IERS_A
import numpy as np
import astropy.units as u
import getopt,sys
def daylength(dayOfYear, lat):
latInRad = np.deg2rad(lat)
declinationOfEarth = 23.45*np.sin(np.deg2rad(360.0*(284.25+dayOfYear)/365))
if -np.tan(latInRad) * np.tan(np.deg2rad(declinationOfEarth)) <= -1.0:
return 24.0
elif -np.tan(latInRad) * np.tan(np.deg2rad(declinationOfEarth)) >= 1.0:
return 0.0
else:
hourAngle = np.rad2deg(np.arccos(-np.tan(latInRad) * np.tan(np.deg2rad(declinationOfEarth))))
return int((2.0*hourAngle/15.0)*(3600))
def main(argv):
date_arg=''
lat_arg=''
long_arg=''
tz_arg=''
try:
opts,args = getopt.getopt(argv,"hd:l:g:z:",["date=","lat=","long=","--tz="])
except getopt.GetoptError:
print("usage: daylight.py (--date <YYYY-mm-dd>) (--lat <latitude>) (--long <longitude>) (--tz <timezone>)")
for opt,arg in opts:
if opt in ("-h", "--help"):
print("usage: daylight.py (--date <YYYY-mm-dd>) (--lat <latitude>) (--long <longitude>) (--tz <timezone>)")
sys.exit()
elif opt in ("-d", "--date"):
date_arg = arg
elif opt in ("-l","--lat"):
lat_arg = arg
elif opt in ("-g","--long"):
long_arg = arg
elif opt in ("-z","--tz"):
tz_arg = arg
if date_arg:
today=datetime.datetime.strptime(date_arg,"%Y-%m-%d")
# print("setting date_arg to "+str(today))
else:
today=datetime.date.today()
# print("setting date_arg to default ("+str(today)+")")
today_date=today.strftime('%Y-%m-%d')
today_day=int(today.strftime('%j'))-1
if today_day % 14 == 0:
download_IERS_A()
if lat_arg:
actual_lat=float(lat_arg)
else:
actual_lat=55.9533
if long_arg:
actual_long=float(long_arg)
else:
actual_long=-3.1883
if tz_arg:
actual_tz=tz_arg
else:
actual_tz="UTC"
loc = Observer(latitude=actual_lat*u.deg, longitude=actual_long*u.deg, elevation=0*u.m,timezone=actual_tz)
print(loc)
t = Time('{} 12:00:00'.format(today_date), precision=0)
sun_rise = (loc.sun_rise_time(t, which="nearest"))
sun_set = (loc.sun_set_time(t, which="nearest"))
sunup = str(sun_rise.iso)
sundown = str(sun_set.iso)
today_daylight=datetime.timedelta(seconds=daylength(today_day,actual_lat),microseconds=0)
daylight = str(today_daylight)
log_message="day "+str(today_day)+" | tz "+actual_tz+" | lat "+str(actual_lat)+" | long "+str(actual_long)+" | daylight "+daylight+" | dawn "+ sunup.split()[1].split('.')[0] + " | dusk " + sundown.split()[1].split('.')[0]
print (log_message)
if __name__ == "__main__":
main(sys.argv[1:])