[installation] Change to nightly
This commit is contained in:
@ -34,7 +34,7 @@
|
||||
comma. Add ${plugins} to consider all previously read values.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="cityXML" type="string">
|
||||
<parameter name="cityXML" type="file" values="*.xml" options="read">
|
||||
<description>
|
||||
Path to the cities XML file. If undefined, the data is read
|
||||
from "@CONFIGDIR@/cities.xml" or
|
||||
@ -115,7 +115,7 @@
|
||||
are written to log files per modules as
|
||||
"@CONFIGDIR@/log/[module].log".
|
||||
</description>
|
||||
<parameter name="level" type="int" default="2" values="1,2,3,4´">
|
||||
<parameter name="level" type="int" default="2" values="1,2,3,4">
|
||||
<description>
|
||||
Set the logging level between 1 and 4 where 1=ERROR,
|
||||
2=WARNING, 3=INFO and 4=DEBUG.
|
||||
@ -269,14 +269,14 @@
|
||||
is established. Override these values only if you know what you
|
||||
are doing.
|
||||
</description>
|
||||
<parameter name="inventory" type="string">
|
||||
<parameter name="inventory" type="file" options="read" values="*.xml">
|
||||
<description>
|
||||
Load the inventory database from a given XML file if set.
|
||||
This overrides the inventory definitions loaded from the
|
||||
database backend.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="config" type="string">
|
||||
<parameter name="config" type="file" options="read" values="*.xml">
|
||||
<description>
|
||||
Load the configuration database from a given XML file if set.
|
||||
This overrides the configuration definitions loaded from the
|
||||
@ -344,7 +344,7 @@
|
||||
</group>
|
||||
</group>
|
||||
<group name="scripts">
|
||||
<parameter name="crashHandler" type="path">
|
||||
<parameter name="crashHandler" type="file" options="read">
|
||||
<description>
|
||||
Path to crash handler script.
|
||||
</description>
|
||||
@ -453,9 +453,17 @@
|
||||
e.g. "signalBegin". This can be overridden per
|
||||
station in its bindings.
|
||||
</description>
|
||||
<parameter name="interface" type="string" default="libtau">
|
||||
<parameter name="interface" type="string" default="LOCSAT" values="libtau,LOCSAT,homogeneous">
|
||||
<description>
|
||||
The name of the travel-time interface to use. The list
|
||||
can be extended by plugins.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="model" type="string" default="iasp91">
|
||||
<description>
|
||||
The name of the travel-time interface (velocity) model
|
||||
to use.
|
||||
</description>
|
||||
</parameter>
|
||||
</group>
|
||||
<group name="WoodAnderson">
|
||||
@ -483,10 +491,25 @@
|
||||
</parameter>
|
||||
</group>
|
||||
<struct type="GlobalAmplitudeProfile" title="Amplitude-type profile" aliases="config:amplitudes.aliases">
|
||||
<parameter name="regionalize" type="boolean" default="true">
|
||||
<description>
|
||||
Control if the amplitude calculation should be
|
||||
regionalized or not. The regions and their configuration
|
||||
are taken from the corresponding magnitude profiles. If
|
||||
regionalization is activate, then e.g. modules without
|
||||
origin information will not be able to compute an
|
||||
amplitude as the origin is required to determine the
|
||||
effective settings.
|
||||
|
||||
If amplitudes for this particular type shall be computed
|
||||
regardless of any defined regions, set this parameter to
|
||||
false.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="considerUnusedArrivals" type="boolean" default="false">
|
||||
<description>
|
||||
If enabled then also stations with unused (disabled)
|
||||
arrivals are considerd for amplitude and implicitly
|
||||
If enabled, then also stations with unused (disabled)
|
||||
arrivals are considered for amplitude and implicitly
|
||||
magnitude computations, e.g. by scamp, scmag and scolv.
|
||||
</description>
|
||||
</parameter>
|
||||
@ -538,7 +561,7 @@
|
||||
interpolated but not extrapolated.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="regionFile" type="path">
|
||||
<parameter name="regionFile" type="file" options="read">
|
||||
<description>
|
||||
Path to a geofeature file, e.g. in BNA or GeoJSON format,
|
||||
with one or more polygons defining geographic regions.
|
||||
@ -565,40 +588,72 @@
|
||||
Enable the region or not.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minDist" type="double" unit="deg">
|
||||
<parameter name="minDist" type="string" unit="deg">
|
||||
<description>
|
||||
The minimum distance required to compute a
|
||||
magnitude. This settings has no effect with e.g.
|
||||
scautopick as there is no information about the
|
||||
source of the event to compute the distance.
|
||||
The default value is implementation specific.
|
||||
The default value depends on magnitude type.
|
||||
|
||||
Although the default unit is 'deg', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
minDist = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxDist" type="double" unit="deg">
|
||||
<parameter name="maxDist" type="string" unit="deg">
|
||||
<description>
|
||||
The maximum distance allowed to compute a magnitude.
|
||||
This settings has no effect with e.g. scautopick
|
||||
as there is no information about the source of
|
||||
the event to compute the distance. The default
|
||||
value is implementation specific.
|
||||
value depends on magnitude type.
|
||||
|
||||
Although the default unit is 'deg', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
maxDist = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minDepth" type="double" unit="km">
|
||||
<parameter name="minDepth" type="string" unit="km">
|
||||
<description>
|
||||
The minimum depth required to compute a magnitude.
|
||||
This settings has no effect with e.g. scautopick
|
||||
as there is no information about the source of
|
||||
the event to retrieve the depth. The default
|
||||
value is implementation specific.
|
||||
value depends on magnitude type.
|
||||
|
||||
Although the default unit is 'km', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
minDepth = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxDepth" type="double" unit="km">
|
||||
<parameter name="maxDepth" type="string" unit="km">
|
||||
<description>
|
||||
The maximum depth allowed to compute a magnitude.
|
||||
This settings has no effect with e.g. scautopick
|
||||
as there is no information about the source of
|
||||
the event to retrieve the depth. The default
|
||||
value is implementation specific.
|
||||
value depends on magnitude type.
|
||||
|
||||
Although the default unit is 'km', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
maxDepth = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="check" type="string" default="source">
|
||||
@ -862,12 +917,12 @@
|
||||
|
||||
<option flag="I" long-flag="record-url" argument="arg" default="" publicID="records#record-url">
|
||||
<description>
|
||||
The recordstream source URL, format:
|
||||
The RecordStream source URL. Format:
|
||||
[service://]location[#type].
|
||||
"service" is the name of the recordstream driver
|
||||
"service" is the name of the RecordStream driver
|
||||
which can be queried with "--record-driver-list".
|
||||
If "service" is not given, "file://" is
|
||||
used.
|
||||
used and simply the name of a miniSEED file can be given.
|
||||
</description>
|
||||
</option>
|
||||
|
||||
@ -883,7 +938,7 @@
|
||||
</group>
|
||||
|
||||
<group name="Cities" publicID="cities">
|
||||
<option long-flag="city-xml" argument="arg" default="" publicID="cities#city-xml">
|
||||
<option long-flag="city-xml" argument="arg" default="" publicID="cities#city-xml" type="file" options="read" values="*.xml">
|
||||
<description>
|
||||
The path to the cities XML file. This overrides the default
|
||||
paths. Compare with the global parameter "citiesXML".
|
||||
@ -936,6 +991,8 @@
|
||||
Create amplitude type profiles to define the time windows,
|
||||
minimum signal-to-noise ratio, amplitude thresholds and
|
||||
restitution for measuring amplitudes of a certain type.
|
||||
|
||||
Standard amplitude types supported in SeisComP: Md,Mjma,ML,MLc,MLh,MLr,MLv,MN,mb,mB,Mwp,Ms_20,Ms(BB).
|
||||
</description>
|
||||
<parameter name="saturationThreshold" type="string" default="false" unit="counts; %">
|
||||
<description>
|
||||
@ -977,14 +1034,14 @@
|
||||
The parameters of this group will be overridden by type
|
||||
specific settings if given (see GlobalAmplitudeProfile).
|
||||
</description>
|
||||
<parameter name="taper" default="5" unit="s">
|
||||
<parameter name="taper" default="5" unit="s" type="double">
|
||||
<description>
|
||||
Define the length of the taper at either side of the
|
||||
waveform. The length will be added to the data
|
||||
request: start - taper and end + taper.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minFreq" default="0.00833333" unit="Hz">
|
||||
<parameter name="minFreq" default="0.00833333" unit="Hz" type="double">
|
||||
<description>
|
||||
The minimum frequency of the considered spectrum.
|
||||
|
||||
@ -995,7 +1052,7 @@
|
||||
that taper.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxFreq" default="0" unit="Hz">
|
||||
<parameter name="maxFreq" default="0" unit="Hz" type="double">
|
||||
<description>
|
||||
The maximum frequency of the considered spectrum.
|
||||
|
||||
@ -1014,9 +1071,17 @@
|
||||
noise time window specifications,
|
||||
e.g. "signalBegin".
|
||||
</description>
|
||||
<parameter name="interface" type="string" default="libtau">
|
||||
<parameter name="interface" type="string" default="LOCSAT" values="libtau,LOCSAT,homogeneous">
|
||||
<description>
|
||||
The name of the travel-time interface to use. The list
|
||||
can be extended by plugins.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="model" type="string" default="iasp91">
|
||||
<description>
|
||||
The name of the travel-time interface (velocity) model
|
||||
to use.
|
||||
</description>
|
||||
</parameter>
|
||||
</group>
|
||||
<group name="WoodAnderson">
|
||||
@ -1043,7 +1108,7 @@
|
||||
</description>
|
||||
</parameter>
|
||||
</group>
|
||||
<struct type="GlobalAmplitudeProfile" title="Amplitude type profile">
|
||||
<struct type="GlobalBindingsAmplitudeProfile" title="Amplitude type profile: Use name of amplitude type" aliases="config:amplitudes.aliases">
|
||||
<description>
|
||||
An amplitude profile configures global parameters for a
|
||||
particular amplitude type. The available amplitude types
|
||||
@ -1083,14 +1148,38 @@
|
||||
will be used instead.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minSNR" type="double">
|
||||
<parameter name="minSNR" type="double" default="3">
|
||||
<description>
|
||||
Define the minimum SNR to be reached to compute the
|
||||
amplitudes. This value is amplitude type specific and
|
||||
has no global default value.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="noiseBegin" type="double" unit="s">
|
||||
<parameter name="minPeriod" type="double" unit="s">
|
||||
<description>
|
||||
Define the minimum period of the measured amplitude. If
|
||||
the period is below this value, the amplitude will not be emitted.
|
||||
This value is specific to amplitude type and has no global
|
||||
default value. A value lower or equal than 0 will disable
|
||||
this check.
|
||||
|
||||
Caution: If a value is set but the amplitude does not
|
||||
provide the period, no amplitude is sent.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxPeriod" type="double" unit="s">
|
||||
<description>
|
||||
Define the maximum period of the measured amplitude. If
|
||||
the period is above this value, the amplitude will not be emitted.
|
||||
This value is specific to amplitude type and has no global
|
||||
default value. A value lower or equal than 0 will disable
|
||||
this check.
|
||||
|
||||
Caution: If a value is set but the amplitude does not
|
||||
provide the period, no amplitude is sent.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="noiseBegin" type="string" unit="time grammar" default="-35">
|
||||
<description>
|
||||
Override the default time (relative to the trigger
|
||||
time) of the begin of the noise window used to compute
|
||||
@ -1099,7 +1188,7 @@
|
||||
should only be changed if you know what you are doing.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="noiseEnd" type="double" unit="s">
|
||||
<parameter name="noiseEnd" type="string" unit="time grammar" default="-5">
|
||||
<description>
|
||||
Override the default time (relative to the trigger
|
||||
time) of the end of the noise window used to compute
|
||||
@ -1108,7 +1197,7 @@
|
||||
should only be changed if you know what you are doing.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="signalBegin" type="double" unit="s">
|
||||
<parameter name="signalBegin" type="string" unit="time grammar" default="-5">
|
||||
<description>
|
||||
Override the default time (relative to the trigger
|
||||
time) of the begin of the signal window used to compute
|
||||
@ -1117,7 +1206,7 @@
|
||||
changed if you know what you are doing.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="signalEnd" type="double" unit="s">
|
||||
<parameter name="signalEnd" type="string" unit="time grammar" default="30">
|
||||
<description>
|
||||
Override the default time (relative to the trigger
|
||||
time) of the end of the signal window used to compute
|
||||
@ -1126,69 +1215,86 @@
|
||||
changed if you know what you are doing.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minDist" type="double" unit="deg">
|
||||
<parameter name="minDist" type="string" unit="deg" default="0">
|
||||
<description>
|
||||
The minimum distance required to compute an amplitude.
|
||||
This settings has no effect with e.g. scautopick as there
|
||||
is no information about the source of the event to compute
|
||||
the distance. The default value is implementation
|
||||
specific.
|
||||
the distance. The default value depends on
|
||||
amplitude type.
|
||||
|
||||
Although the default unit is 'deg', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
minDist = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxDist" type="double" unit="deg">
|
||||
<parameter name="maxDist" type="string" unit="deg" default="180">
|
||||
<description>
|
||||
The maximum distance allowed to compute an amplitude.
|
||||
This settings has no effect with e.g. scautopick as there
|
||||
is no information about the source of the event to compute
|
||||
the distance. The default value is implementation
|
||||
specific.
|
||||
the distance. The default value depends on
|
||||
amplitude type.
|
||||
|
||||
Although the default unit is 'deg', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
maxDist = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minDepth" type="double" unit="km">
|
||||
<parameter name="minDepth" type="string" unit="km" default="-1000000">
|
||||
<description>
|
||||
The minimum depth required to compute an amplitude.
|
||||
This settings has no effect with e.g. scautopick as there
|
||||
is no information about the source of the event to
|
||||
retrieve the depth. The default value is implementation
|
||||
specific.
|
||||
retrieve the depth. The default value depends on
|
||||
amplitude type.
|
||||
|
||||
Although the default unit is 'km', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
minDepth = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxDepth" type="double" unit="km">
|
||||
<parameter name="maxDepth" type="string" unit="km" default="1000000">
|
||||
<description>
|
||||
The maximum depth allowed to compute an amplitude.
|
||||
This settings has no effect with e.g. scautopick as there
|
||||
is no information about the source of the event to
|
||||
retrieve the depth. The default value is implementation
|
||||
specific.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="regionalize" type="boolean" default="true">
|
||||
<description>
|
||||
Control if the amplitude calculation should be
|
||||
regionalized or not. The regions and their configuration
|
||||
are taken from the corresponding magnitude profiles. If
|
||||
regionalization is activate, then e.g. modules without
|
||||
origin information will not be able to compute an
|
||||
amplitude as the origin is required to determine the
|
||||
effective settings.
|
||||
retrieve the depth. The default value depends on
|
||||
amplitude type.
|
||||
|
||||
If amplitudes for this particular type shall be computed
|
||||
regardless of any defined regions, set this parameter to
|
||||
false.
|
||||
Although the default unit is 'km', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
maxDepth = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<group name="resp">
|
||||
<description>
|
||||
Several parameters if usage of full responses is enabled.
|
||||
</description>
|
||||
<parameter name="taper" default="5" unit="s">
|
||||
<parameter name="taper" default="5" unit="s" type="double">
|
||||
<description>
|
||||
Define the length of the taper at either side of the
|
||||
waveform. The length will be added to the data
|
||||
request: start - taper and end + taper.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minFreq" default="0.00833333" unit="Hz">
|
||||
<parameter name="minFreq" default="0.00833333" unit="Hz" type="double">
|
||||
<description>
|
||||
After data are converted in to the frequency domain
|
||||
that minimum frequency defines the end of the left-side
|
||||
@ -1197,7 +1303,7 @@
|
||||
A value of 0 or lower disables that taper.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxFreq" default="0" unit="Hz">
|
||||
<parameter name="maxFreq" default="0" unit="Hz" type="double">
|
||||
<description>
|
||||
After data are converted in to the frequency domain
|
||||
that maximum frequency defines the start of the right-side
|
||||
@ -1211,11 +1317,13 @@
|
||||
</group>
|
||||
<group name="magnitudes">
|
||||
<description>
|
||||
Define magnitude parameters independent of amplitude-type profiles.
|
||||
For magnitude correction parameters, e.g., network of station
|
||||
corrections, create a magnitude type profile.
|
||||
Define the calibration parameters and constraints for computing
|
||||
magnitudes from measured amplitudes including static corrections.
|
||||
The parameters are independent of amplitude-type profiles.
|
||||
|
||||
Standard magnitude types supported in SeisComP: Md,Mjma,ML,MLc,MLh,MLr,MLv,MN,mb,mB,Mwp,Ms_20,Ms(BB).
|
||||
</description>
|
||||
<struct type="GlobalBindingsMagnitudeTypeProfile" title="Magnitude type profile">
|
||||
<struct type="GlobalBindingsMagnitudeProfile" title="Magnitude type profile: Use name of magnitude type" aliases="config:magnitudes.aliases">
|
||||
<description>
|
||||
A magnitude profile configures global parameters for a
|
||||
particular magnitude type. The available magnitude types
|
||||
@ -1243,6 +1351,106 @@
|
||||
Example: "0.0, regionA: -0.1, regionB: 0.2".
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minDist" type="string" unit="deg">
|
||||
<description>
|
||||
The minimum distance in degree required to compute a
|
||||
magnitude. This settings has no effect with e.g.
|
||||
scautopick as there is no information about the
|
||||
source of the event to compute the distance.
|
||||
The default value depends on magnitude type.
|
||||
|
||||
Although the default unit is 'deg', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
minDist = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxDist" type="string" unit="deg">
|
||||
<description>
|
||||
The maximum distance in degree allowed to compute a magnitude.
|
||||
This settings has no effect with e.g. scautopick
|
||||
as there is no information about the source of
|
||||
the event to compute the distance. The default
|
||||
value depends on magnitude type.
|
||||
|
||||
Although the default unit is 'deg', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minDepth" type="string" unit="km">
|
||||
<description>
|
||||
The minimum depth required to compute a magnitude.
|
||||
This settings has no effect with e.g. scautopick
|
||||
as there is no information about the source of
|
||||
the event to retrieve the depth. The default
|
||||
value depends on magnitude type.
|
||||
|
||||
Although the default unit is 'km', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
minDepth = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxDepth" type="string" unit="km">
|
||||
<description>
|
||||
The maximum depth allowed to compute a magnitude.
|
||||
This settings has no effect with e.g. scautopick
|
||||
as there is no information about the source of
|
||||
the event to retrieve the depth. The default
|
||||
value depends on magnitude type.
|
||||
|
||||
Although the default unit is 'km', values can be
|
||||
given in any SI distance unit such km, m or cm
|
||||
by simply appending the unit to the value.
|
||||
|
||||
Example:
|
||||
|
||||
maxDepth = 500km
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minSNR" type="double">
|
||||
<description>
|
||||
The minimum SNR required for a magnitude to pass
|
||||
the QC check. The station magnitude will be computed
|
||||
anyway but if the SNR is below this threshold it will
|
||||
be associated with weight zero and will not contribute
|
||||
to the network magnitude. If this value is set then it
|
||||
overrides the regionalized setting.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="minPeriod" type="double" unit="s">
|
||||
<description>
|
||||
The minimum period required for a magnitude to pass
|
||||
the QC check. The station magnitude will be computed
|
||||
anyway but if the period is below this threshold it will
|
||||
be associated with weight zero and will not contribute
|
||||
to the network magnitude. If this value is set, then it
|
||||
overrides the regionalized setting.
|
||||
|
||||
Caution: If a value is set but the amplitude does not
|
||||
provide the period, no magnitude is computed.
|
||||
</description>
|
||||
</parameter>
|
||||
<parameter name="maxPeriod" type="double" unit="s">
|
||||
<description>
|
||||
The maximum period allowed for a magnitude to pass
|
||||
the QC check. The station magnitude will be computed
|
||||
anyway but if the period is above this threshold it will
|
||||
be associated with weight zero and will not contribute
|
||||
to the network magnitude. If this value is set, then it
|
||||
overrides the regionalized setting.
|
||||
|
||||
Caution: If a value is set but the amplitude does not
|
||||
provide the period, no magnitude is computed.
|
||||
</description>
|
||||
</parameter>
|
||||
</struct>
|
||||
</group>
|
||||
<group name="picker">
|
||||
|
||||
Reference in New Issue
Block a user