evo-seismic-data-io
SkillFiles & storageLoads MiniSEED waveform data and CSV station metadata, groups traces by station for 3-component processing, and provides station coordinate lookups.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the evo-seismic-data-io skill
What this skill tells your AI
The instructions your AI receives, as published by openlair/openskill in tasks-evolved/earthquake-phase-association/environment/skills/evo-seismic-data-io/SKILL.md and read by ahel’s review.
Loads seismic waveform and station data using ObsPy and Pandas.
Functions
load_waveforms(mseed_path)- Returns ObsPy Streamload_stations(csv_path)- Returns pandas DataFramegroup_traces_by_station(stream)- Returns dict of {net.sta: Stream}get_station_dict(stations_df)- Returns dict of {net.sta: {lat, lon, elev}}
Usage
import sys
sys.path.insert(0, '/app/environment/skills/evo-seismic-data-io/scripts')
from utils import load_waveforms, load_stations, group_traces_by_station, get_station_dict
stream = load_waveforms('/root/data/wave.mseed')
stations_df = load_stations('/root/data/stations.csv')
station_streams = group_traces_by_station(stream)
station_dict = get_station_dict(stations_df)
Signals
- GitHub stars
- 91
- Forks
- 4
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
evo-seismic-data-io- Source
- github.com/openlair/openskill