diff --git a/bin/scanloc b/bin/scanloc index 4fbdeca..5371f7f 100755 Binary files a/bin/scanloc and b/bin/scanloc differ diff --git a/bin/scconfig b/bin/scconfig index 01ccb76..ccb0591 100755 Binary files a/bin/scconfig and b/bin/scconfig differ diff --git a/etc/descriptions/scanloc_multifeature.xml b/etc/descriptions/scanloc_multifeature.xml index 1699f1b..729d072 100644 --- a/etc/descriptions/scanloc_multifeature.xml +++ b/etc/descriptions/scanloc_multifeature.xml @@ -25,6 +25,23 @@ depth and RMS. + + + + This is the maximum allowed depth. Origins with + depth greater then this value get a score equal to + "defaultScore". + + + + + + This is the maximum allowed RMS. Origins with + residual greater than this value score of equal to + "defaultScore". + + + @@ -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 - "defaultScore". @@ -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 - "defaultScore". diff --git a/etc/descriptions/scevent_multifeature.xml b/etc/descriptions/scevent_multifeature.xml index 9bad8c7..00305c1 100644 --- a/etc/descriptions/scevent_multifeature.xml +++ b/etc/descriptions/scevent_multifeature.xml @@ -27,6 +27,23 @@ depth and RMS. + + + + This is the maximum allowed depth. Origins with + depth greater then this value get a score equal to + "defaultScore". + + + + + + This is the maximum allowed RMS. Origins with + residual greater than this value score of equal to + "defaultScore". + + + @@ -76,14 +93,11 @@ - + 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". @@ -93,14 +107,11 @@ - + 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 - "defaultScore". diff --git a/include/seiscomp/version.h b/include/seiscomp/version.h index 0ca0530..e34e62e 100644 --- a/include/seiscomp/version.h +++ b/include/seiscomp/version.h @@ -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) |\ diff --git a/lib/libseiscomp_core.so.16.4.0 b/lib/libseiscomp_core.so.16.4.0 index c93fe4a..9349c5c 100644 Binary files a/lib/libseiscomp_core.so.16.4.0 and b/lib/libseiscomp_core.so.16.4.0 differ diff --git a/lib/python/seiscomp/fdsnws/availability.py b/lib/python/seiscomp/fdsnws/availability.py index 27f990f..3af79e3 100644 --- a/lib/python/seiscomp/fdsnws/availability.py +++ b/lib/python/seiscomp/fdsnws/availability.py @@ -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) diff --git a/share/doc/scanloc/CHANGELOG b/share/doc/scanloc/CHANGELOG index 86530d2..4da11c1 100644 --- a/share/doc/scanloc/CHANGELOG +++ b/share/doc/scanloc/CHANGELOG @@ -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 diff --git a/share/doc/scanloc/html/_sources/apps/scanloc.rst.txt b/share/doc/scanloc/html/_sources/apps/scanloc.rst.txt index 4f8c07b..2850791 100644 --- a/share/doc/scanloc/html/_sources/apps/scanloc.rst.txt +++ b/share/doc/scanloc/html/_sources/apps/scanloc.rst.txt @@ -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 diff --git a/share/doc/scanloc/html/_sources/base/CHANGELOG.md.txt b/share/doc/scanloc/html/_sources/base/CHANGELOG.md.txt index 86530d2..4da11c1 100644 --- a/share/doc/scanloc/html/_sources/base/CHANGELOG.md.txt +++ b/share/doc/scanloc/html/_sources/base/CHANGELOG.md.txt @@ -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 diff --git a/share/doc/scanloc/html/apps/global.html b/share/doc/scanloc/html/apps/global.html index 3e7b83d..8061100 100644 --- a/share/doc/scanloc/html/apps/global.html +++ b/share/doc/scanloc/html/apps/global.html @@ -24,7 +24,7 @@
scanloc: Phase Associator - 2025.281#4efc2c878 + 2025.295#8bb1059a0
@@ -2807,7 +2807,7 @@ GUI applications.

