athan37 commited on
Commit
f070fc6
1 Parent(s): 9214f0f

lower version

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -64,7 +64,7 @@ with col2:
64
  placeholder = st.empty()
65
  while True:
66
  df = pd.DataFrame.from_dict(load_data(st.session_state["count"]))
67
- df.rename({'Lat' : 'LAT', 'Lng' : 'LON'}, axis='columns', inplace=True)
68
  with placeholder.container():
69
  st.map(df)
70
  if graph_type == 'Line':
 
64
  placeholder = st.empty()
65
  while True:
66
  df = pd.DataFrame.from_dict(load_data(st.session_state["count"]))
67
+ df.rename({'Lat' : 'lat', 'Lng' : 'lon'}, axis='columns', inplace=True)
68
  with placeholder.container():
69
  st.map(df)
70
  if graph_type == 'Line':