diff --git a/scripts/plotly_streamlit.py b/scripts/plotly_streamlit.py index 6153d4e12..c12af9659 100755 --- a/scripts/plotly_streamlit.py +++ b/scripts/plotly_streamlit.py @@ -12,6 +12,7 @@ import plotly.express as px from sklearn.preprocessing import normalize from suntime import Sun +from utils.helpers import get_settings profile = False if profile: @@ -181,8 +182,9 @@ def time_resample(df, resample_time): def sunrise_sunset_scatter(date_range): - latitude = df2['Lat'][0] - longitude = df2['Lon'][0] + conf = get_settings() + latitude = conf.getfloat('LATITUDE') + longitude = conf.getfloat('LONGITUDE') sun = Sun(latitude, longitude)