@@ -191,7 +191,7 @@ and in
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -223,7 +223,7 @@ default MLv is computed by
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -229,7 +229,7 @@ will be applied.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -184,7 +184,7 @@ Ms_20 to the list of computed amplitudes and magnitudes in the configuration of
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -688,7 +688,7 @@ origin of the defined region.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -733,7 +733,7 @@ stream scheme.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -539,7 +539,7 @@ system of equations.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -367,7 +367,7 @@ Equivalent to --verbosity=4 --console=1 .

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -176,7 +176,7 @@ stdout is used.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -420,7 +420,7 @@ extracting them.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -193,7 +193,7 @@ unencrypted bind address. The format is
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -333,7 +333,7 @@ in the standard mseedfifo path.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -867,7 +867,7 @@ can be queried with "--db-driver-list".

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -593,7 +593,7 @@ alert scripts scvoice will exit.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -650,7 +650,7 @@ document will be output.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -670,7 +670,7 @@ length of 2.5s followed by 50 overlaps with an overlap of
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -516,7 +516,7 @@ checks are made with scmssort.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1376,7 +1376,7 @@ pick threshold.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1132,7 +1132,7 @@ and a new amplitude is available. The output format is a simple ASCII format.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -527,7 +527,7 @@ only in combination with the autoloc3-flag.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -184,7 +184,7 @@ decide whether it needs a fix or not.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -368,7 +368,7 @@ Equivalent to --verbosity=4 --console=1 .

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -549,7 +549,7 @@ Docs panel.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -515,7 +515,7 @@ Can be provided multiple times to import multiple files.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -561,7 +561,7 @@ startTime~endTime that is %Y-%m-%dT%H:%M:%S~%Y-%m-%dT%H:%M:%S

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -596,7 +596,7 @@ standard output in XML format.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -417,7 +417,7 @@ e.g., invextr, scart, scmssort, scevtstreams.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -868,7 +868,7 @@ parameters $1, $2, $3 and $4, respectively.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1366,7 +1366,7 @@ can be queried with "--db-driver-list".

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -212,7 +212,7 @@ given values. An empty list disables setting the type.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -542,7 +542,7 @@ define eventType.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -425,7 +425,7 @@ can be queried with "--db-driver-list".

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -385,7 +385,7 @@ ID.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -494,7 +494,7 @@ by gempa GmbH).

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -851,7 +851,7 @@ Unit: seconds.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -600,7 +600,7 @@ This option can be given more than once.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -705,7 +705,7 @@ routing table will be calculated automatically.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1086,7 +1086,7 @@ operations and conflicts.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -578,7 +578,7 @@ build filter configurations.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -253,7 +253,7 @@ and logical and numerical operators. See scm for more information.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -164,7 +164,7 @@ client update (resp).

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -162,7 +162,7 @@ tags used in the client status file.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -783,7 +783,7 @@ network magnitude.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -412,7 +412,7 @@ read from CONFIGDIR@/cities.xml or @DATADIR@/cities.xml.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -675,7 +675,7 @@ Equivalent to --verbosity=4 --console=1 --print-component=1
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -456,7 +456,7 @@ used.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -268,7 +268,7 @@ Times are of course UTC and separated by a tilde ~

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -839,7 +839,7 @@ Modes: groundmotion, qualitycontrol

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -3478,7 +3478,7 @@ GUI applications.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -384,7 +384,7 @@ Deactivates reading origins from database.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1913,7 +1913,7 @@ used.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -2993,7 +2993,7 @@ GUI applications.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -479,7 +479,7 @@ pre-defined by configuration.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -404,7 +404,7 @@ Defaults are used if parameter is undefined.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -646,7 +646,7 @@ NonLinLoc origins out. All other objects are passed through.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -395,7 +395,7 @@ the common libraries or loaded as plugin.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1788,7 +1788,7 @@ GUI applications.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -410,7 +410,7 @@ This option can be given more than once.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -324,7 +324,7 @@ This option can be given more than once.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -398,7 +398,7 @@ This option can be given more than once.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -602,7 +602,7 @@ After running the alert scripts scvoice will exit.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -371,7 +371,7 @@ Equivalent to --verbosity=4 --console=1 --print-component=1
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1499,7 +1499,7 @@ used.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -611,7 +611,7 @@ stdout.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -354,7 +354,7 @@ or empty files are processed.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -324,7 +324,7 @@ Equivalent to --verbosity=4 --console=1 .

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -3128,7 +3128,7 @@ raw streams (streams submitted by a plugin as raw samples).

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -544,7 +544,7 @@ file, e.g., seiscomp --wait 10 update-config.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -578,7 +578,7 @@ can be queried with "--db-driver-list".

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -617,7 +617,7 @@ server will send data indefinitely. This option will override any saved state in
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -544,7 +544,7 @@ of the ‘-A’ option. The BUD dir/file structure is:

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -301,7 +301,7 @@ Not mandatory.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -214,7 +214,7 @@ described in them.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -250,7 +250,7 @@ Sa: Code=<
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -56,7 +56,23 @@

Change Log

All notable changes to SeisComP are documented here.

-

6.9.0

+

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

  • fdsnxml2inv

    @@ -93,8 +109,8 @@ associated to.

-
-

6.8.4

+
+

6.8.4

  • scevent

      @@ -103,8 +119,8 @@ associated to.

-
-

6.8.3

+
+

6.8.3

  • caps_plugin

      @@ -121,8 +137,8 @@ requests.

-
-

6.8.2

+
+

6.8.2

  • scolv

      @@ -136,8 +152,8 @@ requests.

-
-

6.8.1

+
+

6.8.1

  • scconfig

      @@ -147,8 +163,8 @@ profiles.

-
-

6.8.0

+
+

6.8.0

  • NonLinLoc locator plugin

      @@ -170,8 +186,8 @@ errors such as “SVD routine can’t decompose matrix”.

-
-

6.7.9

+
+

6.7.9

  • trunk

      @@ -182,8 +198,8 @@ compiler version and configuration.

-
-

6.7.8

+
+

6.7.8

  • trunk

      @@ -195,8 +211,8 @@ compiler version and configuration.

-
-

6.7.7

+
+

6.7.7

  • LocSAT

      @@ -217,8 +233,8 @@ station magnitudes could not be found in the database or memory.

-
-

6.7.6

+
+

6.7.6

  • trunk

      @@ -229,8 +245,8 @@ URIs such as sqlite
-
-

6.7.5

+
+

6.7.5

  • scmag

      @@ -239,8 +255,8 @@ URIs such as sqlite
-
-

6.7.4

+
+

6.7.4

  • fdsnws

      @@ -249,8 +265,8 @@ URIs such as sqlite
-
-

6.7.3

+
+

6.7.3

This is a security update. If you are running scmaster exposed to the public internet then upgrade! Previous versions allowed to access files outside the configured media directory if a path was @@ -266,8 +282,8 @@ returned files outside its media directory if requested.

-
-

6.7.2

+
+

6.7.2

  • packaging

      @@ -276,8 +292,8 @@ returned files outside its media directory if requested.

-
-

6.7.1

+
+

6.7.1

This version converts the database schema to version 0.13.2. The datamodel has not changed only the representations of datamodel attributes in the database. Specifically we convert @@ -295,8 +311,8 @@ will be tackled in future updates.

-
-

6.7.0

+
+

6.7.0

  • trunk

      @@ -387,8 +403,8 @@ collisions. This change explicitly set the collation to
-
-

6.6.3

+
+

6.6.3

  • bindings2cfg

      @@ -402,8 +418,8 @@ collisions. This change explicitly set the collation to
-
-

6.6.2

+
+

6.6.2

  • fdsnxml2inv

      @@ -412,8 +428,8 @@ collisions. This change explicitly set the collation to
-
-

6.6.1

+
+

6.6.1

  • scolv

      @@ -424,8 +440,8 @@ values.

-
-

6.6.0

+
+

6.6.0

SC_API_VERSION 16.3.0

  • seiscomp

    @@ -565,8 +581,8 @@ picks.

-
-

6.5.1

+
+

6.5.1

  • scalert

      @@ -580,8 +596,8 @@ picks.

-
-

6.5.0

+
+

6.5.0

SC_API_VERSION 16.2.0

  • seiscomp

    @@ -677,8 +693,8 @@ without checking their evaluationStatus.

-
-

6.4.4

+
+

6.4.4

  • seedlink

      @@ -708,8 +724,8 @@ correctly.

-
-

6.4.3

+
+

6.4.3

  • scolv

      @@ -720,8 +736,8 @@ status has not been set correctly.

-
-

6.4.2

+
+

6.4.2

  • scqc

      @@ -736,8 +752,8 @@ scqc cannot keep up with the input data rate.

-
-

6.4.1

+
+

6.4.1

  • scevent

      @@ -747,8 +763,8 @@ fixed.

-
-

6.4.0

+
+

6.4.0

  • trunk

      @@ -905,8 +921,8 @@ records.

-
-

6.3.1

+
+

6.3.1

  • trunk

      @@ -915,8 +931,8 @@ records.

-
-

6.3.0

+
+

6.3.0

  • seedlink

      @@ -992,8 +1008,8 @@ instead of dropping the region check entirely.

-
-

6.2.1

+
+

6.2.1

  • scalert

      @@ -1025,8 +1041,8 @@ component fails.

-
-

6.2.0

+
+

6.2.0

  • trunk

      @@ -1077,8 +1093,8 @@ to obfuscate inventory geo coordinates.

-
-

6.1.2

+
+

6.1.2

  • trunk

      @@ -1101,8 +1117,8 @@ in v4.

-
-

6.1.1

+
+

6.1.1

  • scolv

      @@ -1113,8 +1129,8 @@ updates correctly and shows the number of stations.

-
-

6.1.0

+
+

6.1.0

SC_API_VERSION 16.1.0

  • ql2sc

    @@ -1206,8 +1222,8 @@ scconfig.

-
-

6.0.5

+
+

6.0.5

  • seedlink

      @@ -1218,8 +1234,8 @@ Future versions will address this issue.

-
-

6.0.4

+
+

6.0.4

  • seiscomp

      @@ -1251,8 +1267,8 @@ mseeedfifo plugin.

-
-

6.0.3

+
+

6.0.3

  • GUI

      @@ -1265,8 +1281,8 @@ screen resolution.

-
-

6.0.2

+
+

6.0.2

  • trunk

      @@ -1282,8 +1298,8 @@ user accounts in log files.

-
-

6.0.1

+
+

6.0.1

  • scmaster

      @@ -1292,8 +1308,8 @@ user accounts in log files.

-
-

6.0.0

+
+

6.0.0

SC_API_VERSION 16.0.0

With this version we drop Qt 4 support for all GUI applications.

The database schema receives a small update and will increase the schema version @@ -1503,8 +1519,8 @@ chunks modified in particular time window.

-
-

5.5.19

+
+

5.5.19

  • trunk

      @@ -1513,8 +1529,8 @@ chunks modified in particular time window.

-
-

5.5.18

+
+

5.5.18

  • scdb

      @@ -1523,8 +1539,8 @@ chunks modified in particular time window.

-
-

5.5.17

+
+

5.5.17

  • scesv

      @@ -1534,8 +1550,8 @@ magnitudes when sho
-
-

5.5.16

+
+

5.5.16

  • scolv

      @@ -1547,8 +1563,8 @@ of stations.

-
-

5.5.15

+
+

5.5.15

  • seedlink

      @@ -1560,8 +1576,8 @@ invalid header data are transmitted.

-
-

5.5.14

+
+

5.5.14

  • seedlink

      @@ -1572,8 +1588,8 @@ another.

-
-

5.5.13

+
+

5.5.13

  • seedlink

      @@ -1583,8 +1599,8 @@ e.g. mseeedfifo plugin.

-
-

5.5.12

+
+

5.5.12

  • seiscomp

      @@ -1598,8 +1614,8 @@ e.g. mseeedfifo plugin.

-
-

5.5.11

+
+

5.5.11

  • scmapcut

      @@ -1608,8 +1624,8 @@ e.g. mseeedfifo plugin.

-
-

5.5.10

+
+

5.5.10

  • scrttv

      @@ -1620,8 +1636,8 @@ which are using Qt4 are affected as well.

-
-

5.5.9

+
+

5.5.9

  • scconfig

      @@ -1638,8 +1654,8 @@ expected with some database backends.

-
-

5.5.8

+
+

5.5.8

  • GUI

      @@ -1656,8 +1672,8 @@ from picker if a pick is not enabled.

-
-

5.5.7

+
+

5.5.7

  • scolv

      @@ -1673,8 +1689,8 @@ large recordstream URIs.

-
-

5.5.6

+
+

5.5.6

  • scbulletin

      @@ -1683,8 +1699,8 @@ large recordstream URIs.

-
-

5.5.5

+
+

5.5.5

IMPORTANT: This fixes a regression of scamp introduced with version 5.5.0 which caused scamp to always compute new amplitudes for origin and their arrivals.

@@ -1740,8 +1756,8 @@ but without the sensor location elevation.

-
-

5.5.4

+
+

5.5.4

  • scamp

      @@ -1769,8 +1785,8 @@ times, usually in code implementing tests.

-
-

5.5.3

+
+

5.5.3

  • trunk

      @@ -1809,8 +1825,8 @@ the messaging system.

-
-

5.5.2

+
+

5.5.2

SC_API_VERSION 15.6.0

  • documentation

    @@ -1841,8 +1857,8 @@ and selecting the event previous or next to the current event.

-
-

5.5.1

+
+

5.5.1

  • scxmldump

      @@ -1857,8 +1873,8 @@ and selecting the event previous or next to the current event.

-
-

5.5.0

+
+

5.5.0

SC_API_VERSION 15.5.0

  • deps

    @@ -1945,8 +1961,8 @@ was used.

-
-

5.4.0

+
+

5.4.0

SC_API_VERSION 15.4.0

  • deps

    @@ -2173,8 +2189,8 @@ of 0.

-
-

5.3.0

+
+

5.3.0

SC_API_VERSION 15.3.0

  • trunk

    @@ -2259,8 +2275,8 @@ the pick ID.

-
-

5.2.2

+
+

5.2.2

  • scevtlog

      @@ -2269,8 +2285,8 @@ the pick ID.

-
-

5.2.1

+
+

5.2.1

  • Amplitudes ML*

      @@ -2280,8 +2296,8 @@ configurable

-
-

5.2.0

+
+

5.2.0

SC_API_VERSION 15.2.0

  • fdsnxml2inv

    @@ -2390,15 +2406,15 @@ contribution).

-
-

5.1.1

+
+

5.1.1

  • The release did not contain the latest advertised changes of the main repository. This version does not introduce any new features or bugfixes.

-
-

5.1.0

+
+

5.1.0

SC_API_VERSION 15.1.0

  • scbulletin

    @@ -2457,8 +2473,8 @@ on cross connected systems tremendously (note: it does not prevent that!).

-
-

5.0.1

+
+

5.0.1

  • trunk

      @@ -2468,8 +2484,8 @@ and processing.whit
-
-

5.0.0

+
+

5.0.0

SC_API_VERSION 15.0.0

With this version we drop Python 2 support for the maintained Python wrappers as well as for all modules. Most of the modules are still Python 2 compatible @@ -2679,8 +2695,8 @@ Luca Scarabello / ETH for this contribution)

-
-

4.10.1

+
+

4.10.1

  • trunk

      @@ -2690,8 +2706,8 @@ This is a backport from version 5 and is not fixed in version <= 5.2.2.

-
-

4.10.0

+
+

4.10.0

IMPORTANT: Please check if your are affected by the bug concerning the scmaster configuration (see below).

    @@ -2723,8 +2739,8 @@ not have any effect. This bug has been introduced with version 4.9.0.

-
-

4.9.3

+
+

4.9.3

  • trunk

      @@ -2734,8 +2750,8 @@ not have any effect. This bug has been introduced with version 4.9.0.

-
-

4.9.2

+
+

4.9.2

  • scolv

      @@ -2761,8 +2777,8 @@ it as comment in the relocated origin.

-
-

4.9.1

+
+

4.9.1

  • scmaster

      @@ -2771,8 +2787,8 @@ it as comment in the relocated origin.

-
-

4.9.0

+
+

4.9.0

  • Documentation

      @@ -2813,8 +2829,8 @@ wants to show a legend

-
-

4.8.4

+
+

4.8.4

  • scautoloc

      @@ -2823,8 +2839,8 @@ wants to show a legend

-
-

4.8.3

+
+

4.8.3

  • seiscomp shell

      @@ -2865,8 +2881,8 @@ Previous versions only reported
-
-

4.8.2

+
+

4.8.2

  • scart

      @@ -2875,8 +2891,8 @@ Previous versions only reported
-
-

4.8.1

+
+

4.8.1

  • fdsnws

      @@ -2886,8 +2902,8 @@ PostgreSQL database is being used.

-
-

4.8.0

+
+

4.8.0

SC_API_VERSION 14.4.0

  • scolv

    @@ -2934,8 +2950,8 @@ when a new set of manually computed amplitudes has been received.

-
-

4.7.3

+
+

4.7.3

  • trunk

      @@ -2945,8 +2961,8 @@ correctly.

-
-

4.7.2

+
+

4.7.2

  • trunk

      @@ -2968,8 +2984,8 @@ in SeisComP.

-
-

4.7.1

+
+

4.7.1

  • trunk

      @@ -2979,8 +2995,8 @@ in SeisComP.

-
-

4.7.0

+
+

4.7.0

SC_API_VERSION 14.3.0

  • Documentation

    @@ -3008,7 +3024,7 @@ currently.

  • @CONFIGDIR@/spatial/vector. Load BNA files from new geo feature directory. The old BNA directories are still supported but cause a warning which is logged.

    -
  • Add support for GeoJSON files (*.geojson) in the new geo +

  • Add support for GeoJSON files (*.geojson) in the new geo feature directory.

  • Add data scheme version information to output when starting a module with the option -V.

  • @@ -3075,8 +3091,8 @@ from routing table.

-
-

4.6.1

+
+

4.6.1

  • scolv

      @@ -3086,8 +3102,8 @@ from routing table.

-
-

4.6.0

+
+

4.6.0

  • Dependencies

      @@ -3171,8 +3187,8 @@ QuakeML 1.2

-
-

4.5.0

+
+

4.5.0

SC_API_VERSION 14.2.0

  • Magnitudes

    @@ -3264,8 +3280,8 @@ eventedit.fm.visibleColumns = Depth, M, Count, Misfit, STDR, Azi.\
-
-

4.4.0

+
+

4.4.0

  • hypo71

      @@ -3294,8 +3310,8 @@ with encrypted connections.

-
-

4.3.0

+
+

4.3.0

  • scheli

      @@ -3365,8 +3381,8 @@ messaging.

-
-

4.2.1

+
+

4.2.1

  • Documentation

      @@ -3398,8 +3414,8 @@ and resize content after loading

-
-

4.2.0

+
+

4.2.0

  • scalert

      @@ -3431,8 +3447,8 @@ and resize content after loading

-
-

4.1.2

+
+

4.1.2

  • Processing

      @@ -3442,8 +3458,8 @@ parameters are out of range

-
-

4.1.1

+
+

4.1.1

  • scmaster

      @@ -3465,8 +3481,8 @@ mechanism table

-
-

4.1.0

+
+

4.1.0

SC_API_VERSION 14.1.0

  • scmaster

    @@ -3531,8 +3547,8 @@ next event of the event list from within the locator view

-
-

4.0.4

+
+

4.0.4

  • trunk

      @@ -3560,8 +3576,8 @@ but print a warning

-
-

4.0.3

+
+

4.0.3

  • slmod

      @@ -3589,8 +3605,8 @@ just a subset of input data was forwarded to the client

-
-

4.0.2

+
+

4.0.2

  • scautoloc

      @@ -3610,8 +3626,8 @@ e.g. empty end time

-
-

4.0.1

+
+

4.0.1

  • LOCSAT

      @@ -3638,8 +3654,8 @@ Armbruster for providing the patch.

-
-

4.0.0

+
+

4.0.0

SC_API_VERSION 14.0.0

This is the initial release of SeisComP under a new license and with a new versioning scheme. Instead of using a release name and a time based version @@ -3695,105 +3711,106 @@ standard.

Table of Contents

