obspy.clients.base.StationClient.get_stations
- abstract StationClient.get_stations(*args, **kwargs)[source]
Returns an Inventory.
Keyword arguments are passed to the underlying concrete class.
- Parameters:
starttime (
UTCDateTime
) – Limit to metadata epochs starting on or after the specified start time.endtime (
UTCDateTime
) – Limit to metadata epochs ending on or before the specified end time.startbefore (
UTCDateTime
) – Limit to metadata epochs starting before specified time.startafter (
UTCDateTime
) – Limit to metadata epochs starting after specified time.endbefore (
UTCDateTime
) – Limit to metadata epochs ending before specified time.endafter (
UTCDateTime
) – Limit to metadata epochs ending after specified time.network (str) – Select one or more network codes. Can be SEED network codes or data center defined codes. Multiple codes are comma-separated.
station (str) – Select one or more SEED station codes. Multiple codes are comma-separated.
location (str) – Select one or more SEED location identifiers. Multiple identifiers are comma-separated. As a special case
“--“
(two dashes) will be translated to a string of two space characters to match blank location IDs.channel (str) – Select one or more SEED channel codes. Multiple codes are comma-separated.
minlatitude (float) – Limit to stations with a latitude larger than the specified minimum.
maxlatitude (float) – Limit to stations with a latitude smaller than the specified maximum.
minlongitude (float) – Limit to stations with a longitude larger than the specified minimum.
maxlongitude (float) – Limit to stations with a longitude smaller than the specified maximum.
latitude (float) – Specify the latitude to be used for a radius search.
longitude (float) – Specify the longitude to the used for a radius search.
minradius (float) – Limit results to stations within the specified minimum number of degrees from the geographic point defined by the latitude and longitude parameters.
maxradius (float) – Limit results to stations within the specified maximum number of degrees from the geographic point defined by the latitude and longitude parameters.