Command reference
squirrel summon¶
Fill local cache.
- squirrel summon¶
usage: squirrel summon [--help] [--loglevel LEVEL] [--progress DEST]
[--threads-loading INT] [--add PATH [PATH ...]]
[--include REGEX] [--exclude REGEX] [--optimistic]
[--format FORMAT] [--add-only KINDS] [--persistent NAME]
[--samples-block N] [--dataset FILE] [--upgrade-storage]
[--kinds KINDS] [--codes CODES] [--codes-exclude CODES]
[--tmin TIME] [--tmax TIME] [--time TIME]
[--channel-priorities CHA] [--sample-rate-min FLOAT]
[--sample-rate-max FLOAT] [--get-events]
[--event-time-span DURATION,DURATION] [--tinc SECONDS]
Options:
- --channel-priorities CHA
List of 2-character band/instrument code combinations to try. For example, giving
HH,BHwould first try to getHH?channels and then fallback toBH?if these are not available. The first matching waveforms are returned. Use in combination with--sample-rate-minand--sample-rate-maxto constrain the sample rate.
- --sample-rate-min FLOAT
Minimum sample rate [Hz] to consider.
- --sample-rate-max FLOAT
Maximum sample rate [Hz] to consider.
- --get-events
Get only time spans with events.
- --event-time-span DURATION,DURATION
Set time span to be completed for events, e.g. -30m,2h.
- --tinc SECONDS
Download loop time window length [s].
General options:
- --help, -h
Show this help message and exit.
- --loglevel LEVEL
Set logger level. Choices:
critical,error,warning,info,debug. Default:info.
- --progress DEST
Set how progress status is reported. Choices:
terminal,log,off. Default:terminal.
- --threads-loading INT
Set number of threads used in file content loading/decoding. Default: 1
Data collection options:
- --add PATH [PATH ...], -a PATH [PATH ...]
Add files and directories with waveforms, metadata and events. Content is indexed and added to the temporary (default) or persistent (see
--persistent) data selection.
- --include REGEX
Only include files whose paths match the regular expression
REGEX. Examples:--include='\.MSEED$'would only match files ending with.MSEED.--include='\.BH[EN]\.'would match paths containing.BHE.or.BHN..--include='/2011/'would match paths with a subdirectory2011in their path hierarchy.
- --exclude REGEX
Only include files whose paths do not match the regular expression
REGEX. Examples:--exclude='/\.DS_Store/'would exclude anything inside any.DS_Storesubdirectory.
- --optimistic, -o
Disable checking file modification times for faster startup.
- --format FORMAT, -f FORMAT
Assume input files are of given
FORMAT. Choices:datacube,hdf5_optodas,mseed,pyrocko_events,pyrocko_stations,sac,spickle,stationxml,tdms_idas,virtual,yaml. Default:detect.
- --add-only KINDS
Restrict meta-data scanning to given content kinds.
KINDSis a comma-separated list of content kinds. Choices:waveform,station,channel,response,event,waveform_promise. By default, all content kinds are indexed.
- --persistent NAME, -p NAME
Create/use persistent selection with given
NAME. Persistent selections can be used to speed up startup of Squirrel-based applications.
- --samples-block N
When downloading data, use blocks with approximately
Nsamples. Default: 100000
- --dataset FILE, -d FILE
Add files, directories and remote sources from dataset description file. This option can be repeated to add multiple datasets. Run
squirrel templateto obtain examples of dataset description files.
- --upgrade-storage
Upgrade storage layout of cached data to latest version.
Data query options:
- --kinds KINDS
Content kinds to query.
KINDSis a comma-separated list of content kinds. Choices:waveform,station,channel,response,event,waveform_promise. By default, all content kinds are queried.
- --codes CODES
Code patterns to query (
STA,NET.STA,NET.STA.LOC,NET.STA.LOC.CHA, orNET.STA.LOC.CHA.EXTRA). The pattern may contain wildcards*(zero or more arbitrary characters),?(single arbitrary character), and[CHARS](any character out ofCHARS). Multiple patterns can be given by separating them with commas.
- --codes-exclude CODES
Code patterns to exclude. See
--codes.
- --tmin TIME
Begin of time interval to query. Format:
YYYY-MM-DD HH:MM:SS.FFF, truncation allowed.
- --tmax TIME
End of time interval to query. Format:
YYYY-MM-DD HH:MM:SS.FFF, truncation allowed.
- --time TIME
Time instant to query. Format:
YYYY-MM-DD HH:MM:SS.FFF, truncation allowed.
Manual: https://pyrocko.org/docs/current/apps/squirrel
Tutorial: https://pyrocko.org/docs/current/apps/squirrel/tutorial.html
Examples: https://pyrocko.org/docs/current/apps/squirrel/manual.html#examples
🐿️