obspy.taup.taup.travelTimePlot¶
- travelTimePlot(min_degree=0, max_degree=360, npoints=1000, phases=None, depth=100, model='iasp91')[source]¶
Basic travel time plotting function.
Parameters: - min_degree (float, optional) Minimum distance in degree used in plot. Defaults to 0.
- max_degree (float, optional) Maximum distance in degree used in plot. Defaults to 360.
- npoints (int, optional) Number of points to plot. Defaults to 1000.
- phases (list of str, optional) List of phase names which should be used within the plot. Defaults to all phases if not explicit set.
- depth (float, optional) Depth in kilometer. Defaults to 100.
- model (str, optional) Either 'iasp91' or 'ak135' velocity model. Defaults to 'iasp91'.
Returns: None
Example
>>> from obspy.taup.taup import travelTimePlot >>> travelTimePlot(min_degree=0, max_degree=50, phases=['P', 'S', 'PP'], ... depth=120, model='iasp91')
(Source code, png, hires.png)
Changed in version 0.10.0: Deprecated.