MSU576 commited on
Commit
9052fca
·
verified ·
1 Parent(s): 22f8311

Update app.po

Browse files
Files changed (1) hide show
  1. app.po +10 -1
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("F
 
 
 
 
 
 
 
 
 
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: