Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
·
51799e9
1
Parent(s):
37d9b55
Update app.py
Browse files
app.py
CHANGED
@@ -67,8 +67,10 @@ data = pd.read_excel('data_nexus.xlsx')
|
|
67 |
# Initialize variables to avoid NameError
|
68 |
radius_visible = True
|
69 |
custom_address_initial = 'Centro, Lajeado - RS, Brazil' # Initial custom address
|
70 |
-
custom_lat = data['latitude'].median()
|
71 |
-
|
|
|
|
|
72 |
radius_in_meters = 150000
|
73 |
filtered_data = data # Initialize with the entire dataset
|
74 |
|
|
|
67 |
# Initialize variables to avoid NameError
|
68 |
radius_visible = True
|
69 |
custom_address_initial = 'Centro, Lajeado - RS, Brazil' # Initial custom address
|
70 |
+
#custom_lat = data['latitude'].median()
|
71 |
+
custom_lat = -29.7168
|
72 |
+
#custom_lon = data['longitude'].median()
|
73 |
+
custom_lon = -52.4943
|
74 |
radius_in_meters = 150000
|
75 |
filtered_data = data # Initialize with the entire dataset
|
76 |
|