obspy.clients.seishub.client._WaveformMapperClient.get_waveforms
- _WaveformMapperClient.get_waveforms(network, station, location=None, channel=None, starttime=None, endtime=None, apply_filter=None, get_paz=False, get_coordinates=False, metadata_timecheck=True, **kwargs)[source]
Gets a ObsPy Stream object.
- Parameters:
network (str) – Network code, e.g.
'BW'
.station (str) – Station code, e.g.
'MANZ'
.location (str) – Location code, e.g.
'00'
.channel (str) – Channel code, supporting wildcard for component, e.g.
'EHE'
or'EH*'
.starttime (
UTCDateTime
) – Start date and time.endtime (
UTCDateTime
) – End date and time.apply_filter (bool, optional) – Apply filter (default is
False
).get_paz (bool, optional) – Fetch PAZ information and append to
Stats
of all fetched traces. This considerably slows down the request (default isFalse
).get_coordinates (bool, optional) – Fetch coordinate information and append to
Stats
of all fetched traces. This considerably slows down the request (default isFalse
).metadata_timecheck (bool, optional) – For
get_paz
andget_coordinates
check if metadata information is changing from start to end time. Raises an Exception if this is the case. This can be deactivated to save time.
- Return type:
- Returns:
A ObsPy Stream object.