obspy.taup.seismic_phase.SeismicPhaseSegment

class SeismicPhaseSegment(tau_model, start_branch, end_branch, is_p_wave, end_action, is_down_going)[source]

Bases: object

Special Methods

SeismicPhaseSegment.__delattr__(name, /)

Implement delattr(self, name).

SeismicPhaseSegment.__dir__()

Default dir() implementation.

SeismicPhaseSegment.__eq__(value, /)

Return self==value.

SeismicPhaseSegment.__format__(format_spec, /)

Default object formatter.

SeismicPhaseSegment.__ge__(value, /)

Return self>=value.

SeismicPhaseSegment.__getattribute__(name, /)

Return getattr(self, name).

SeismicPhaseSegment.__gt__(value, /)

Return self>value.

SeismicPhaseSegment.__hash__()

Return hash(self).

SeismicPhaseSegment.__init__(tau_model, start_branch, end_branch, is_p_wave, end_action, is_down_going)[source]
SeismicPhaseSegment.__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

SeismicPhaseSegment.__le__(value, /)

Return self<=value.

SeismicPhaseSegment.__lt__(value, /)

Return self<value.

SeismicPhaseSegment.__ne__(value, /)

Return self!=value.

SeismicPhaseSegment.__new__(**kwargs)
SeismicPhaseSegment.__reduce__()

Helper for pickle.

SeismicPhaseSegment.__reduce_ex__(protocol, /)

Helper for pickle.

SeismicPhaseSegment.__repr__()

Return repr(self).

SeismicPhaseSegment.__setattr__(name, value, /)

Implement setattr(self, name, value).

SeismicPhaseSegment.__sizeof__()

Size of object in memory, in bytes.

SeismicPhaseSegment.__str__()

Return str(self).

SeismicPhaseSegment.__subclasshook__()

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).