Metadata-Version: 2.4
Name: hypoxpy
Version: 0.1.0
Summary: A modularized comprehensive *Python* interface for hypocenter location codes
Home-page: https://github.com/xtyangpsp/HypoXPy
Download-URL: https://github.com/xtyangpsp/HypoXPy/archive/refs/tags/v0.1.0.tar.gz
Author: Xiaotao Yang
Author-email: stcyang@gmail.com
Maintainer: Xiaotao Yang
Maintainer-email: stcyang@gmail.com
Keywords: seismology,earthquake relocation,hypoinverse,hypodd
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: pandas
Requires-Dist: obspy
Requires-Dist: cartopy
Requires-Dist: tqdm
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# HypoXPy
A modularized comprehensive *Python* interface for hypocenter location codes

## Disclaimer
*`hypoxpy`* is a research-oriented software package for improving earthquake locations and performing relative relocation using external location engines (e.g., HYPOINVERSE and HYPODD). It consumes phase picks and event catalogs produced by upstream tools (such as GAMMA or EQTransformer) but does not perform phase picking or event association itself. Results depend strongly on the quality of input picks, catalogs, velocity models, and parameter choices, and should be independently evaluated before scientific or operational use. This package doesn't intend to be a detailed documentation of each earthquake location method and code. The ultimate goal is to make this package a one-stop shop for earthquake location/relocation with a comprehensive collection of methods. The logic of this package is heavily inspired by, and modified and simplified from Hypo-Interface-Py (https://github.com/YijianZhou/Hypo-Interface-Py). We acknowledge the developers of Hypo-Interface-Py.

## File structure
* example: contains example scripts and jupyter notebooks running the hypoxpy workflow to relocate earthquakes.
* figs: contains figures used in this README file.
* hypoxpy: contains modules and templates of parameter files running hypoinverse and hypodd
* external: contains source codes for the earthquake lcoation/relocation methods.

## Installation
### Methods supported: 
* HypoInverse: HypoInverse earthquake location/relocation package. You can download the version from the USGS website (https://www.usgs.gov/software/hypoinverse-earthquake-location). For your convenience, a copy of the hyp1.40 codes is available under the folder `external/hypoinverse1.40`. This method is labeled as `hypoinverse` in our package.

* HypoDD: earthquake relocation using the double-difference method. developed by Felix Waldhauser. See information on the references at the end of the Readme. A copy of the version (2.1) is included in `external/hypodd2.1`, after debugging some variable types from the version on https://github.com/fwaldhauser/HypoDD. This method is labeled as `hypodd` in our package.

To use each included method, please make sure the corresponding packages are installed and working. Follow the related instructions to install each individual package.
 

### Install as a pip package
HypoXPy is available on pypl as a standalone package. It could be installed as regular pip package: `pip install hypoxpy`. The latest version (pre-release) is always available on GitHub.

### Install with local copy from GitHub
This installation method will get the latest version from GitHub.

1. Create and activate a Python virtual environment `hypox`. This is optional but recommended. This will help isolate the computational needs from other packages. This will also help avoid version incompatibility in case new packages for some codes are updated in the `base` conda environment. However, since `HypoXPy` doesn't currently need complicated packages, running under the `base` environment may just work fine. 
```
$ conda create -n hypox -c conda-forge python=3.11 jupyter numpy scipy pandas cartopy obspy mpi4py tqdm
```
Then, activate the environment with: `$ conda activate hypox`

2. Clone the github repository, in terminal under the desired directory:
```
$ git clone https://github.com/xtyangpsp/HypoXPy.git
```

3. `cd` to the repository folder in terminal and install the package with the parameters in `setup.py`.
```
$ pip install .
```

4. Create jupyter notebook kernel with the environment (after activating the environment).
```
$ pip install --user ipykernel
$ python -m ipykernel install --user --name=hypox
```

## Workflow and examples
1. The relocation/location workflow is driven by `hypoxpy.workflow.relocate()`, which is a high-level wrapper for lower level relocaiton modules. The user could also call individual modules. However, using the `relocate()` wrapper is highly recommended. This package takes multiple types of phase data as the input. Users could choose to all or a subset of the relocaiton methods. **However, for GAMMA input, HYPOINVERSE is the recommended and default preprocessing step before HYPODD.**
2. Please run the jupyter notebooks in the `example/run_HypoXPy_workflow.ipynb` folder after successfully installing the package.
3. Below is the flowchart of the `hypoxpy.workflow.relocate()` driver.
   
                           ┌──────────────┐
                           │  relocate()  │
                           └───────┬──────┘
                                   │
                                   v
                        ┌──────────────────────┐
                        │    Sanity checks     │
                        │ (flags + input_type) │
                        └──────────┬───────────┘
                                   │
                                   v
                        ┌──────────────────────┐
                        │     Input type       │
                        │ gamma | hypoinv      │
                        └──────────┬───────────┘
                                   │
                                   v
                     ┌────────────────────────────┐
                     │        HypoInverse         │
                     │ - convert / use phases     │
                     │ - absolute locations       │
                     │ (optional, but recommended)│
                     └─────────────┬──────────────┘
                                   │
                                   v
                        ┌──────────────────────┐
                        │        HypoDD        │
                        │ - relative relocation│
                        └──────────┬───────────┘
                                   │
                                   v
                        ┌──────────────────────┐
                        │ Final relocated      │
                        │ earthquake catalog   │
                        └──────────────────────┘



## References:
Klein, Fred W. 2002. User’s Guide to HYPOINVERSE-2000, a Fortran Program to Solve for Earthquake Locations and Magnitudes. https://doi.org/10.3133/ofr02171.

Waldhauser, Felix, and William L. Ellsworth, A double-difference earthquake location algorithm: Method and application to the northern Hayward fault, California, Bull. Seism. Soc. Am. 90, 1353-1368, 2000.

Waldhauser, Felix, hypoDD -- A program to compute double-difference hypocenter locations, U.S. Geological Survey Open-File Report 01-113, 2001.
