Python library for computing Richter local magnitude scales on BPPTKG seismic network
Project description
bpptkg-richter
bpptkg-richter is a Python library for computing Richter local magnitude scales on BPPTKG seismic network.
Installation
Install using pip:
pip install -U bpptkg-richter
Richter Magnitude Scales
You may want to install ObsPy package, because this
package only work on ObsPy stream type. Default network is VG
and default
component is Z
:
from obspy import read
import richter
# Read single station or multiple stations streams
stream = read('/path/to/stream.mseed')
# Compute Richter local magnitude for station MEPAS
ml = richter.compute_ml(stream, 'MEPAS', network='VG', component='Z')
# Compute Wood-Anderson zero-to-peak amplitude in meter for station MEPAS
wa_ampl = richter.compute_wa(stream, 'MEPAS', network='VG', component='Z')
# Compute count amplitude peak-to-peak for station MEPAS
app = richter.compute_app(stream, 'MEPAS', network='VG', component='Z')
or for short:
from obspy import read
import richter
stream = read('/path/to/stream.mseed')
ml = richter.compute_ml(stream, 'MEPAS')
wa_ampl = richter.compute_wa(stream, 'MEPAS')
app = richter.compute_app(stream, 'MEPAS')
For current version, on computing local magnitude (compute_ml
) and
Wood-Anderson amplitude(compute_wa
), the only supported component is Z
component.
compute_app
support other components, for example:
app = richter.compute_app(stream, 'MELAB', component='E')
Documentation
Full documentation and guides are available at docs/
directory and online at
https://bpptkg-richter.readthedocs.io/en/latest/.
License
By contributing to the project, you agree that your contributions will be licensed under its MIT license. See LICENSE for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file bpptkg-richter-1.0.0.tar.gz
.
File metadata
- Download URL: bpptkg-richter-1.0.0.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d52a72713c75098ee274067f0fe8b7a23ed753da672671255552489555354e7 |
|
MD5 | afa645a79a2409f14038e3a459162856 |
|
BLAKE2b-256 | be6f484d84216668491823b63305803f02e845f27cedde049916d90053843cc5 |