fschwartzer commited on
Commit
e949094
1 Parent(s): a580030

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -116,6 +116,8 @@ if selected_coords == 'Custom' and radius_visible:
116
  with st.container():
117
  if selected_coords == 'Custom':
118
  st.map(filtered_data, zoom=zoom_level, use_container_width=True)
 
 
119
 
120
  # Display the predicted Vunit values if applicable
121
  if 'Predicted_Vunit' in filtered_data.columns:
 
116
  with st.container():
117
  if selected_coords == 'Custom':
118
  st.map(filtered_data, zoom=zoom_level, use_container_width=True)
119
+ elif selected_coords == 'Random':
120
+ st.map(data, zoom=zoom_level, use_container_width=True)
121
 
122
  # Display the predicted Vunit values if applicable
123
  if 'Predicted_Vunit' in filtered_data.columns: