obspy.clients.filesystem.tsindex.Client.get_nslc

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

Get a list of tuples [(net, sta, loc, cha),…] containing information on what streams are 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))

Returns:

A list of tuples [(network, station, location, channel)…] containing information on what streams are included in the tsindex database.