squirrel.client
¶
-
class
Constraint
(**kwargs)[source]¶ Bases:
pyrocko.guts.Object
Used by some data-sources to grow or join locally mirrored data selections.
Squirrel data-sources typically try to mirror only a subset of the remotely available data. This subset may need to be grown or updated when data from other time intervals or from locations outside the initially requested region is requested. This class helps in the involved bookeeping.
The current implementation only supports a time interval selection with a single time span but more sophisticated constraints, including e.g. location boxes could be thought of.
-
♦
tmin
¶ time_float, optional
-
♦
tmax
¶ time_float, optional
-
contains
(constraint)[source]¶ Check if the constraint completely includes a more restrictive one.
Parameters: constraint ( Constraint
) – Other constraint.
-
expand
(constraint)[source]¶ Widen constraint to include another given constraint.
Parameters: constraint ( Constraint
) – Other constraint.Update is done in-place.
-
♦
-
class
Source
(**kwargs)[source]¶ Bases:
pyrocko.guts.Object
Base class for Squirrel data-sources.
Data-sources can be attached to a Squirrel instance to allow transparent access to remote (or otherwise generated) resources, e.g. through FDSN web services (
FDSNSource
) or online event catalogs (CatalogSource
).Derived classes implement the details of querying, caching, updating and bookkeeping of the accessed data.
-
update_channel_inventory
(squirrel, constraint)[source]¶ Let local inventory be up-to-date with remote for a given constraint.
-
-
class
FDSNSource
(site, query_args=None, **kwargs)[source]¶ Bases:
pyrocko.squirrel.client.base.Source
Squirrel data-source to transparently get data from FDSN web services.
Attaching an
FDSNSource
object to aSquirrel
allows the latter to download station and waveform data from an FDSN web service should the data not already happen to be available locally.-
♦
site
¶ str
FDSN site url or alias name (see
pyrocko.client.fdsn
).
-
♦
query_args
¶ dict
ofstr
objects, optionalCommon query arguments, which are appended to all queries.
-
♦
expires
¶ float
(pyrocko.guts.Duration
), optionalExpiration time [s]. Information older than this will be refreshed. This only applies to station-metadata. Waveforms do not expire. If set to
None
neither type of data expires.
-
♦
cache_path
¶ str
, optionalDirectory path where any downloaded waveforms and station meta-data are to be kept. By default the Squirrel environment’s cache directory is used.
bool
, default:True
If
True
, waveforms are shared with other FDSN sources in the same Squirrel environment. IfFalse
, they are kept separate.
-
♦
user_credentials
¶ tuple
of 2str
objects, optionalUser and password for FDSN servers requiring password authentication
-
♦
auth_token
¶ str
, optionalAuthentication token to be presented to the FDSN server.
-
♦
auth_token_path
¶ str
, optionalPath to file containing the authentication token to be presented to the FDSN server.
-
♦
-
class
CatalogSource
(catalog, query_args=None, **kwargs)[source]¶ Bases:
pyrocko.squirrel.client.base.Source
Squirrel data-source to transparently access online earthquake catalogs.
The catalog source maintains and synchronizes a partial copy of the online catalog, e.g. of all events above a certain magnitude. The time span for which the local copy of the catalog should be up-to date is maintained automatically be Squirrel. Data is loaded and updated in chunks as needed in a just-in-time fashion. Data validity can optionally expire after a given period of time and new data can be treated to be preliminary. In both cases information will be refreshed as needed.
-
♦
catalog
¶ str
Catalog name.
-
♦
query_args
¶ dict
ofstr
objects, optionalCommon arguments, which are appended to all queries, e.g. to constrain location, depth or magnitude ranges.
-
♦
expires
¶ float
(pyrocko.guts.Duration
), optionalExpiration time [s]. Information older than this will be refreshed, i.e. queried again.
-
♦
anxious
¶ float
(pyrocko.guts.Duration
), optionalAnxiety period [s]. Information will be treated as preliminary if it was younger than this at the time of its retrieval. Preliminary information is refreshed on each query relevant to it.
-
♦
cache_path
¶ str
, optionalDirectory path where the partial local copy of the catalog is kept. By default the Squirrel environment’s cache directory is used.
-
♦
-
class
FileFormat
(dummy) → None[source]¶ Bases:
pyrocko.guts.StringChoice
Any
str
out of['detect', 'datacube', 'mseed', 'pyrocko_events', 'pyrocko_stations', 'sac', 'stationxml', 'tdms_idas', 'virtual', 'yaml']
.
-
class
ContentKind
(dummy) → None[source]¶ Bases:
pyrocko.guts.StringChoice
Any
str
out of['waveform', 'station', 'channel', 'response', 'event']
.
-
class
LocalData
(*args, **kwargs)[source]¶ Bases:
pyrocko.squirrel.client.base.Source
,pyrocko.has_paths.HasPaths
A collection of local files attachable as a Squirrel data-source.
-
♦
paths
¶ list
ofstr
(pyrocko.has_paths.Path
) objects, default:[]
Directory and file paths to add to the Squirrel instance. See
Squirrel.add()
.
-
♦
kinds
¶ list
ofstr
(ContentKind
) objects, optionalContent kinds to be added to the Squirrel selection. By default all known content kinds are added.
-
♦
include
¶ str
, optionalIf not
None
, files are only included if their paths match the given regular expression pattern.
-
♦
exclude
¶ str
, optionalIf not
None
, files are only included if their paths do not match the given regular expression pattern.
-
♦
format
¶ str
(FileFormat
), default:'detect'
Assume files are of given format.
-
♦