DoubleF: A fast and flexible phase association and earthquake location method
Project description
DoubleF
DoubleF is a fast and flexible algorithm for seismic phase association and earthquake location. It uses an adaptive Sobol sampling strategy to efficiently search the source parameter space. The algorithm initializes a quasi-uniform sample set using a Sobol sequence. At each iteration, the objective function is evaluated, and the search region is refined based on the top-performing samples. This iterative narrowing continues until convergence. The highest-scoring sample is then selected, and associated phases within a residual threshold are included as the optimal event.
Environment Setup and Installation
A dedicated Conda environment is recommended.
Create a Conda environment
conda create -n doublef python=3.9
conda activate doublef
pip install doublef
If you prefer to install from source inside the environment:
conda create -n doublef python=3.9
conda activate doublef
git clone https://github.com/Lonngfei/DoubleF.git
cd DoubleF
pip install .
GPU support
If you plan to run DoubleF on a GPU, make sure that your PyTorch version matches your CUDA version.
Please refer to the official PyTorch installation guide: https://pytorch.org/get-started/previous-versions.
Confirm CUDA availability
Run the following in Python:
import torch
print(torch.cuda.is_available())
True: CUDA is available and PyTorch can use your GPU.False: Check the NVIDIA driver and CUDA-PyTorch compatibility.
Show program information
doublef
This prints the program name, version, and basic usage information.
Input Files
Before running DoubleF, make sure the required input files are correctly prepared.
Typical inputs include:
Picks/YYYYMMDD.csv # Daily pick files
TravelTime/mymodel.nd # Velocity model used for travel-time calculation
example.config # Configuration file
The exact directory structure can be adjusted in the configuration file.
Configuration
DoubleF is controlled through a configuration file such as example.config.
Most parameters do not need frequent modification. In most cases, only a few settings require special attention.
1. Velocity model and travel-time table
Set cal_tt = True when using a new velocity model.
This is usually required only once to generate the travel-time tables.
After the tables have been generated, set: cal_tt = False, so that the program loads the existing tables and skips recalculation.
2. Sampling parameters
In most applications, the default sampling settings are sufficient.
If the nearest-station distance is larger than 0.6°, increasing the number of samples may improve the results.
3. Score calculation
DoubleF provides several alternative objective functions.
In most cases, the choice among these objective functions does not significantly affect the final results.
Users who are familiar with the method may further customize the scoring strategy if needed.
A custom objective function can be implemented by modifying: weight.py, batch_weight.py in the source code.
4. Output settings
Set the output directory and related options according to your needs.
DoubleF automatically writes:
- logs
- configuration records
- phase association results
to the specified output path.
5. Memory and speed
max_batch_size
This parameter only affects computational efficiency and does not affect the final results.
In general, a larger value may improve speed, but this is not always the case.
Once the computation reaches saturation, further increasing max_batch_size may provide little or no additional speedup, while leading to higher memory usage.
6. Visualization
Visualization is usually recommended to be turned off during normal runs.
It should only be enabled when intermediate inspection, debugging, or result checking is needed.
Running the Program
Once the input files and configuration file are ready, run:
doublef example.config
If the installation and configuration are correct, DoubleF will start processing and write logs and results to the output directory.
Output Phase File Format
A typical output phase file has the following format:
# Year Month Day Hour Minute Second Latitude Longitude Depth Magnitude ErrHorizontal ErrVertical ErrTime RMS NumP NumS NumBoth NumSum ID
NET Station Distance PhaseTime Probability PhaseType Residual ML Mag Amplitude
Notes
ErrHorizontal,ErrVertical, andErrTimedo not necessarily represent the true location uncertainty.- These values describe the spatial dispersion of candidate solutions that are associated with the same nearby location. Specifically, they quantify the statistical deviation (e.g., mean or standard deviation) of these candidate locations relative to the final solution.
- If only a single candidate solution exists, the dispersion cannot be computed and the value is reported as NaN.
- When these values are unusually large or reported as NaN, the corresponding results should be interpreted with caution.
Recommended Citation
If you use DoubleF in your research, please cite the related paper(s).
Contact
For questions, suggestions, or bug reports, please open an issue on GitHub or contact:
Longfei Duan Email: duanlongfei20@mails.ucas.ac.cn
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file doublef-0.1.0.tar.gz.
File metadata
- Download URL: doublef-0.1.0.tar.gz
- Upload date:
- Size: 32.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a44439f93d897e5ba08ac56b760add955b28013d102b0ba00ddfcd8c8e75278
|
|
| MD5 |
87015cd65ee50efd8092caef08bd4038
|
|
| BLAKE2b-256 |
024798b0cf0ee21a9ae97929e63e032bdf23734105d205b2bde51cbb819141f2
|
File details
Details for the file doublef-0.1.0-py3-none-any.whl.
File metadata
- Download URL: doublef-0.1.0-py3-none-any.whl
- Upload date:
- Size: 33.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2ba1016dc7d8990e1abc89cec2aa97ecf0245f9178879ff01f880c9456f6516
|
|
| MD5 |
0400aa70f43b58d0fb86278b9c3968b3
|
|
| BLAKE2b-256 |
e8fb1b60e4c525464558ee83a03c08c764ceb4f58844244dc8b499a5428bb484
|