@@ -3818,7 +3835,7 @@ standard.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -130,7 +130,7 @@ these addon modules themselves.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -155,7 +155,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -452,7 +452,7 @@ real time connection and handles reconnects automatically.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -38292,7 +38292,7 @@ window.onload = function() {
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -239,7 +239,7 @@ Please contact the managers of these sources for any requests.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -70,7 +70,23 @@

Change Log

All notable changes to SeisComP are documented here.

-

6.9.0

+

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

  • fdsnxml2inv

    @@ -107,8 +123,8 @@ associated to.

-
-

6.8.4

+
+

6.8.4

  • scevent

      @@ -117,8 +133,8 @@ associated to.

-
-

6.8.3

+
+

6.8.3

  • caps_plugin

      @@ -135,8 +151,8 @@ requests.

-
-

6.8.2

+
+

6.8.2

  • scolv

      @@ -150,8 +166,8 @@ requests.

-
-

6.8.1

+
+

6.8.1

  • scconfig

      @@ -161,8 +177,8 @@ profiles.

-
-

6.8.0

+
+

6.8.0

  • NonLinLoc locator plugin

      @@ -184,8 +200,8 @@ errors such as “SVD routine can’t decompose matrix”.

-
-

6.7.9

+
+

6.7.9

  • trunk

      @@ -196,8 +212,8 @@ compiler version and configuration.

-
-

6.7.8

+
+

6.7.8

  • trunk

      @@ -209,8 +225,8 @@ compiler version and configuration.

-
-

6.7.7

+
+

6.7.7

  • LocSAT

      @@ -231,8 +247,8 @@ station magnitudes could not be found in the database or memory.

-
-

6.7.6

+
+

6.7.6

  • trunk

      @@ -243,8 +259,8 @@ URIs such as sqlite
-
-

6.7.5

+
+

6.7.5

  • scmag

      @@ -253,8 +269,8 @@ URIs such as sqlite
-
-

6.7.4

+
+

6.7.4

  • fdsnws

      @@ -263,8 +279,8 @@ URIs such as sqlite
-
-

6.7.3

+
+

6.7.3

This is a security update. If you are running scmaster exposed to the public internet then upgrade! Previous versions allowed to access files outside the configured media directory if a path was @@ -280,8 +296,8 @@ returned files outside its media directory if requested.

-
-

6.7.2

+
+

6.7.2

  • packaging

      @@ -290,8 +306,8 @@ returned files outside its media directory if requested.

-
-

6.7.1

+
+

6.7.1

This version converts the database schema to version 0.13.2. The datamodel has not changed only the representations of datamodel attributes in the database. Specifically we convert @@ -309,8 +325,8 @@ will be tackled in future updates.

-
-

6.7.0

+
+

6.7.0

  • trunk

      @@ -401,8 +417,8 @@ collisions. This change explicitly set the collation to
-
-

6.6.3

+
+

6.6.3

  • bindings2cfg

      @@ -416,8 +432,8 @@ collisions. This change explicitly set the collation to
-
-

6.6.2

+
+

6.6.2

  • fdsnxml2inv

      @@ -426,8 +442,8 @@ collisions. This change explicitly set the collation to
-
-

6.6.1

+
+

6.6.1

  • scolv

      @@ -438,8 +454,8 @@ values.

-
-

6.6.0

+
+

6.6.0

SC_API_VERSION 16.3.0

  • seiscomp

    @@ -579,8 +595,8 @@ picks.

-
-

6.5.1

+
+

6.5.1

  • scalert

      @@ -594,8 +610,8 @@ picks.

-
-

6.5.0

+
+

6.5.0

SC_API_VERSION 16.2.0

  • seiscomp

    @@ -691,8 +707,8 @@ without checking their evaluationStatus.

-
-

6.4.4

+
+

6.4.4

  • seedlink

      @@ -722,8 +738,8 @@ correctly.

-
-

6.4.3

+
+

6.4.3

  • scolv

      @@ -734,8 +750,8 @@ status has not been set correctly.

-
-

6.4.2

+
+

6.4.2

  • scqc

      @@ -750,8 +766,8 @@ scqc cannot keep up with the input data rate.

-
-

6.4.1

+
+

6.4.1

  • scevent

      @@ -761,8 +777,8 @@ fixed.

-
-

6.4.0

+
+

6.4.0

  • trunk

      @@ -919,8 +935,8 @@ records.

-
-

6.3.1

+
+

6.3.1

  • trunk

      @@ -929,8 +945,8 @@ records.

-
-

6.3.0

+
+

6.3.0

  • seedlink

      @@ -1006,8 +1022,8 @@ instead of dropping the region check entirely.

-
-

6.2.1

+
+

6.2.1

  • scalert

      @@ -1039,8 +1055,8 @@ component fails.

-
-

6.2.0

+
+

6.2.0

  • trunk

      @@ -1091,8 +1107,8 @@ to obfuscate inventory geo coordinates.

-
-

6.1.2

+
+

6.1.2

  • trunk

      @@ -1115,8 +1131,8 @@ in v4.

-
-

6.1.1

+
+

6.1.1

  • scolv

      @@ -1127,8 +1143,8 @@ updates correctly and shows the number of stations.

-
-

6.1.0

+
+

6.1.0

SC_API_VERSION 16.1.0

  • ql2sc

    @@ -1220,8 +1236,8 @@ scconfig.

-
-

6.0.5

+
+

6.0.5

  • seedlink

      @@ -1232,8 +1248,8 @@ Future versions will address this issue.

-
-

6.0.4

+
+

6.0.4

  • seiscomp

      @@ -1265,8 +1281,8 @@ mseeedfifo plugin.

-
-

6.0.3

+
+

6.0.3

  • GUI

      @@ -1279,8 +1295,8 @@ screen resolution.

-
-

6.0.2

+
+

6.0.2

  • trunk

      @@ -1296,8 +1312,8 @@ user accounts in log files.

-
-

6.0.1

+
+

6.0.1

  • scmaster

      @@ -1306,8 +1322,8 @@ user accounts in log files.

-
-

6.0.0

+
+

6.0.0

SC_API_VERSION 16.0.0

With this version we drop Qt 4 support for all GUI applications.

The database schema receives a small update and will increase the schema version @@ -1517,8 +1533,8 @@ chunks modified in particular time window.

-
-

5.5.19

+
+

5.5.19

  • trunk

      @@ -1527,8 +1543,8 @@ chunks modified in particular time window.

-
-

5.5.18

+
+

5.5.18

  • scdb

      @@ -1537,8 +1553,8 @@ chunks modified in particular time window.

-
-

5.5.17

+
+

5.5.17

  • scesv

      @@ -1548,8 +1564,8 @@ magnitudes when sho
-
-

5.5.16

+
+

5.5.16

  • scolv

      @@ -1561,8 +1577,8 @@ of stations.

-
-

5.5.15

+
+

5.5.15

  • seedlink

      @@ -1574,8 +1590,8 @@ invalid header data are transmitted.

-
-

5.5.14

+
+

5.5.14

  • seedlink

      @@ -1586,8 +1602,8 @@ another.

-
-

5.5.13

+
+

5.5.13

  • seedlink

      @@ -1597,8 +1613,8 @@ e.g. mseeedfifo plugin.

-
-

5.5.12

+
+

5.5.12

  • seiscomp

      @@ -1612,8 +1628,8 @@ e.g. mseeedfifo plugin.

-
-

5.5.11

+
+

5.5.11

  • scmapcut

      @@ -1622,8 +1638,8 @@ e.g. mseeedfifo plugin.

-
-

5.5.10

+
+

5.5.10

  • scrttv

      @@ -1634,8 +1650,8 @@ which are using Qt4 are affected as well.

-
-

5.5.9

+
+

5.5.9

  • scconfig

      @@ -1652,8 +1668,8 @@ expected with some database backends.

-
-

5.5.8

+
+

5.5.8

  • GUI

      @@ -1670,8 +1686,8 @@ from picker if a pick is not enabled.

-
-

5.5.7

+
+

5.5.7

  • scolv

      @@ -1687,8 +1703,8 @@ large recordstream URIs.

-
-

5.5.6

+
+

5.5.6

  • scbulletin

      @@ -1697,8 +1713,8 @@ large recordstream URIs.

-
-

5.5.5

+
+

5.5.5

IMPORTANT: This fixes a regression of scamp introduced with version 5.5.0 which caused scamp to always compute new amplitudes for origin and their arrivals.

@@ -1754,8 +1770,8 @@ but without the sensor location elevation.

-
-

5.5.4

+
+

5.5.4

  • scamp

      @@ -1783,8 +1799,8 @@ times, usually in code implementing tests.

-
-

5.5.3

+
+

5.5.3

  • trunk

      @@ -1823,8 +1839,8 @@ the messaging system.

-
-

5.5.2

+
+

5.5.2

SC_API_VERSION 15.6.0

  • documentation

    @@ -1855,8 +1871,8 @@ and selecting the event previous or next to the current event.

-
-

5.5.1

+
+

5.5.1

  • scxmldump

      @@ -1871,8 +1887,8 @@ and selecting the event previous or next to the current event.

-
-

5.5.0

+
+

5.5.0

SC_API_VERSION 15.5.0

  • deps

    @@ -1959,8 +1975,8 @@ was used.

-
-

5.4.0

+
+

5.4.0

SC_API_VERSION 15.4.0

  • deps

    @@ -2187,8 +2203,8 @@ of 0.

-
-

5.3.0

+
+

5.3.0

SC_API_VERSION 15.3.0

  • trunk

    @@ -2273,8 +2289,8 @@ the pick ID.

-
-

5.2.2

+
+

5.2.2

  • scevtlog

      @@ -2283,8 +2299,8 @@ the pick ID.

-
-

5.2.1

+
+

5.2.1

  • Amplitudes ML*

      @@ -2294,8 +2310,8 @@ configurable

-
-

5.2.0

+
+

5.2.0

SC_API_VERSION 15.2.0

  • fdsnxml2inv

    @@ -2404,15 +2420,15 @@ contribution).

