Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -231,21 +231,22 @@ The Gradio app generates dynamic HTML files and stores them in a static director
|
|
231 |
def setup_basemap_data():
|
232 |
# get data.
|
233 |
print("getting basemap data...")
|
234 |
-
basedata_file= requests.get(
|
235 |
-
|
236 |
-
)
|
237 |
# Write the response content to a .bz file in the static directory
|
238 |
-
static_dir = Path("static")
|
239 |
-
static_dir.mkdir(exist_ok=True)
|
240 |
-
bz_file_name = "100k_filtered_OA_sample_cluster_and_positions.bz"
|
241 |
-
bz_file_path = static_dir / bz_file_name
|
242 |
-
|
243 |
-
with open(bz_file_path, "wb") as f:
|
244 |
-
f.write(basedata_file.content)
|
245 |
-
|
246 |
-
|
247 |
|
248 |
-
basedata_df = load(
|
|
|
249 |
|
250 |
|
251 |
return basedata_df
|
|
|
231 |
def setup_basemap_data():
|
232 |
# get data.
|
233 |
print("getting basemap data...")
|
234 |
+
# basedata_file= requests.get(
|
235 |
+
# "https://www.maxnoichl.eu/full/oa_project_on_scimap_background_data/100k_filtered_OA_sample_cluster_and_positions.bz"
|
236 |
+
# )
|
237 |
# Write the response content to a .bz file in the static directory
|
238 |
+
# static_dir = Path("static")
|
239 |
+
# static_dir.mkdir(exist_ok=True)
|
240 |
+
# bz_file_name = "100k_filtered_OA_sample_cluster_and_positions.bz"
|
241 |
+
# bz_file_path = static_dir / bz_file_name
|
242 |
+
#
|
243 |
+
# with open(bz_file_path, "wb") as f:
|
244 |
+
# f.write(basedata_file.content)
|
245 |
+
#
|
246 |
+
# # Load the data from the saved .bz file
|
247 |
|
248 |
+
basedata_df = load("100k_filtered_OA_sample_cluster_and_positions.bz")
|
249 |
+
print(basedata_df)
|
250 |
|
251 |
|
252 |
return basedata_df
|