obspy.io.mseed.core.MST
- class MST(trace, data, dataquality)[source]
Bases:
object
Class that transforms a ObsPy Trace object to a libmseed internal MSTrace struct.
Special Methods
- MST.__delattr__(name, /)
Implement delattr(self, name).
- MST.__dir__()
Default dir() implementation.
- MST.__eq__(value, /)
Return self==value.
- MST.__format__(format_spec, /)
Default object formatter.
- MST.__ge__(value, /)
Return self>=value.
- MST.__getattribute__(name, /)
Return getattr(self, name).
- MST.__gt__(value, /)
Return self>value.
- MST.__hash__()
Return hash(self).
- MST.__init__(trace, data, dataquality)[source]
The init function requires a ObsPy Trace object which will be used to fill self.mstg.
- MST.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- MST.__le__(value, /)
Return self<=value.
- MST.__lt__(value, /)
Return self<value.
- MST.__ne__(value, /)
Return self!=value.
- MST.__new__(**kwargs)
- MST.__reduce__()
Helper for pickle.
- MST.__reduce_ex__(protocol, /)
Helper for pickle.
- MST.__repr__()
Return repr(self).
- MST.__setattr__(name, value, /)
Implement setattr(self, name, value).
- MST.__sizeof__()
Size of object in memory, in bytes.
- MST.__str__()
Return str(self).
- MST.__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).