obspy.clients.fdsn.mass_downloader.download_helpers.Channel
- class Channel(location, channel, intervals)[source]
Bases:
_SlotsEqualityComparisionObject
Object representing a Channel. Each time interval should end up in one MiniSEED file.
Attributes
Determine if the channel requires any station information. |
|
Returns a tuple of the minimum start time and the maximum end time. |
Special Methods
- Channel.__delattr__(name, /)
Implement delattr(self, name).
- Channel.__dir__()
Default dir() implementation.
- Channel.__eq__(other)
- Channel.__format__(format_spec, /)
Default object formatter.
- Channel.__ge__(value, /)
Return self>=value.
- Channel.__getattribute__(name, /)
Return getattr(self, name).
- Channel.__gt__(value, /)
Return self>value.
- Channel.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- Channel.__le__(value, /)
Return self<=value.
- Channel.__lt__(value, /)
Return self<value.
- Channel.__ne__(value, /)
Return self!=value.
- Channel.__new__(**kwargs)
- Channel.__reduce__()
Helper for pickle.
- Channel.__reduce_ex__(protocol, /)
Helper for pickle.
- Channel.__repr__()
Return repr(self).
- Channel.__setattr__(name, value, /)
Implement setattr(self, name, value).
- Channel.__sizeof__()
Size of object in memory, in bytes.
- Channel.__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).