-
-

5.1.1

+
+

5.1.1

  • The release did not contain the latest advertised changes of the main repository. This version does not introduce any new features or bugfixes.

-
-

5.1.0

+
+

5.1.0

SC_API_VERSION 15.1.0

  • scbulletin

    @@ -2471,8 +2487,8 @@ on cross connected systems tremendously (note: it does not prevent that!).

-
-

5.0.1

+
+

5.0.1

  • trunk

      @@ -2482,8 +2498,8 @@ and processing.whit
-
-

5.0.0

+
+

5.0.0

SC_API_VERSION 15.0.0

With this version we drop Python 2 support for the maintained Python wrappers as well as for all modules. Most of the modules are still Python 2 compatible @@ -2693,8 +2709,8 @@ Luca Scarabello / ETH for this contribution)

-
-

4.10.1

+
+

4.10.1

  • trunk

      @@ -2704,8 +2720,8 @@ This is a backport from version 5 and is not fixed in version <= 5.2.2.

-
-

4.10.0

+
+

4.10.0

IMPORTANT: Please check if your are affected by the bug concerning the scmaster configuration (see below).

    @@ -2737,8 +2753,8 @@ not have any effect. This bug has been introduced with version 4.9.0.

-
-

4.9.3

+
+

4.9.3

  • trunk

      @@ -2748,8 +2764,8 @@ not have any effect. This bug has been introduced with version 4.9.0.

-
-

4.9.2

+
+

4.9.2

  • scolv

      @@ -2775,8 +2791,8 @@ it as comment in the relocated origin.

-
-

4.9.1

+
+

4.9.1

  • scmaster

      @@ -2785,8 +2801,8 @@ it as comment in the relocated origin.

-
-

4.9.0

+
+

4.9.0

  • Documentation

      @@ -2827,8 +2843,8 @@ wants to show a legend

-
-

4.8.4

+
+

4.8.4

  • scautoloc

      @@ -2837,8 +2853,8 @@ wants to show a legend

-
-

4.8.3

+
+

4.8.3

  • seiscomp shell

      @@ -2879,8 +2895,8 @@ Previous versions only reported
-
-

4.8.2

+
+

4.8.2

  • scart

      @@ -2889,8 +2905,8 @@ Previous versions only reported
-
-

4.8.1

+
+

4.8.1

  • fdsnws

      @@ -2900,8 +2916,8 @@ PostgreSQL database is being used.

-
-

4.8.0

+
+

4.8.0

SC_API_VERSION 14.4.0

  • scolv

    @@ -2948,8 +2964,8 @@ when a new set of manually computed amplitudes has been received.

-
-

4.7.3

+
+

4.7.3

  • trunk

      @@ -2959,8 +2975,8 @@ correctly.

-
-

4.7.2

+
+

4.7.2

  • trunk

      @@ -2982,8 +2998,8 @@ in SeisComP.

-
-

4.7.1

+
+

4.7.1

  • trunk

      @@ -2993,8 +3009,8 @@ in SeisComP.

-
-

4.7.0

+
+

4.7.0

SC_API_VERSION 14.3.0

  • Documentation

    @@ -3022,7 +3038,7 @@ currently.

  • @CONFIGDIR@/spatial/vector. Load BNA files from new geo feature directory. The old BNA directories are still supported but cause a warning which is logged.

    -
  • Add support for GeoJSON files (*.geojson) in the new geo +

  • Add support for GeoJSON files (*.geojson) in the new geo feature directory.

  • Add data scheme version information to output when starting a module with the option -V.

  • @@ -3089,8 +3105,8 @@ from routing table.

-
-

4.6.1

+
+

4.6.1

  • scolv

      @@ -3100,8 +3116,8 @@ from routing table.

-
-

4.6.0

+
+

4.6.0

  • Dependencies

      @@ -3185,8 +3201,8 @@ QuakeML 1.2

-
-

4.5.0

+
+

4.5.0

SC_API_VERSION 14.2.0

  • Magnitudes

    @@ -3278,8 +3294,8 @@ eventedit.fm.visibleColumns = Depth, M, Count, Misfit, STDR, Azi.\
-
-

4.4.0

+
+

4.4.0

  • hypo71

      @@ -3308,8 +3324,8 @@ with encrypted connections.

-
-

4.3.0

+
+

4.3.0

  • scheli

      @@ -3379,8 +3395,8 @@ messaging.

-
-

4.2.1

+
+

