1 Commits

Author SHA1 Message Date
a7dd0d6c65 [installation] Update scanloc and SeisComP 2025-10-30 11:04:30 +01:00
300 changed files with 3128 additions and 2958 deletions

Binary file not shown.

Binary file not shown.

View File

@ -25,6 +25,23 @@
depth and RMS.
</description>
</parameter>
<parameter name="ignoreDepth" type="double" default="650.0">
<description>
This is the maximum allowed depth. Origins with
depth greater then this value get a score equal to
&quot;defaultScore&quot;.
</description>
</parameter>
<parameter name="maxRMS" type="double" default="1.5">
<description>
This is the maximum allowed RMS. Origins with
residual greater than this value score of equal to
&quot;defaultScore&quot;.
</description>
</parameter>
<!-- Optional: channel letters for type detection -->
<parameter name="strongMotionCodes" type="list:string" default="L,N">
<description>
@ -79,9 +96,6 @@
Origin depth is normalized to this value for
computing the score contribution. Shallower depths
contribute to larger score.
This is also the maximum allowed depth. Origins with
depth greater then this value get a score equal to
&quot;defaultScore&quot;.
</description>
</parameter>
@ -96,9 +110,6 @@
Origin RMS is normalized to this value for computing
the score contribution. Lower RMS contribute to
larger score.
This is also the maximum allowed RMS. Origins with
residual greater than this value score equal to
&quot;defaultScore&quot;.
</description>
</parameter>

View File

@ -27,6 +27,23 @@
depth and RMS.
</description>
</parameter>
<parameter name="ignoreDepth" type="double" default="650.0">
<description>
This is the maximum allowed depth. Origins with
depth greater then this value get a score equal to
&quot;defaultScore&quot;.
</description>
</parameter>
<parameter name="maxRMS" type="double" default="1.5">
<description>
This is the maximum allowed RMS. Origins with
residual greater than this value score of equal to
&quot;defaultScore&quot;.
</description>
</parameter>
<!-- Optional: channel letters for type detection -->
<parameter name="strongMotionCodes" type="list:string" default="L,N">
<description>
@ -76,14 +93,11 @@
</parameter>
<!-- Quality weights -->
<parameter name="normalizationDepth" type="double" default="50.0">
<parameter name="normalizationDepth" type="double" default="650.0">
<description>
Origin depth is normalized to this value for
computing the score contribution. Shallower depths
contribute to larger score.
This is also the maximum allowed depth. Origins with
depth greater then this value get a score equal to
&quot;defaultScore&quot;.
</description>
</parameter>
@ -93,14 +107,11 @@
</description>
</parameter>
<parameter name="normalizationRMS" type="double" default="2.0">
<parameter name="normalizationRMS" type="double" default="1.5">
<description>
Origin RMS is normalized to this value for computing
the score contribution. Lower RMS contribute to
larger score.
This is also the maximum allowed RMS. Origins with
residual greater than this value score of equal to
&quot;defaultScore&quot;.
</description>
</parameter>

View File

@ -26,7 +26,7 @@
#define SEISCOMP_VERSION_MAJOR 6
#define SEISCOMP_VERSION_MINOR 9
#define SEISCOMP_VERSION_PATCH 0
#define SEISCOMP_VERSION_PATCH 1
#define SEISCOMP_VERSION ((SEISCOMP_VERSION_MAJOR << 0x10) |\
(SEISCOMP_VERSION_MINOR << 0x08) |\

Binary file not shown.

View File

