obspy.clients.filesystem.tsindex.Client._get_tsindex_rows

Client._get_tsindex_rows(network, station, location, channel, starttime, endtime)[source]

Return a list of tuples [(net, sta, loc, cha, quality... etc.),...] containing information found in the tsindex table.

Information about the tsindex schema may be found in the mseedindex wiki.

Parameters:
  • network (str) Network code of requested data (e.g. “IU”). Wildcards ‘*’ and ‘?’ are supported.
  • station (str) Station code of requested data (e.g. “ANMO”). Wildcards ‘*’ and ‘?’ are supported.
  • location (str) Location code of requested data (e.g. “”). Wildcards ‘*’ and ‘?’ are supported.
  • channel (str) Channel code of requested data (e.g. “HHZ”). Wildcards ‘*’ and ‘?’ are supported.
  • starttime (UTCDateTime) Start of requested time window.
  • endtime (UTCDateTime) End of requested time window.