Skip to content

Commit 3fc3654

Browse files
committed
Update app
1 parent 7fff088 commit 3fc3654

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

autoemx/web/app.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,16 @@ def _results_table(result: SpectrumFitResult):
104104

105105

106106
def main() -> None:
107-
st.set_page_config(page_title="AutoEMX spectrum quantification", layout="wide")
107+
st.set_page_config(
108+
page_title="AutoEMX SEM-EDS spectrum quantification",
109+
layout="wide",
110+
)
108111
hosted = _is_hosted_demo()
109112

110-
st.title("AutoEMX spectrum quantification")
113+
st.title("AutoEMX SEM-EDS spectrum quantification")
111114
st.caption(
112-
"Upload one or more EMSA spectra (``.msa``, ``.emsa``, ``.msg``), "
115+
"Scanning Electron Microscopy – Energy-Dispersive X-ray Spectroscopy "
116+
"(SEM-EDS). Upload one or more SEM-EDS spectra (``.msa``, ``.emsa``, ``.msg``), "
113117
"quantify them, then save the fitted spectrum as PNG and the composition as TXT."
114118
)
115119
st.warning(
@@ -172,7 +176,7 @@ def main() -> None:
172176
"Compositions from other voltages are inaccurate."
173177
)
174178
uploads = st.file_uploader(
175-
"EMSA spectra",
179+
"SEM-EDS spectra",
176180
type=[ext.lstrip(".") for ext in _ACCEPT],
177181
accept_multiple_files=True,
178182
)

0 commit comments

Comments
 (0)