@ -12,8 +12,6 @@
# Email: herrnkind@gempa.de
###############################################################################
from functools import cmp_to_key
from collections import OrderedDict
from twisted.cred import portal
@ -33,7 +31,7 @@ from . import utils
DBMaxUInt = 18446744073709551615 # 2^64 - 1
VERSION = "1.0.3"
VERSION = "1.0.4"
###############################################################################
@ -1349,19 +1347,21 @@ class FDSNAvailabilityQuery(_Availability):
if ro.time.start.microseconds() == 0:
q += f"AND {_T('end')} >= '{db.timeToString(ro.time.start)}' "
else:
startTimeStr = db.timeToString(ro.time.start)
q += (
"AND ({0} > '{1}' OR ("
f"{_T('end')} = '{db.timeToString(ro.time.start)}' AND "
f"AND ({_T('end')} > '{startTimeStr}' OR ("
f"{_T('end')} = '{startTimeStr}' AND "
f"end_ms >= {ro.time.start.microseconds()})) "
)
if ro.time.end is not None:
if ro.time.end.microseconds() == 0:
q += f"AND {_T('start')} < '{db.timeToString(ro.time.end)}' "
else:
endTimeStr = db.timeToString(ro.time.end)
q += (
"AND ({0} < '{1}' OR ("
f"{_T('start')} = '{db.timeToString(ro.time.end)}' AND "
"start_ms < {ro.time.end.microseconds()})) "
f"AND ({_T('start')} < '{endTimeStr}' OR ("
f"{_T('start')} = '{endTimeStr}' AND "
f"start_ms < {ro.time.end.microseconds()})) "
)
if ro.quality:
qualities = "', '".join(ro.quality)

View File

@ -2,6 +2,12 @@
All notable changes to scanloc and add-ons will be documented in this file.
## 2025.295
## Fixed
- Bug in S pick association introduced with release 2025.280
## 2025.280
## Added

View File

@ -2361,6 +2361,28 @@ score processor.
depth and RMS.
.. confval:: score.mf.ignoreDepth
Default: ``650.0``
Type: *double*
This is the maximum allowed depth. Origins with
depth greater then this value get a score equal to
\"defaultScore\".
.. confval:: score.mf.maxRMS
Default: ``1.5``
Type: *double*
This is the maximum allowed RMS. Origins with
residual greater than this value score of equal to
\"defaultScore\".
.. confval:: score.mf.strongMotionCodes
Default: ``L,N``
@ -2436,9 +2458,6 @@ score processor.
Origin depth is normalized to this value for
computing the score contribution. Shallower depths
contribute to larger score.
This is also the maximum allowed depth. Origins with
depth greater then this value get a score equal to
\"defaultScore\".
.. confval:: score.mf.weights.depth
@ -2459,9 +2478,6 @@ score processor.
Origin RMS is normalized to this value for computing
the score contribution. Lower RMS contribute to
larger score.
This is also the maximum allowed RMS. Origins with
residual greater than this value score equal to
\"defaultScore\".
.. confval:: score.mf.weights.residual

View File

@ -2,6 +2,12 @@
All notable changes to scanloc and add-ons will be documented in this file.
## 2025.295
## Fixed
- Bug in S pick association introduced with release 2025.280
## 2025.280
## Added

View File

