obspy.clients.seishub.client._WaveformMapperClient
- class _WaveformMapperClient(client)[source]
Bases:
object
Interface to access the SeisHub Waveform Web service.
Warning
This function should NOT be initialized directly, instead access the object via the
obspy.clients.seishub.client.Client.waveform
attribute.
Public Methods
Gets a list of channel ids. |
|
Gets a list of network latency values. |
|
Gets a list of location ids. |
|
Gets a list of network ids. |
|
Gets a preview of a ObsPy Stream object. |
|
Gets a preview of a ObsPy Stream object. |
|
Gets a list of station ids. |
|
Gets a ObsPy Stream object. |
Special Methods
- _WaveformMapperClient.__delattr__(name, /)
Implement delattr(self, name).
- _WaveformMapperClient.__dir__()
Default dir() implementation.
- _WaveformMapperClient.__eq__(value, /)
Return self==value.
- _WaveformMapperClient.__format__(format_spec, /)
Default object formatter.
- _WaveformMapperClient.__ge__(value, /)
Return self>=value.
- _WaveformMapperClient.__getattribute__(name, /)
Return getattr(self, name).
- _WaveformMapperClient.__gt__(value, /)
Return self>value.
- _WaveformMapperClient.__hash__()
Return hash(self).
- _WaveformMapperClient.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- _WaveformMapperClient.__le__(value, /)
Return self<=value.
- _WaveformMapperClient.__lt__(value, /)
Return self<value.
- _WaveformMapperClient.__ne__(value, /)
Return self!=value.
- _WaveformMapperClient.__new__(**kwargs)
- _WaveformMapperClient.__reduce__()
Helper for pickle.
- _WaveformMapperClient.__reduce_ex__(protocol, /)
Helper for pickle.
- _WaveformMapperClient.__repr__()
Return repr(self).
- _WaveformMapperClient.__setattr__(name, value, /)
Implement setattr(self, name, value).
- _WaveformMapperClient.__sizeof__()
Size of object in memory, in bytes.
- _WaveformMapperClient.__str__()
Return str(self).
- _WaveformMapperClient.__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).