Update solarconditions.py

This commit is contained in:
SpudGunMan
2024-06-19 21:35:52 -07:00
parent 5e5f8e5905
commit bbf5ff3154

View File

@@ -113,7 +113,7 @@ def get_moon(lat=0, lon=0):
moon_table['azimuth'] = moon.az
moon_table['altitude'] = moon.alt
moon_table['rise_time'] = ephem.localtime(obs.next_rising(moon)).strftime('%a %d %I:%M')
moon_table['set_time'] = ephem.localtime(obs.next_rising(moon)).strftime('%a %d %I:%M')
moon_table['set_time'] = ephem.localtime(obs.next_setting(moon)).strftime('%a %d %I:%M')
moon_table['next_full_moon'] = ephem.localtime(obs.next_full_moon()).strftime('%a %d %I:%M')
moon_table['next_new_moon'] = ephem.localtime(obs.next_new_moon()).strftime('%a %d %I:%M')