Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -551,6 +551,16 @@ Die Katastrophe in <span style="background-color: #a8e6cf; font-weight: bold; pa
|
|
551 |
placeholder="Füge den Namen der Spalte mit den Orten ein"
|
552 |
)
|
553 |
process_btn = gr.Button("Erstellen Sie die Karte", variant="primary")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
554 |
|
555 |
with gr.Column():
|
556 |
map_output = gr.HTML(
|
@@ -566,16 +576,7 @@ Die Katastrophe in <span style="background-color: #a8e6cf; font-weight: bold; pa
|
|
566 |
""",
|
567 |
elem_id="map-container"
|
568 |
)
|
569 |
-
|
570 |
-
label="Status",
|
571 |
-
lines=2,
|
572 |
-
elem_classes="stats-box"
|
573 |
-
)
|
574 |
-
processed_file = gr.File(
|
575 |
-
label="Bearbeitete Daten herunterladen",
|
576 |
-
visible=True,
|
577 |
-
interactive=False
|
578 |
-
)
|
579 |
|
580 |
def process_and_map(file, column):
|
581 |
if file is None:
|
|
|
551 |
placeholder="Füge den Namen der Spalte mit den Orten ein"
|
552 |
)
|
553 |
process_btn = gr.Button("Erstellen Sie die Karte", variant="primary")
|
554 |
+
stats_output = gr.Textbox(
|
555 |
+
label="Status",
|
556 |
+
lines=2,
|
557 |
+
elem_classes="stats-box"
|
558 |
+
)
|
559 |
+
processed_file = gr.File(
|
560 |
+
label="Bearbeitete Daten herunterladen",
|
561 |
+
visible=True,
|
562 |
+
interactive=False
|
563 |
+
)
|
564 |
|
565 |
with gr.Column():
|
566 |
map_output = gr.HTML(
|
|
|
576 |
""",
|
577 |
elem_id="map-container"
|
578 |
)
|
579 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
580 |
|
581 |
def process_and_map(file, column):
|
582 |
if file is None:
|