Auxiliary Scripts¶
The scanloc package also ships with auxiliary scripts for real-time or non-real-time
playbacks and tuning. For these tools, the usual options (-h
,
--debug
, etc.) apply. Read the Examples and Playbacks section for
example applications.
dump_picks¶
dump_picks reads picks and amplitudes from a database and writes them to file or the command line in XML format (SCML). Control the database request to filter by
Author (
--author
) contributing the object,Comparison with inventory (
--check-inventory
),Object evaluation mode (
--manual
,--automatic
),Region of contributing station (
--region
),Time (
--time-window
,--hours
,--start
).
You may use playback_picks with
--print
for printing statistics and useful information of the
retrieved pick and amplitude set.
For retrieving events or origins with pick, amplitudes, etc. from a database use scxmldump [22].
Examples¶
Print command-line help:
dump_picks -h
Extract all picks and amplitudes for the given time span made by author ‘l1autopick’:
dump_picks -t 2022-01-20T13:52:00~2022-01-20T13:57:00 -d localhost --author l1autopick
Command-Line Options¶
dump_picks [options]
Dump¶
- --hours arg¶
Type: string
Start search hours before now considering object time, not creation time. If set,
--time-window
,--start
,--end
are ignored.
- --start arg¶
Type: string
Default:
1970-01-01 00:00:00.000
Start time of search until now considering object time, not creation time. If set,
--time-window
is ignored.
- --end arg¶
Type: string
Default:
now
End time of search considering object time, not creation time. If set,
--time-window
is ignored.
- -t, --time-window arg¶
Type: string
Default:
1970-01-01T00:00:00~now
Specify time window to search picks and amplitudes by their time. Use one single string which must be enclosed by quotes in case of spaces in the time string. Times are of course in UTC and separated by a tilde ‘~’.
- --maximum-delay arg¶
Type: double
Unit:
s
Maximum allowed delay of picks or amplitudes, hence the difference between creation time and actual time value. Allows identifcation of picks found in real time.
- -r, --region arg¶
Type: string
Unit:
deg
Default:
-90,-180,90,180
Region bounding box “lat0,lon0,lat1,lon1”
latitude: -90 - +90
longitude: -180 - +360
- -c, --check-inventory¶
Dump picks only when corresponding streams are found in inventory.
- -O, --origin arg¶
Type: string
Origin ID. Dump all picks associated with the origin that has the given origin ID.
- -m, --manual¶
Dump only manual picks.
- -a, --automatic¶
Dump only automatic picks.
- -n, --no-amp¶
Do not dump amplitudes from picks. Amplitudes are not required by scanloc.
Output¶
- -o, --output¶
Type: string
Name of output file. If not given, XML is written to stdout.
playback_picks¶
playback_picks plays back picks, amplitudes and origins from XML files at normal or different speed and sends them to the messaging system. It can also be used to print statistics and information extracted from the read XML file. playback_picks supports multiple pipelines by defining the message groups into which objects are injected. The script allows controlling:
Message groups: Append the message groups for sending picks and amplitudes.
Mode (
--mode
): In real-time mode a constant number of seconds is added to the creation and reference times before sending an object to the messaging for mimicking real-time situations at current time. The seconds to add is derived from the time of the first object. Default mode is historic.Speed (
--speed
): The speed factor to use.Start (
--jump
): Ignore the first objects within the given number of seconds.Timing (
--timing
): Define the sorting of the objects. Default is creationTime. Consider the comments on timing in section Examples and Playbacks.
Important
‘creationTime’ should be considered for playing back origins since their actual origin time values are always before picks and amplitudes.
Examples¶
Print the command-line help:
playback_picks -h
Just print statistics of the read XML including author information and stream codes on which picks and amplitudes were measured. The NSLC information can be used to extract waveforms or to set up corresponding bindings:
playback_picks --print picks.xml
Make a playback injecting picks and origins into different message groups but amplitudes into the same default group, e.g., of different pipelines. ‘creationTime’ is used as a time reference since origin times are before times of picks and amplitudes and considering ‘pickTime’ would distort the order of the objects unrealistically:
playback_picks origins.xml l1picks.xml:L1PICK:AMPLITUDE:L1LOCATION --timing creationTime
Command-Line Options¶
playback_picks [options]
Playback¶
- -j, --jump arg¶
Type: double
Unit:
minute
Jump in time by given value ignoring the corresponding objects.
- --mode arg¶
Default:
historic
Type: string
Values:
historic, realTime
Playback mode. ‘realTime’ mimics current situation, ‘historic’ preserves all times.
- --print¶
Just print some statistics of the read XML file and then exit without playing back. The list of stream codes (NSLC) is printed to stdout. All other information is printed to stderr. The NSLC information can be used, e.g., for filtering waveforms (scart [12]) or inventory (invextr [8]), for creating global bindings or applying author filtering, e.g., in dump_picks.
- --speed arg¶
Default:
1
Type: double
Speed of playback.
1: true speed.
- --timing arg¶
Default:
creationTime
Type: string
Values:
pickTime,creationTime
Timing reference: ‘pickTime’ plays back in order of actual times of picks, amplitudes and origins, ‘creationTime’ considers their creation times instead. Use ‘pickTime’ if creation times are not representative of the order of objects, e.g., when created in playbacks. ‘creationTime’ should be considered for playing back origins since their actual origin time values are always before picks and amplitudes.