University of Texas at Dallas Earthquake Dataset
Project description
University of Texas at Dallas Earthquake Dataset
A global earthquake dataset constructed from high-quality source and receiver metadata, including associated seismic phase picks across diverse station geometries.
Documentation
Full documentation for UTDQuake is available here:
You will see:
- QuickStart guide to get you up and running
- Detailed API reference
- Tutorials and example workflows
Dataset
The dataset is available on Hugging Face: UTDQuake
Installation (utdquake)
pip install utdquake
Why this dataset matters?
Curated datasets of earthquake events and phase picks are essential for modern seismology, especially in the AI era. While waveform datasets have advanced earthquake detection, multistation picks provide complementary information crucial for phase association and earthquake location.
This dataset offers structured event catalogs, station metadata, and phase picks across networks, supporting reproducible research and the development of data-driven seismological methods.
What’s inside?
| Directory | Format | Description |
|---|---|---|
network/ |
*.parquet |
Network metadata. |
events/ |
*.parquet |
Earthquake event catalogs per network. |
stations/ |
*.parquet |
Station metadata per network. |
picks/ |
*.parquet |
Seismic phase pick datasets per network. |
bank/ |
*.zip |
ObsPlus EventBank datasets, one per network. Can be read directly using ObsPlus EventBank. |
For details on the contents and schema of each dataset, please refer to the Hugging Face dataset viewer.
To get started, see the Quick Start section below, or click “Use this dataset” on the Hugging Face dataset page for example loading code.
Quick start
Basic Access
import utdquake as utdq
# dataset overview
dataset = utdq.Dataset()
print(dataset)
# network level
network_data = dataset.networks
print(network_data)
dataset.plot_overview(savepath="utdquake.png")
Network Data
# load network
network = dataset.get_network(name="tx")
print(network)
# events
events = network.events
print(events)
# stations
stations = network.stations
print(stations)
# picks
picks = network.picks
print(picks)
Event Bank
Check ObsPlus EventBank for more details.
# get event bank
ebank = network.bank #
# Example: Filter by event_id
ev_ids = events["event_id"].iloc[:5].tolist()
cat = ebank.get_events(event_id=ev_ids)
print(cat)
# Example 2: Other filter (check obsplus.EventBank for more details)
cat2 = ebank.get_events(minmagnitude=4.3)
print(cat2)
Plot
# get Obspy Event
network = dataset.get_network(name="tx")
network.plot_overview(savepath="overview.png")
network.plot_uncertainty_boxplots(savepath="uncertainty_boxplots.png")
network.plot_station_location_uncertainty(savepath="station_location_uncertainty.png")
network.plot_stats(savepath="stats.png")
network.plot_pick_histograms(savepath="histograms.png")
network.plot_pick_stats(savepath="pick_stats.png")
Thanks
Thanks to the UT Dallas HPC team for providing the computational resources for this dataset.
We also thank the seismology and AI communities for their work in earthquake research, and Hugging Face for hosting and sharing open datasets.
We welcome feedback and contributions!
Authors
|
Emmanuel Castillo University of Texas at Dallas |
|
|
Nadine Ushakov University of Texas at Dallas |
|
|
Marine Denolle University of Washington |
|
Project details
Release history Release notifications | RSS feed
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 utdquake-0.1.1.tar.gz.
File metadata
- Download URL: utdquake-0.1.1.tar.gz
- Upload date:
- Size: 42.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36a3601917ad419ab9784dd4c69eff57f000ee7865b43aa43ec426c4bf42cae7
|
|
| MD5 |
0aa63ac8762bb0972cd9cf56e1fb0879
|
|
| BLAKE2b-256 |
20af1d49d341b823930771d771dbdd08398e2b2b70d1e1435afb162fc4ac78c2
|
File details
Details for the file utdquake-0.1.1-py3-none-any.whl.
File metadata
- Download URL: utdquake-0.1.1-py3-none-any.whl
- Upload date:
- Size: 42.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78090d77bf43740739d367bc3175628ab5b93422370dd8a625c4fc8ad74cd2a0
|
|
| MD5 |
c869f0a55143a3030e9a9858c8a333b5
|
|
| BLAKE2b-256 |
025db43a7705a21d0482727dc8134fbf2589973d766f2fd73eb46a82afe057c4
|