fschwartzer commited on
Commit
9c795d0
1 Parent(s): d5bb172

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -31,8 +31,8 @@ with st.sidebar:
31
  # Dropdown to select specific coordinates
32
  selected_coords = st.selectbox('Selecione Coordenadas', ['Random', 'Custom'])
33
  if selected_coords == 'Custom':
34
- custom_lat = st.number_input('Enter Latitude', value=0.0)
35
- custom_lon = st.number_input('Enter Longitude', value=0.0)
36
  else:
37
  custom_lat, custom_lon = data['latitude'].mean(), data['longitude'].mean()
38
 
 
31
  # Dropdown to select specific coordinates
32
  selected_coords = st.selectbox('Selecione Coordenadas', ['Random', 'Custom'])
33
  if selected_coords == 'Custom':
34
+ custom_lat = st.number_input('Enter Latitude', value=-29.45086)
35
+ custom_lon = st.number_input('Enter Longitude', value=-51.9847)
36
  else:
37
  custom_lat, custom_lon = data['latitude'].mean(), data['longitude'].mean()
38