obspy.taup.tau.Arrivals¶
-
class
Arrivals
(arrivals, model)[source]¶ Bases:
list
List like object of arrivals returned by
TauPyModel
methods.- Parameters
arrivals (
list
ofArrival
) – Initial arrivals to store.model (
TauPyModel
) – The model used to calculate the arrivals.
Attributes
__doc__
__hash__
__module__
__slots__
model
Public Methods
Append object to the end of the list.
Remove all items from list.
Return a shallow copy of the list.
Return number of occurrences of value.
Extend list by appending elements from the iterable.
Return first index of value.
Insert object before index.
Plot ray paths if any have been calculated.
Plot ray paths if any have been calculated.
Plot arrival times if any have been calculated.
Remove and return item at index (default last).
Remove first occurrence of value.
Reverse IN PLACE.
Stable sort IN PLACE.
Special Methods
Return self+value.
Default dir() implementation.
Default object formatter.
x.__getitem__(y) <==> x[y]
Implement self+=value.
Implement self*=value.
Initialize self.
This method is called when a class is subclassed.
Return self*value.
Create and return a new object.
Helper for pickle.
Helper for pickle.
Return repr(self).
Return a reverse iterator over the list.
Set self[key] to value.
Return the size of the list in memory, in bytes.
Return str(self).
Abstract classes can override this to customize issubclass().