Spaces:
Sleeping
Sleeping
File size: 1,218 Bytes
9bdf61f 05f059d 815dab2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import streamlit as st
st.set_page_config(layout="wide")
# Customize page title
st.title("Seismometer Network Builder")
st.markdown(
"""
This Seismometer Network Builder web tool helps you explore where nodal seismometers could be placed in a specific region by guiding you through a simple, three‑step process. You only provide the earthquake scenario using an epicenter or a rupture trace, and the tool uses its own internal workflow to generate a recommended network of nodal sites for you to review! It saves time, reduces fieldwork, and makes it easier to place sensors fast when aftershocks are happening. Try it out!
"""
)
st.header("Instructions")
markdown = """
1. **Add your earthquake scenario:** Choose either an epicenter or a rupture trace. This tells the tool which region to narrow down to.
2. **Generate nodal network:** With one click, the tool runs your scenario through its internal workflow and creates a recommended network of nodal seismometer sites for your specific region.
3. **Explore your results:** View the nodal sites on an interactive map and check out the insights page to understand how each nodal network fits into the surrounding area.
"""
st.markdown(markdown)
|