Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_sun_angle solution in Uncategorized category for Sun Angle by Jon_Red
def sun_angle(t):
a,b=int(t[:2])*15+int(t[3:])/4-90,"I don't see the sun!"
return[[a,int(a)][a.is_integer()],b][a<0 or a>180]
April 10, 2020