obspy.taup.tau.Arrivals

class Arrivals(arrivals, model)[source]

Bases: builtins.list

List of arrivals returned by TauPyModel methods.

Parameters:
  • arrivals (list of Arrival) Initial arrivals to store.
  • model (TauPyModel) The model used to calculate the arrivals.

Attributes

__doc__ str(object=’‘) -> str
__hash__
__module__ str(object=’‘) -> str
__slots__ list() -> new empty list
model

Public Methods

append
clear
copy
count
extend
index Raises ValueError if the value is not present.
insert L.insert(index, object) insert object before index
plot Plot the ray paths if any have been calculated.
pop Raises IndexError if list is empty or index is out of range.
remove Raises ValueError if the value is not present.
reverse L.reverse() reverse IN PLACE
sort

Special Methods

__dir__ default dir() implementation
__format__ default object formatter
__getitem__ x.__getitem__(y) <==> x[y]
__init__
__new__ Create and return a new object.
__reduce__ helper for pickle
__reduce_ex__ helper for pickle
__repr__
__reversed__ L.__reversed__() return a reverse iterator over the list
__sizeof__ L.__sizeof__() size of L in memory, in bytes
__str__
__subclasshook__ Abstract classes can override this to customize issubclass().