Pyadjoint
is a Python package to measure misfits and calculate adjoint sources. It aims to provide a comprehensive package and incorporate various types of measurements and associated adjoint sources.
Pyadjoint
utilizes ObsPy (and some of its dependencies) for the processing and data handling. As a first step, please follow the installation instructions of ObsPy for your given platform (we recommend the installation with Anaconda as it will most likely result in the least amount of problems). Pyadjoint
should work with Python versions 2.7, 3.3, and 3.4 (mainly depends on the used ObsPy version). To install it, best use pip
(not working yet!):
$ pip install pyadjoint
If you want the latest development version, or want to work on the code, you will have to install with the help of git
.
$ git clone https://github.com/krischer/pyadjoint.git
$ cd pyadjoint
$ pip install -v -e .
To assure the installation is valid and everything works as expected, run the tests with
$ python -m pyadjoint.tests
The first step is to import ObsPy and Pyadjoint
.
In [ ]:
import obspy
import pyadjoint
Pyadjoint
expects the data to be fully preprocessed thus both observed and synthetic data are expected to have exactly the same length, sampling rate, and spectral content. Pyadjoint
furthermore does not care about the actual components in question; it will use two traces and calculate misfit values and adjoint sources for them. To provide a familiar nomenclature we will always talk about observed and synthetic data Pyadjoint
is independent of what the data actually represents.
In [ ]:
# Helper function to get some example data used for
# illustrative purposes.
obs, syn = pyadjoint.utils.get_example_data()
# Select the vertical components of both.
obs = obs.select(component="Z")[0]
syn = syn.select(component="Z")[0]
In [ ]:
adj_src = pyadjoint.calculate_adjoint_source(
# The type of misfit measurement and adjoint source.
adj_src_type="waveform_misfit",
# Pass observed and synthetic data traces.
observed=obs, synthetic=syn,
# The spectral content of the data.
min_period=20.0, max_period=100.0,
# The window borders in seconds since the first sample.
left_window_border=800.0,
right_window_border=900.0)
print(adj_src)
In [ ]:
# Access misfit and adjoint sources. The misfit is a floating point number.
print(adj_src.misfit)
# The adjoint source is a a numpy array.
print(adj_src.adjoint_source)
In [ ]:
print(pyadjoint.calculate_adjoint_source(
adj_src_type="waveform_misfit", observed=obs, synthetic=syn,
min_period=20.0, max_period=100.0,
left_window_border=800.0, right_window_border=900.0, adjoint_src=False))
All adjoint source types can also be plotted during the calculation. The type of plot produced depends on the type of misfit measurement and adjoint source.
In [ ]:
pyadjoint.calculate_adjoint_source(
adj_src_type="waveform_misfit", observed=obs, synthetic=syn,
min_period=20.0, max_period=100.0,
left_window_border=800.0, right_window_border=900.0, plot=True);
In [ ]:
print(pyadjoint.calculate_adjoint_source(
adj_src_type="waveform_misfit", observed=obs, synthetic=syn,
min_period=20.0, max_period=100.0,
left_window_border=800.0, right_window_border=900.0,
taper_percentage=0.3, taper_type="cosine"))
In [ ]:
adj_src.write(filename="NET.STA.CHA.adj_src",
format="SPECFEM", time_offset=-10)
In [ ]:
!head NET.STA.CHA.adj_src
!rm NET.STA.CHA.adj_src
In [ ]: