obspy.clients.filesystem.tsindex.Client.get_waveforms_bulk
- Client.get_waveforms_bulk(query_rows, merge=-1)[source]
Query tsindex database and read miniSEED data from local indexed directory tree using a bulk request.
- Parameters:
query_rows (list(tuple(str, str, str, str,
UTCDateTime
,UTCDateTime
)) – A list of tuples [(net, sta, loc, cha, starttime, endtime),…] containing information on what timeseries should be returned from the indexed archive. Wildcards ‘*’ and ‘?’ are supported.merge (int or None) – Specifies, which merge operation should be performed on the stream before returning the data. Default (
-1
) means only a conservative cleanup merge is performed to merge seamless traces (e.g. when reading across day boundaries). SeeStream.merge()
for details. If set toNone
(orFalse
) no merge operation at all will be performed.
- Return type:
- Returns:
A ObsPy
Stream
object containing requested timeseries data.