obspy.clients.filesystem.tsindex.Client.get_availability_extent

Client.get_availability_extent(network=None, station=None, location=None, channel=None, starttime=None, endtime=None)[source]

Get a list of tuples [(network, station, location, channel, earliest, latest)] containing data extent info for time series included in the tsindex database.

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.

Return type:

list(tuple(str, str, str, str, UTCDateTime, UTCDateTime))

Returns:

A list of tuples [(network, station, location, channel, earliest, latest)…] containing data extent info for time series included in the tsindex database.