Skip to content

Commit

Permalink
Restore old lat/lon determination
Browse files Browse the repository at this point in the history
We'll enhance this separately
  • Loading branch information
cdkl authored Mar 12, 2024
1 parent 7189f24 commit d9ca94b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/plotly_streamlit.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ def time_resample(df, resample_time):


def sunrise_sunset_scatter(date_range):
latitude = df2['Lat'][-1]
longitude = df2['Lon'][-1]
latitude = df2['Lat'][0]
longitude = df2['Lon'][0]

sun = Sun(latitude, longitude)

Expand Down

0 comments on commit d9ca94b

Please sign in to comment.