obspy.clients.neic.client.Client¶
-
class
Client
(host='137.227.224.97', port=2061, timeout=30, debug=False)[source]¶ Bases:
object
NEIC CWB QueryServer request client for waveform data
- Parameters
host (str, optional) – The IP address or DNS name of the server (default is “137.227.224.97” for cwbpub.cr.usgs.gov)
port (int, optional) – The port of the QueryServer (default is
2061
)timeout (int, optional) – Wait this much time before timeout is raised (default is
30
)debug (bool, optional) – if
True
, print debug information (default isFalse
)
Example
>>> from obspy.clients.neic import Client >>> client = Client() >>> t = UTCDateTime() - 5 * 3600 # 5 hours before now >>> st = client.get_waveforms("IU", "ANMO", "00", "BH?", t, t + 10) >>> print(st) # doctest: +ELLIPSIS 3 Trace(s) in Stream: IU.ANMO.00.BH... | 40.0 Hz, 401 samples IU.ANMO.00.BH... | 40.0 Hz, 401 samples IU.ANMO.00.BH... | 40.0 Hz, 401 samples >>> st = client.get_waveforms_nscl("IUANMO BH.00", t, 10) >>> print(st) # doctest: +ELLIPSIS 3 Trace(s) in Stream: IU.ANMO.00.BH... | 40.0 Hz, 401 samples IU.ANMO.00.BH... | 40.0 Hz, 401 samples IU.ANMO.00.BH... | 40.0 Hz, 401 samples
Attributes
__dict__
__doc__
__module__
__weakref__
list of weak references to the object (if defined)
Public Methods
Gets a waveform for a specified net, station, location and channel from start time to end time.
Gets a regular expression of channels from a start time for a duration in seconds.
Special Methods
Default dir() implementation.
Default object formatter.
Initializes access to a CWB QueryServer
This method is called when a class is subclassed.
Create and return a new object.
Helper for pickle.
Helper for pickle.
Size of object in memory, in bytes.
Abstract classes can override this to customize issubclass().