obspy.clients.seishub.client._StationMapperClient
- class _StationMapperClient(client)[source]
Bases:
_BaseRESTClient
Interface to access the SeisHub Station Web service.
Warning
This function should NOT be initialized directly, instead access the object via the
obspy.clients.seishub.client.Client.station
attribute.
Attributes
Public Methods
DELETEs a XML resource. |
|
Get coordinate information. |
|
Gets a list of station information. |
|
Get PAZ for a station at given time span. |
|
Gets a resource. |
|
Gets a XML resource. |
|
PUTs a XML resource. |
Special Methods
- _StationMapperClient.__delattr__(name, /)
Implement delattr(self, name).
- _StationMapperClient.__dir__()
Default dir() implementation.
- _StationMapperClient.__eq__(value, /)
Return self==value.
- _StationMapperClient.__format__(format_spec, /)
Default object formatter.
- _StationMapperClient.__ge__(value, /)
Return self>=value.
- _StationMapperClient.__getattribute__(name, /)
Return getattr(self, name).
- _StationMapperClient.__gt__(value, /)
Return self>value.
- _StationMapperClient.__hash__()
Return hash(self).
- _StationMapperClient.__init__(client)
- _StationMapperClient.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- _StationMapperClient.__le__(value, /)
Return self<=value.
- _StationMapperClient.__lt__(value, /)
Return self<value.
- _StationMapperClient.__ne__(value, /)
Return self!=value.
- _StationMapperClient.__new__(**kwargs)
- _StationMapperClient.__reduce__()
Helper for pickle.
- _StationMapperClient.__reduce_ex__(protocol, /)
Helper for pickle.
- _StationMapperClient.__repr__()
Return repr(self).
- _StationMapperClient.__setattr__(name, value, /)
Implement setattr(self, name, value).
- _StationMapperClient.__sizeof__()
Size of object in memory, in bytes.
- _StationMapperClient.__str__()
Return str(self).
- _StationMapperClient.__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).