4.2.1

  • Documentation

      @@ -3412,8 +3428,8 @@ and resize content after loading

-
-

4.2.0

+
+

4.2.0

  • scalert

      @@ -3445,8 +3461,8 @@ and resize content after loading

-
-

4.1.2

+
+

4.1.2

  • Processing

      @@ -3456,8 +3472,8 @@ parameters are out of range

-
-

4.1.1

+
+

4.1.1

  • scmaster

      @@ -3479,8 +3495,8 @@ mechanism table

-
-

4.1.0

+
+

4.1.0

SC_API_VERSION 14.1.0

  • scmaster

    @@ -3545,8 +3561,8 @@ next event of the event list from within the locator view

-
-

4.0.4

+
+

4.0.4

  • trunk

      @@ -3574,8 +3590,8 @@ but print a warning

-
-

4.0.3

+
+

4.0.3

  • slmod

      @@ -3603,8 +3619,8 @@ just a subset of input data was forwarded to the client

-
-

4.0.2

+
+

4.0.2

  • scautoloc

      @@ -3624,8 +3640,8 @@ e.g. empty end time

-
-

4.0.1

+
+

4.0.1

  • LOCSAT

      @@ -3652,8 +3668,8 @@ Armbruster for providing the patch.

-
-

4.0.0

+
+

4.0.0

SC_API_VERSION 14.0.0

This is the initial release of SeisComP under a new license and with a new versioning scheme. Instead of using a release name and a time based version @@ -3709,105 +3725,106 @@ standard.

Table of Contents

@@ -3842,7 +3859,7 @@ standard.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -131,7 +131,7 @@ doi:
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -448,7 +448,7 @@ classes.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -132,7 +132,7 @@ the
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -944,7 +944,7 @@ Example:

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -264,7 +264,7 @@ module connecting to the data base using the option
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -343,7 +343,7 @@ using <
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -462,7 +462,7 @@ for optimizing their performance.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -283,7 +283,7 @@ usually referred to as M. The name is configurable.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -328,7 +328,7 @@ provide system information. The default port to access the web frontend is 18180
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -301,7 +301,7 @@ for the details.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -203,7 +203,7 @@ by the global configuration, load these

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -184,7 +184,7 @@ sources.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -188,7 +188,7 @@ Waveforms stored in SDS archives can be served to clients, e.g. using
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -862,7 +862,7 @@ all defined options.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -660,7 +660,7 @@ simulation on velocity data.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -524,7 +524,7 @@ If everything is working, the analysis tools can be started, e.g. MapView.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1261,7 +1261,7 @@ seismic station or any other site to the hypocentre of the seismic event.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -225,7 +225,7 @@ improved GUI functionality

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -561,7 +561,7 @@ follows.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -226,7 +226,7 @@ quickly with programming for SeisComP.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -789,7 +789,7 @@ the GNU AGPL, see
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -520,7 +520,7 @@ modules.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -370,7 +370,7 @@ developers.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -448,7 +448,7 @@ event location. Rev. Geophys., 3(1), 157-185.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -742,7 +742,7 @@ with a given SeisComP filter and dumps the content to stdout.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -3132,7 +3132,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -3173,7 +3173,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -3173,7 +3173,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -556,7 +556,7 @@ X-forwarding may distort the application features.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -366,7 +366,7 @@ tests.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -545,7 +545,7 @@ trigger is the measured or the predicted arrival time of the P phase.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -136,7 +136,7 @@ For details, see the other chapters of this manual.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -279,7 +279,7 @@ See
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -318,7 +318,7 @@ total 12728
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -444,7 +444,7 @@ doi:
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -389,7 +389,7 @@ OS: Ubuntu 18
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -390,7 +390,7 @@ from MLc with a modified maximum depth:

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -427,7 +427,7 @@ To see stations and data you will later need to
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -250,7 +250,7 @@ from the upstream server.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -269,7 +269,7 @@ The above example is just for the first hour of 2020.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -197,7 +197,7 @@ $ python3 build-doc.py
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -746,7 +746,7 @@ LH* and VH* and the other one producing BN* and so on.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -344,7 +344,7 @@ brackets, e.g. [your file]

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -281,7 +281,7 @@ you can follow the same procedure for other networks/stations, provided you

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1694,7 +1694,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -473,7 +473,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -4923,7 +4923,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1064,7 +1064,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1570,7 +1570,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -730,7 +730,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -604,7 +604,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -529,7 +529,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -782,7 +782,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -108,7 +108,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -112,7 +112,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -480,7 +480,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1147,7 +1147,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -335,7 +335,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -886,7 +886,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -1606,7 +1606,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -282,7 +282,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -992,7 +992,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -10499,7 +10499,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -7213,7 +7213,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -487,7 +487,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -267,7 +267,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -147,7 +147,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -627,7 +627,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -97,7 +97,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -91,7 +91,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -91,7 +91,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -35709,7 +35709,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -119,7 +119,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -190,7 +190,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -61,7 +61,7 @@

Welcome

-

This is the documentation for the SeisComP version 6.9.0 Release.

+

This is the documentation for the SeisComP version 6.9.1 Release.

Please consider contributing to this documentation.

scmv @@ -322,7 +322,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -202,7 +202,7 @@ each individual module. These are grouped into categories.

- Version 6.9.0 Release + Version 6.9.1 Release
@@ -106,7 +106,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -130,7 +130,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -158,7 +158,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -279,7 +279,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -134,7 +134,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -141,7 +141,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -131,7 +131,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -124,7 +124,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -133,7 +133,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -125,7 +125,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release
@@ -156,7 +156,7 @@
- Version 6.9.0 Release + Version 6.9.1 Release