@ -24,7 +24,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -2807,7 +2807,7 @@ GUI applications.</p>
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -26,7 +26,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -2083,6 +2083,26 @@ completely or is filtered out by thresholds such as for
depth and RMS.</p>
</dd></dl>
<dl class="std confval">
<dt class="sig sig-object std" id="confval-score.mf.ignoreDepth">
<span class="sig-name descname"><span class="pre">score.mf.ignoreDepth</span></span><a class="headerlink" href="#confval-score.mf.ignoreDepth" title="Permalink to this definition"></a></dt>
<dd><p>Default: <code class="docutils literal notranslate"><span class="pre">650.0</span></code></p>
<p>Type: <em>double</em></p>
<p>This is the maximum allowed depth. Origins with
depth greater then this value get a score equal to
&quot;defaultScore&quot;.</p>
</dd></dl>
<dl class="std confval">
<dt class="sig sig-object std" id="confval-score.mf.maxRMS">
<span class="sig-name descname"><span class="pre">score.mf.maxRMS</span></span><a class="headerlink" href="#confval-score.mf.maxRMS" title="Permalink to this definition"></a></dt>
<dd><p>Default: <code class="docutils literal notranslate"><span class="pre">1.5</span></code></p>
<p>Type: <em>double</em></p>
<p>This is the maximum allowed RMS. Origins with
residual greater than this value score of equal to
&quot;defaultScore&quot;.</p>
</dd></dl>
<dl class="std confval">
<dt class="sig sig-object std" id="confval-score.mf.strongMotionCodes">
<span class="sig-name descname"><span class="pre">score.mf.strongMotionCodes</span></span><a class="headerlink" href="#confval-score.mf.strongMotionCodes" title="Permalink to this definition"></a></dt>
@ -2147,10 +2167,7 @@ Example: 1.0,0.0,0.0 .</p>
<p>Type: <em>double</em></p>
<p>Origin depth is normalized to this value for
computing the score contribution. Shallower depths
contribute to larger score.
This is also the maximum allowed depth. Origins with
depth greater then this value get a score equal to
&quot;defaultScore&quot;.</p>
contribute to larger score.</p>
</dd></dl>
<dl class="std confval">
@ -2168,10 +2185,7 @@ depth greater then this value get a score equal to
<p>Type: <em>double</em></p>
<p>Origin RMS is normalized to this value for computing
the score contribution. Lower RMS contribute to
larger score.
This is also the maximum allowed RMS. Origins with
residual greater than this value score equal to
&quot;defaultScore&quot;.</p>
larger score.</p>
</dd></dl>
<dl class="std confval">
@ -2792,7 +2806,7 @@ is unformatted.</p>
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

File diff suppressed because it is too large Load Diff

View File

@ -26,7 +26,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -513,7 +513,7 @@ before picks and amplitudes.</p>
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

File diff suppressed because it is too large Load Diff

View File

@ -26,7 +26,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -1328,7 +1328,7 @@ or any other site to the rupture surface of the seismic event.</p>
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -24,7 +24,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -381,7 +381,7 @@ white.</p>
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -26,7 +26,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -198,7 +198,7 @@ AGU Fall Meeting, San Francisco, USA,
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -26,7 +26,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -176,7 +176,7 @@ LOCSAT.profiles = iasp91_scanloc
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -26,7 +26,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -271,7 +271,7 @@
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -25,7 +25,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -329,7 +329,7 @@ the bindings parameter of <strong class="program">scautopick</strong> or the res
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -23,7 +23,7 @@
<img class="background" src="_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -1947,8 +1947,12 @@
<li><a href="apps/scanloc.html#confval-score">score</a>
</li>
<li><a href="apps/scanloc.html#confval-score.mf.defaultScore">score.mf.defaultScore</a>
</li>
<li><a href="apps/scanloc.html#confval-score.mf.ignoreDepth">score.mf.ignoreDepth</a>
</li>
<li><a href="apps/scanloc.html#confval-score.mf.infrasoundCodes">score.mf.infrasoundCodes</a>
</li>
<li><a href="apps/scanloc.html#confval-score.mf.maxRMS">score.mf.maxRMS</a>
</li>
<li><a href="apps/scanloc.html#confval-score.mf.strongMotionCodes">score.mf.strongMotionCodes</a>
</li>
@ -3007,6 +3011,13 @@
<ul>
<li><a href="apps/scanloc.html#confval-score.mf.defaultScore">configuration value</a>
</li>
</ul></li>
<li>
score.mf.ignoreDepth
<ul>
<li><a href="apps/scanloc.html#confval-score.mf.ignoreDepth">configuration value</a>
</li>
</ul></li>
<li>
@ -3014,6 +3025,13 @@
<ul>
<li><a href="apps/scanloc.html#confval-score.mf.infrasoundCodes">configuration value</a>
</li>
</ul></li>
<li>
score.mf.maxRMS
<ul>
<li><a href="apps/scanloc.html#confval-score.mf.maxRMS">configuration value</a>
</li>
</ul></li>
<li>
@ -3192,12 +3210,12 @@
</li>
<li><a href="base/glossary.html#term-SeedLink"><strong>SeedLink</strong></a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="base/glossary.html#term-SeisComP"><strong>SeisComP</strong></a>
</li>
<li><a href="base/glossary.html#term-SeisComP3"><strong>SeisComP3</strong></a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="base/glossary.html#term-seismic-array"><strong>seismic array</strong></a>
</li>
<li><a href="base/glossary.html#term-seismic-gap"><strong>seismic gap</strong></a>
@ -3514,7 +3532,7 @@
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -25,7 +25,7 @@
<img class="background" src="_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -61,7 +61,7 @@
<section id="appname-documentation">
<h1><cite>scanloc</cite> documentation<a class="headerlink" href="#appname-documentation" title="Permalink to this heading"></a></h1>
<p>This is the documentation for the <cite>scanloc</cite> package in version 2025.281#4efc2c878.</p>
<p>This is the documentation for the <cite>scanloc</cite> package in version 2025.295#8bb1059a0.</p>
<div class="four column layout"><img alt="scolv with P and S picks" src="_images/scolv-location-tab.png" />
<img alt="fake events" src="_images/cluster-reference-traveltime.png" />
<img alt="0-weight pipeline" src="_images/zeroweight_pipeline.png" />
@ -182,7 +182,7 @@
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

