groundmotion-processing
groundmotion-processing copied to clipboard
Parsing and processing ground motion data
Need to: - [x] Clone repo to gitlab - [x] Remove all c/cython - [x] Remove usernames from documentation - [x] Remove links to azure in readme - [x] Gitlab...
I'm thinking that a simple sqlite database to track the command history and status would be useful. I think that having a table for each of these subcommands: - download...
In the html station maps popup information for failed stations, failed components and their respective reasons are listed and color coded red to distinguish them from components that passed (colored...
**Describe the bug** Here: https://github.com/usgs/groundmotion-processing/blob/main/src/gmprocess/io/asdf/stream_workspace.py#L1204 station is meant to be the "S.C.L" part of "N.S.C.L" (Network-Station-Channel-Location), where in other methods (getStreams()) station is the full NSCL code. **To Reproduce** Steps...
**Is your feature request related to a problem? Please describe.** No. **Describe the solution you'd like** Phase pick information is available in Comcat in the quakeml.xml file, and these are...
Give examples and include instructions for finding step options/arguments.
From discussion of #1036: > We might think about restructuring the top-level code to be less argparse centric. We could push argparse-specific code to the command line script and make...
There are lots of places where we have `Path(filepath)` where `filepath` is a pathlib.Path. This is unnecessary. Once we have a pathlib.Path object, additional operations produce pathlib.Path objects. All of...
We don't ever use type hints and probably should do so: https://docs.python.org/3/library/typing.html