QuakeMigrate
QuakeMigrate copied to clipboard
A Python package for automatic earthquake detection and location using waveform migration and stacking.
There was a small bug in the latest changes to allow for networks to be specified. This fixes this bug. Stay tuned for a more complete fix using the full...
Currently the dike example is the only template use-case looking at non-ice events, and the only one that features magnitude calculation. As such, we would like to make it available...
## Issue In it's default state, `NumPy` will use all available threads for certain functions (those compiled against multi-processing compatible C libraries). Which library `NumPy` is built against depends on...
## What is the purpose of this Pull Request? Write the onset functions into C. The aim here is to reproduce exactly the previous behaviour, but centralise the algorithms and...
**Issue statement** Trigger is limited to a single core, despite being suitable for multi-processing. The current workaround is to batch up the time window of interest in an external script....
I propose moving the SeisPlot class out into a submodule QMigrate.plot that contains a series of functions that can be called to plot: - [x] Summary plot - [x] Trace...
Currently a station is removed if it has a gap of more than 1 sample. This is silly as linearly interpolating this would produce a signal that is fine to...
A known bug in scikit-fmm ( https://github.com/scikit-fmm/scikit-fmm/issues/18 ) can lead to lut.compute_1d_vmodel_skfmm() breaking with a RuntimeError: RuntimeError: Negative discriminant in time marcher quadratic. As of now this issue is reportedly...
I want to export to ObsPy the catalog created with QuakeMigrate locations. So far, so good. The problem is the picks on the exported file. When PickTime is unavailable (filled...
## What is the purpose of this Pull Request? Rewrite the current onset functions (one in Python, one imported from ObsPy) as a C library that is compiled and wrapped...