Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
68fd81d
1
Parent(s):
4bb6ee4
Update app.py
Browse files
app.py
CHANGED
@@ -92,11 +92,11 @@ data = pd.read_excel('data_nexus.xlsx')
|
|
92 |
|
93 |
# Initialize variables to avoid NameError
|
94 |
radius_visible = True
|
95 |
-
custom_address_initial = 'Centro,
|
96 |
#custom_lat = data['latitude'].median()
|
97 |
-
custom_lat = -29.
|
98 |
#custom_lon = data['longitude'].median()
|
99 |
-
custom_lon = -
|
100 |
radius_in_meters = 150000
|
101 |
filtered_data = data # Initialize with the entire dataset
|
102 |
|
@@ -160,7 +160,7 @@ with st.sidebar:
|
|
160 |
data = data[data['Fonte'] == selected_fonte]
|
161 |
|
162 |
# Add a dropdown for filtering "Tipo"
|
163 |
-
selected_tipo = st.selectbox('Tipo de imóvel', data['Tipo'].unique(), index=data['Tipo'].unique().tolist().index('
|
164 |
data_tipo = data[data['Tipo'] == selected_tipo]
|
165 |
|
166 |
custom_address = st.text_input('Informe o endereço', custom_address_initial)
|
@@ -179,9 +179,6 @@ with st.sidebar:
|
|
179 |
except (IndexError, GeocoderTimedOut):
|
180 |
st.error("Erro: Não foi possível geocodificar o endereço fornecido. Por favor, verifique e tente novamente.")
|
181 |
|
182 |
-
# Slider for setting the zoom level
|
183 |
-
zoom_level = st.slider('Nível de zoom', min_value=1, max_value=15, value=zoom_level)
|
184 |
-
|
185 |
# Conditionally render the radius slider
|
186 |
if radius_visible:
|
187 |
radius_in_meters = st.number_input('Selecione raio (em metros)', min_value=0, max_value=100000, value=2000)
|
|
|
92 |
|
93 |
# Initialize variables to avoid NameError
|
94 |
radius_visible = True
|
95 |
+
custom_address_initial = 'Centro, Lajeado - RS, Brazil' # Initial custom address
|
96 |
#custom_lat = data['latitude'].median()
|
97 |
+
custom_lat = -29.4605546032216
|
98 |
#custom_lon = data['longitude'].median()
|
99 |
+
custom_lon = -51.96836427528051
|
100 |
radius_in_meters = 150000
|
101 |
filtered_data = data # Initialize with the entire dataset
|
102 |
|
|
|
160 |
data = data[data['Fonte'] == selected_fonte]
|
161 |
|
162 |
# Add a dropdown for filtering "Tipo"
|
163 |
+
selected_tipo = st.selectbox('Tipo de imóvel', data['Tipo'].unique(), index=data['Tipo'].unique().tolist().index('Apartamento'))
|
164 |
data_tipo = data[data['Tipo'] == selected_tipo]
|
165 |
|
166 |
custom_address = st.text_input('Informe o endereço', custom_address_initial)
|
|
|
179 |
except (IndexError, GeocoderTimedOut):
|
180 |
st.error("Erro: Não foi possível geocodificar o endereço fornecido. Por favor, verifique e tente novamente.")
|
181 |
|
|
|
|
|
|
|
182 |
# Conditionally render the radius slider
|
183 |
if radius_visible:
|
184 |
radius_in_meters = st.number_input('Selecione raio (em metros)', min_value=0, max_value=100000, value=2000)
|