obspy.db.feature.MinMaxAmplitudeFeature

class MinMaxAmplitudeFeature[source]

Bases: object

Generates statistics about the amplitude values.

Public Methods

process

Generates statistics about the amplitude values.

Special Methods

MinMaxAmplitudeFeature.__delattr__(name, /)

Implement delattr(self, name).

MinMaxAmplitudeFeature.__dir__()

Default dir() implementation.

MinMaxAmplitudeFeature.__eq__(value, /)

Return self==value.

MinMaxAmplitudeFeature.__format__(format_spec, /)

Default object formatter.

MinMaxAmplitudeFeature.__ge__(value, /)

Return self>=value.

MinMaxAmplitudeFeature.__getattribute__(name, /)

Return getattr(self, name).

MinMaxAmplitudeFeature.__gt__(value, /)

Return self>value.

MinMaxAmplitudeFeature.__hash__()

Return hash(self).

MinMaxAmplitudeFeature.__init__()
MinMaxAmplitudeFeature.__init_subclass__()

This method is called when a class is subclassed.

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

MinMaxAmplitudeFeature.__le__(value, /)

Return self<=value.

MinMaxAmplitudeFeature.__lt__(value, /)

Return self<value.

MinMaxAmplitudeFeature.__ne__(value, /)

Return self!=value.

MinMaxAmplitudeFeature.__new__(**kwargs)
MinMaxAmplitudeFeature.__reduce__()

Helper for pickle.

MinMaxAmplitudeFeature.__reduce_ex__(protocol, /)

Helper for pickle.

MinMaxAmplitudeFeature.__repr__()

Return repr(self).

MinMaxAmplitudeFeature.__setattr__(name, value, /)

Implement setattr(self, name, value).

MinMaxAmplitudeFeature.__sizeof__()

Size of object in memory, in bytes.

MinMaxAmplitudeFeature.__str__()

Return str(self).

MinMaxAmplitudeFeature.__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).