Seismo-Live: http://seismo-live.org
Use Instaseis
to calculate a record section of your choice.
times()
to conveniently get the time axis for plotting and the normalize()
function to normalize seismograms to a common amplitude.np.linspace()
can help to generate equidistant stationsobspy.taup.TauPyModel
can be used to compare with ray theoretical arrivalsBasic lines to set up the notebook and some paths.
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
import os
import obspy
plt.style.use('ggplot')
plt.rcParams['figure.figsize'] = (10, 8)
Import Instaseis and open the database:
import instaseis
db = instaseis.open_db("data/database")