-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobserver_waveform_sac.py
executable file
·60 lines (54 loc) · 2.2 KB
/
observer_waveform_sac.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
import obspy
import numpy
import matplotlib.pyplot
ehe_sac_path = "./2024.183.03.18.27.0083.SHAKE.AS.00.EHE.D.sac" # Station EHE channel SAC file path
ehn_sac_path = "./2024.183.03.18.27.0083.SHAKE.AS.00.EHN.D.sac" # Station EHE channel SAC file path
ehz_sac_path = "./2024.183.03.18.27.0083.SHAKE.AS.00.EHZ.D.sac" # Station EHE channel SAC file path
channel_prefix = "E" # Station channel prefix code E.g. EHx == E, BHx == B
window_size = 2 # Spectrogram window size in seconds
overlap_percent = 86 # Spectrogram overlap in percent
spectrogram_power_range = [20, 160] # Spectrogram power range in dB
fig, axs = matplotlib.pyplot.subplots(6, 1, figsize=(12.0, 8.0))
matplotlib.pyplot.subplots_adjust(
left=0.05, right=0.95, top=0.95, bottom=0.05, hspace=0.05, wspace=0
)
st_bhe = obspy.read(ehe_sac_path)[0]
st_bhn = obspy.read(ehn_sac_path)[0]
st_bhz = obspy.read(ehz_sac_path)[0]
for i, st, component in zip(
range(3),
[st_bhe, st_bhn, st_bhz],
[f"{channel_prefix}HE", f"{channel_prefix}HN", f"{channel_prefix}HZ"],
):
axs[i * 2].clear()
axs[i * 2 + 1].clear()
times = numpy.arange(st.stats.npts) / st.stats.sampling_rate
detrend_data = (
st.copy()
.detrend("linear")
.filter("bandpass", freqmin=0.1, freqmax=10.0, zerophase=True)
.data
)
axs[i * 2].plot(times, detrend_data, label=component, color="blue")
axs[i * 2].legend(loc="upper left")
axs[i * 2].xaxis.set_visible(False)
# axs[i*2].yaxis.set_visible(False)
axs[i * 2].set_xlim([times[0], times[-1]])
axs[i * 2].set_ylim([numpy.min(detrend_data), numpy.max(detrend_data)])
NFFT = int(st.stats.sampling_rate * window_size)
noverlap = int(NFFT * (overlap_percent / 100))
Pxx, freqs, bins, im = axs[i * 2 + 1].specgram(
st.copy().filter("highpass", freq=0.1, zerophase=True).data,
NFFT=NFFT,
Fs=st.stats.sampling_rate,
noverlap=noverlap,
cmap="jet",
vmin=spectrogram_power_range[0],
vmax=spectrogram_power_range[1],
)
axs[i * 2 + 1].set_ylim(0, 15)
# axs[i*2+1].yaxis.set_visible(False)
axs[i * 2 + 1].xaxis.set_visible(False)
if __name__ == "__main__":
matplotlib.pyplot.show()