[seiscomp, scanloc] Install, add .gitignore

This commit is contained in:
2025-10-09 15:07:02 +02:00
commit 20f5301bb1
2848 changed files with 1315858 additions and 0 deletions

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<seiscomp>
<plugin name="ScoreSum">
<extends>scanloc</extends>
<description>
Plugin for scoring origins in scanloc by score processor OriginSum
</description>
<configuration>
<group name="score">
<group name="sum">
<description>
Origin score processor "OriginSum": Compute origin scores as
weighted averages of number of used
P phases (p), number of unused P phases (p0), number of used
S phases (s), number of unused S phases (s0), origin depth and
residual. The score applies for ranking origins of events. Add
the plugin "scoresum" to the global parameter "plugins" and
"OriginSum" to the scanloc parameter "score" for applying this
score processor.
</description>
<parameter name="p" type="list:double" default="1.0">
<description>
The weight for number of used P arrival measures.
Assumes only arrival time when exactly 1 value is set.
Use a comma-separated list, wT,wSlo,wBaz, for giving
specific weight to pick time, slowness and back azimuth,
respectively.
Example: 1.0,0.0,0.0 .
The usage of slowness and back azimuth depends on locator.
They are not considered by Hypo71, NonLinLoc, StdLoc and
FixedHypocenter.
The parameter is used for Is infrasound phases when
considered in clustering.
</description>
</parameter>
<parameter name="p0" type="double" default="0.5">
<description>
The weight for number of added but unused P arrivals.
The parameter is used for Is infrasound phases when
considered in clustering.
</description>
</parameter>
<parameter name="s" type="list:double" default="2.0">
<description>
The weight for number of used S arrival measures.
Assumes only arrival time when exactly 1 value is set.
Use a comma-separated list, wT,wSlo,wBaz, for giving
specific weight to pick time, slowness and back azimuth,
respectively.
Example: 2.0,0.0,0.0 .
The usage of slowness and back azimuth depends on locator.
They are not considered by Hypo71, NonLinLoc, StdLoc and
FixedHypocenter.
</description>
</parameter>
<parameter name="s0" type="double" default="0.5">
<description>
The weight for number of added but unused S arrivals.
</description>
</parameter>
<parameter name="normalizationDepth" type="double" unit="km" default="650.0">
<description>
Origin depth is normalized to this value for computing the
score contribution. Shallower depths contribute to larger
score.
</description>
</parameter>
<parameter name="depth" type="double" default="1.0">
<description>
The weight of origin depth. Set this value to 0.0 for
scoring origins independent of depth whenever shallow and
deep sources are equally expected.
</description>
</parameter>
<parameter name="normalizationRMS" type="double" unit="s" default="1.5">
<description>
Origin RMS is normalized to this value for computing the
score contribution. Lower RMS contribute to larger score.
</description>
</parameter>
<parameter name="residual" type="double" default="1.0">
<description>
The weight of origin RMS residual.
</description>
</parameter>
<parameter name="increaseManual" type="boolean" default="false">
<description>
Increase the weight for manual picks by a factor of 1.001.
This gives preference to manual picks in case
automatic ones co-exist for the same station.
</description>
</parameter>
</group>
</group>
</configuration>
</plugin>
</seiscomp>