Update app.po
Browse files
app.po
CHANGED
|
@@ -1399,7 +1399,16 @@ def locator_ui():
|
|
| 1399 |
if site.get("Flood Data") or site.get("Seismic Data") or site.get("Topography") or site.get("Soil Profile"):
|
| 1400 |
st.markdown("### Cached site dataset (last extraction)")
|
| 1401 |
st.json({
|
| 1402 |
-
"Flood": site.get("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1403 |
# Part 4/4 of GeoMate V2 app.py
|
| 1404 |
# -------------------------------------------------------
|
| 1405 |
# Implements:
|
|
|
|
| 1399 |
if site.get("Flood Data") or site.get("Seismic Data") or site.get("Topography") or site.get("Soil Profile"):
|
| 1400 |
st.markdown("### Cached site dataset (last extraction)")
|
| 1401 |
st.json({
|
| 1402 |
+
"Flood": site.get("Flood Data"),
|
| 1403 |
+
"Seismic": site.get("Seismic Data"),
|
| 1404 |
+
"Topography": site.get("Topography"),
|
| 1405 |
+
"Soil": site.get("Soil Profile")
|
| 1406 |
+
})
|
| 1407 |
+
|
| 1408 |
+
# Save back site (name updated)
|
| 1409 |
+
site["Site Name"] = site_name
|
| 1410 |
+
save_active_site(site)
|
| 1411 |
+
|
| 1412 |
# Part 4/4 of GeoMate V2 app.py
|
| 1413 |
# -------------------------------------------------------
|
| 1414 |
# Implements:
|