Retrieves waveform data via ArcLink and returns an ObsPy Stream object.
Parameters: |
|
---|---|
Returns: | ObsPy Stream object. |
Example
>>> from obspy.arclink import Client
>>> from obspy import UTCDateTime
>>> client = Client("webdc.eu", 18001, user='test@obspy.org')
>>> t = UTCDateTime("2009-08-20 04:03:12")
>>> st = client.getWaveform("BW", "RJOB", "", "EH*", t - 3, t + 15)
>>> st.plot()