Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -366,7 +366,7 @@ def show_weather_info(data):
|
|
| 366 |
sky_status = nearest_forecast['SKY_STTS']
|
| 367 |
if sky_status == "ė§ģ":
|
| 368 |
weather_icon = "ā"
|
| 369 |
-
elif sky_status
|
| 370 |
weather_icon = "ā
"
|
| 371 |
elif sky_status == "ķ림":
|
| 372 |
weather_icon = "ā"
|
|
@@ -374,8 +374,8 @@ def show_weather_info(data):
|
|
| 374 |
precip_mark = weather_icon
|
| 375 |
st.markdown(f'''
|
| 376 |
<div class="time-container">
|
| 377 |
-
<div style="text-align: center; margin-bottom: 0.5rem; font-size:
|
| 378 |
-
{temp}{precip_mark} {tomorrow_morning_weather}
|
| 379 |
</div>
|
| 380 |
<span class="date-text">{formatted_date}</span>
|
| 381 |
</div>
|
|
@@ -475,9 +475,9 @@ def show_temperature_graph(data):
|
|
| 475 |
elif sky_status == "ė§ģ":
|
| 476 |
icon = "āļø"
|
| 477 |
description = "ė§ģ"
|
| 478 |
-
elif sky_status
|
| 479 |
icon = "ā
"
|
| 480 |
-
description = "구ė¦<br>ė§ģ"
|
| 481 |
elif sky_status == "ķ림":
|
| 482 |
icon = "āļø"
|
| 483 |
description = "ķ림"
|
|
|
|
| 366 |
sky_status = nearest_forecast['SKY_STTS']
|
| 367 |
if sky_status == "ė§ģ":
|
| 368 |
weather_icon = "ā"
|
| 369 |
+
elif sky_status in ["구ė¦", "구ė¦ė§ģ"]:
|
| 370 |
weather_icon = "ā
"
|
| 371 |
elif sky_status == "ķ림":
|
| 372 |
weather_icon = "ā"
|
|
|
|
| 374 |
precip_mark = weather_icon
|
| 375 |
st.markdown(f'''
|
| 376 |
<div class="time-container">
|
| 377 |
+
<div style="text-align: center; margin-bottom: 0.5rem; font-size: 6em; font-weight: bold; color: black;">
|
| 378 |
+
{temp}{precip_mark} {tomorrow_morning_weather}
|
| 379 |
</div>
|
| 380 |
<span class="date-text">{formatted_date}</span>
|
| 381 |
</div>
|
|
|
|
| 475 |
elif sky_status == "ė§ģ":
|
| 476 |
icon = "āļø"
|
| 477 |
description = "ė§ģ"
|
| 478 |
+
elif sky_status in ["구ė¦", "구ė¦ė§ģ"]:
|
| 479 |
icon = "ā
"
|
| 480 |
+
description = "구ė¦" if sky_status == "구ė¦" else "구ė¦<br>ė§ģ"
|
| 481 |
elif sky_status == "ķ림":
|
| 482 |
icon = "āļø"
|
| 483 |
description = "ķ림"
|