We look at the REDPy (Repeating Earthquake Detector in Python - Alicia Hotovec-Ellis software) catalog on five Cascades Volcanoes (Mt Rainier, Mt St Helens, Mt Hood, Mt Baker, Newberry Volcano). Because REDPy catalogs only have cluster ID and guessed origin time, we aim to do 3 things:
- Backfill the REDPy catalog with template matching from 2002-2009
- Locate the events
- Fingerprint events using clustering
We use eqcorrscan (Chamberlain et al, 2018) and the Fast Matched Filter (Beauce and Frank, 2018) to run template matching on GPUs.
We select stations with make_volcano_metadata.ipynb, generate templates in make_templates.ipynb, locate templates in template_locations.ipynb, detect with templates in find_detections.ipynb, make events in find_events.ipynb, and do post processing in remove_redpy_overlap.ipynb.Directory | Description |
---|---|
catalogs/ | REDPy catalogs as CSVs with column titles. A subdirectory has the REDPy as they were downloaded (.txt) on June 19, 2022. |
notebooks/ | Jupyter Notebooks of code. Directory is subdivided into backfilling, clustering, location, plots, and tutorials. |
scripts/ | script versions of notebooks, functions (such as mbf_elep_func.py), and config files. |