[installation] Change to nightly
This commit is contained in:
@ -2132,10 +2132,13 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
|
||||
Type: *string*
|
||||
|
||||
Sets the default magnitude aggregation method. It can be either \"mean\",
|
||||
\"trimmed mean\" or \"median\". If not set, the default
|
||||
behavior is used which computes the mean if less than 4 stations are available,
|
||||
trimmed mean otherwise.
|
||||
Values: ``mean,trimmedMean,median,medianTrimmedMean``
|
||||
|
||||
Sets the default magnitude aggregation method.
|
||||
If not set, the default behavior is used which computes the
|
||||
mean if less than 4 stations are available, trimmed mean otherwise.
|
||||
Neither of the above values can take an additional parameter.
|
||||
The default parameter values \(if supported\) will be used.
|
||||
|
||||
|
||||
.. confval:: olv.computeMagnitudesAfterRelocate
|
||||
@ -2223,6 +2226,16 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
The default value for adding unassociated stations in the picker.
|
||||
|
||||
|
||||
.. confval:: olv.loadAdditionalStations
|
||||
|
||||
Default: ``false``
|
||||
|
||||
Type: *boolean*
|
||||
|
||||
If enabled then all station within the configured distance will
|
||||
be loaded if a new origin is loaded.
|
||||
|
||||
|
||||
.. confval:: olv.hideStationsWithoutData
|
||||
|
||||
Default: ``false``
|
||||
@ -2272,6 +2285,14 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
when a new event was received.
|
||||
|
||||
|
||||
.. confval:: olv.originAgencyIDs
|
||||
|
||||
Type: *list:string*
|
||||
|
||||
Define a list of agencyIDs which can be used as override
|
||||
for the origin agencyID when committing with options.
|
||||
|
||||
|
||||
.. confval:: olv.originComments
|
||||
|
||||
Type: *list:string*
|
||||
@ -2372,6 +2393,63 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
from Origin.methodID and the profile from Origin.earthModelID.
|
||||
|
||||
|
||||
.. note::
|
||||
**olv.import.\***
|
||||
*Set default options for the "Import picks" dialog.*
|
||||
|
||||
|
||||
|
||||
.. confval:: olv.import.mode
|
||||
|
||||
Default: ``latest``
|
||||
|
||||
Type: *string*
|
||||
|
||||
Values: ``latest,latest-automatic,phases,all``
|
||||
|
||||
Defines the default mode of import picks. For more information
|
||||
see the \"Import picks\" dialog.
|
||||
|
||||
|
||||
.. confval:: olv.import.acceptedPhases
|
||||
|
||||
Type: *list:string*
|
||||
|
||||
Defines a list of accepted or denied phases when importing picks.
|
||||
This list will be used to populate the corresponding input
|
||||
field in the \"Import picks\" dialog.
|
||||
|
||||
A phase which is prepended with a minus, e.g. \"\-P\",
|
||||
will be denied.
|
||||
|
||||
|
||||
.. confval:: olv.import.options.allAgencies
|
||||
|
||||
Default: ``false``
|
||||
|
||||
Type: *boolean*
|
||||
|
||||
Configures the default for \"Import picks from all agencies ...\".
|
||||
|
||||
|
||||
.. confval:: olv.import.options.allPhases
|
||||
|
||||
Default: ``true``
|
||||
|
||||
Type: *boolean*
|
||||
|
||||
Configures the default for \"Import all phases ...\".
|
||||
|
||||
|
||||
.. confval:: olv.import.options.preferTargetPhases
|
||||
|
||||
Default: ``true``
|
||||
|
||||
Type: *boolean*
|
||||
|
||||
Configures the default for \"Prefer phases of target ...\".
|
||||
|
||||
|
||||
.. confval:: olv.commit.forceEventAssociation
|
||||
|
||||
Default: ``false``
|
||||
@ -2621,6 +2699,102 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
Add a summary of the actions to the button's tooltip.
|
||||
|
||||
|
||||
.. note::
|
||||
**olv.commandMenuAction.\***
|
||||
*Configuration of custom commands shown in a menu when pressing*
|
||||
*the Run button next to the custom script buttons. Actions*
|
||||
*defined here will appear in order of listing. A dash may be*
|
||||
*use to insert a separator.*
|
||||
|
||||
|
||||
|
||||
.. note::
|
||||
|
||||
**olv.commandMenuAction.$name.\***
|
||||
*Definition of a command menu action.*
|
||||
$name is a placeholder for the name to be used.
|
||||
|
||||
|
||||
.. confval:: olv.commandMenuAction.$name.enable
|
||||
|
||||
Default: ``true``
|
||||
|
||||
Type: *boolean*
|
||||
|
||||
Controls whether this action will be available.
|
||||
|
||||
|
||||
.. confval:: olv.commandMenuAction.$name.command
|
||||
|
||||
Type: *file*
|
||||
|
||||
Command to be executed. Similar to the custom script
|
||||
buttons the command is launched with the current
|
||||
origin ID as first argument and the eventID as
|
||||
second argument if available. Optionally the entire
|
||||
origin may be written to stdin if an exporter is
|
||||
defined.
|
||||
|
||||
|
||||
.. confval:: olv.commandMenuAction.$name.exporter
|
||||
|
||||
Type: *string*
|
||||
|
||||
Values: ``scml,json,csv,binary``
|
||||
|
||||
Name of the SeisComP exporter used to serialize
|
||||
the current origin when writing it to stdin of
|
||||
the specified command. If empty no data will be
|
||||
send to stdin. See 'sccnv \-\-list\-formats' for a
|
||||
list of available options.
|
||||
|
||||
Note: Some of the exporters are implemented
|
||||
as plugins which need to be loaded before they
|
||||
can be used.
|
||||
|
||||
|
||||
.. confval:: olv.commandMenuAction.$name.showProcess
|
||||
|
||||
Default: ``false``
|
||||
|
||||
Type: *boolean*
|
||||
|
||||
Automatically open process manager for progress
|
||||
monitoring. The process manager may also be started
|
||||
manually via the View menu bar entry or via an icon
|
||||
at the right of the status bar.
|
||||
|
||||
|
||||
.. confval:: olv.commandMenuAction.$name.text
|
||||
|
||||
Type: *string*
|
||||
|
||||
Name of the action. Use in the launch menu and in
|
||||
the process manager.
|
||||
|
||||
|
||||
.. confval:: olv.commandMenuAction.$name.icon
|
||||
|
||||
Type: *file*
|
||||
|
||||
Path to an icon to show for this action.
|
||||
|
||||
|
||||
.. confval:: olv.commandMenuAction.$name.keySequence
|
||||
|
||||
Type: *file*
|
||||
|
||||
Keyboard shortcut to run this action without
|
||||
the need to open the menu. E.g., 'Ctrl+Alt+A'
|
||||
|
||||
|
||||
.. confval:: olv.commandMenuAction.$name.toolTip
|
||||
|
||||
Type: *file*
|
||||
|
||||
Tool tip for this action.
|
||||
|
||||
|
||||
.. note::
|
||||
**olv.magnitudeComments.\***
|
||||
*The container for all magnitude comment profiles.*
|
||||
@ -2725,7 +2899,7 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
|
||||
Type: *int*
|
||||
|
||||
Limit the data acquisituion to the given number of
|
||||
Limit the data acquisition to the given number of
|
||||
the nearest stations. Requires to activate
|
||||
\"picker.limitStationAcquisition\".
|
||||
|
||||
@ -2851,6 +3025,28 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
side of the trace window.
|
||||
|
||||
|
||||
.. confval:: picker.rotation
|
||||
|
||||
Default: ``123``
|
||||
|
||||
Type: *string*
|
||||
|
||||
Values: ``123,ZNE,ZRT,LQT,ZH(L2)``
|
||||
|
||||
The initially applied rotation component waveform rotation.
|
||||
|
||||
|
||||
.. confval:: picker.unit
|
||||
|
||||
Default: ``Sensor``
|
||||
|
||||
Type: *string*
|
||||
|
||||
Values: ``Sensor,Acceleration,Velocity,Displacement``
|
||||
|
||||
The unit the waveform data is converted to initially.
|
||||
|
||||
|
||||
.. confval:: picker.repickerStart
|
||||
|
||||
Type: *double*
|
||||
@ -2877,6 +3073,19 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
\"name1;filter\-definition1\", \"name2;filter\-definition2\"
|
||||
|
||||
|
||||
.. confval:: picker.limitFilterToZoomTrace
|
||||
|
||||
Default: ``false``
|
||||
|
||||
Type: *boolean*
|
||||
|
||||
Whether to apply the current filter only to the zoom trace or
|
||||
all traces. If enabled then the current filter will only be
|
||||
applied to another trace if it becomes the current trace. This
|
||||
is mainly for performance reasons as filtering hundreds or
|
||||
thousands of channels can take much time.
|
||||
|
||||
|
||||
.. confval:: picker.velocityChannelCodes
|
||||
|
||||
Type: *list:string*
|
||||
@ -2942,6 +3151,20 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
component will stay the same. It must be changed explicitely.
|
||||
|
||||
|
||||
.. confval:: picker.showAmpLevel
|
||||
|
||||
Default: ``false``
|
||||
|
||||
Type: *boolean*
|
||||
|
||||
If enabled then the picker will show in the upper right corner of
|
||||
the zoomtrace an amplitude measure ranging from 0 to 100 and mapping
|
||||
the current amplitude at the cursor to this range where 0 is the bottom
|
||||
of the widget and 100 the top of the widget. Screen readers should
|
||||
fetch this value change and read them. This is especially important
|
||||
to support visually impaired users.
|
||||
|
||||
|
||||
.. note::
|
||||
**picker.auxiliary.\***
|
||||
*Define the notion and behaviour of auxiliary channels.*
|
||||
@ -2958,6 +3181,9 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
A list of wildcard patterns to identify auxiliary
|
||||
channels. A pattern is simply checked against a stream
|
||||
ID, the concatenation of NSLC separated by a period.
|
||||
|
||||
This is an obsolete and deprecated setting. Please use
|
||||
profiles.
|
||||
|
||||
|
||||
.. confval:: picker.auxiliary.minimumDistance
|
||||
@ -2972,6 +3198,9 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
unassociated auxiliary channel. Loading a
|
||||
channel \/ station explicitely \(F3\) will not respect
|
||||
this setting.
|
||||
|
||||
This is an obsolete and deprecated setting. Please use
|
||||
profiles.
|
||||
|
||||
|
||||
.. confval:: picker.auxiliary.maximumDistance
|
||||
@ -2986,6 +3215,68 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
unassociated auxiliary channel. Loading a
|
||||
channel \/ station explicitely \(F3\) will not respect
|
||||
this setting.
|
||||
|
||||
This is an obsolete and deprecated setting. Please use
|
||||
profiles.
|
||||
|
||||
|
||||
.. confval:: picker.auxiliary.profiles
|
||||
|
||||
Type: *list:string*
|
||||
|
||||
A list of auxiliary channel profiles which are enabled.
|
||||
|
||||
|
||||
.. note::
|
||||
|
||||
**picker.auxiliary.profiles.$name.\***
|
||||
$name is a placeholder for the name to be used and needs to be added to :confval:`picker.auxiliary.profiles` to become active.
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
picker.auxiliary.profiles = a,b
|
||||
picker.auxiliary.profiles.a.value1 = ...
|
||||
picker.auxiliary.profiles.b.value1 = ...
|
||||
# c is not active because it has not been added
|
||||
# to the list of picker.auxiliary.profiles
|
||||
picker.auxiliary.profiles.c.value1 = ...
|
||||
|
||||
|
||||
.. confval:: picker.auxiliary.profiles.$name.channels
|
||||
|
||||
Type: *list:string*
|
||||
|
||||
A list of wildcard patterns to identify auxiliary
|
||||
channels. A pattern is simply checked against a stream
|
||||
ID, the concatenation of NSLC separated by a period.
|
||||
|
||||
|
||||
.. confval:: picker.auxiliary.profiles.$name.minimumDistance
|
||||
|
||||
Default: ``0``
|
||||
|
||||
Type: *double*
|
||||
|
||||
Unit: *deg*
|
||||
|
||||
The minimum distance in degrees from origin to load an
|
||||
unassociated auxiliary channel. Loading a
|
||||
channel \/ station explicitely \(F3\) will not respect
|
||||
this setting.
|
||||
|
||||
|
||||
.. confval:: picker.auxiliary.profiles.$name.maximumDistance
|
||||
|
||||
Default: ``1000``
|
||||
|
||||
Type: *double*
|
||||
|
||||
Unit: *deg*
|
||||
|
||||
The maximum distance in degrees from origin to load an
|
||||
unassociated auxiliary channel. Loading a
|
||||
channel \/ station explicitely \(F3\) will not respect
|
||||
this setting.
|
||||
|
||||
|
||||
.. note::
|
||||
@ -3147,6 +3438,58 @@ scolv inherits :ref:`global options<global-configuration>`.
|
||||
amplitude time window.
|
||||
|
||||
|
||||
.. confval:: amplitudePicker.defaultNoiseBegin
|
||||
|
||||
Default: ``-30``
|
||||
|
||||
Type: *double*
|
||||
|
||||
Unit: *s*
|
||||
|
||||
In case the amplitude time window cannot be computed due
|
||||
to errors, e.g. computing travel times, this default noise
|
||||
window start time will be used instead.
|
||||
|
||||
|
||||
.. confval:: amplitudePicker.defaultNoiseEnd
|
||||
|
||||
Default: ``0``
|
||||
|
||||
Type: *double*
|
||||
|
||||
Unit: *s*
|
||||
|
||||
In case the amplitude time window cannot be computed due
|
||||
to errors, e.g. computing travel times, this default noise
|
||||
window end time will be used instead.
|
||||
|
||||
|
||||
.. confval:: amplitudePicker.defaultSignalBegin
|
||||
|
||||
Default: ``0``
|
||||
|
||||
Type: *double*
|
||||
|
||||
Unit: *s*
|
||||
|
||||
In case the amplitude time window cannot be computed due
|
||||
to errors, e.g. computing travel times, this default signal
|
||||
window start time will be used instead.
|
||||
|
||||
|
||||
.. confval:: amplitudePicker.defaultSignalEnd
|
||||
|
||||
Default: ``30``
|
||||
|
||||
Type: *double*
|
||||
|
||||
Unit: *s*
|
||||
|
||||
In case the amplitude time window cannot be computed due
|
||||
to errors, e.g. computing travel times, this default signal
|
||||
window end time will be used instead.
|
||||
|
||||
|
||||
.. confval:: amplitudePicker.filters
|
||||
|
||||
Type: *list:string*
|
||||
@ -3341,18 +3684,22 @@ Messaging
|
||||
|
||||
Overrides configuration parameter :confval:`connection.username`.
|
||||
|
||||
|
||||
.. option:: -H, --host arg
|
||||
|
||||
Overrides configuration parameter :confval:`connection.server`.
|
||||
|
||||
|
||||
.. option:: -t, --timeout arg
|
||||
|
||||
Overrides configuration parameter :confval:`connection.timeout`.
|
||||
|
||||
|
||||
.. option:: -g, --primary-group arg
|
||||
|
||||
Overrides configuration parameter :confval:`connection.primaryGroup`.
|
||||
|
||||
|
||||
.. option:: -S, --subscribe-group arg
|
||||
|
||||
A group to subscribe to.
|
||||
@ -3362,8 +3709,13 @@ Messaging
|
||||
|
||||
Overrides configuration parameter :confval:`connection.contentType`.
|
||||
|
||||
Default: ``binary``
|
||||
|
||||
|
||||
.. option:: --start-stop-msg arg
|
||||
|
||||
Default: ``0``
|
||||
|
||||
Set sending of a start and a stop message.
|
||||
|
||||
|
||||
@ -3404,12 +3756,12 @@ Records
|
||||
|
||||
.. option:: -I, --record-url arg
|
||||
|
||||
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.
|
||||
|
||||
.. option:: --record-file arg
|
||||
|
||||
@ -3425,6 +3777,10 @@ Cities
|
||||
|
||||
.. option:: --city-xml arg
|
||||
|
||||
Type: *file*
|
||||
|
||||
Values: ``*.xml``
|
||||
|
||||
The path to the cities XML file. This overrides the default
|
||||
paths. Compare with the global parameter \"citiesXML\".
|
||||
|
||||
|
||||
Reference in New Issue
Block a user