obspy.io.sac.sactrace.GeographicHeader
- class GeographicHeader(name)[source]
Bases:
FloatHeader
Special Methods
- GeographicHeader.__delattr__(name, /)
Implement delattr(self, name).
- GeographicHeader.__dir__()
Default dir() implementation.
- GeographicHeader.__eq__(value, /)
Return self==value.
- GeographicHeader.__format__(format_spec, /)
Default object formatter.
- GeographicHeader.__ge__(value, /)
Return self>=value.
- GeographicHeader.__get__(instance, instance_type)
- GeographicHeader.__getattribute__(name, /)
Return getattr(self, name).
- GeographicHeader.__gt__(value, /)
Return self>value.
- GeographicHeader.__hash__()
Return hash(self).
- GeographicHeader.__init__(name)
- GeographicHeader.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- GeographicHeader.__le__(value, /)
Return self<=value.
- GeographicHeader.__lt__(value, /)
Return self<value.
- GeographicHeader.__ne__(value, /)
Return self!=value.
- GeographicHeader.__new__(**kwargs)
- GeographicHeader.__reduce__()
Helper for pickle.
- GeographicHeader.__reduce_ex__(protocol, /)
Helper for pickle.
- GeographicHeader.__repr__()
Return repr(self).
- GeographicHeader.__setattr__(name, value, /)
Implement setattr(self, name, value).
- GeographicHeader.__sizeof__()
Size of object in memory, in bytes.
- GeographicHeader.__str__()
Return str(self).
- GeographicHeader.__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).