Binary file not shown.

View File

@ -29,7 +29,7 @@
<img class="background" src="_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -101,7 +101,7 @@
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

File diff suppressed because one or more lines are too long

View File

@ -24,7 +24,7 @@
<img class="background" src="../_static/icon.png"/>
<div class="content">
<span class="title">scanloc: Phase Associator </span>
<span class="version">2025.281#4efc2c878</span></h1>
<span class="version">2025.295#8bb1059a0</span></h1>
</div>
</div>
</div>
@ -106,7 +106,7 @@
<div class="footer">
<div class="container">
<div class="content">
Release <b></b> version <b>2025.281#4efc2c878</b>
Release <b></b> version <b>2025.295#8bb1059a0</b>
<div class="copyright">
&copy; Copyright <a href="https://www.gempa.de">2014, gempa GmbH.</a>
</div>

View File

@ -2,6 +2,14 @@
All notable changes to SeisComP are documented here.
## 6.9.1
- trunk
- Fix crash in decimation and resampling if a record without data is received.
- Fix TimeSpan rounding in combination with negative numbers.
- fdsnws
- Fix data segment query for start and end times with milli second precision.
## 6.9.0
```SC_API_VERSION 16.4.0```

View File

@ -2,6 +2,14 @@
All notable changes to SeisComP are documented here.
## 6.9.1
- trunk
- Fix crash in decimation and resampling if a record without data is received.
- Fix TimeSpan rounding in combination with negative numbers.
- fdsnws
- Fix data segment query for start and end times with milli second precision.
## 6.9.0
```SC_API_VERSION 16.4.0```

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -177,7 +177,7 @@
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -427,7 +427,7 @@ and input database and an input config XML as reference.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -178,7 +178,7 @@ threshold is exceeded.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -375,7 +375,7 @@ ${archive}.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -508,7 +508,7 @@ can be queried with &quot;--db-driver-list&quot;.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -1384,7 +1384,7 @@ used.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -328,7 +328,7 @@ when converting from StationXML.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -7111,7 +7111,7 @@ GUI applications.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -364,7 +364,7 @@ not going to be used or if they are absent.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -169,7 +169,7 @@ is added as a comment to the resulting pick. The comment ID is
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -3751,7 +3751,7 @@ text color in case of an active alert. E.g. &quot;0:00FF00,900:FF0000&quot;.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -187,7 +187,7 @@ interfaces.</p></li>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -606,7 +606,7 @@ use this fixed depth only as starting point (true).</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -876,7 +876,7 @@ profile.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -251,7 +251,7 @@ and path to a script separated by colon.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -338,7 +338,7 @@ Supported polygon attributes:</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -416,7 +416,7 @@ controlled with this parameter.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -204,7 +204,7 @@ for visibility.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -211,7 +211,7 @@ in the configuration of
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -186,7 +186,7 @@ station code (<code class="code docutils literal notranslate"><span class="pre">
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -193,7 +193,7 @@ It provides a new implementations of AmplitudeProcessor and MagnitudeProcessor.<
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -211,7 +211,7 @@ line per parameter can be added to the global module configuration
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -173,7 +173,7 @@ station code (<code class="code docutils literal notranslate"><span class="pre">
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -393,7 +393,7 @@ or <a class="reference internal" href="scesv.html#scesv"><span class="std std-re
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -186,7 +186,7 @@ and in <a class="reference internal" href="scesv.html#scesv"><span class="std st
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -191,7 +191,7 @@ and in <a class="reference internal" href="scesv.html#scesv"><span class="std st
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -223,7 +223,7 @@ default MLv is computed by <a class="reference internal" href="scautopick.html#s
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -229,7 +229,7 @@ will be applied.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -184,7 +184,7 @@ Ms_20 to the list of computed amplitudes and magnitudes in the configuration of
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -688,7 +688,7 @@ origin of the defined region.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -733,7 +733,7 @@ stream scheme.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -539,7 +539,7 @@ system of equations.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -367,7 +367,7 @@ Equivalent to --verbosity=4 --console=1 .</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -176,7 +176,7 @@ stdout is used.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -420,7 +420,7 @@ extracting them.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -193,7 +193,7 @@ unencrypted bind address. The format is
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -333,7 +333,7 @@ in the standard mseedfifo path.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -867,7 +867,7 @@ can be queried with &quot;--db-driver-list&quot;.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -593,7 +593,7 @@ alert scripts scvoice will exit.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -650,7 +650,7 @@ document will be output.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -670,7 +670,7 @@ length of 2.5s followed by 50 overlaps with an overlap of
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -516,7 +516,7 @@ checks are made with scmssort.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -1376,7 +1376,7 @@ pick threshold.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -1132,7 +1132,7 @@ and a new amplitude is available. The output format is a simple ASCII format.</p
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -527,7 +527,7 @@ only in combination with the autoloc3-flag.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -184,7 +184,7 @@ decide whether it needs a fix or not.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -368,7 +368,7 @@ Equivalent to --verbosity=4 --console=1 .</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -549,7 +549,7 @@ Docs panel.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -515,7 +515,7 @@ Can be provided multiple times to import multiple files.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -561,7 +561,7 @@ startTime~endTime that is %Y-%m-%dT%H:%M:%S~%Y-%m-%dT%H:%M:%S</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -596,7 +596,7 @@ standard output in XML format.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -417,7 +417,7 @@ e.g., invextr, scart, scmssort, scevtstreams.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -868,7 +868,7 @@ parameters $1, $2, $3 and $4, respectively.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -1366,7 +1366,7 @@ can be queried with &quot;--db-driver-list&quot;.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -212,7 +212,7 @@ given values. An empty list disables setting the type.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -542,7 +542,7 @@ define eventType.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -425,7 +425,7 @@ can be queried with &quot;--db-driver-list&quot;.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -385,7 +385,7 @@ ID.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -494,7 +494,7 @@ by gempa GmbH).</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -851,7 +851,7 @@ Unit: seconds.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -600,7 +600,7 @@ This option can be given more than once.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -705,7 +705,7 @@ routing table will be calculated automatically.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -1086,7 +1086,7 @@ operations and conflicts.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -578,7 +578,7 @@ build filter configurations.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -253,7 +253,7 @@ and logical and numerical operators. See scm for more information.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -164,7 +164,7 @@ client update (resp).</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

View File

@ -26,7 +26,7 @@
<div class="brand">
<img class="logo" src="../_static/brands/seiscomp/text/white.svg"/>
<!-- span class="title">SeisComP Release</span -->
<span class="version">6.9.0</span>
<span class="version">6.9.1</span>
</div>
</div>
</div>
@ -162,7 +162,7 @@ tags used in the client status file.</p>
</a>
<div class="stretched align-center fitted content">
<div>
Version <b>6.9.0</b> Release
Version <b>6.9.1</b> Release
</div>
<div class="copyright">
Copyright &copy; gempa GmbH, GFZ Potsdam.

Some files were not shown because too many files have changed in this diff Show More