Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
9c795d0
1
Parent(s):
d5bb172
Update app.py
Browse files
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
|
35 |
-
custom_lon = st.number_input('Enter Longitude', value
|
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 |
|