| import streamlit as st |
|
|
| st.set_page_config(layout="wide") |
|
|
| |
| 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) |
|
|