Read lat/lon from config

This commit is contained in:
cdkl
2024-03-13 19:32:40 -04:00
committed by Nachtzuster
parent 37b023b84d
commit a5e88f9c77
+4 -2
View File
@@ -12,6 +12,7 @@ from sqlite3 import Connection
import plotly.express as px import plotly.express as px
from sklearn.preprocessing import normalize from sklearn.preprocessing import normalize
from suntime import Sun from suntime import Sun
from utils.helpers import get_settings
profile = False profile = False
if profile: if profile:
@@ -181,8 +182,9 @@ font_size = 15
def sunrise_sunset_scatter(date_range): def sunrise_sunset_scatter(date_range):
latitude = df2['Lat'][0] conf = get_settings()
longitude = df2['Lon'][0] latitude = conf.getfloat('LATITUDE')
longitude = conf.getfloat('LONGITUDE')
sun = Sun(latitude, longitude) sun = Sun(latitude, longitude)