obspy.db.db.WaveformChannel

class WaveformChannel(data={})[source]

Bases: Base

DB table containing channels.

Attributes

calib

channel

endtime

features

file_id

gaps

id

location

metadata

network

npts

preview

registry

sampling_rate

starttime

station

Public Methods

get_preview

update

Special Methods

WaveformChannel.__delattr__(name, /)

Implement delattr(self, name).

WaveformChannel.__dir__()

Default dir() implementation.

WaveformChannel.__eq__(value, /)

Return self==value.

WaveformChannel.__format__(format_spec, /)

Default object formatter.

WaveformChannel.__ge__(value, /)

Return self>=value.

WaveformChannel.__getattribute__(name, /)

Return getattr(self, name).

WaveformChannel.__gt__(value, /)

Return self>value.

WaveformChannel.__hash__()

Return hash(self).

WaveformChannel.__init__(data={})
WaveformChannel.__init_subclass__()

This method is called when a class is subclassed.

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

WaveformChannel.__le__(value, /)

Return self<=value.

WaveformChannel.__lt__(value, /)

Return self<value.

WaveformChannel.__ne__(value, /)

Return self!=value.

WaveformChannel.__new__(**kwargs)
WaveformChannel.__reduce__()

Helper for pickle.

WaveformChannel.__reduce_ex__(protocol, /)

Helper for pickle.

WaveformChannel.__repr__()[source]
WaveformChannel.__setattr__(name, value, /)

Implement setattr(self, name, value).

WaveformChannel.__sizeof__()

Size of object in memory, in bytes.

WaveformChannel.__str__()

Return str(self).

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